Modern Events Calendar Lite - Version 5.0.2

Version Description

  • 22 January 2020 =
  • Added: An ability to add users as recipients in notifications (pro)
  • Added: An ability to add user roles as recipient in notifications (pro)
  • Added: LinkedIn to speakers
  • Removed: "Schedule" message in bookings (pro)
  • Changed: "none" to "select" for date search field in Full Calendar shortcode
  • Fixed: A timeout issue in ICS and XML import
  • Fixed: An organizer issue in ICS and XML import
  • Fixed: Hide other organizer section when main organizer is set to be hidden
  • Fixed: Minimum ticket option (pro)
  • Fixed: Tags search field
  • Fixed: Weekly repeating in multiple-day events
  • Fixed: Booking module (pro)
  • Fixed: Typography (attendee's form and stop selling ticket warning - pro)
  • Fixed: Hide search form option for Timeline shortcode in the backend page
  • Fixed: Some issues concerning PHP 7.4
Download this release

Release Info

Developer webnus
Plugin Icon 128x128 Modern Events Calendar Lite
Version 5.0.2
Comparing to
See all releases

Code changes from version 5.0.1 to 5.0.2

Files changed (45) hide show
  1. app/features/events.php +4 -4
  2. app/features/ix.php +143 -6
  3. app/features/mec/dashboard.php +1 -1
  4. app/features/mec/notifications.php +287 -2
  5. app/features/mec/settings.php +5 -5
  6. app/features/organizers.php +14 -12
  7. app/features/speakers.php +22 -7
  8. app/libraries/book.php +1 -1
  9. app/libraries/filesystem.php +5 -5
  10. app/libraries/main.php +108 -6
  11. app/libraries/notifications.php +88 -0
  12. app/libraries/skins.php +14 -7
  13. app/modules/booking/steps/form.php +3 -3
  14. app/modules/booking/steps/tickets.php +1 -5
  15. app/modules/speakers/details.php +5 -1
  16. app/skins/grid/render.php +1 -0
  17. app/skins/single.php +12 -2
  18. assets/css/frontend.css +8 -0
  19. assets/js/backend.js +8 -1
  20. assets/js/events.js +5 -0
  21. changelog.txt +18 -1
  22. languages/modern-events-calendar-lite-cs_CZ.mo +0 -0
  23. languages/modern-events-calendar-lite-cs_CZ.po +598 -480
  24. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  25. languages/modern-events-calendar-lite-de_DE.po +598 -482
  26. languages/modern-events-calendar-lite-en_US.mo +0 -0
  27. languages/modern-events-calendar-lite-en_US.po +585 -479
  28. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  29. languages/modern-events-calendar-lite-es_ES.po +594 -482
  30. languages/modern-events-calendar-lite-fr_FR.mo +0 -0
  31. languages/modern-events-calendar-lite-fr_FR.po +598 -482
  32. languages/modern-events-calendar-lite-hu_HU.mo +0 -0
  33. languages/modern-events-calendar-lite-hu_HU.po +589 -481
  34. languages/modern-events-calendar-lite-it_IT.mo +0 -0
  35. languages/modern-events-calendar-lite-it_IT.po +598 -482
  36. languages/modern-events-calendar-lite-nb_NO.mo +0 -0
  37. languages/modern-events-calendar-lite-nb_NO.po +598 -485
  38. languages/modern-events-calendar-lite-nl_NL.mo +0 -0
  39. languages/modern-events-calendar-lite-nl_NL.po +595 -481
  40. languages/modern-events-calendar-lite-pl_PL.mo +0 -0
  41. languages/modern-events-calendar-lite-pl_PL.po +598 -482
  42. languages/modern-events-calendar-lite-pt_BR.mo +0 -0
  43. languages/modern-events-calendar-lite-pt_BR.po +598 -482
  44. languages/modern-events-calendar-lite-ru_RU.mo +0 -0
  45. languages/modern-events-calendar-lite-ru_RU.po +75 -75
app/features/events.php CHANGED
@@ -1848,8 +1848,6 @@ class MEC_feature_events extends MEC_base
1848
  />
1849
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
1850
  </label>
1851
- <button class="button remove" type="button"
1852
- onclick="mec_ticket_remove(<?php echo $key; ?>);"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
1853
  </div>
1854
  <div class="mec-form-row">
1855
  <input type="text" name="mec[tickets][<?php echo $key; ?>][minimum_ticket]" value="<?php echo(isset($ticket['minimum_ticket']) ? esc_attr($ticket['minimum_ticket']) : '0'); ?>" placeholder="<?php _e('Minimum Ticket e.g. 3', 'modern-events-calendar-lite'); ?>">
@@ -1871,6 +1869,8 @@ class MEC_feature_events extends MEC_base
1871
  <option value="hour" <?php echo(isset($ticket['stop_selling_type']) and trim($ticket['stop_selling_type']) == 'hour') ? 'selected="selected"' : ''; ?>><?php _e("Hour", "mec"); ?></option>
1872
  </select>
1873
  <?php echo sprintf(__('Stop selling ticket %s before event start.', 'modern-events-calendar-lite'), ob_get_clean()); ?>
 
 
1874
  </div>
1875
  <?php do_action('custom_field_ticket', $ticket, $key); ?>
1876
  <div id="mec_price_per_dates_container">
@@ -2063,8 +2063,6 @@ class MEC_feature_events extends MEC_base
2063
  name="mec[tickets][:i:][unlimited]"/>
2064
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
2065
  </label>
2066
- <button class="button remove" type="button"
2067
- onclick="mec_ticket_remove(:i:)"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
2068
  </div>
2069
  <div class="mec-form-row">
2070
  <input type="text" name="mec[tickets][:i:][minimum_ticket]" placeholder="<?php _e('Minimum Ticket e.g. 3', 'modern-events-calendar-lite'); ?>">
@@ -2086,6 +2084,8 @@ class MEC_feature_events extends MEC_base
2086
  <option value="hour"><?php _e("Hour", "mec"); ?></option>
2087
  </select>
2088
  <?php echo sprintf(__('Stop selling ticket %s before event start.', 'modern-events-calendar-lite'), ob_get_clean()); ?>
 
 
2089
  </div>
2090
  <div id="mec_price_per_dates_container_:i:">
2091
  <div class="mec-form-row">
1848
  />
1849
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
1850
  </label>
 
 
1851
  </div>
1852
  <div class="mec-form-row">
1853
  <input type="text" name="mec[tickets][<?php echo $key; ?>][minimum_ticket]" value="<?php echo(isset($ticket['minimum_ticket']) ? esc_attr($ticket['minimum_ticket']) : '0'); ?>" placeholder="<?php _e('Minimum Ticket e.g. 3', 'modern-events-calendar-lite'); ?>">
1869
  <option value="hour" <?php echo(isset($ticket['stop_selling_type']) and trim($ticket['stop_selling_type']) == 'hour') ? 'selected="selected"' : ''; ?>><?php _e("Hour", "mec"); ?></option>
1870
  </select>
1871
  <?php echo sprintf(__('Stop selling ticket %s before event start.', 'modern-events-calendar-lite'), ob_get_clean()); ?>
1872
+ <button class="button remove" type="button"
1873
+ onclick="mec_ticket_remove(<?php echo $key; ?>);"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
1874
  </div>
1875
  <?php do_action('custom_field_ticket', $ticket, $key); ?>
1876
  <div id="mec_price_per_dates_container">
2063
  name="mec[tickets][:i:][unlimited]"/>
2064
  <?php _e('Unlimited', 'modern-events-calendar-lite'); ?>
2065
  </label>
 
 
2066
  </div>
2067
  <div class="mec-form-row">
2068
  <input type="text" name="mec[tickets][:i:][minimum_ticket]" placeholder="<?php _e('Minimum Ticket e.g. 3', 'modern-events-calendar-lite'); ?>">
2084
  <option value="hour"><?php _e("Hour", "mec"); ?></option>
2085
  </select>
2086
  <?php echo sprintf(__('Stop selling ticket %s before event start.', 'modern-events-calendar-lite'), ob_get_clean()); ?>
2087
+ <button class="button remove" type="button"
2088
+ onclick="mec_ticket_remove(:i:)"><svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" aria-hidden="true" focusable="false" width="1em" height="1em" style="-ms-transform: rotate(360deg); -webkit-transform: rotate(360deg); transform: rotate(360deg);" preserveAspectRatio="xMidYMid meet" viewBox="0 0 20 20"><path d="M14.95 6.46L11.41 10l3.54 3.54l-1.41 1.41L10 11.42l-3.53 3.53l-1.42-1.42L8.58 10L5.05 6.47l1.42-1.42L10 8.58l3.54-3.53z"/></svg></button>
2089
  </div>
2090
  <div id="mec_price_per_dates_container_:i:">
2091
  <div class="mec-form-row">
app/features/ix.php CHANGED
@@ -223,22 +223,32 @@ class MEC_feature_ix extends MEC_base
223
 
224
  public function import_do($feed)
225
  {
 
 
 
 
226
  $file = $this->getFile();
227
  $extension = $file->getExt($feed);
228
 
229
- // Libraries
 
 
230
  $db = $this->getDB();
 
 
 
 
231
  $main = $this->getMain();
232
 
 
 
 
233
  $posts = array();
234
  if(strtolower($extension) == 'xml')
235
  {
236
  $XML = simplexml_load_string($file->read($feed));
237
  if($XML === false) return false;
238
 
239
- // WP Upload Path
240
- $wp_upload_dir = wp_upload_dir();
241
-
242
  foreach($XML->children() as $event)
243
  {
244
  $feed_event_id = (int) $event->ID;
@@ -556,7 +566,6 @@ class MEC_feature_ix extends MEC_base
556
  }
557
  elseif(strtolower($extension) == 'ics')
558
  {
559
- $main = $this->getMain();
560
  $parsed = $main->parse_ics($feed);
561
 
562
  // Timezone
@@ -575,13 +584,29 @@ class MEC_feature_ix extends MEC_base
575
  )) : 1;
576
 
577
  // Event Organizer
578
- $organizer = $event->organizer_array;
579
  $organizer_id = (isset($organizer[0]) and isset($organizer[0]['CN'])) ? $main->save_organizer(array
580
  (
581
  'name'=>trim((string) $organizer[0]['CN']),
582
  'email'=>(string) str_replace('MAILTO:', '', $organizer[1]),
583
  )) : 1;
584
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
585
  $date_start = new DateTime($event->dtstart);
586
  $date_start->setTimezone(new DateTimeZone($timezone));
587
 
@@ -590,6 +615,8 @@ class MEC_feature_ix extends MEC_base
590
  $start_minutes = $date_start->format('i');
591
  $start_ampm = $date_start->format('A');
592
 
 
 
593
  $end_timestamp = isset($event->dtend) ? strtotime($event->dtend) : 0;
594
  if($end_timestamp)
595
  {
@@ -622,6 +649,97 @@ class MEC_feature_ix extends MEC_base
622
  $days = NULL;
623
  $not_in_days = NULL;
624
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
625
  $additional_organizer_ids = array();
626
  $hourly_schedules = array();
627
  $tickets = array();
@@ -720,6 +838,25 @@ class MEC_feature_ix extends MEC_base
720
 
721
  // Set organizer to the post
722
  if($organizer_id) wp_set_object_terms($post_id, (int) $organizer_id, 'mec_organizer');
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
723
  }
724
  }
725
 
223
 
224
  public function import_do($feed)
225
  {
226
+ // Increase the resources
227
+ @ini_set('memory_limit', '1024M');
228
+ @ini_set('max_execution_time', 300);
229
+
230
  $file = $this->getFile();
231
  $extension = $file->getExt($feed);
232
 
233
+ /**
234
+ * @var MEC_db
235
+ */
236
  $db = $this->getDB();
237
+
238
+ /**
239
+ * @var MEC_main
240
+ */
241
  $main = $this->getMain();
242
 
243
+ // WP Upload Path
244
+ $wp_upload_dir = wp_upload_dir();
245
+
246
  $posts = array();
247
  if(strtolower($extension) == 'xml')
248
  {
249
  $XML = simplexml_load_string($file->read($feed));
250
  if($XML === false) return false;
251
 
 
 
 
252
  foreach($XML->children() as $event)
253
  {
254
  $feed_event_id = (int) $event->ID;
566
  }
567
  elseif(strtolower($extension) == 'ics')
568
  {
 
569
  $parsed = $main->parse_ics($feed);
570
 
571
  // Timezone
584
  )) : 1;
585
 
586
  // Event Organizer
587
+ $organizer = isset($event->organizer_array) ? $event->organizer_array : array();
588
  $organizer_id = (isset($organizer[0]) and isset($organizer[0]['CN'])) ? $main->save_organizer(array
589
  (
590
  'name'=>trim((string) $organizer[0]['CN']),
591
  'email'=>(string) str_replace('MAILTO:', '', $organizer[1]),
592
  )) : 1;
593
 
594
+ // Event Categories
595
+ $category_ids = array();
596
+ if(isset($event->categories) and trim($event->categories))
597
+ {
598
+ $cats = explode(',', $event->categories);
599
+ foreach($cats as $category)
600
+ {
601
+ $category_id = $main->save_category(array
602
+ (
603
+ 'name'=>trim((string) $category),
604
+ ));
605
+
606
+ if($category_id) $category_ids[] = $category_id;
607
+ }
608
+ }
609
+
610
  $date_start = new DateTime($event->dtstart);
611
  $date_start->setTimezone(new DateTimeZone($timezone));
612
 
615
  $start_minutes = $date_start->format('i');
616
  $start_ampm = $date_start->format('A');
617
 
618
+ $date_end = NULL;
619
+
620
  $end_timestamp = isset($event->dtend) ? strtotime($event->dtend) : 0;
621
  if($end_timestamp)
622
  {
649
  $days = NULL;
650
  $not_in_days = NULL;
651
 
652
+ // Recurring Event
653
+ $rrule = (isset($event->rrule) and trim($event->rrule)) ? $event->rrule : '';
654
+ if(trim($rrule) != '')
655
+ {
656
+ $ex1 = explode(';', $rrule);
657
+
658
+ $rule = array();
659
+ foreach($ex1 as $r)
660
+ {
661
+ $ex2 = explode('=', $r);
662
+ $rule[strtolower($ex2[0])] = strtolower($ex2[1]);
663
+ }
664
+
665
+ $repeat_status = 1;
666
+ if($rule['freq'] == 'daily')
667
+ {
668
+ $repeat_type = 'daily';
669
+ $repeat_interval = isset($rule['interval']) ? $rule['interval'] : 1;
670
+ }
671
+ elseif($rule['freq'] == 'weekly')
672
+ {
673
+ $repeat_type = 'weekly';
674
+ $repeat_interval = isset($rule['interval']) ? $rule['interval']*7 : 7;
675
+ }
676
+ elseif($rule['freq'] == 'monthly')
677
+ {
678
+ $repeat_type = 'monthly';
679
+
680
+ $year = '*';
681
+ $month = '*';
682
+
683
+ $s = $start_date;
684
+ $e = $end_date;
685
+
686
+ $_days = array();
687
+ while(strtotime($s) <= strtotime($e))
688
+ {
689
+ $_days[] = date('d', strtotime($s));
690
+ $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
691
+ }
692
+
693
+ $day = ','.implode(',', array_unique($_days)).',';
694
+
695
+ $week = '*';
696
+ $weekday = '*';
697
+ }
698
+ elseif($rule['freq'] == 'yearly')
699
+ {
700
+ $repeat_type = 'yearly';
701
+
702
+ $year = '*';
703
+
704
+ $s = $start_date;
705
+ $e = $end_date;
706
+
707
+ $_months = array();
708
+ $_days = array();
709
+ while(strtotime($s) <= strtotime($e))
710
+ {
711
+ $_months[] = date('m', strtotime($s));
712
+ $_days[] = date('d', strtotime($s));
713
+
714
+ $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
715
+ }
716
+
717
+ $month = ','.implode(',', array_unique($_months)).',';
718
+ $day = ','.implode(',', array_unique($_days)).',';
719
+
720
+ $week = '*';
721
+ $weekday = '*';
722
+ }
723
+ else $repeat_type = '';
724
+
725
+ // Custom Week Days
726
+ if($repeat_type == 'weekly' and isset($rule['byday']) and count(explode(',', $rule['byday'])) > 1)
727
+ {
728
+ $g_week_days = explode(',', $rule['byday']);
729
+ $week_day_mapping = array('mo'=>1, 'tu'=>2, 'we'=>3, 'th'=>4, 'fr'=>5, 'sa'=>6, 'su'=>7);
730
+
731
+ $weekdays = '';
732
+ foreach($g_week_days as $g_week_day) $weekdays .= $week_day_mapping[$g_week_day].',';
733
+
734
+ $weekdays = ','.trim($weekdays, ', ').',';
735
+ $interval = NULL;
736
+
737
+ $repeat_type = 'certain_weekdays';
738
+ }
739
+
740
+ $finish = isset($rule['until']) ? date('Y-m-d', strtotime($rule['until'])) : NULL;
741
+ }
742
+
743
  $additional_organizer_ids = array();
744
  $hourly_schedules = array();
745
  $tickets = array();
838
 
839
  // Set organizer to the post
840
  if($organizer_id) wp_set_object_terms($post_id, (int) $organizer_id, 'mec_organizer');
841
+
842
+ // Set categories to the post
843
+ if(count($category_ids)) foreach($category_ids as $category_id) wp_set_object_terms($post_id, (int) $category_id, 'mec_category', true);
844
+
845
+ // Featured Image
846
+ $featured_image = isset($event->attach) ? (string) $event->attach : '';
847
+ if(!has_post_thumbnail($post_id) and trim($featured_image))
848
+ {
849
+ $file_name = basename($featured_image);
850
+
851
+ $path = rtrim($wp_upload_dir['path'], DS.' ').DS.$file_name;
852
+ $url = rtrim($wp_upload_dir['url'], '/ ').'/'.$file_name;
853
+
854
+ // Download Image
855
+ $buffer = $main->get_web_page($featured_image);
856
+
857
+ $file->write($path, $buffer);
858
+ $main->set_featured_image($url, $post_id);
859
+ }
860
  }
861
  }
862
 
app/features/mec/dashboard.php CHANGED
@@ -119,7 +119,7 @@ $box_stats = apply_filters('mec_dashboard_box_stats', true);
119
  </div>
120
  <?php endif; ?>
121
  <?php echo $this->mec_custom_msg('yes', 'yes'); ?>
122
- <?php echo $this->addons_msg(); ?>
123
  <div class="w-row">
124
  <div class="w-col-sm-12">
125
  <div class="w-box mec-intro-section">
119
  </div>
120
  <?php endif; ?>
121
  <?php echo $this->mec_custom_msg('yes', 'yes'); ?>
122
+ <?php //echo $this->addons_msg(); ?>
123
  <div class="w-row">
124
  <div class="w-col-sm-12">
125
  <div class="w-box mec-intro-section">
app/features/mec/notifications.php CHANGED
@@ -44,6 +44,41 @@ $notifications = $this->main->get_notifications();
44
  <label for="mec_notifications_booking_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
45
  <input type="text" name="mec[notifications][booking_notification][subject]" id="mec_notifications_booking_notification_subject" value="<?php echo (isset($notifications['booking_notification']['subject']) ? stripslashes($notifications['booking_notification']['subject']) : ''); ?>" />
46
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
47
  <div class="mec-form-row">
48
  <label for="mec_notifications_booking_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
49
  <input type="text" name="mec[notifications][booking_notification][recipients]" id="mec_notifications_booking_notification_recipients" value="<?php echo (isset($notifications['booking_notification']['recipients']) ? $notifications['booking_notification']['recipients'] : ''); ?>" />
@@ -89,6 +124,7 @@ $notifications = $this->main->get_notifications();
89
  <li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
90
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
91
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
 
92
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
93
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
94
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
@@ -105,6 +141,41 @@ $notifications = $this->main->get_notifications();
105
  <label for="mec_notifications_email_verification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
106
  <input type="text" name="mec[notifications][email_verification][subject]" id="mec_notifications_email_verification_subject" value="<?php echo (isset($notifications['email_verification']['subject']) ? stripslashes($notifications['email_verification']['subject']) : ''); ?>" />
107
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
108
  <div class="mec-form-row">
109
  <label for="mec_notifications_email_verification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
110
  <input type="text" name="mec[notifications][email_verification][recipients]" id="mec_notifications_email_verification_recipients" value="<?php echo (isset($notifications['email_verification']['recipients']) ? $notifications['email_verification']['recipients'] : ''); ?>" />
@@ -145,6 +216,7 @@ $notifications = $this->main->get_notifications();
145
  <li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
146
  <li><span>%%verification_link%%</span>: <?php _e('Email/Booking verification link.', 'modern-events-calendar-lite'); ?></li>
147
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
 
148
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
149
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
150
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
@@ -161,6 +233,41 @@ $notifications = $this->main->get_notifications();
161
  <label for="mec_notifications_booking_confirmation_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
162
  <input type="text" name="mec[notifications][booking_confirmation][subject]" id="mec_notifications_booking_confirmation_subject" value="<?php echo (isset($notifications['booking_confirmation']['subject']) ? stripslashes($notifications['booking_confirmation']['subject']) : ''); ?>" />
163
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
164
  <div class="mec-form-row">
165
  <label for="mec_notifications_booking_confirmation_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
166
  <input type="text" name="mec[notifications][booking_confirmation][recipients]" id="mec_notifications_booking_confirmation_recipients" value="<?php echo (isset($notifications['booking_confirmation']['recipients']) ? $notifications['booking_confirmation']['recipients'] : ''); ?>" />
@@ -206,7 +313,7 @@ $notifications = $this->main->get_notifications();
206
  <li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
207
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
208
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
209
- <li><span>%%amount_tickets%%</span>: <?php _e('Amount Tickets', 'modern-events-calendar-lite'); ?></li>
210
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
211
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
212
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
@@ -229,6 +336,41 @@ $notifications = $this->main->get_notifications();
229
  <label for="mec_notifications_cancellation_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
230
  <input type="text" name="mec[notifications][cancellation_notification][subject]" id="mec_notifications_cancellation_notification_subject" value="<?php echo (isset($notifications['cancellation_notification']['subject']) ? stripslashes($notifications['cancellation_notification']['subject']) : 'Your booking is canceled.'); ?>" />
231
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
232
  <div class="mec-form-row">
233
  <label for="mec_notifications_cancellation_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
234
  <input type="text" name="mec[notifications][cancellation_notification][recipients]" id="mec_notifications_cancellation_notification_recipients" value="<?php echo (isset($notifications['cancellation_notification']['recipients']) ? $notifications['cancellation_notification']['recipients'] : ''); ?>" />
@@ -280,6 +422,7 @@ $notifications = $this->main->get_notifications();
280
  <li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
281
  <li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
282
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
 
283
  </ul>
284
  </div>
285
  </div>
@@ -299,6 +442,41 @@ $notifications = $this->main->get_notifications();
299
  <label for="mec_notifications_admin_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
300
  <input type="text" name="mec[notifications][admin_notification][subject]" id="mec_notifications_admin_notification_subject" value="<?php echo (isset($notifications['admin_notification']['subject']) ? stripslashes($notifications['admin_notification']['subject']) : ''); ?>" />
301
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
302
  <div class="mec-form-row">
303
  <label for="mec_notifications_admin_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
304
  <input type="text" name="mec[notifications][admin_notification][recipients]" id="mec_notifications_admin_notification_recipients" value="<?php echo (isset($notifications['admin_notification']['recipients']) ? $notifications['admin_notification']['recipients'] : ''); ?>" />
@@ -342,6 +520,7 @@ $notifications = $this->main->get_notifications();
342
  <li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
343
  <li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
344
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
 
345
  </ul>
346
  </div>
347
  </div>
@@ -364,6 +543,41 @@ $notifications = $this->main->get_notifications();
364
  <label for="mec_notifications_booking_reminder_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
365
  <input type="text" name="mec[notifications][booking_reminder][subject]" id="mec_notifications_booking_reminder_subject" value="<?php echo ((isset($notifications['booking_reminder']) and isset($notifications['booking_reminder']['subject'])) ? stripslashes($notifications['booking_reminder']['subject']) : ''); ?>" />
366
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  <div class="mec-form-row">
368
  <label for="mec_notifications_booking_reminder_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
369
  <input type="text" name="mec[notifications][booking_reminder][recipients]" id="mec_notifications_booking_reminder_recipients" value="<?php echo ((isset($notifications['booking_reminder']) and isset($notifications['booking_reminder']['recipients'])) ? $notifications['booking_reminder']['recipients'] : ''); ?>" />
@@ -414,6 +628,7 @@ $notifications = $this->main->get_notifications();
414
  <li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
415
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
416
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
 
417
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
418
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
419
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
@@ -445,13 +660,48 @@ $notifications = $this->main->get_notifications();
445
  <label for="mec_notifications_new_event_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
446
  <input type="text" name="mec[notifications][new_event][subject]" id="mec_notifications_new_event_subject" value="<?php echo (isset($notifications['new_event']['subject']) ? stripslashes($notifications['new_event']['subject']) : ''); ?>" />
447
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
448
  <div class="mec-form-row">
449
  <label for="mec_notifications_new_event_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
450
  <input type="text" name="mec[notifications][new_event][recipients]" id="mec_notifications_new_event_recipients" value="<?php echo (isset($notifications['new_event']['recipients']) ? $notifications['new_event']['recipients'] : ''); ?>" />
451
  <span class="mec-tooltip">
452
  <div class="box top">
453
  <h5 class="title"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></h5>
454
- <div class="content"><p><?php esc_attr_e('Insert comma separated emails for multiple recipients.', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/notifications/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
455
  </div>
456
  <i title="" class="dashicons-before dashicons-editor-help"></i>
457
  </span>
@@ -493,6 +743,41 @@ $notifications = $this->main->get_notifications();
493
  <label for="mec_notifications_user_event_publishing_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
494
  <input type="text" name="mec[notifications][user_event_publishing][subject]" id="mec_notifications_user_event_publishing_subject" value="<?php echo (isset($notifications['user_event_publishing']['subject']) ? stripslashes($notifications['user_event_publishing']['subject']) : ''); ?>" />
495
  </div>
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
496
  <div class="mec-form-row">
497
  <label for="mec_notifications_user_event_publishing_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
498
  <input type="text" name="mec[notifications][user_event_publishing][recipients]" id="mec_notifications_user_event_publishing_recipients" value="<?php echo (isset($notifications['user_event_publishing']['recipients']) ? $notifications['user_event_publishing']['recipients'] : ''); ?>" />
44
  <label for="mec_notifications_booking_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
45
  <input type="text" name="mec[notifications][booking_notification][subject]" id="mec_notifications_booking_notification_subject" value="<?php echo (isset($notifications['booking_notification']['subject']) ? stripslashes($notifications['booking_notification']['subject']) : ''); ?>" />
46
  </div>
47
+
48
+ <!-- Start Receiver Users -->
49
+ <div class="mec-form-row">
50
+ <label for="mec_notifications_booking_notification_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
51
+ <?php
52
+ $users = isset($notifications['booking_notification']['receiver_users']) ? $notifications['booking_notification']['receiver_users'] : array();
53
+ echo $this->main->get_users_dropdown($users, 'booking_notification');
54
+ ?>
55
+ <span class="mec-tooltip">
56
+ <div class="box top">
57
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
58
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
59
+ </div>
60
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
61
+ </span>
62
+ </div>
63
+ <!-- End Receiver Users -->
64
+
65
+ <!-- Start Receiver Roles -->
66
+ <div class="mec-form-row">
67
+ <label for="mec_notifications_booking_notification_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
68
+ <?php
69
+ $roles = isset($notifications['booking_notification']['receiver_roles']) ? $notifications['booking_notification']['receiver_roles'] : array();
70
+ echo $this->main->get_roles_dropdown($roles, 'booking_notification');
71
+ ?>
72
+ <span class="mec-tooltip">
73
+ <div class="box top">
74
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
75
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
76
+ </div>
77
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
78
+ </span>
79
+ </div>
80
+ <!-- End Receiver Roles -->
81
+
82
  <div class="mec-form-row">
83
  <label for="mec_notifications_booking_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
84
  <input type="text" name="mec[notifications][booking_notification][recipients]" id="mec_notifications_booking_notification_recipients" value="<?php echo (isset($notifications['booking_notification']['recipients']) ? $notifications['booking_notification']['recipients'] : ''); ?>" />
124
  <li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
125
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
126
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
127
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount of Booked Tickets', 'modern-events-calendar-lite'); ?></li>
128
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
129
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
130
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
141
  <label for="mec_notifications_email_verification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
142
  <input type="text" name="mec[notifications][email_verification][subject]" id="mec_notifications_email_verification_subject" value="<?php echo (isset($notifications['email_verification']['subject']) ? stripslashes($notifications['email_verification']['subject']) : ''); ?>" />
143
  </div>
144
+
145
+ <!-- Start Receiver Users -->
146
+ <div class="mec-form-row">
147
+ <label for="mec_notifications_email_verification_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
148
+ <?php
149
+ $users = isset($notifications['email_verification']['receiver_users']) ? $notifications['email_verification']['receiver_users'] : array();
150
+ echo $this->main->get_users_dropdown($users, 'email_verification');
151
+ ?>
152
+ <span class="mec-tooltip">
153
+ <div class="box top">
154
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
155
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
156
+ </div>
157
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
158
+ </span>
159
+ </div>
160
+ <!-- End Receiver Users -->
161
+
162
+ <!-- Start Receiver Roles -->
163
+ <div class="mec-form-row">
164
+ <label for="mec_notifications_email_verification_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
165
+ <?php
166
+ $roles = isset($notifications['email_verification']['receiver_roles']) ? $notifications['email_verification']['receiver_roles'] : array();
167
+ echo $this->main->get_roles_dropdown($roles, 'email_verification');
168
+ ?>
169
+ <span class="mec-tooltip">
170
+ <div class="box top">
171
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
172
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
173
+ </div>
174
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
175
+ </span>
176
+ </div>
177
+ <!-- End Receiver Roles -->
178
+
179
  <div class="mec-form-row">
180
  <label for="mec_notifications_email_verification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
181
  <input type="text" name="mec[notifications][email_verification][recipients]" id="mec_notifications_email_verification_recipients" value="<?php echo (isset($notifications['email_verification']['recipients']) ? $notifications['email_verification']['recipients'] : ''); ?>" />
216
  <li><span>%%event_featured_image%%</span>: <?php _e('Featured image of booked event', 'modern-events-calendar-lite'); ?></li>
217
  <li><span>%%verification_link%%</span>: <?php _e('Email/Booking verification link.', 'modern-events-calendar-lite'); ?></li>
218
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
219
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount of Booked Tickets', 'modern-events-calendar-lite'); ?></li>
220
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
221
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
222
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
233
  <label for="mec_notifications_booking_confirmation_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
234
  <input type="text" name="mec[notifications][booking_confirmation][subject]" id="mec_notifications_booking_confirmation_subject" value="<?php echo (isset($notifications['booking_confirmation']['subject']) ? stripslashes($notifications['booking_confirmation']['subject']) : ''); ?>" />
235
  </div>
236
+
237
+ <!-- Start Receiver Users -->
238
+ <div class="mec-form-row">
239
+ <label for="mec_notifications_booking_confirmation_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
240
+ <?php
241
+ $users = isset($notifications['booking_confirmation']['receiver_users']) ? $notifications['booking_confirmation']['receiver_users'] : array();
242
+ echo $this->main->get_users_dropdown($users, 'booking_confirmation');
243
+ ?>
244
+ <span class="mec-tooltip">
245
+ <div class="box top">
246
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
247
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
248
+ </div>
249
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
250
+ </span>
251
+ </div>
252
+ <!-- End Receiver Users -->
253
+
254
+ <!-- Start Receiver Roles -->
255
+ <div class="mec-form-row">
256
+ <label for="mec_notifications_booking_confirmation_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
257
+ <?php
258
+ $roles = isset($notifications['booking_confirmation']['receiver_roles']) ? $notifications['booking_confirmation']['receiver_roles'] : array();
259
+ echo $this->main->get_roles_dropdown($roles, 'booking_confirmation');
260
+ ?>
261
+ <span class="mec-tooltip">
262
+ <div class="box top">
263
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
264
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
265
+ </div>
266
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
267
+ </span>
268
+ </div>
269
+ <!-- End Receiver Roles -->
270
+
271
  <div class="mec-form-row">
272
  <label for="mec_notifications_booking_confirmation_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
273
  <input type="text" name="mec[notifications][booking_confirmation][recipients]" id="mec_notifications_booking_confirmation_recipients" value="<?php echo (isset($notifications['booking_confirmation']['recipients']) ? $notifications['booking_confirmation']['recipients'] : ''); ?>" />
313
  <li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
314
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
315
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
316
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount of Booked Tickets', 'modern-events-calendar-lite'); ?></li>
317
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
318
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
319
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
336
  <label for="mec_notifications_cancellation_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
337
  <input type="text" name="mec[notifications][cancellation_notification][subject]" id="mec_notifications_cancellation_notification_subject" value="<?php echo (isset($notifications['cancellation_notification']['subject']) ? stripslashes($notifications['cancellation_notification']['subject']) : 'Your booking is canceled.'); ?>" />
338
  </div>
339
+
340
+ <!-- Start Receiver Users -->
341
+ <div class="mec-form-row">
342
+ <label for="mec_notifications_cancellation_notification_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
343
+ <?php
344
+ $users = isset($notifications['cancellation_notification']['receiver_users']) ? $notifications['cancellation_notification']['receiver_users'] : array();
345
+ echo $this->main->get_users_dropdown($users, 'cancellation_notification');
346
+ ?>
347
+ <span class="mec-tooltip">
348
+ <div class="box top">
349
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
350
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
351
+ </div>
352
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
353
+ </span>
354
+ </div>
355
+ <!-- End Receiver Users -->
356
+
357
+ <!-- Start Receiver Roles -->
358
+ <div class="mec-form-row">
359
+ <label for="mec_notifications_cancellation_notification_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
360
+ <?php
361
+ $roles = isset($notifications['cancellation_notification']['receiver_roles']) ? $notifications['cancellation_notification']['receiver_roles'] : array();
362
+ echo $this->main->get_roles_dropdown($roles, 'cancellation_notification');
363
+ ?>
364
+ <span class="mec-tooltip">
365
+ <div class="box top">
366
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
367
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
368
+ </div>
369
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
370
+ </span>
371
+ </div>
372
+ <!-- End Receiver Roles -->
373
+
374
  <div class="mec-form-row">
375
  <label for="mec_notifications_cancellation_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
376
  <input type="text" name="mec[notifications][cancellation_notification][recipients]" id="mec_notifications_cancellation_notification_recipients" value="<?php echo (isset($notifications['cancellation_notification']['recipients']) ? $notifications['cancellation_notification']['recipients'] : ''); ?>" />
422
  <li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
423
  <li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
424
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
425
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount of Booked Tickets', 'modern-events-calendar-lite'); ?></li>
426
  </ul>
427
  </div>
428
  </div>
442
  <label for="mec_notifications_admin_notification_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
443
  <input type="text" name="mec[notifications][admin_notification][subject]" id="mec_notifications_admin_notification_subject" value="<?php echo (isset($notifications['admin_notification']['subject']) ? stripslashes($notifications['admin_notification']['subject']) : ''); ?>" />
444
  </div>
445
+
446
+ <!-- Start Receiver Users -->
447
+ <div class="mec-form-row">
448
+ <label for="mec_notifications_admin_notification_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
449
+ <?php
450
+ $users = isset($notifications['admin_notification']['receiver_users']) ? $notifications['admin_notification']['receiver_users'] : array();
451
+ echo $this->main->get_users_dropdown($users, 'admin_notification');
452
+ ?>
453
+ <span class="mec-tooltip">
454
+ <div class="box top">
455
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
456
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
457
+ </div>
458
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
459
+ </span>
460
+ </div>
461
+ <!-- End Receiver Users -->
462
+
463
+ <!-- Start Receiver Roles -->
464
+ <div class="mec-form-row">
465
+ <label for="mec_notifications_admin_notification_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
466
+ <?php
467
+ $roles = isset($notifications['admin_notification']['receiver_roles']) ? $notifications['admin_notification']['receiver_roles'] : array();
468
+ echo $this->main->get_roles_dropdown($roles, 'admin_notification');
469
+ ?>
470
+ <span class="mec-tooltip">
471
+ <div class="box top">
472
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
473
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
474
+ </div>
475
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
476
+ </span>
477
+ </div>
478
+ <!-- End Receiver Roles -->
479
+
480
  <div class="mec-form-row">
481
  <label for="mec_notifications_admin_notification_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
482
  <input type="text" name="mec[notifications][admin_notification][recipients]" id="mec_notifications_admin_notification_recipients" value="<?php echo (isset($notifications['admin_notification']['recipients']) ? $notifications['admin_notification']['recipients'] : ''); ?>" />
520
  <li><span>%%admin_link%%</span>: <?php _e('Admin booking management link.', 'modern-events-calendar-lite'); ?></li>
521
  <li><span>%%attendees_full_info%%</span>: <?php _e('Full Attendee info such as booking form data, name, email etc.', 'modern-events-calendar-lite'); ?></li>
522
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
523
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount of Booked Tickets', 'modern-events-calendar-lite'); ?></li>
524
  </ul>
525
  </div>
526
  </div>
543
  <label for="mec_notifications_booking_reminder_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
544
  <input type="text" name="mec[notifications][booking_reminder][subject]" id="mec_notifications_booking_reminder_subject" value="<?php echo ((isset($notifications['booking_reminder']) and isset($notifications['booking_reminder']['subject'])) ? stripslashes($notifications['booking_reminder']['subject']) : ''); ?>" />
545
  </div>
546
+
547
+ <!-- Start Receiver Users -->
548
+ <div class="mec-form-row">
549
+ <label for="mec_notifications_booking_reminder_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
550
+ <?php
551
+ $users = isset($notifications['booking_reminder']['receiver_users']) ? $notifications['booking_reminder']['receiver_users'] : array();
552
+ echo $this->main->get_users_dropdown($users, 'booking_reminder');
553
+ ?>
554
+ <span class="mec-tooltip">
555
+ <div class="box top">
556
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
557
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
558
+ </div>
559
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
560
+ </span>
561
+ </div>
562
+ <!-- End Receiver Users -->
563
+
564
+ <!-- Start Receiver Roles -->
565
+ <div class="mec-form-row">
566
+ <label for="mec_notifications_booking_reminder_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
567
+ <?php
568
+ $roles = isset($notifications['booking_reminder']['receiver_roles']) ? $notifications['booking_reminder']['receiver_roles'] : array();
569
+ echo $this->main->get_roles_dropdown($roles, 'booking_reminder');
570
+ ?>
571
+ <span class="mec-tooltip">
572
+ <div class="box top">
573
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
574
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
575
+ </div>
576
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
577
+ </span>
578
+ </div>
579
+ <!-- End Receiver Roles -->
580
+
581
  <div class="mec-form-row">
582
  <label for="mec_notifications_booking_reminder_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
583
  <input type="text" name="mec[notifications][booking_reminder][recipients]" id="mec_notifications_booking_reminder_recipients" value="<?php echo ((isset($notifications['booking_reminder']) and isset($notifications['booking_reminder']['recipients'])) ? $notifications['booking_reminder']['recipients'] : ''); ?>" />
628
  <li><span>%%cancellation_link%%</span>: <?php _e('Booking cancellation link.', 'modern-events-calendar-lite'); ?></li>
629
  <li><span>%%invoice_link%%</span>: <?php _e('Invoice Link', 'modern-events-calendar-lite'); ?></li>
630
  <li><span>%%total_attendees%%</span>: <?php _e('Total Attendees', 'modern-events-calendar-lite'); ?></li>
631
+ <li><span>%%amount_tickets%%</span>: <?php _e('Amount of Booked Tickets', 'modern-events-calendar-lite'); ?></li>
632
  <li><span>%%ticket_name%%</span>: <?php _e('Ticket name', 'modern-events-calendar-lite'); ?></li>
633
  <li><span>%%ticket_time%%</span>: <?php _e('Ticket time', 'modern-events-calendar-lite'); ?></li>
634
  <li><span>%%ics_link%%</span>: <?php _e('Download ICS file', 'modern-events-calendar-lite'); ?></li>
660
  <label for="mec_notifications_new_event_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
661
  <input type="text" name="mec[notifications][new_event][subject]" id="mec_notifications_new_event_subject" value="<?php echo (isset($notifications['new_event']['subject']) ? stripslashes($notifications['new_event']['subject']) : ''); ?>" />
662
  </div>
663
+
664
+ <!-- Start Receiver Users -->
665
+ <div class="mec-form-row">
666
+ <label for="mec_notifications_new_event_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
667
+ <?php
668
+ $users = isset($notifications['new_event']['receiver_users']) ? $notifications['new_event']['receiver_users'] : array();
669
+ echo $this->main->get_users_dropdown($users, 'new_event');
670
+ ?>
671
+ <span class="mec-tooltip">
672
+ <div class="box top">
673
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
674
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
675
+ </div>
676
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
677
+ </span>
678
+ </div>
679
+ <!-- End Receiver Users -->
680
+
681
+ <!-- Start Receiver Roles -->
682
+ <div class="mec-form-row">
683
+ <label for="mec_notifications_new_event_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
684
+ <?php
685
+ $roles = isset($notifications['new_event']['receiver_roles']) ? $notifications['new_event']['receiver_roles'] : array();
686
+ echo $this->main->get_roles_dropdown($roles, 'new_event');
687
+ ?>
688
+ <span class="mec-tooltip">
689
+ <div class="box top">
690
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
691
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
692
+ </div>
693
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
694
+ </span>
695
+ </div>
696
+ <!-- End Receiver Roles -->
697
+
698
  <div class="mec-form-row">
699
  <label for="mec_notifications_new_event_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
700
  <input type="text" name="mec[notifications][new_event][recipients]" id="mec_notifications_new_event_recipients" value="<?php echo (isset($notifications['new_event']['recipients']) ? $notifications['new_event']['recipients'] : ''); ?>" />
701
  <span class="mec-tooltip">
702
  <div class="box top">
703
  <h5 class="title"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></h5>
704
+ <div class="content"><p><?php esc_attr_e('Insert comma separated emails for multiple recipients.', 'modern-events-calendar-lite'); ?><a href="https://webnus.net/dox/modern-events-calendar/notifications/" target="_blank"><?php _e('Read More', 'modern-events-calendar-lite'); ?></a></p></div>
705
  </div>
706
  <i title="" class="dashicons-before dashicons-editor-help"></i>
707
  </span>
743
  <label for="mec_notifications_user_event_publishing_subject"><?php _e('Email Subject', 'modern-events-calendar-lite'); ?></label>
744
  <input type="text" name="mec[notifications][user_event_publishing][subject]" id="mec_notifications_user_event_publishing_subject" value="<?php echo (isset($notifications['user_event_publishing']['subject']) ? stripslashes($notifications['user_event_publishing']['subject']) : ''); ?>" />
745
  </div>
746
+
747
+ <!-- Start Receiver Users -->
748
+ <div class="mec-form-row">
749
+ <label for="mec_notifications_user_event_publishing_receiver_users"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></label>
750
+ <?php
751
+ $users = isset($notifications['user_event_publishing']['receiver_users']) ? $notifications['user_event_publishing']['receiver_users'] : array();
752
+ echo $this->main->get_users_dropdown($users, 'user_event_publishing');
753
+ ?>
754
+ <span class="mec-tooltip">
755
+ <div class="box top">
756
+ <h5 class="title"><?php _e('Receiver Users', 'modern-events-calendar-lite'); ?></h5>
757
+ <div class="content"><p><?php esc_attr_e('Select your desired users to send a copy of email to them!', 'modern-events-calendar-lite'); ?></p></div>
758
+ </div>
759
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
760
+ </span>
761
+ </div>
762
+ <!-- End Receiver Users -->
763
+
764
+ <!-- Start Receiver Roles -->
765
+ <div class="mec-form-row">
766
+ <label for="mec_notifications_user_event_publishing_receiver_roles"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></label>
767
+ <?php
768
+ $roles = isset($notifications['user_event_publishing']['receiver_roles']) ? $notifications['user_event_publishing']['receiver_roles'] : array();
769
+ echo $this->main->get_roles_dropdown($roles, 'user_event_publishing');
770
+ ?>
771
+ <span class="mec-tooltip">
772
+ <div class="box top">
773
+ <h5 class="title"><?php _e('Receiver Roles', 'modern-events-calendar-lite'); ?></h5>
774
+ <div class="content"><p><?php esc_attr_e('Select users a specific role.', 'modern-events-calendar-lite'); ?></p></div>
775
+ </div>
776
+ <i title="" class="dashicons-before dashicons-editor-help"></i>
777
+ </span>
778
+ </div>
779
+ <!-- End Receiver Roles -->
780
+
781
  <div class="mec-form-row">
782
  <label for="mec_notifications_user_event_publishing_recipients"><?php _e('Custom Recipients', 'modern-events-calendar-lite'); ?></label>
783
  <input type="text" name="mec[notifications][user_event_publishing][recipients]" id="mec_notifications_user_event_publishing_recipients" value="<?php echo (isset($notifications['user_event_publishing']['recipients']) ? $notifications['user_event_publishing']['recipients'] : ''); ?>" />
app/features/mec/settings.php CHANGED
@@ -23,11 +23,11 @@ echo $this->main->mec_custom_msg('', '');
23
 
24
  // Display Addons Notification
25
  $get_n_option = get_option('mec_addons_notification_option');
26
- if ( $get_n_option != 'open' ) :
27
- echo '<div class="wns-be-container mec-addons-notification-set-box extra">';
28
- echo $this->main->addons_msg();
29
- echo '</div>';
30
- endif;
31
  ?>
32
 
33
  <div class="wns-be-container wns-be-container-sticky">
23
 
24
  // Display Addons Notification
25
  $get_n_option = get_option('mec_addons_notification_option');
26
+ // if ( $get_n_option != 'open' ) :
27
+ // echo '<div class="wns-be-container mec-addons-notification-set-box extra">';
28
+ // //echo $this->main->addons_msg();
29
+ // echo '</div>';
30
+ // endif;
31
  ?>
32
 
33
  <div class="wns-be-container wns-be-container-sticky">
app/features/organizers.php CHANGED
@@ -263,7 +263,7 @@ class MEC_feature_organizers extends MEC_base
263
  <option value="1"><?php _e('Hide organizer', 'modern-events-calendar-lite'); ?></option>
264
  <option value="0"><?php _e('Insert a new organizer', 'modern-events-calendar-lite'); ?></option>
265
  <?php foreach($organizers as $organizer): ?>
266
- <option <?php if($organizer_id == $organizer->term_id) echo 'selected="selected"'; ?> value="<?php echo $organizer->term_id; ?>"><?php echo $organizer->name; ?></option>
267
  <?php endforeach; ?>
268
  </select>
269
  <span class="mec-tooltip">
@@ -308,17 +308,19 @@ class MEC_feature_organizers extends MEC_base
308
  <?php endif; ?>
309
  </div>
310
  <?php if($additional_organizers_status and count($organizers)): ?>
311
- <h4><?php echo $this->main->m('other_organizers', __('Other Organizers', 'modern-events-calendar-lite')); ?></h4>
312
- <div class="mec-form-row">
313
- <p><?php _e('You can select extra organizers in addition to main organizer if you like.', 'modern-events-calendar-lite'); ?></p>
314
- <div class="mec-additional-organizers">
315
- <select class="mec-select2-dropdown" name="mec[additional_organizer_ids][]" multiple="multiple">
316
- <?php foreach($organizers as $organizer): ?>
317
- <option <?php if(in_array($organizer->term_id, $organizer_ids)) echo 'selected="selected"'; ?> value="<?php echo $organizer->term_id; ?>">
318
- <?php echo $organizer->name; ?>
319
- </option>
320
- <?php endforeach; ?>
321
- </select>
 
 
322
  </div>
323
  </div>
324
  <?php endif; ?>
263
  <option value="1"><?php _e('Hide organizer', 'modern-events-calendar-lite'); ?></option>
264
  <option value="0"><?php _e('Insert a new organizer', 'modern-events-calendar-lite'); ?></option>
265
  <?php foreach($organizers as $organizer): ?>
266
+ <option <?php if($organizer_id == $organizer->term_id) echo $selected = 'selected="selected"'; ?> value="<?php echo $organizer->term_id; ?>"><?php echo $organizer->name; ?></option>
267
  <?php endforeach; ?>
268
  </select>
269
  <span class="mec-tooltip">
308
  <?php endif; ?>
309
  </div>
310
  <?php if($additional_organizers_status and count($organizers)): ?>
311
+ <div id="mec-additional-organizer-wrap" class="<?php echo !isset($selected) ? 'mec-util-hidden' : ''; ?>">
312
+ <h4><?php echo $this->main->m('other_organizers', __('Other Organizers', 'modern-events-calendar-lite')); ?></h4>
313
+ <div class="mec-form-row">
314
+ <p><?php _e('You can select extra organizers in addition to main organizer if you like.', 'modern-events-calendar-lite'); ?></p>
315
+ <div class="mec-additional-organizers">
316
+ <select class="mec-select2-dropdown" name="mec[additional_organizer_ids][]" multiple="multiple">
317
+ <?php foreach($organizers as $organizer): ?>
318
+ <option <?php if(in_array($organizer->term_id, $organizer_ids)) echo 'selected="selected"'; ?> value="<?php echo $organizer->term_id; ?>">
319
+ <?php echo $organizer->name; ?>
320
+ </option>
321
+ <?php endforeach; ?>
322
+ </select>
323
+ </div>
324
  </div>
325
  </div>
326
  <?php endif; ?>
app/features/speakers.php CHANGED
@@ -102,6 +102,7 @@ class MEC_feature_speakers extends MEC_base
102
  $email = get_metadata('term', $term->term_id, 'email', true);
103
  $facebook = get_metadata('term', $term->term_id, 'facebook', true);
104
  $instagram = get_metadata('term', $term->term_id, 'instagram', true);
 
105
  $twitter = get_metadata('term', $term->term_id, 'twitter', true);
106
  $thumbnail = get_metadata('term', $term->term_id, 'thumbnail', true);
107
  ?>
@@ -145,6 +146,14 @@ class MEC_feature_speakers extends MEC_base
145
  <input type="text" placeholder="<?php esc_attr_e('Insert URL of Instagram', 'modern-events-calendar-lite'); ?>" name="instagram" id="mec_instagram" value="<?php echo $instagram; ?>" />
146
  </td>
147
  </tr>
 
 
 
 
 
 
 
 
148
  <tr class="form-field">
149
  <th scope="row" valign="top">
150
  <label for="mec_twitter"><?php _e('Twitter Page', 'modern-events-calendar-lite'); ?></label>
@@ -195,6 +204,10 @@ class MEC_feature_speakers extends MEC_base
195
  <label for="mec_instagram"><?php _e('Instagram', 'modern-events-calendar-lite'); ?></label>
196
  <input type="text" name="instagram" placeholder="<?php esc_attr_e('Insert URL of Instagram', 'modern-events-calendar-lite'); ?>" id="mec_instagram" value="" />
197
  </div>
 
 
 
 
198
  <div class="form-field">
199
  <label for="mec_twitter"><?php _e('Twitter Page', 'modern-events-calendar-lite'); ?></label>
200
  <input type="text" name="twitter" placeholder="<?php esc_attr_e('Insert URL of Twitter Page', 'modern-events-calendar-lite'); ?>" id="mec_twitter" value="" />
@@ -217,13 +230,14 @@ class MEC_feature_speakers extends MEC_base
217
  */
218
  public function save_metadata($term_id)
219
  {
220
- $job_title = isset($_POST['job_title']) ? sanitize_text_field($_POST['job_title']) : '';
221
- $tel = isset($_POST['tel']) ? sanitize_text_field($_POST['tel']) : '';
222
- $email = isset($_POST['email']) ? sanitize_text_field($_POST['email']) : '';
223
- $facebook = (isset($_POST['facebook']) and trim($_POST['facebook'])) ? (strpos($_POST['facebook'], 'http') === false ? 'http://'.sanitize_text_field($_POST['facebook']) : sanitize_text_field($_POST['facebook'])) : '';
224
- $twitter = (isset($_POST['twitter']) and trim($_POST['twitter'])) ? (strpos($_POST['twitter'], 'http') === false ? 'http://'.sanitize_text_field($_POST['twitter']) : sanitize_text_field($_POST['twitter'])) : '';
225
- $instagram = (isset($_POST['instagram']) and trim($_POST['instagram'])) ? (strpos($_POST['instagram'], 'http') === false ? 'http://'.sanitize_text_field($_POST['instagram']) : sanitize_text_field($_POST['instagram'])) : '';
226
- $thumbnail = isset($_POST['thumbnail']) ? sanitize_text_field($_POST['thumbnail']) : '';
 
227
 
228
  update_term_meta($term_id, 'job_title', $job_title);
229
  update_term_meta($term_id, 'tel', $tel);
@@ -231,6 +245,7 @@ class MEC_feature_speakers extends MEC_base
231
  update_term_meta($term_id, 'facebook', $facebook);
232
  update_term_meta($term_id, 'twitter', $twitter);
233
  update_term_meta($term_id, 'instagram', $instagram);
 
234
  update_term_meta($term_id, 'thumbnail', $thumbnail);
235
 
236
 
102
  $email = get_metadata('term', $term->term_id, 'email', true);
103
  $facebook = get_metadata('term', $term->term_id, 'facebook', true);
104
  $instagram = get_metadata('term', $term->term_id, 'instagram', true);
105
+ $linkedin = get_metadata('term', $term->term_id, 'linkedin', true);
106
  $twitter = get_metadata('term', $term->term_id, 'twitter', true);
107
  $thumbnail = get_metadata('term', $term->term_id, 'thumbnail', true);
108
  ?>
146
  <input type="text" placeholder="<?php esc_attr_e('Insert URL of Instagram', 'modern-events-calendar-lite'); ?>" name="instagram" id="mec_instagram" value="<?php echo $instagram; ?>" />
147
  </td>
148
  </tr>
149
+ <tr class="form-field">
150
+ <th scope="row" valign="top">
151
+ <label for="mec_linkedin"><?php _e('LinkedIn', 'modern-events-calendar-lite'); ?></label>
152
+ </th>
153
+ <td>
154
+ <input type="text" placeholder="<?php esc_attr_e('Insert URL of LinkedIn', 'modern-events-calendar-lite'); ?>" name="linkedin" id="mec_linkedin" value="<?php echo $linkedin; ?>" />
155
+ </td>
156
+ </tr>
157
  <tr class="form-field">
158
  <th scope="row" valign="top">
159
  <label for="mec_twitter"><?php _e('Twitter Page', 'modern-events-calendar-lite'); ?></label>
204
  <label for="mec_instagram"><?php _e('Instagram', 'modern-events-calendar-lite'); ?></label>
205
  <input type="text" name="instagram" placeholder="<?php esc_attr_e('Insert URL of Instagram', 'modern-events-calendar-lite'); ?>" id="mec_instagram" value="" />
206
  </div>
207
+ <div class="form-field">
208
+ <label for="mec_linkedin"><?php _e('LinkedIn', 'modern-events-calendar-lite'); ?></label>
209
+ <input type="text" name="linkedin" placeholder="<?php esc_attr_e('Insert URL of linkedin', 'modern-events-calendar-lite'); ?>" id="mec_linkedin" value="" />
210
+ </div>
211
  <div class="form-field">
212
  <label for="mec_twitter"><?php _e('Twitter Page', 'modern-events-calendar-lite'); ?></label>
213
  <input type="text" name="twitter" placeholder="<?php esc_attr_e('Insert URL of Twitter Page', 'modern-events-calendar-lite'); ?>" id="mec_twitter" value="" />
230
  */
231
  public function save_metadata($term_id)
232
  {
233
+ $job_title = isset($_POST['job_title']) ? sanitize_text_field($_POST['job_title']) : '';
234
+ $tel = isset($_POST['tel']) ? sanitize_text_field($_POST['tel']) : '';
235
+ $email = isset($_POST['email']) ? sanitize_text_field($_POST['email']) : '';
236
+ $facebook = (isset($_POST['facebook']) and trim($_POST['facebook'])) ? (strpos($_POST['facebook'], 'http') === false ? 'http://'.sanitize_text_field($_POST['facebook']) : sanitize_text_field($_POST['facebook'])) : '';
237
+ $twitter = (isset($_POST['twitter']) and trim($_POST['twitter'])) ? (strpos($_POST['twitter'], 'http') === false ? 'http://'.sanitize_text_field($_POST['twitter']) : sanitize_text_field($_POST['twitter'])) : '';
238
+ $instagram = (isset($_POST['instagram']) and trim($_POST['instagram'])) ? (strpos($_POST['instagram'], 'http') === false ? 'http://'.sanitize_text_field($_POST['instagram']) : sanitize_text_field($_POST['instagram'])) : '';
239
+ $linkedin = (isset($_POST['linkedin']) and trim($_POST['linkedin'])) ? (strpos($_POST['linkedin'], 'http') === false ? 'http://'.sanitize_text_field($_POST['linkedin']) : sanitize_text_field($_POST['linkedin'])) : '';
240
+ $thumbnail = isset($_POST['thumbnail']) ? sanitize_text_field($_POST['thumbnail']) : '';
241
 
242
  update_term_meta($term_id, 'job_title', $job_title);
243
  update_term_meta($term_id, 'tel', $tel);
245
  update_term_meta($term_id, 'facebook', $facebook);
246
  update_term_meta($term_id, 'twitter', $twitter);
247
  update_term_meta($term_id, 'instagram', $instagram);
248
+ update_term_meta($term_id, 'linkedin', $linkedin);
249
  update_term_meta($term_id, 'thumbnail', $thumbnail);
250
 
251
 
app/libraries/book.php CHANGED
@@ -375,7 +375,7 @@ class MEC_book extends MEC_base
375
  * @return array|integer
376
  */
377
  public function get_tickets_availability($event_id, $date, $mode = 'availability')
378
- {
379
  $availability = array();
380
  $tickets = get_post_meta($event_id, 'mec_tickets', true);
381
 
375
  * @return array|integer
376
  */
377
  public function get_tickets_availability($event_id, $date, $mode = 'availability')
378
+ {
379
  $availability = array();
380
  $tickets = get_post_meta($event_id, 'mec_tickets', true);
381
 
app/libraries/filesystem.php CHANGED
@@ -770,20 +770,20 @@ class MEC_path extends MEC_base
770
  $path = MEC_path::clean($path);
771
  $mode = @ decoct(@ fileperms($path) & 0777);
772
 
773
- if (strlen($mode) < 3)
774
  {
775
  return '---------';
776
  }
777
 
778
  $parsed_mode = '';
779
- for ($i = 0; $i < 3; $i++)
780
  {
781
  // read
782
- $parsed_mode .= ($mode{$i} & 04) ? "r" : "-";
783
  // write
784
- $parsed_mode .= ($mode{$i} & 02) ? "w" : "-";
785
  // execute
786
- $parsed_mode .= ($mode{$i} & 01) ? "x" : "-";
787
  }
788
 
789
  return $parsed_mode;
770
  $path = MEC_path::clean($path);
771
  $mode = @ decoct(@ fileperms($path) & 0777);
772
 
773
+ if(strlen($mode) < 3)
774
  {
775
  return '---------';
776
  }
777
 
778
  $parsed_mode = '';
779
+ for($i = 0; $i < 3; $i++)
780
  {
781
  // read
782
+ $parsed_mode .= ($mode[$i] & 04) ? "r" : "-";
783
  // write
784
+ $parsed_mode .= ($mode[$i] & 02) ? "w" : "-";
785
  // execute
786
+ $parsed_mode .= ($mode[$i] & 01) ? "x" : "-";
787
  }
788
 
789
  return $parsed_mode;
app/libraries/main.php CHANGED
@@ -2454,8 +2454,6 @@ class MEC_main extends MEC_base
2454
  $event = $render->data($event_id);
2455
  $dates = $render->dates($event_id, $event, 2, $occurrence);
2456
 
2457
- $location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']]['address'] : '';
2458
-
2459
  $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event_id, (isset($dates[0]['start']['date']) ? $dates[0]['start']['date'] : $occurrence)) : '';
2460
  $start_time = strtotime((trim($occurrence) ? $occurrence : $dates[0]['start']['date']).' '.sprintf("%02d", $dates[0]['start']['hour']).':'.sprintf("%02d", $dates[0]['start']['minutes']).' '.$dates[0]['start']['ampm']);
2461
  $end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $dates[0]['end']['date']).' '.sprintf("%02d", $dates[0]['end']['hour']).':'.sprintf("%02d", $dates[0]['end']['minutes']).' '.$dates[0]['end']['ampm']);
@@ -2482,9 +2480,28 @@ class MEC_main extends MEC_base
2482
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
2483
  $ical .= "DESCRIPTION:".html_entity_decode(trim(strip_tags($event->content)), ENT_NOQUOTES, 'UTF-8').PHP_EOL;
2484
  $ical .= "URL:".$event->permalink.PHP_EOL;
2485
-
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2486
  // Location
2487
- if(trim($location) != '') $ical .= "LOCATION:".$location.PHP_EOL;
 
 
 
2488
 
2489
  // Featured Image
2490
  if(trim($event->featured_image['full']) != '')
@@ -2536,7 +2553,8 @@ class MEC_main extends MEC_base
2536
  $render = $this->getRender();
2537
  $event = $render->data($event_id);
2538
 
2539
- $location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']]['address'] : '';
 
2540
 
2541
  $start_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm);
2542
  $end_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm);
@@ -2558,7 +2576,7 @@ class MEC_main extends MEC_base
2558
  $ical .= "URL:".$event->permalink.PHP_EOL;
2559
 
2560
  // Location
2561
- if(trim($location) != '') $ical .= "LOCATION:".$location.PHP_EOL;
2562
 
2563
  // Featured Image
2564
  if(trim($event->featured_image['full']) != '')
@@ -5912,4 +5930,88 @@ class MEC_main extends MEC_base
5912
 
5913
  return false;
5914
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5915
  }
2454
  $event = $render->data($event_id);
2455
  $dates = $render->dates($event_id, $event, 2, $occurrence);
2456
 
 
 
2457
  $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($event_id, (isset($dates[0]['start']['date']) ? $dates[0]['start']['date'] : $occurrence)) : '';
2458
  $start_time = strtotime((trim($occurrence) ? $occurrence : $dates[0]['start']['date']).' '.sprintf("%02d", $dates[0]['start']['hour']).':'.sprintf("%02d", $dates[0]['start']['minutes']).' '.$dates[0]['start']['ampm']);
2459
  $end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $dates[0]['end']['date']).' '.sprintf("%02d", $dates[0]['end']['hour']).':'.sprintf("%02d", $dates[0]['end']['minutes']).' '.$dates[0]['end']['ampm']);
2480
  $ical .= "SUMMARY:".html_entity_decode($event->title, ENT_NOQUOTES, 'UTF-8').PHP_EOL;
2481
  $ical .= "DESCRIPTION:".html_entity_decode(trim(strip_tags($event->content)), ENT_NOQUOTES, 'UTF-8').PHP_EOL;
2482
  $ical .= "URL:".$event->permalink.PHP_EOL;
2483
+
2484
+ // Organizer
2485
+ $organizer = isset($event->organizers[$event->meta['mec_organizer_id']]) ? $event->organizers[$event->meta['mec_organizer_id']] : array();
2486
+ $organizer_name = (isset($organizer['name']) and trim($organizer['name'])) ? $organizer['name'] : NULL;
2487
+ $organizer_email = (isset($organizer['email']) and trim($organizer['email'])) ? $organizer['email'] : NULL;
2488
+
2489
+ $ical .= "ORGANIZER;CN=".$organizer_name.":MAILTO:".$organizer_email.PHP_EOL;
2490
+
2491
+ // Categories
2492
+ $categories = '';
2493
+ if(isset($event->categories) and is_array($event->categories) and count($event->categories))
2494
+ {
2495
+ foreach($event->categories as $category) $categories .= $category['name'].',';
2496
+ }
2497
+
2498
+ if(trim($categories) != '') $ical .= "CATEGORIES:".trim($categories, ', ').PHP_EOL;
2499
+
2500
  // Location
2501
+ $location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']] : array();
2502
+ $address = (isset($location['address']) and trim($location['address'])) ? $location['address'] : $location['name'];
2503
+
2504
+ if(trim($address) != '') $ical .= "LOCATION:".$address.PHP_EOL;
2505
 
2506
  // Featured Image
2507
  if(trim($event->featured_image['full']) != '')
2553
  $render = $this->getRender();
2554
  $event = $render->data($event_id);
2555
 
2556
+ $location = isset($event->locations[$event->meta['mec_location_id']]) ? $event->locations[$event->meta['mec_location_id']] : array();
2557
+ $address = (isset($location['address']) and trim($location['address'])) ? $location['address'] : $location['name'];
2558
 
2559
  $start_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_start_hour).':'.sprintf("%02d", $ticket_start_minute).' '.$ticket_start_ampm);
2560
  $end_time = strtotime(get_the_date('Y-m-d', $book_id).' '.sprintf("%02d", $ticket_end_hour).':'.sprintf("%02d", $ticket_end_minute).' '.$ticket_end_ampm);
2576
  $ical .= "URL:".$event->permalink.PHP_EOL;
2577
 
2578
  // Location
2579
+ if(trim($address) != '') $ical .= "LOCATION:".$address.PHP_EOL;
2580
 
2581
  // Featured Image
2582
  if(trim($event->featured_image['full']) != '')
5930
 
5931
  return false;
5932
  }
5933
+
5934
+ public function get_users_dropdown($current = array(), $notifications = 'booking_notification')
5935
+ {
5936
+ $users = get_users();
5937
+ ob_start();
5938
+ ?>
5939
+ <select id="mec_notifications_<?php echo $notifications; ?>_receiver_users" class="mec-notification-dropdown-select2" name="mec[notifications][<?php echo $notifications; ?>][receiver_users][]" multiple="multiple">
5940
+ <?php
5941
+ foreach($users as $user)
5942
+ {
5943
+ ?>
5944
+ <option value="<?php echo isset($user->data->ID) ? intval($user->data->ID) : 0; ?>" <?php echo (is_array($current) and in_array(intval($user->data->ID), $current)) ? 'selected="selected"' : ''; ?>><?php echo (isset($user->data->display_name) and trim($user->data->display_name)) ? trim($user->data->display_name) : '(' . trim($user->data->user_login) . ')'; ?></option>
5945
+ <?php
5946
+ }
5947
+ ?>
5948
+ </select>
5949
+ <?php
5950
+ $output = ob_get_contents();
5951
+ ob_clean();
5952
+
5953
+ return $output;
5954
+ }
5955
+
5956
+ public function get_emails_by_users($users)
5957
+ {
5958
+ $users_list = array();
5959
+ if(is_array($users) and count($users))
5960
+ {
5961
+ $query = 'SELECT `user_email` FROM `#__users` WHERE';
5962
+ foreach($users as $user_id)
5963
+ {
5964
+ $query .= ' ID='.$user_id.' OR';
5965
+ }
5966
+
5967
+ $db = $this->getDB();
5968
+ $users_list = $db->select(substr(trim($query), 0, -2), 'loadObjectList');
5969
+ }
5970
+
5971
+ return array_keys($users_list);
5972
+ }
5973
+
5974
+ public function get_roles_dropdown($current = array(), $notifications = 'booking_notification')
5975
+ {
5976
+ global $wp_roles;
5977
+ $roles = $wp_roles->get_names();
5978
+ ob_start();
5979
+ ?>
5980
+ <select id="mec_notifications_<?php echo $notifications; ?>_receiver_roles" class="mec-notification-dropdown-select2" name="mec[notifications][<?php echo $notifications; ?>][receiver_roles][]" multiple="multiple">
5981
+ <?php
5982
+ foreach($roles as $role_key => $role_name)
5983
+ {
5984
+ ?>
5985
+ <option value="<?php echo esc_attr($role_key); ?>" <?php echo (is_array($current) and in_array(trim($role_key), $current)) ? 'selected="selected"' : ''; ?>><?php echo $role_name; ?></option>
5986
+ <?php
5987
+ }
5988
+ ?>
5989
+ </select>
5990
+ <?php
5991
+ $output = ob_get_contents();
5992
+ ob_clean();
5993
+
5994
+ return $output;
5995
+ }
5996
+
5997
+ public function get_emails_by_roles($roles)
5998
+ {
5999
+ $user_list = array();
6000
+ foreach($roles as $role)
6001
+ {
6002
+ $curren_get_users = get_users(array(
6003
+ 'role' => $role,
6004
+ ));
6005
+
6006
+ if(count($curren_get_users))
6007
+ {
6008
+ foreach($curren_get_users as $user)
6009
+ {
6010
+ if(isset($user->data->user_email) and !in_array($user->data->user_email, $user_list)) $user_list[] = $user->data->user_email;
6011
+ }
6012
+ }
6013
+ }
6014
+
6015
+ return $user_list;
6016
+ }
6017
  }
app/libraries/notifications.php CHANGED
@@ -63,6 +63,17 @@ class MEC_notifications extends MEC_base
63
  $recipients_str = isset($this->notif_settings['email_verification']['recipients']) ? $this->notif_settings['email_verification']['recipients'] : '';
64
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
65
 
 
 
 
 
 
 
 
 
 
 
 
66
  foreach($recipients as $recipient)
67
  {
68
  // Skip if it's not a valid email
@@ -145,6 +156,17 @@ class MEC_notifications extends MEC_base
145
  $recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
146
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
147
 
 
 
 
 
 
 
 
 
 
 
 
148
  foreach($recipients as $recipient)
149
  {
150
  // Skip if it's not a valid email
@@ -252,6 +274,17 @@ class MEC_notifications extends MEC_base
252
  $recipients_str = isset($this->notif_settings['booking_confirmation']['recipients']) ? $this->notif_settings['booking_confirmation']['recipients'] : '';
253
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
254
 
 
 
 
 
 
 
 
 
 
 
 
255
  foreach($recipients as $recipient)
256
  {
257
  // Skip if it's not a valid email
@@ -380,6 +413,17 @@ class MEC_notifications extends MEC_base
380
  $recipients_str = isset($this->notif_settings['cancellation_notification']['recipients']) ? $this->notif_settings['cancellation_notification']['recipients'] : '';
381
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
382
 
 
 
 
 
 
 
 
 
 
 
 
383
  foreach($recipients as $recipient)
384
  {
385
  // Skip if it's not a valid email
@@ -469,6 +513,17 @@ class MEC_notifications extends MEC_base
469
  $recipients_str = isset($this->notif_settings['admin_notification']['recipients']) ? $this->notif_settings['admin_notification']['recipients'] : '';
470
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
471
 
 
 
 
 
 
 
 
 
 
 
 
472
  foreach($recipients as $recipient)
473
  {
474
  // Skip if it's not a valid email
@@ -551,6 +606,17 @@ class MEC_notifications extends MEC_base
551
  $recipients_str = isset($this->notif_settings['booking_reminder']['recipients']) ? $this->notif_settings['booking_reminder']['recipients'] : '';
552
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
553
 
 
 
 
 
 
 
 
 
 
 
 
554
  foreach($recipients as $recipient)
555
  {
556
  // Skip if it's not a valid email
@@ -647,6 +713,17 @@ class MEC_notifications extends MEC_base
647
  $recipients_str = isset($this->notif_settings['new_event']['recipients']) ? $this->notif_settings['new_event']['recipients'] : '';
648
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
649
 
 
 
 
 
 
 
 
 
 
 
 
650
  if(is_null($to) and !count($recipients)) return false;
651
  else if(is_null($to))
652
  {
@@ -729,6 +806,17 @@ class MEC_notifications extends MEC_base
729
  $recipients_str = isset($this->notif_settings['user_event_publishing']['recipients']) ? $this->notif_settings['user_event_publishing']['recipients'] : '';
730
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
731
 
 
 
 
 
 
 
 
 
 
 
 
732
  foreach($recipients as $recipient)
733
  {
734
  // Skip if it's not a valid email
63
  $recipients_str = isset($this->notif_settings['email_verification']['recipients']) ? $this->notif_settings['email_verification']['recipients'] : '';
64
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
65
 
66
+ $users = isset($this->notif_settings['email_verification']['receiver_users']) ? $this->notif_settings['email_verification']['receiver_users'] : array();
67
+ $users_down = $this->main->get_emails_by_users($users);
68
+ $recipients = array_merge($users_down, $recipients);
69
+
70
+ $roles = isset($this->notif_settings['email_verification']['receiver_roles']) ? $this->notif_settings['email_verification']['receiver_roles'] : array();
71
+ $user_roles = $this->main->get_emails_by_roles($roles);
72
+ $recipients = array_merge($user_roles, $recipients);
73
+
74
+ // Unique Recipients
75
+ $recipients = array_unique($recipients);
76
+
77
  foreach($recipients as $recipient)
78
  {
79
  // Skip if it's not a valid email
156
  $recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
157
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
158
 
159
+ $users = isset($this->notif_settings['booking_notification']['receiver_users']) ? $this->notif_settings['booking_notification']['receiver_users'] : array();
160
+ $users_down = $this->main->get_emails_by_users($users);
161
+ $recipients = array_merge($users_down, $recipients);
162
+
163
+ $roles = isset($this->notif_settings['booking_notification']['receiver_roles']) ? $this->notif_settings['booking_notification']['receiver_roles'] : array();
164
+ $user_roles = $this->main->get_emails_by_roles($roles);
165
+ $recipients = array_merge($user_roles, $recipients);
166
+
167
+ // Unique Recipients
168
+ $recipients = array_unique($recipients);
169
+
170
  foreach($recipients as $recipient)
171
  {
172
  // Skip if it's not a valid email
274
  $recipients_str = isset($this->notif_settings['booking_confirmation']['recipients']) ? $this->notif_settings['booking_confirmation']['recipients'] : '';
275
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
276
 
277
+ $users = isset($this->notif_settings['booking_confirmation']['receiver_users']) ? $this->notif_settings['booking_confirmation']['receiver_users'] : array();
278
+ $users_down = $this->main->get_emails_by_users($users);
279
+ $recipients = array_merge($users_down, $recipients);
280
+
281
+ $roles = isset($this->notif_settings['booking_confirmation']['receiver_roles']) ? $this->notif_settings['booking_confirmation']['receiver_roles'] : array();
282
+ $user_roles = $this->main->get_emails_by_roles($roles);
283
+ $recipients = array_merge($user_roles, $recipients);
284
+
285
+ // Unique Recipients
286
+ $recipients = array_unique($recipients);
287
+
288
  foreach($recipients as $recipient)
289
  {
290
  // Skip if it's not a valid email
413
  $recipients_str = isset($this->notif_settings['cancellation_notification']['recipients']) ? $this->notif_settings['cancellation_notification']['recipients'] : '';
414
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
415
 
416
+ $users = isset($this->notif_settings['cancellation_notification']['receiver_users']) ? $this->notif_settings['cancellation_notification']['receiver_users'] : array();
417
+ $users_down = $this->main->get_emails_by_users($users);
418
+ $recipients = array_merge($users_down, $recipients);
419
+
420
+ $roles = isset($this->notif_settings['cancellation_notification']['receiver_roles']) ? $this->notif_settings['cancellation_notification']['receiver_roles'] : array();
421
+ $user_roles = $this->main->get_emails_by_roles($roles);
422
+ $recipients = array_merge($user_roles, $recipients);
423
+
424
+ // Unique Recipients
425
+ $recipients = array_unique($recipients);
426
+
427
  foreach($recipients as $recipient)
428
  {
429
  // Skip if it's not a valid email
513
  $recipients_str = isset($this->notif_settings['admin_notification']['recipients']) ? $this->notif_settings['admin_notification']['recipients'] : '';
514
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
515
 
516
+ $users = isset($this->notif_settings['admin_notification']['receiver_users']) ? $this->notif_settings['admin_notification']['receiver_users'] : array();
517
+ $users_down = $this->main->get_emails_by_users($users);
518
+ $recipients = array_merge($users_down, $recipients);
519
+
520
+ $roles = isset($this->notif_settings['admin_notification']['receiver_roles']) ? $this->notif_settings['admin_notification']['receiver_roles'] : array();
521
+ $user_roles = $this->main->get_emails_by_roles($roles);
522
+ $recipients = array_merge($user_roles, $recipients);
523
+
524
+ // Unique Recipients
525
+ $recipients = array_unique($recipients);
526
+
527
  foreach($recipients as $recipient)
528
  {
529
  // Skip if it's not a valid email
606
  $recipients_str = isset($this->notif_settings['booking_reminder']['recipients']) ? $this->notif_settings['booking_reminder']['recipients'] : '';
607
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
608
 
609
+ $users = isset($this->notif_settings['booking_reminder']['receiver_users']) ? $this->notif_settings['booking_reminder']['receiver_users'] : array();
610
+ $users_down = $this->main->get_emails_by_users($users);
611
+ $recipients = array_merge($users_down, $recipients);
612
+
613
+ $roles = isset($this->notif_settings['booking_reminder']['receiver_roles']) ? $this->notif_settings['booking_reminder']['receiver_roles'] : array();
614
+ $user_roles = $this->main->get_emails_by_roles($roles);
615
+ $recipients = array_merge($user_roles, $recipients);
616
+
617
+ // Unique Recipients
618
+ $recipients = array_unique($recipients);
619
+
620
  foreach($recipients as $recipient)
621
  {
622
  // Skip if it's not a valid email
713
  $recipients_str = isset($this->notif_settings['new_event']['recipients']) ? $this->notif_settings['new_event']['recipients'] : '';
714
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
715
 
716
+ $users = isset($this->notif_settings['new_event']['receiver_users']) ? $this->notif_settings['new_event']['receiver_users'] : array();
717
+ $users_down = $this->main->get_emails_by_users($users);
718
+ $recipients = array_merge($users_down, $recipients);
719
+
720
+ $roles = isset($this->notif_settings['new_event']['receiver_roles']) ? $this->notif_settings['new_event']['receiver_roles'] : array();
721
+ $user_roles = $this->main->get_emails_by_roles($roles);
722
+ $recipients = array_merge($user_roles, $recipients);
723
+
724
+ // Unique Recipients
725
+ $recipients = array_unique($recipients);
726
+
727
  if(is_null($to) and !count($recipients)) return false;
728
  else if(is_null($to))
729
  {
806
  $recipients_str = isset($this->notif_settings['user_event_publishing']['recipients']) ? $this->notif_settings['user_event_publishing']['recipients'] : '';
807
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
808
 
809
+ $users = isset($this->notif_settings['user_event_publishing']['receiver_users']) ? $this->notif_settings['user_event_publishing']['receiver_users'] : array();
810
+ $users_down = $this->main->get_emails_by_users($users);
811
+ $recipients = array_merge($users_down, $recipients);
812
+
813
+ $roles = isset($this->notif_settings['user_event_publishing']['receiver_roles']) ? $this->notif_settings['user_event_publishing']['receiver_roles'] : array();
814
+ $user_roles = $this->main->get_emails_by_roles($roles);
815
+ $recipients = array_merge($user_roles, $recipients);
816
+
817
+ // Unique Recipients
818
+ $recipients = array_unique($recipients);
819
+
820
  foreach($recipients as $recipient)
821
  {
822
  // Skip if it's not a valid email
app/libraries/skins.php CHANGED
@@ -374,24 +374,32 @@ class MEC_skins extends MEC_base
374
  /**
375
  * Returns tag query for adding to WP_Query
376
  * @author Webnus <info@webnus.biz>
377
- * @return array
378
  */
379
  public function tag_query()
380
  {
381
  $tag = '';
382
-
383
  // Add event tags to filter
384
  if(isset($this->atts['tag']) and trim($this->atts['tag'], ', ') != '')
385
  {
386
  if(is_numeric($this->atts['tag']))
387
  {
388
  $term = get_term_by('id', $this->atts['tag'], 'post_tag');
389
- if($term) $tag = $term->name;
 
 
 
 
 
 
 
 
 
390
  }
391
- else $tag = $this->atts['tag'];
392
  }
393
 
394
- return $tag;
395
  }
396
 
397
  /**
@@ -997,7 +1005,7 @@ class MEC_skins extends MEC_base
997
  $skins = array('list', 'grid');
998
  if(isset($this->skin_options['default_view']) and $this->skin_options['default_view'] == 'list') array_push($skins, 'full_calendar');
999
 
1000
- $item = __('none', 'modern-events-calendar-lite');
1001
  $option = in_array($this->skin, $skins) ? '<option class="mec-none-item" value="none" selected="selected">'.$item.'</option>' : '';
1002
 
1003
  $output .= '<div class="mec-date-search"><input type="hidden" id="mec-filter-none" value="'.$item.'">
@@ -1077,7 +1085,6 @@ class MEC_skins extends MEC_base
1077
 
1078
  // Apply Label Query
1079
  if(isset($sf['label']) and trim($sf['label'])) $atts['label'] = $sf['label'];
1080
-
1081
 
1082
  // Apply SF Date or Not
1083
  if($apply_sf_date == 1)
374
  /**
375
  * Returns tag query for adding to WP_Query
376
  * @author Webnus <info@webnus.biz>
377
+ * @return string
378
  */
379
  public function tag_query()
380
  {
381
  $tag = '';
382
+
383
  // Add event tags to filter
384
  if(isset($this->atts['tag']) and trim($this->atts['tag'], ', ') != '')
385
  {
386
  if(is_numeric($this->atts['tag']))
387
  {
388
  $term = get_term_by('id', $this->atts['tag'], 'post_tag');
389
+ if($term) $tag = $term->slug;
390
+ }
391
+ else
392
+ {
393
+ $tags = explode(',', $this->atts['tag']);
394
+ foreach($tags as $t)
395
+ {
396
+ $term = get_term_by('name', $t, 'post_tag');
397
+ if($term) $tag .= $term->slug.',';
398
+ }
399
  }
 
400
  }
401
 
402
+ return trim($tag, ', ');
403
  }
404
 
405
  /**
1005
  $skins = array('list', 'grid');
1006
  if(isset($this->skin_options['default_view']) and $this->skin_options['default_view'] == 'list') array_push($skins, 'full_calendar');
1007
 
1008
+ $item = __('Select', 'modern-events-calendar-lite');
1009
  $option = in_array($this->skin, $skins) ? '<option class="mec-none-item" value="none" selected="selected">'.$item.'</option>' : '';
1010
 
1011
  $output .= '<div class="mec-date-search"><input type="hidden" id="mec-filter-none" value="'.$item.'">
1085
 
1086
  // Apply Label Query
1087
  if(isset($sf['label']) and trim($sf['label'])) $atts['label'] = $sf['label'];
 
1088
 
1089
  // Apply SF Date or Not
1090
  if($apply_sf_date == 1)
app/modules/booking/steps/form.php CHANGED
@@ -49,7 +49,7 @@ if(!$mec_email)
49
  ?>
50
 
51
  <form id="mec_book_form<?php echo $uniqueid; ?>" class="mec-booking-form-container row" onsubmit="mec_book_form_submit(event, <?php echo $uniqueid; ?>);" novalidate="novalidate" enctype="multipart/form-data" method="post">
52
- <h4><?php echo apply_filters('mec-attendees-title', __('Attendees Form', 'modern-events-calendar-lite')) ?></h4>
53
  <ul class="mec-book-tickets-container">
54
 
55
  <?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
@@ -64,10 +64,10 @@ if(!$mec_email)
64
  <!-- Custom fields -->
65
  <?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
66
 
67
- <?php $reg_field_name = strtolower( str_replace([' ',',',':','"',"'"], '_', $reg_field['label']) ); ?>
68
 
69
  <div class="mec-book-reg-field-<?php echo $reg_field['type']; ?> <?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? 'mec-reg-mandatory' : ''); ?><?php
70
- if ( isset($reg_field['inline']) && $reg_field['inline'] == 'enable') {
71
  echo ' col-md-6'; } else { echo ' col-md-12'; }
72
  ?>" data-ticket-id="<?php echo $j; ?>" data-field-id="<?php echo $reg_field_id; ?>">
73
  <?php if(isset($reg_field['label']) and $reg_field['type'] != 'agreement' && $reg_field['type'] != 'name' && $reg_field['type'] != 'mec_email' ): ?><label for="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>"><?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?><?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? '<span class="wbmec-mandatory">*</span>' : ''); ?></label><?php endif; ?>
49
  ?>
50
 
51
  <form id="mec_book_form<?php echo $uniqueid; ?>" class="mec-booking-form-container row" onsubmit="mec_book_form_submit(event, <?php echo $uniqueid; ?>);" novalidate="novalidate" enctype="multipart/form-data" method="post">
52
+ <h4><?php echo apply_filters('mec-attendees-title', __('Attendee\'s Form', 'modern-events-calendar-lite')) ?></h4>
53
  <ul class="mec-book-tickets-container">
54
 
55
  <?php $j = 0; foreach($tickets as $ticket_id=>$count): if(!$count) continue; $ticket = $event_tickets[$ticket_id]; for($i = 1; $i <= $count; $i++): $j++; ?>
64
  <!-- Custom fields -->
65
  <?php if(count($reg_fields)): foreach($reg_fields as $reg_field_id=>$reg_field): if(!is_numeric($reg_field_id) or !isset($reg_field['type'])) continue; ?>
66
 
67
+ <?php $reg_field_name = strtolower(str_replace([' ',',',':','"',"'"], '_', $reg_field['label'])); ?>
68
 
69
  <div class="mec-book-reg-field-<?php echo $reg_field['type']; ?> <?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? 'mec-reg-mandatory' : ''); ?><?php
70
+ if(isset($reg_field['inline']) && $reg_field['inline'] == 'enable') {
71
  echo ' col-md-6'; } else { echo ' col-md-12'; }
72
  ?>" data-ticket-id="<?php echo $j; ?>" data-field-id="<?php echo $reg_field_id; ?>">
73
  <?php if(isset($reg_field['label']) and $reg_field['type'] != 'agreement' && $reg_field['type'] != 'name' && $reg_field['type'] != 'mec_email' ): ?><label for="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>"><?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?><?php echo ((isset($reg_field['mandatory']) and $reg_field['mandatory']) ? '<span class="wbmec-mandatory">*</span>' : ''); ?></label><?php endif; ?>
app/modules/booking/steps/tickets.php CHANGED
@@ -36,16 +36,12 @@ $date_format = (isset($settings['booking_date_format1']) and trim($settings['boo
36
  <?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo $ticket['description']; ?></p><?php endif; ?>
37
  <div>
38
  <input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
39
-
40
- <!-- Set Input Minimum Ticket Min Value -->
41
- <?php $min_ticket = (isset($ticket['minimum_ticket']) and intval($ticket['minimum_ticket']) > 0) ? intval($ticket['minimum_ticket']) : 0; ?>
42
- <input type="hidden" name="book[tickets_info][<?php echo $ticket_id; ?>]" value="<?php echo "{$ticket_id} , ".(isset($ticket['name']) ? $ticket['name'] : '')." , {$min_ticket}"; ?>" />
43
  </div>
44
  <span class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), ($ticket['unlimited'] ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></span>
45
  </div>
46
  <?php
47
  $str_replace = isset($ticket['name']) ? '<strong>'.$ticket['name'].'</strong>' : '';
48
- $ticket_message_sales = sprintf(__('The %s ticket sales has stoped!', 'modern-events-calendar-lite'), $str_replace);
49
  $ticket_message_sold_out = sprintf(__('The %s ticket is sold out. You can try another ticket or another date.', 'modern-events-calendar-lite'), $str_replace);
50
  ?>
51
  <?php if(isset($stop_selling) and $stop_selling): ?>
36
  <?php if(isset($ticket['description']) and trim($ticket['description'])): ?><p class="mec-event-ticket-description"><?php echo $ticket['description']; ?></p><?php endif; ?>
37
  <div>
38
  <input type="number" class="mec-book-ticket-limit" name="book[tickets][<?php echo $ticket_id; ?>]" placeholder="<?php esc_attr_e('Count', 'modern-events-calendar-lite'); ?>" value="<?php echo $default_ticket_number; ?>" min="0" max="<?php echo ($ticket_limit != '-1' ? $ticket_limit : ''); ?>" onchange="mec_check_tickets_availability<?php echo $uniqueid; ?>(<?php echo $ticket_id; ?>, this.value);" />
 
 
 
 
39
  </div>
40
  <span class="mec-event-ticket-available"><?php echo sprintf(__('Available %s: <span>%s</span>', 'modern-events-calendar-lite'), $this->m('tickets', __('Tickets', 'modern-events-calendar-lite')), ($ticket['unlimited'] ? __('Unlimited', 'modern-events-calendar-lite') : ($ticket_limit != '-1' ? $ticket_limit : __('Unlimited', 'modern-events-calendar-lite')))); ?></span>
41
  </div>
42
  <?php
43
  $str_replace = isset($ticket['name']) ? '<strong>'.$ticket['name'].'</strong>' : '';
44
+ $ticket_message_sales = sprintf(__('The %s ticket sales has stopped!', 'modern-events-calendar-lite'), $str_replace);
45
  $ticket_message_sold_out = sprintf(__('The %s ticket is sold out. You can try another ticket or another date.', 'modern-events-calendar-lite'), $str_replace);
46
  ?>
47
  <?php if(isset($stop_selling) and $stop_selling): ?>
app/modules/speakers/details.php CHANGED
@@ -65,10 +65,14 @@ if(!count($speakers)) return false;
65
  <?php if($twitter = trim(get_term_meta($speaker['id'], 'twitter', true))): ?>
66
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
67
  <?php endif; ?>
68
- <!-- Speaker Google Plus -->
69
  <?php if($instagram = trim(get_term_meta($speaker['id'], 'instagram', true))): ?>
70
  <a href="<?php echo $instagram; ?>" target="_blank"><i class="mec-fa-instagram"></i></a>
71
  <?php endif; ?>
 
 
 
 
72
  </div>
73
  <!-- Speaker Description -->
74
  <?php $desc = trim(term_description($speaker['id'])); if( !empty($desc)): ?>
65
  <?php if($twitter = trim(get_term_meta($speaker['id'], 'twitter', true))): ?>
66
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
67
  <?php endif; ?>
68
+ <!-- Speaker Instagram -->
69
  <?php if($instagram = trim(get_term_meta($speaker['id'], 'instagram', true))): ?>
70
  <a href="<?php echo $instagram; ?>" target="_blank"><i class="mec-fa-instagram"></i></a>
71
  <?php endif; ?>
72
+ <!-- Speaker LinkedIn -->
73
+ <?php if($linkedin = trim(get_term_meta($speaker['id'], 'linkedin', true))): ?>
74
+ <a href="<?php echo $linkedin; ?>" target="_blank"><i class="mec-fa-linkedin"></i></a>
75
+ <?php endif; ?>
76
  </div>
77
  <!-- Speaker Description -->
78
  <?php $desc = trim(term_description($speaker['id'])); if( !empty($desc)): ?>
app/skins/grid/render.php CHANGED
@@ -258,6 +258,7 @@ if($this->style == 'colorful')
258
  </div>
259
  </div>
260
  <?php elseif($this->style == 'simple'): ?>
 
261
  <div class="mec-event-date mec-color"><?php echo $this->main->dateify($event, $this->date_format_simple_1); ?></div>
262
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
263
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
258
  </div>
259
  </div>
260
  <?php elseif($this->style == 'simple'): ?>
261
+ <?php do_action('mec_skin_grid_simple', $event); ?>
262
  <div class="mec-event-date mec-color"><?php echo $this->main->dateify($event, $this->date_format_simple_1); ?></div>
263
  <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $this->main->get_flags($event->data->ID, $event_start_date).$event_color; ?><?php if ( !empty($label_style) ) echo '<span class="mec-fc-style">'.$label_style.'</span>'; ?></h4>
264
  <div class="mec-event-detail"><?php echo (isset($location['name']) ? $location['name'] : ''); ?></div>
app/skins/single.php CHANGED
@@ -229,7 +229,13 @@ class MEC_skin_single extends MEC_skins
229
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : date('Y-m-d');
230
 
231
  if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days', 'weekday', 'weekend'))) $occurrence = date('Y-m-d', strtotime($occurrence));
232
- elseif(strtotime($occurrence)) $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
 
 
 
 
 
 
233
  else $occurrence = NULL;
234
 
235
  $data = new stdClass();
@@ -1000,10 +1006,14 @@ class MEC_skin_single extends MEC_skins
1000
  <?php if($twitter = trim(get_term_meta($speaker->term_id, 'twitter', true))): ?>
1001
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
1002
  <?php endif; ?>
1003
- <!-- Speaker Google Plus -->
1004
  <?php if($instagram = trim(get_term_meta($speaker->term_id, 'instagram', true))): ?>
1005
  <a href="<?php echo $instagram; ?>" target="_blank"><i class="mec-fa-instagram"></i></a>
1006
  <?php endif; ?>
 
 
 
 
1007
  </div>
1008
  <!-- Speaker Description -->
1009
  <?php if(trim($speaker->description)): ?>
229
  $occurrence = isset($_GET['occurrence']) ? sanitize_text_field($_GET['occurrence']) : date('Y-m-d');
230
 
231
  if(strtotime($occurrence) and in_array($repeat_type, array('certain_weekdays', 'custom_days', 'weekday', 'weekend'))) $occurrence = date('Y-m-d', strtotime($occurrence));
232
+ elseif(strtotime($occurrence))
233
+ {
234
+ $md_start = $this->main->get_start_of_multiple_days($this->id, $occurrence);
235
+ if($md_start) $occurrence = $md_start;
236
+
237
+ $occurrence = date('Y-m-d', strtotime('-1 day', strtotime($occurrence)));
238
+ }
239
  else $occurrence = NULL;
240
 
241
  $data = new stdClass();
1006
  <?php if($twitter = trim(get_term_meta($speaker->term_id, 'twitter', true))): ?>
1007
  <a href="<?php echo $twitter; ?>" target="_blank"><i class="mec-fa-twitter"></i></a>
1008
  <?php endif; ?>
1009
+ <!-- Speaker Instagram -->
1010
  <?php if($instagram = trim(get_term_meta($speaker->term_id, 'instagram', true))): ?>
1011
  <a href="<?php echo $instagram; ?>" target="_blank"><i class="mec-fa-instagram"></i></a>
1012
  <?php endif; ?>
1013
+ <!-- Speaker LinkedIn -->
1014
+ <?php if($linkedin = trim(get_term_meta($speaker->term_id, 'linkedin', true))): ?>
1015
+ <a href="<?php echo $linkedin; ?>" target="_blank"><i class="mec-fa-linkedin"></i></a>
1016
+ <?php endif; ?>
1017
  </div>
1018
  <!-- Speaker Description -->
1019
  <?php if(trim($speaker->description)): ?>
assets/css/frontend.css CHANGED
@@ -3547,6 +3547,14 @@ focus,
3547
  background: #2e4d66;
3548
  }
3549
 
 
 
 
 
 
 
 
 
3550
  .mec-single-event .mec-event-social a.other-social {
3551
  background: #ff5d5e;
3552
  }
3547
  background: #2e4d66;
3548
  }
3549
 
3550
+ .mec-single-event .mec-event-social a.linkedin {
3551
+ background: #457399;
3552
+ }
3553
+
3554
+ .mec-single-event .mec-event-social a.linkedin:hover {
3555
+ background: #2e4d66;
3556
+ }
3557
+
3558
  .mec-single-event .mec-event-social a.other-social {
3559
  background: #ff5d5e;
3560
  }
assets/js/backend.js CHANGED
@@ -236,6 +236,13 @@ jQuery(document).ready(function($)
236
  // Add shortcode select2
237
  jQuery(".mec-create-shortcode-tab-content select").select2();
238
 
 
 
 
 
 
 
 
239
  $('.mec-import-settings').on('click', function(e)
240
  {
241
  e.preventDefault();
@@ -508,7 +515,7 @@ function mec_skin_toggle()
508
  }
509
 
510
  // Show/Hide Search Widget Options
511
- if(skin === 'countdown' || skin === 'cover' || skin === 'available_spot' || skin === 'masonry' || skin === 'carousel' || skin === 'slider')
512
  {
513
  jQuery('#mec_calendar_search_form').hide();
514
  }
236
  // Add shortcode select2
237
  jQuery(".mec-create-shortcode-tab-content select").select2();
238
 
239
+ // Add Notification DropDown Select2
240
+ jQuery(".mec-notification-dropdown-select2").select2(
241
+ {
242
+ closeOnSelect: false,
243
+ width: '33%'
244
+ });
245
+
246
  $('.mec-import-settings').on('click', function(e)
247
  {
248
  e.preventDefault();
515
  }
516
 
517
  // Show/Hide Search Widget Options
518
+ if(skin === 'countdown' || skin === 'cover' || skin === 'available_spot' || skin === 'masonry' || skin === 'carousel' || skin === 'slider' || skin === 'timeline')
519
  {
520
  jQuery('#mec_calendar_search_form').hide();
521
  }
assets/js/events.js CHANGED
@@ -202,6 +202,11 @@ jQuery(document).ready(function($)
202
  $('#mec_organizer_id').on('change', function()
203
  {
204
  mec_organizer_toggle();
 
 
 
 
 
205
  });
206
 
207
  mec_location_toggle();
202
  $('#mec_organizer_id').on('change', function()
203
  {
204
  mec_organizer_toggle();
205
+ var mec_organizer_val = parseInt($(this).val());
206
+ var mec_additional_organizer = $(this).parent().parent().find('#mec-additional-organizer-wrap');
207
+
208
+ if(mec_organizer_val != 1) mec_additional_organizer.show();
209
+ else mec_additional_organizer.hide();
210
  });
211
 
212
  mec_location_toggle();
changelog.txt CHANGED
@@ -1,4 +1,21 @@
1
- v 5.0.1 - 14 January 2020
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: An option to set maximum date for certain skins
3
  - Added: Currency to WooCommerce order (pro)
4
  - Added: Attendees count in backend booking form (pro)
1
+ v 5.0.2 - 22 January 2020
2
+ - Added: An ability to add users as recipients in notifications (pro)
3
+ - Added: An ability to add user roles as recipient in notifications (pro)
4
+ - Added: LinkedIn to speakers
5
+ - Removed: "Schedule" message in bookings (pro)
6
+ - Changed: "none" to "select" for date search field in Full Calendar shortcode
7
+ - Fixed: A timeout issue in ICS and XML import
8
+ - Fixed: An organizer issue in ICS and XML import
9
+ - Fixed: Hide other organizer section when main organizer is set to be hidden
10
+ - Fixed: Minimum ticket option (pro)
11
+ - Fixed: Tags search field
12
+ - Fixed: Weekly repeating in multiple-day events
13
+ - Fixed: Booking module (pro)
14
+ - Fixed: Typography (attendee's form and stop selling ticket warning - pro)
15
+ - Fixed: Hide search form option for Timeline shortcode in the backend page
16
+ - Fixed: Some issues concerning PHP 7.4
17
+
18
+ v 5.0.1 - 14 January 2020
19
  - Added: An option to set maximum date for certain skins
20
  - Added: Currency to WooCommerce order (pro)
21
  - Added: Attendees count in backend booking form (pro)
languages/modern-events-calendar-lite-cs_CZ.mo CHANGED
Binary file
languages/modern-events-calendar-lite-cs_CZ.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:02+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
@@ -292,7 +292,7 @@ msgstr "Přidat událost"
292
  msgid "Add New Event"
293
  msgstr "Přidat novou událost"
294
 
295
- #: app/features/events.php:161 app/features/ix.php:3752
296
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
297
  msgid "No events found!"
298
  msgstr "Nebyly nalezeny žádné události!"
@@ -327,8 +327,8 @@ msgstr "V koši nebyly nalezeny žádné události!"
327
  #: app/features/mec/meta_boxes/search_form.php:575
328
  #: app/features/mec/meta_boxes/search_form.php:672
329
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
330
- #: app/features/search.php:67 app/libraries/main.php:5260
331
- #: app/libraries/skins.php:850 app/skins/single.php:560
332
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
333
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
334
  #: app/skins/single/modern.php:113
@@ -337,7 +337,7 @@ msgstr "Kategorie"
337
 
338
  #: app/features/events.php:183 app/features/events.php:3275
339
  #: app/features/fes/form.php:757 app/features/mec.php:402
340
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
341
  msgid "Categories"
342
  msgstr "Kategorie"
343
 
@@ -426,7 +426,7 @@ msgid "Event Repeating"
426
  msgstr "Opakování události"
427
 
428
  #: app/features/events.php:333 app/features/events.php:1286
429
- #: app/features/mec/settings.php:710 app/skins/single.php:941
430
  msgid "Hourly Schedule"
431
  msgstr "Hodinový rozvrh"
432
 
@@ -444,7 +444,7 @@ msgstr "Odkaz"
444
 
445
  #: app/features/events.php:336 app/features/events.php:3322
446
  #: app/features/events.php:3513 app/features/events.php:3555
447
- #: app/features/ix.php:3373 app/features/ix.php:3414
448
  #: app/features/mec/meta_boxes/display_options.php:960
449
  #: app/features/mec/meta_boxes/search_form.php:45
450
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -461,16 +461,16 @@ msgstr "Odkaz"
461
  #: app/features/organizers.php:58 app/features/organizers.php:204
462
  #: app/features/organizers.php:260 app/features/organizers.php:262
463
  #: app/features/organizers.php:271 app/features/search.php:75
464
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
465
- #: app/skins/single.php:806 app/skins/single/default.php:217
466
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
467
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
468
  msgid "Organizer"
469
  msgstr "Organizátor"
470
 
471
  #: app/features/events.php:337 app/features/events.php:1172
472
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
473
- #: app/skins/single.php:583 app/skins/single/default.php:126
474
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
475
  #: app/skins/single/modern.php:208
476
  msgid "Cost"
@@ -488,7 +488,7 @@ msgstr "Údaje hosta"
488
  #: app/features/events.php:3802 app/features/fes.php:223
489
  #: app/features/fes/form.php:689 app/features/labels.php:178
490
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
491
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
492
  #: app/modules/booking/steps/form.php:37
493
  msgid "Name"
494
  msgstr "Jméno"
@@ -498,12 +498,12 @@ msgstr "Jméno"
498
  #: app/features/fes.php:223 app/features/fes/form.php:685
499
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
500
  #: app/features/organizers.php:111 app/features/organizers.php:152
501
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
502
- #: app/features/speakers.php:187 app/libraries/main.php:1539
503
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
504
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
505
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
506
- #: app/skins/single.php:878 app/skins/single/default.php:234
507
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
508
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
509
  msgid "Email"
@@ -516,8 +516,8 @@ msgstr "Datum a čas"
516
  #: app/features/events.php:491 app/features/events.php:497
517
  #: app/features/events.php:3323 app/features/events.php:3513
518
  #: app/features/events.php:3555 app/features/fes/form.php:247
519
- #: app/features/fes/form.php:251 app/features/ix.php:3373
520
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
521
  #: app/features/mec/dashboard.php:400
522
  #: app/features/mec/meta_boxes/display_options.php:48
523
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -554,8 +554,8 @@ msgstr "odp."
554
  #: app/features/events.php:583 app/features/events.php:588
555
  #: app/features/events.php:3324 app/features/events.php:3513
556
  #: app/features/events.php:3555 app/features/fes/form.php:287
557
- #: app/features/fes/form.php:291 app/features/ix.php:3373
558
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
559
  #: app/features/mec/dashboard.php:401
560
  msgid "End Date"
561
  msgstr "Konečný den"
@@ -635,14 +635,14 @@ msgstr ""
635
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
636
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
637
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
638
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
639
- #: app/features/mec/notifications.php:170
640
- #: app/features/mec/notifications.php:238
641
- #: app/features/mec/notifications.php:308
642
- #: app/features/mec/notifications.php:373
643
- #: app/features/mec/notifications.php:384
644
- #: app/features/mec/notifications.php:454
645
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
646
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
647
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
648
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -658,7 +658,7 @@ msgstr ""
658
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
659
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
660
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
661
- #: app/skins/single.php:668 app/skins/single/default.php:141
662
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
663
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
664
  msgid "Read More"
@@ -829,8 +829,8 @@ msgstr "Další výskyt dalších událostí"
829
 
830
  #: app/features/events.php:1168 app/features/events.php:3513
831
  #: app/features/events.php:3555 app/features/fes/form.php:727
832
- #: app/features/ix.php:3373 app/features/ix.php:3414
833
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Cena události"
@@ -846,8 +846,8 @@ msgstr "Vyloučit určité dny"
846
  #: app/features/events.php:1204 app/features/events.php:2541
847
  #: app/features/fes.php:223 app/features/mec/booking.php:491
848
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
849
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
850
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
851
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
852
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
853
  msgid "Date"
@@ -889,8 +889,8 @@ msgstr "Den %s"
889
  #: app/features/events.php:1437 app/features/events.php:2322
890
  #: app/features/events.php:2369 app/features/events.php:3319
891
  #: app/features/events.php:3513 app/features/events.php:3555
892
- #: app/features/fes/form.php:236 app/features/ix.php:3373
893
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
894
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
895
  msgid "Title"
896
  msgstr "Název"
@@ -903,13 +903,13 @@ msgstr "Název"
903
  #: app/features/events.php:2357 app/features/events.php:2399
904
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
905
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
906
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
907
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
908
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
909
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
910
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
911
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
912
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
913
  msgid "Remove"
914
  msgstr "Odstranit"
915
 
@@ -937,7 +937,7 @@ msgstr "Popis"
937
  #: app/features/events.php:1445 app/features/fes/form.php:851
938
  #: app/features/mec.php:410 app/features/mec/modules.php:52
939
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
940
- #: app/libraries/main.php:565 app/libraries/main.php:5267
941
  #: app/modules/speakers/details.php:18
942
  msgid "Speakers"
943
  msgstr "Řečníci"
@@ -952,7 +952,7 @@ msgid "Event Links"
952
  msgstr "Odkazy na událost"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
956
  msgid "Event Link"
957
  msgstr "Odkaz na událost"
958
 
@@ -976,8 +976,8 @@ msgid "URL Shortener"
976
  msgstr "Zkracovač URL"
977
 
978
  #: app/features/events.php:1495 app/features/events.php:1508
979
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
980
- #: app/skins/single.php:667 app/skins/single/default.php:140
981
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
982
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
983
  #: app/widgets/single.php:107
@@ -1010,7 +1010,7 @@ msgstr "Celkové limity rezervace"
1010
 
1011
  #: app/features/events.php:1596 app/features/events.php:1849
1012
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1013
- #: app/modules/booking/steps/tickets.php:44
1014
  #: app/skins/available_spot/tpl.php:160
1015
  msgid "Unlimited"
1016
  msgstr "Neomezené"
@@ -1045,7 +1045,7 @@ msgid "12"
1045
  msgstr "12"
1046
 
1047
  #: app/features/events.php:1653 app/libraries/book.php:60
1048
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1049
  msgid "Tickets"
1050
  msgstr "Vstupenky"
1051
 
@@ -1071,13 +1071,13 @@ msgstr "Název vstupenky"
1071
 
1072
  #: app/features/events.php:1680 app/features/events.php:1955
1073
  #: app/features/events.php:3513 app/features/events.php:3555
1074
- #: app/features/ix.php:3373 app/features/ix.php:3414
1075
  msgid "Start Time"
1076
  msgstr "Začátek"
1077
 
1078
  #: app/features/events.php:1739 app/features/events.php:1985
1079
  #: app/features/events.php:3513 app/features/events.php:3555
1080
- #: app/features/ix.php:3373 app/features/ix.php:3414
1081
  msgid "End Time"
1082
  msgstr "Konec"
1083
 
@@ -1109,37 +1109,37 @@ msgstr "Pro zobrazení na webu. např. 15 $"
1109
  msgid "Available Tickets"
1110
  msgstr "Dostupné vstupenky"
1111
 
1112
- #: app/features/events.php:1855 app/features/events.php:2070
1113
  #, fuzzy
1114
  #| msgid "Maximum Per Ticket"
1115
  msgid "Minimum Ticket e.g. 3"
1116
  msgstr "Maximum na jednu vstupenku"
1117
 
1118
- #: app/features/events.php:1858 app/features/events.php:2073
1119
  #, fuzzy
1120
  #| msgid "Maximum Per Ticket"
1121
  msgid "MinimumTicket"
1122
  msgstr "Maximum na jednu vstupenku"
1123
 
1124
- #: app/features/events.php:1860 app/features/events.php:2075
1125
  msgid "Set a number for the minimum ticket reservation"
1126
  msgstr ""
1127
 
1128
- #: app/features/events.php:1868 app/features/events.php:2083
1129
  msgid "e.g. 0"
1130
  msgstr ""
1131
 
1132
- #: app/features/events.php:1870 app/features/events.php:2085
1133
  #, fuzzy
1134
  #| msgid "Days"
1135
  msgid "Day"
1136
  msgstr "Dny"
1137
 
1138
- #: app/features/events.php:1871 app/features/events.php:2086
1139
  msgid "Hour"
1140
  msgstr ""
1141
 
1142
- #: app/features/events.php:1873 app/features/events.php:2088
1143
  #, php-format
1144
  msgid "Stop selling ticket %s before event start."
1145
  msgstr ""
@@ -1163,7 +1163,7 @@ msgstr "Cena za datum"
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
- #: app/libraries/skins.php:980
1167
  msgid "Label"
1168
  msgstr "Štítek"
1169
 
@@ -1229,44 +1229,44 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1229
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1230
 
1231
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1232
- #: app/libraries/main.php:2749
1233
  msgid "MEC Name"
1234
  msgstr "MEC Jméno"
1235
 
1236
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1237
- #: app/libraries/main.php:2778
1238
  msgid "MEC Email"
1239
  msgstr "MEC Email"
1240
 
1241
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1242
- #: app/libraries/main.php:2719
1243
  msgid "Text"
1244
  msgstr "Text"
1245
 
1246
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1247
  #: app/features/organizers.php:103 app/features/organizers.php:148
1248
- #: app/features/speakers.php:118 app/features/speakers.php:183
1249
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1250
  msgid "Tel"
1251
  msgstr "Tel"
1252
 
1253
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1254
- #: app/libraries/main.php:2837
1255
  msgid "File"
1256
  msgstr "Soubor"
1257
 
1258
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1259
- #: app/libraries/main.php:2924
1260
  msgid "Textarea"
1261
  msgstr "Plocha textu"
1262
 
1263
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1264
- #: app/libraries/main.php:2977
1265
  msgid "Checkboxes"
1266
  msgstr "Zatržítko"
1267
 
1268
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1269
- #: app/libraries/main.php:3021
1270
  msgid "Radio Buttons"
1271
  msgstr "Přepínače"
1272
 
@@ -1346,17 +1346,17 @@ msgstr "Přepínače"
1346
  #: app/features/mec/meta_boxes/search_form.php:696
1347
  #: app/features/mec/meta_boxes/search_form.php:703
1348
  #: app/features/mec/meta_boxes/search_form.php:710
1349
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1350
  msgid "Dropdown"
1351
  msgstr "Rozbalovací"
1352
 
1353
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1354
- #: app/libraries/main.php:3112
1355
  msgid "Agreement"
1356
  msgstr "Smlouva"
1357
 
1358
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1359
- #: app/libraries/main.php:2953
1360
  msgid "Paragraph"
1361
  msgstr "Paragraf"
1362
 
@@ -1385,8 +1385,8 @@ msgid "Attendees List"
1385
  msgstr "Limit účastníků"
1386
 
1387
  #: app/features/events.php:3321 app/features/events.php:3513
1388
- #: app/features/events.php:3555 app/features/ix.php:3373
1389
- #: app/features/ix.php:3414 app/features/locations.php:58
1390
  #: app/features/locations.php:230 app/features/locations.php:287
1391
  #: app/features/locations.php:289 app/features/locations.php:298
1392
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1403,8 +1403,8 @@ msgstr "Limit účastníků"
1403
  #: app/features/mec/meta_boxes/search_form.php:679
1404
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1405
  #: app/features/search.php:71 app/libraries/main.php:2236
1406
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1407
- #: app/skins/single.php:487 app/skins/single.php:918
1408
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1409
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1410
  #: app/skins/single/modern.php:97
@@ -1445,14 +1445,14 @@ msgid "Duplicate"
1445
  msgstr "Duplikát"
1446
 
1447
  #: app/features/events.php:3513 app/features/events.php:3555
1448
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1449
  #: app/features/labels.php:177 app/features/locations.php:229
1450
- #: app/features/organizers.php:203 app/features/speakers.php:253
1451
  msgid "ID"
1452
  msgstr "ID"
1453
 
1454
  #: app/features/events.php:3513 app/features/events.php:3555
1455
- #: app/features/ix.php:3373 app/features/ix.php:3414
1456
  msgid "Link"
1457
  msgstr "Odkaz"
1458
 
@@ -1468,7 +1468,7 @@ msgstr "%s Email"
1468
 
1469
  #: app/features/events.php:3808 app/features/fes.php:223
1470
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1471
- #: app/libraries/main.php:5294
1472
  msgid "Ticket"
1473
  msgstr "Vstupenka"
1474
 
@@ -1644,8 +1644,8 @@ msgstr "Odebrat obrázek"
1644
 
1645
  #: app/features/fes/form.php:783 app/features/labels.php:61
1646
  #: app/features/labels.php:221 app/features/mec.php:403
1647
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1648
- #: app/skins/single.php:696 app/skins/single/default.php:155
1649
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1650
  #: app/skins/single/modern.php:223
1651
  msgid "Labels"
@@ -1718,75 +1718,75 @@ msgstr "Při nahrávání souboru došlo k chybě! Zkontrolujte oprávnění!"
1718
  msgid "The events are imported successfully!"
1719
  msgstr "Události byly úspěšně importovány!"
1720
 
1721
- #: app/features/ix.php:806
1722
  msgid "Third Party plugin is not installed and activated!"
1723
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
1724
 
1725
- #: app/features/ix.php:829
1726
  msgid "Third Party plugin is invalid!"
1727
  msgstr "Plugin třetí strany je neplatný!"
1728
 
1729
- #: app/features/ix.php:2580 app/features/ix.php:2638
1730
  msgid "Both of API key and Calendar ID are required!"
1731
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
1732
 
1733
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1734
  msgid "Please select some events to import!"
1735
  msgstr "Vyberte události, které chcete importovat!"
1736
 
1737
- #: app/features/ix.php:2994 app/features/ix.php:3057
1738
  msgid "Both of API key and Group URL are required!"
1739
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
1740
 
1741
- #: app/features/ix.php:3296
1742
  msgid "Check at Meetup"
1743
  msgstr "Ověřit Meetup"
1744
 
1745
- #: app/features/ix.php:3373 app/features/ix.php:3414
1746
  msgid "Organizer Tel"
1747
  msgstr "Organizátor Tel"
1748
 
1749
- #: app/features/ix.php:3373 app/features/ix.php:3414
1750
  msgid "Organizer Email"
1751
  msgstr "Organizátor Email"
1752
 
1753
  # Client Secret dle kontextu
1754
- #: app/features/ix.php:3495
1755
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1756
  msgstr ""
1757
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
1758
 
1759
- #: app/features/ix.php:3518
1760
  #, php-format
1761
  msgid "All seems good! Please click %s for authenticating your app."
1762
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
1763
 
1764
- #: app/features/ix.php:3572
1765
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1766
  msgstr ""
1767
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
1768
  "povinné!"
1769
 
1770
- #: app/features/ix.php:3688
1771
  #, php-format
1772
  msgid "%s events added to Google Calendar successfully."
1773
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
1774
 
1775
- #: app/features/ix.php:3689
1776
  #, php-format
1777
  msgid "%s previously added events get updated."
1778
  msgstr "% s dříve přidané události byly aktualizovány."
1779
 
1780
- #: app/features/ix.php:3690
1781
  #, php-format
1782
  msgid "%s events failed to add for following reasons: %s"
1783
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
1784
 
1785
- #: app/features/ix.php:3722
1786
  msgid "Please insert your Facebook page's link."
1787
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
1788
 
1789
- #: app/features/ix.php:3731
1790
  msgid ""
1791
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1792
  "valid Facebook page link."
@@ -1794,11 +1794,11 @@ msgstr ""
1794
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
1795
  "poskytněte nám platný odkaz na stránku Facebooku."
1796
 
1797
- #: app/features/ix.php:3763
1798
  msgid "Please insert your facebook page's link."
1799
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
1800
 
1801
- #: app/features/ix.php:3768
1802
  msgid ""
1803
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1804
  "valid facebook page link."
@@ -1969,14 +1969,15 @@ msgstr "Přepnout"
1969
  #: app/features/ix/export_g_calendar.php:72
1970
  #: app/features/ix/export_g_calendar.php:147
1971
  #: app/features/ix/export_g_calendar.php:164
1972
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
1973
- #: app/features/mec/notifications.php:213
1974
- #: app/features/mec/notifications.php:420
 
1975
  msgid "Add to Google Calendar"
1976
  msgstr "Přidat do Google kalendáře"
1977
 
1978
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1979
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
1980
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1981
  msgid "Checking ..."
1982
  msgstr "Ověřování ..."
@@ -2231,7 +2232,7 @@ msgstr "Auto Google Import"
2231
 
2232
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2233
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2234
- #: app/features/mec/notifications.php:361
2235
  msgid "Important Note"
2236
  msgstr "Důležitá poznámka"
2237
 
@@ -2417,7 +2418,7 @@ msgid "Featured"
2417
  msgstr "Ztvárněná"
2418
 
2419
  #: app/features/labels.php:118 app/features/labels.php:143
2420
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2421
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2422
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2423
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2436,7 +2437,7 @@ msgid "You can show featured and canceled events by a different style!"
2436
  msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
2437
 
2438
  #: app/features/labels.php:180 app/features/locations.php:232
2439
- #: app/features/organizers.php:206 app/features/speakers.php:257
2440
  #: app/modules/booking/steps/tickets.php:38
2441
  msgid "Count"
2442
  msgstr "Spočítat"
@@ -2454,7 +2455,7 @@ msgstr "Událost %s"
2454
 
2455
  #: app/features/locations.php:59 app/features/mec.php:404
2456
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2457
- #: app/libraries/main.php:5263
2458
  msgid "Locations"
2459
  msgstr "Umístění"
2460
 
@@ -2487,13 +2488,13 @@ msgstr "Zeměpisná délka (volitelné)"
2487
 
2488
  #: app/features/locations.php:138 app/features/locations.php:180
2489
  #: app/features/organizers.php:127 app/features/organizers.php:160
2490
- #: app/features/speakers.php:158 app/features/speakers.php:203
2491
  msgid "Thumbnail"
2492
  msgstr "Náhled"
2493
 
2494
  #: app/features/locations.php:143 app/features/locations.php:183
2495
  #: app/features/organizers.php:132 app/features/organizers.php:163
2496
- #: app/features/speakers.php:163 app/features/speakers.php:206
2497
  msgid "Upload/Add image"
2498
  msgstr "Nahrát / přidat obrázek"
2499
 
@@ -2501,7 +2502,7 @@ msgstr "Nahrát / přidat obrázek"
2501
  #: app/features/locations.php:340 app/features/locations.php:347
2502
  #: app/features/organizers.php:133 app/features/organizers.php:164
2503
  #: app/features/organizers.php:299 app/features/organizers.php:306
2504
- #: app/features/speakers.php:164 app/features/speakers.php:207
2505
  msgid "Remove image"
2506
  msgstr "Odebrat obrázek"
2507
 
@@ -2564,7 +2565,7 @@ msgstr "Vyberte obrázek"
2564
  msgid "Don't show map in single event page"
2565
  msgstr "Nezobrazovat mapu na jednostránkové události"
2566
 
2567
- #: app/features/locations.php:356 app/libraries/main.php:5297
2568
  msgid "Other Locations"
2569
  msgstr "Další místa"
2570
 
@@ -2590,7 +2591,7 @@ msgstr ""
2590
  msgid "Troubleshooting"
2591
  msgstr "Odstraňování problémů"
2592
 
2593
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2594
  #, php-format
2595
  msgid "%s to %s"
2596
  msgstr ""
@@ -2622,7 +2623,7 @@ msgstr "Podpora"
2622
 
2623
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2624
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2625
- #: app/libraries/main.php:5265
2626
  msgid "Organizers"
2627
  msgstr "Organizátoři"
2628
 
@@ -2743,10 +2744,10 @@ msgstr "Vyhledávání ..."
2743
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2744
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2745
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2746
- #: app/features/mec/notifications.php:531
2747
- #: app/features/mec/notifications.php:543
2748
- #: app/features/mec/notifications.php:639
2749
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2750
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2751
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2752
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2869,7 +2870,7 @@ msgstr ""
2869
  msgid "Enable Express Attendees Form"
2870
  msgstr "Povolit formulář Expres účastníci"
2871
 
2872
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2873
  msgid "Attendees Form"
2874
  msgstr "Formulář účastníků"
2875
 
@@ -2901,7 +2902,7 @@ msgstr "Automatické ověření pro rezervace zdarma"
2901
  msgid "Auto verification for paid bookings"
2902
  msgstr "Automatické ověření pro placené rezervace"
2903
 
2904
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2905
  #: app/libraries/main.php:579
2906
  msgid "Booking Confirmation"
2907
  msgstr "Potvrzení rezervace"
@@ -2967,14 +2968,14 @@ msgstr ""
2967
  "údaje pro povolené brány pro události a přijímat platby přímo!"
2968
 
2969
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2970
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
2971
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2972
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2973
  msgid "Saved"
2974
  msgstr "Uloženo"
2975
 
2976
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2977
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
2978
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2979
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2980
  msgid "Settings Saved!"
@@ -2982,15 +2983,15 @@ msgstr "Nastavení uložena!"
2982
 
2983
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2984
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2985
- #: app/features/mec/notifications.php:620
2986
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
2987
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2988
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
2989
  msgid "Verified"
2990
  msgstr "Ověřeno"
2991
 
2992
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2993
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
2994
  #: app/features/mec/single.php:291
2995
  msgid "Please Refresh Page"
2996
  msgstr "Prosím obnovte stránku"
@@ -4113,8 +4114,8 @@ msgstr "Zakázaný"
4113
  #: app/features/mec/meta_boxes/search_form.php:693
4114
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4115
  #: app/features/search.php:79 app/features/speakers.php:61
4116
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4117
- #: app/libraries/skins.php:928
4118
  msgid "Speaker"
4119
  msgstr "Řečník"
4120
 
@@ -4130,7 +4131,7 @@ msgstr "Řečník"
4130
  #: app/features/mec/meta_boxes/search_form.php:603
4131
  #: app/features/mec/meta_boxes/search_form.php:700
4132
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4133
- #: app/features/search.php:83 app/libraries/skins.php:954
4134
  msgid "Tag"
4135
  msgstr "Štítek"
4136
 
@@ -4390,366 +4391,457 @@ msgstr "Povolit upozornění na rezervaci"
4390
  msgid "It sends to attendee after booking for notifying him/her."
4391
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
4392
 
4393
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4394
- #: app/features/mec/notifications.php:161
4395
- #: app/features/mec/notifications.php:229
4396
- #: app/features/mec/notifications.php:299
4397
- #: app/features/mec/notifications.php:364
4398
- #: app/features/mec/notifications.php:445
4399
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4400
  msgid "Email Subject"
4401
  msgstr "Předmět emailové zprávy"
4402
 
4403
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4404
- #: app/features/mec/notifications.php:109
4405
- #: app/features/mec/notifications.php:113
4406
- #: app/features/mec/notifications.php:165
4407
- #: app/features/mec/notifications.php:169
4408
- #: app/features/mec/notifications.php:233
4409
- #: app/features/mec/notifications.php:237
4410
- #: app/features/mec/notifications.php:303
4411
- #: app/features/mec/notifications.php:307
4412
- #: app/features/mec/notifications.php:368
4413
- #: app/features/mec/notifications.php:372
4414
- #: app/features/mec/notifications.php:383
4415
- #: app/features/mec/notifications.php:449
4416
- #: app/features/mec/notifications.php:453
4417
- #: app/features/mec/notifications.php:497
4418
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4419
  msgid "Custom Recipients"
4420
  msgstr "Vlastní příjemci"
4421
 
4422
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4423
- #: app/features/mec/notifications.php:170
4424
- #: app/features/mec/notifications.php:238
4425
- #: app/features/mec/notifications.php:308
4426
- #: app/features/mec/notifications.php:373
4427
- #: app/features/mec/notifications.php:384
4428
- #: app/features/mec/notifications.php:454
4429
- #: app/features/mec/notifications.php:502
4430
  msgid "Insert comma separated emails for multiple recipients."
4431
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
4432
 
4433
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4434
- #: app/features/mec/notifications.php:315
4435
  msgid "Send the email to event organizer"
4436
  msgstr "Pošlete e-mail organizátorovi události"
4437
 
4438
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4439
- #: app/features/mec/notifications.php:180
4440
- #: app/features/mec/notifications.php:256
4441
- #: app/features/mec/notifications.php:318
4442
- #: app/features/mec/notifications.php:390
4443
- #: app/features/mec/notifications.php:460
4444
- #: app/features/mec/notifications.php:508
4445
  msgid "Email Content"
4446
  msgstr "Obsah zprávy"
4447
 
4448
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4449
- #: app/features/mec/notifications.php:183
4450
- #: app/features/mec/notifications.php:259
4451
- #: app/features/mec/notifications.php:321
4452
- #: app/features/mec/notifications.php:393
4453
- #: app/features/mec/notifications.php:463
4454
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4455
  msgid "You can use following placeholders"
4456
  msgstr "Můžete použít následující zástupné symboly"
4457
 
4458
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4459
- #: app/features/mec/notifications.php:185
4460
- #: app/features/mec/notifications.php:261
4461
- #: app/features/mec/notifications.php:323
4462
- #: app/features/mec/notifications.php:395
 
4463
  msgid "First name of attendee"
4464
  msgstr "První jméno účastníka"
4465
 
4466
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4467
- #: app/features/mec/notifications.php:186
4468
- #: app/features/mec/notifications.php:262
4469
- #: app/features/mec/notifications.php:324
4470
- #: app/features/mec/notifications.php:396
 
4471
  msgid "Last name of attendee"
4472
  msgstr "Příjmení účastníka"
4473
 
4474
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4475
- #: app/features/mec/notifications.php:187
4476
- #: app/features/mec/notifications.php:263
4477
- #: app/features/mec/notifications.php:325
4478
- #: app/features/mec/notifications.php:397
 
4479
  msgid "Email of attendee"
4480
  msgstr "Email účastníka"
4481
 
4482
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4483
- #: app/features/mec/notifications.php:188
4484
- #: app/features/mec/notifications.php:264
4485
- #: app/features/mec/notifications.php:326
4486
- #: app/features/mec/notifications.php:398
 
4487
  msgid "Booked date of event"
4488
  msgstr "Datum rezervace akce"
4489
 
4490
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4491
- #: app/features/mec/notifications.php:189
4492
- #: app/features/mec/notifications.php:265
4493
- #: app/features/mec/notifications.php:327
4494
- #: app/features/mec/notifications.php:399
 
4495
  msgid "Booked time of event"
4496
  msgstr "Čas rezervace akce"
4497
 
4498
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4499
- #: app/features/mec/notifications.php:190
4500
- #: app/features/mec/notifications.php:266
4501
- #: app/features/mec/notifications.php:328
4502
- #: app/features/mec/notifications.php:400
 
4503
  msgid "Booking Price"
4504
  msgstr "Cena rezervace"
4505
 
4506
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4507
- #: app/features/mec/notifications.php:191
4508
- #: app/features/mec/notifications.php:267
4509
- #: app/features/mec/notifications.php:329
4510
- #: app/features/mec/notifications.php:401
 
4511
  msgid "Date and time of placing booking"
4512
  msgstr ""
4513
 
4514
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4515
- #: app/features/mec/notifications.php:192
4516
- #: app/features/mec/notifications.php:268
4517
- #: app/features/mec/notifications.php:330
4518
- #: app/features/mec/notifications.php:402
4519
- #: app/features/mec/notifications.php:471
4520
- #: app/features/mec/notifications.php:519
 
4521
  msgid "Your website title"
4522
  msgstr "Název vašeho webu"
4523
 
4524
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4525
- #: app/features/mec/notifications.php:193
4526
- #: app/features/mec/notifications.php:269
4527
- #: app/features/mec/notifications.php:331
4528
- #: app/features/mec/notifications.php:403
4529
- #: app/features/mec/notifications.php:472
4530
- #: app/features/mec/notifications.php:520
 
4531
  msgid "Your website URL"
4532
  msgstr "URL vašeho webu"
4533
 
4534
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4535
- #: app/features/mec/notifications.php:194
4536
- #: app/features/mec/notifications.php:270
4537
- #: app/features/mec/notifications.php:332
4538
- #: app/features/mec/notifications.php:404
4539
- #: app/features/mec/notifications.php:473
4540
- #: app/features/mec/notifications.php:521
 
4541
  msgid "Your website description"
4542
  msgstr "Popis vašeho webu"
4543
 
4544
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4545
- #: app/features/mec/notifications.php:195
4546
- #: app/features/mec/notifications.php:271
4547
- #: app/features/mec/notifications.php:333
4548
- #: app/features/mec/notifications.php:405
 
4549
  msgid "Event title"
4550
  msgstr "Název události"
4551
 
4552
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4553
- #: app/features/mec/notifications.php:196
4554
- #: app/features/mec/notifications.php:272
4555
- #: app/features/mec/notifications.php:334
4556
- #: app/features/mec/notifications.php:406
 
4557
  msgid "Event link"
4558
  msgstr "Odkaz události"
4559
 
4560
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4561
- #: app/features/mec/notifications.php:197
4562
- #: app/features/mec/notifications.php:467
4563
- #: app/features/mec/notifications.php:515
 
4564
  #, fuzzy
4565
  #| msgid "Start Date"
4566
  msgid "Event Start Date"
4567
  msgstr "Počátečná den"
4568
 
4569
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4570
- #: app/features/mec/notifications.php:198
4571
- #: app/features/mec/notifications.php:468
4572
- #: app/features/mec/notifications.php:516
 
4573
  #, fuzzy
4574
  #| msgid "End Date"
4575
  msgid "Event End Date"
4576
  msgstr "Konečný den"
4577
 
4578
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4579
- #: app/features/mec/notifications.php:199
4580
- #: app/features/mec/notifications.php:273
4581
- #: app/features/mec/notifications.php:335
4582
- #: app/features/mec/notifications.php:407
 
4583
  msgid "Speaker name of booked event"
4584
  msgstr "Jméno řečníka rezervované události"
4585
 
4586
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4587
- #: app/features/mec/notifications.php:200
4588
- #: app/features/mec/notifications.php:274
4589
- #: app/features/mec/notifications.php:336
4590
- #: app/features/mec/notifications.php:408
 
4591
  msgid "Organizer name of booked event"
4592
  msgstr "Jméno organizátora rezervované události"
4593
 
4594
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4595
- #: app/features/mec/notifications.php:201
4596
- #: app/features/mec/notifications.php:275
4597
- #: app/features/mec/notifications.php:337
4598
- #: app/features/mec/notifications.php:409
 
4599
  msgid "Organizer tel of booked event"
4600
  msgstr "Telefon organizátora rezervované události"
4601
 
4602
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4603
- #: app/features/mec/notifications.php:202
4604
- #: app/features/mec/notifications.php:276
4605
- #: app/features/mec/notifications.php:338
4606
- #: app/features/mec/notifications.php:410
 
4607
  msgid "Organizer email of booked event"
4608
  msgstr "Email organizátora rezervované události"
4609
 
4610
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4611
- #: app/features/mec/notifications.php:203
4612
- #: app/features/mec/notifications.php:277
4613
- #: app/features/mec/notifications.php:339
4614
- #: app/features/mec/notifications.php:411
 
4615
  msgid "Location name of booked event"
4616
  msgstr "Název místa rezervované události"
4617
 
4618
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4619
- #: app/features/mec/notifications.php:204
4620
- #: app/features/mec/notifications.php:278
4621
- #: app/features/mec/notifications.php:340
4622
- #: app/features/mec/notifications.php:412
 
4623
  msgid "Location address of booked event"
4624
  msgstr "Adresa místa rezervované události"
4625
 
4626
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4627
- #: app/features/mec/notifications.php:205
4628
- #: app/features/mec/notifications.php:279
4629
- #: app/features/mec/notifications.php:341
4630
- #: app/features/mec/notifications.php:413
 
4631
  #, fuzzy
4632
  #| msgid "Speaker name of booked event"
4633
  msgid "Featured image of booked event"
4634
  msgstr "Jméno řečníka rezervované události"
4635
 
4636
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4637
- #: app/features/mec/notifications.php:343
 
4638
  msgid "Full Attendee info such as booking form data, name, email etc."
4639
  msgstr ""
4640
  "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
4641
  "jméno, e-mail atd."
4642
 
4643
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4644
- #: app/features/mec/notifications.php:415
 
4645
  msgid "Invoice Link"
4646
  msgstr "Odkaz na fakturu"
4647
 
4648
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4649
- #: app/features/mec/notifications.php:208
4650
- #: app/features/mec/notifications.php:282
4651
- #: app/features/mec/notifications.php:344
4652
- #: app/features/mec/notifications.php:416
 
4653
  msgid "Total Attendees"
4654
  msgstr "Celkový počet účastníků"
4655
 
4656
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4657
- #: app/features/mec/notifications.php:210
4658
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4659
  msgid "Ticket name"
4660
  msgstr "Název vstupenky"
4661
 
4662
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4663
- #: app/features/mec/notifications.php:211
4664
- #: app/features/mec/notifications.php:418
 
4665
  msgid "Ticket time"
4666
  msgstr "Čas vstupenky"
4667
 
4668
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4669
- #: app/features/mec/notifications.php:212
4670
- #: app/features/mec/notifications.php:419
 
4671
  msgid "Download ICS file"
4672
  msgstr "Stáhnout ICS soubor"
4673
 
4674
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4675
  msgid "Booking Verification"
4676
  msgstr "Ověření rezervace"
4677
 
4678
- #: app/features/mec/notifications.php:103
4679
  msgid "It sends to attendee email for verifying their booking/email."
4680
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
4681
 
4682
- #: app/features/mec/notifications.php:146
4683
  msgid "Email/Booking verification link."
4684
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
4685
 
4686
- #: app/features/mec/notifications.php:159
4687
  msgid "It sends to attendee after confirming the booking by admin."
4688
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
4689
 
4690
- #: app/features/mec/notifications.php:177
4691
  msgid "Send One Single Email Only To First Attendee"
4692
  msgstr ""
4693
 
4694
- #: app/features/mec/notifications.php:206
4695
- #: app/features/mec/notifications.php:414
4696
  msgid "Booking cancellation link."
4697
  msgstr "Odkaz na zrušení rezervace."
4698
 
4699
- #: app/features/mec/notifications.php:209
4700
- msgid "Amount Tickets"
4701
- msgstr "Počet vstupenek"
4702
-
4703
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4704
  msgid "Booking Cancellation"
4705
  msgstr "Zrušení rezervace"
4706
 
4707
- #: app/features/mec/notifications.php:223
4708
  msgid "Enable cancellation notification"
4709
  msgstr "Povolit oznámení o zrušení"
4710
 
4711
- #: app/features/mec/notifications.php:227
4712
  msgid ""
4713
  "It sends to selected recipients after booking cancellation for notifying "
4714
  "them."
4715
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
4716
 
4717
- #: app/features/mec/notifications.php:245
4718
- #: app/features/mec/notifications.php:439
4719
  msgid "Send the email to admin"
4720
  msgstr "Odeslat email administrátorovi"
4721
 
4722
- #: app/features/mec/notifications.php:253
4723
  msgid "Send the email to booking user"
4724
  msgstr "Pošlete rezervační e-mail uživateli"
4725
 
4726
- #: app/features/mec/notifications.php:280
4727
- #: app/features/mec/notifications.php:342
4728
  msgid "Admin booking management link."
4729
  msgstr "Odkaz administrátora na správu rezervace."
4730
 
4731
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4732
  msgid "Admin"
4733
  msgstr "Administrátor"
4734
 
4735
- #: app/features/mec/notifications.php:293
4736
  msgid "Enable admin notification"
4737
  msgstr "Povolit oznámení správce"
4738
 
4739
- #: app/features/mec/notifications.php:297
4740
  msgid "It sends to admin to notify him/her that a new booking received."
4741
  msgstr "Zašle správci informaci o přijetí nové rezervace."
4742
 
4743
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4744
- #: app/libraries/notifications.php:548
4745
  msgid "Booking Reminder"
4746
  msgstr "Připomenutí rezervace"
4747
 
4748
- #: app/features/mec/notifications.php:355
4749
  msgid "Enable booking reminder notification"
4750
  msgstr "Povolit upozornění na připomenutí rezervace"
4751
 
4752
- #: app/features/mec/notifications.php:361
4753
  #, php-format
4754
  msgid ""
4755
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4760,24 +4852,24 @@ msgstr ""
4760
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
4761
  "% s, jinak může zasílat připomenutí několikrát."
4762
 
4763
- #: app/features/mec/notifications.php:361
4764
  msgid "only once per day"
4765
  msgstr "pouze jednou denně"
4766
 
4767
- #: app/features/mec/notifications.php:379
4768
  msgid "Days"
4769
  msgstr "Dny"
4770
 
4771
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4772
  #: app/libraries/main.php:583
4773
  msgid "New Event"
4774
  msgstr "Nová událost"
4775
 
4776
- #: app/features/mec/notifications.php:433
4777
  msgid "Enable new event notification"
4778
  msgstr "Povolit oznámení na novou událost"
4779
 
4780
- #: app/features/mec/notifications.php:443
4781
  msgid ""
4782
  "It sends after adding a new event from frontend event submission or from "
4783
  "website backend."
@@ -4785,41 +4877,41 @@ msgstr ""
4785
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
4786
  "nebo z administrace webových stránek (backend)."
4787
 
4788
- #: app/features/mec/notifications.php:465
4789
- #: app/features/mec/notifications.php:513
4790
  msgid "Title of event"
4791
  msgstr "Název události"
4792
 
4793
- #: app/features/mec/notifications.php:466
4794
- #: app/features/mec/notifications.php:514
4795
  msgid "Link of event"
4796
  msgstr "Odkaz události"
4797
 
4798
- #: app/features/mec/notifications.php:469
4799
- #: app/features/mec/notifications.php:517
4800
  msgid "Status of event"
4801
  msgstr "Stav události"
4802
 
4803
- #: app/features/mec/notifications.php:470
4804
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4805
  #: app/features/mec/settings.php:738
4806
  msgid "Event Note"
4807
  msgstr "Poznámka události"
4808
 
4809
- #: app/features/mec/notifications.php:474
4810
- #: app/features/mec/notifications.php:522
4811
  msgid "Admin events management link."
4812
  msgstr "Odkaz administrátora na správu událostí."
4813
 
4814
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4815
  msgid "User Event Publishing"
4816
  msgstr "Publikování uživatelských událostí"
4817
 
4818
- #: app/features/mec/notifications.php:487
4819
  msgid "Enable user event publishing notification"
4820
  msgstr "Povolit oznámení o zveřejnění události uživatele"
4821
 
4822
- #: app/features/mec/notifications.php:491
4823
  msgid ""
4824
  "It sends after published a new event from frontend event submission or from "
4825
  "website backend."
@@ -4996,7 +5088,7 @@ msgid "You can enable/disable Schema scripts"
4996
  msgstr "Můžete povolit nebo zakázat skripty schématu"
4997
 
4998
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4999
- #: app/libraries/main.php:5272
5000
  msgid "Weekdays"
5001
  msgstr "Pracovní dny"
5002
 
@@ -6222,12 +6314,12 @@ msgstr "např. info@itreseni.cz"
6222
  msgid "eg. https://webnus.net"
6223
  msgstr "např. https://webnus.net"
6224
 
6225
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6226
- #: app/skins/single.php:856
6227
  msgid "Other Organizers"
6228
  msgstr "Další organizátoři"
6229
 
6230
- #: app/features/organizers.php:313
6231
  msgid ""
6232
  "You can select extra organizers in addition to main organizer if you like."
6233
  msgstr ""
@@ -6246,7 +6338,7 @@ msgstr "Vaše rezervace již byla zrušena!"
6246
  msgid "#"
6247
  msgstr "#"
6248
 
6249
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6250
  msgid "Status"
6251
  msgstr "Stav"
6252
 
@@ -6279,7 +6371,7 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
6279
  msgid "No bookings found!"
6280
  msgstr "Nebyly nalezeny žádné rezervace!"
6281
 
6282
- #: app/features/search.php:87 app/libraries/main.php:5262
6283
  msgid "label"
6284
  msgstr "štítek"
6285
 
@@ -6304,60 +6396,78 @@ msgid "No search result."
6304
  msgstr "Žádný výsledek vyhledávání."
6305
 
6306
  #: app/features/search_bar/search_result.php:11
6307
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6308
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6309
- #: app/skins/single.php:160 app/skins/single.php:747
6310
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6311
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6312
  msgid "All of the day"
6313
  msgstr "Celý den"
6314
 
6315
- #: app/features/speakers.php:110 app/features/speakers.php:179
6316
- #: app/features/speakers.php:255
6317
  msgid "Job Title"
6318
  msgstr "Pracovní pozice"
6319
 
6320
- #: app/features/speakers.php:113 app/features/speakers.php:180
6321
  msgid "Insert speaker job title."
6322
  msgstr "Vložte pracovní pozici řečníka."
6323
 
6324
- #: app/features/speakers.php:121 app/features/speakers.php:184
6325
  msgid "Insert speaker phone number."
6326
  msgstr "Vložte telefonní číslo řečníka."
6327
 
6328
- #: app/features/speakers.php:129 app/features/speakers.php:188
6329
  msgid "Insert speaker email address."
6330
  msgstr "Vložte email řečníka."
6331
 
6332
- #: app/features/speakers.php:134 app/features/speakers.php:191
6333
  msgid "Facebook Page"
6334
  msgstr "Stránka na Facebooku"
6335
 
6336
- #: app/features/speakers.php:137 app/features/speakers.php:192
6337
  msgid "Insert URL of Facebook Page"
6338
  msgstr "Vložte URL stránky na Facebooku"
6339
 
6340
- #: app/features/speakers.php:142 app/features/speakers.php:195
6341
  msgid "Instagram"
6342
  msgstr "Instagram"
6343
 
6344
- #: app/features/speakers.php:145 app/features/speakers.php:196
6345
  msgid "Insert URL of Instagram"
6346
  msgstr "Vložte URL Instagramu"
6347
 
6348
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6349
  msgid "Twitter Page"
6350
  msgstr "Stránka na Twitteru"
6351
 
6352
- #: app/features/speakers.php:153 app/features/speakers.php:200
6353
  msgid "Insert URL of Twitter Page"
6354
  msgstr "Vložte URL stránky na Twitteru"
6355
 
6356
- #: app/features/speakers.php:315
 
 
 
 
 
 
6357
  msgid "Sorry, You must insert speaker name!"
6358
  msgstr "Litujeme, musíte zadat jméno řečníka!"
6359
 
6360
- #: app/features/speakers.php:364
6361
  msgid ""
6362
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6363
  "section and speaker widget section!"
@@ -6518,31 +6628,31 @@ msgstr "Zobrazení rozvrhu"
6518
  msgid "Tile View"
6519
  msgstr "Zobrazení rozvrhu"
6520
 
6521
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6522
  msgid "SU"
6523
  msgstr "NE"
6524
 
6525
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6526
  msgid "MO"
6527
  msgstr "PO"
6528
 
6529
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6530
  msgid "TU"
6531
  msgstr "ÚT"
6532
 
6533
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6534
  msgid "WE"
6535
  msgstr "ST"
6536
 
6537
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6538
  msgid "TH"
6539
  msgstr "ČT"
6540
 
6541
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6542
  msgid "FR"
6543
  msgstr "PÁ"
6544
 
6545
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6546
  msgid "SA"
6547
  msgstr "SO"
6548
 
@@ -6804,169 +6914,169 @@ msgstr "Požadavek není platný."
6804
  msgid "iCal export stopped!"
6805
  msgstr "iCal export byl zastaven!"
6806
 
6807
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6808
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6809
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6810
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6811
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6812
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6813
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6814
  msgid "Sort"
6815
  msgstr "Seřadit"
6816
 
6817
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6818
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6819
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6820
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6821
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6822
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6823
  msgid "Required Field"
6824
  msgstr "Požadovaná pole"
6825
 
6826
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6827
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6828
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6829
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6830
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6831
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6832
  msgid "Insert a label for this field"
6833
  msgstr "Vložte štítek pro toto pole"
6834
 
6835
- #: app/libraries/main.php:2958
6836
  msgid "HTML and shortcode are allowed."
6837
  msgstr "HTML a zkrácené kódy jsou povoleny."
6838
 
6839
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
6840
- #: app/libraries/main.php:3089
6841
  msgid "Option"
6842
  msgstr "Možnost"
6843
 
6844
- #: app/libraries/main.php:3123
6845
  #, php-format
6846
  msgid "Instead of %s, the page title with a link will be show."
6847
  msgstr "Místo%s se zobrazí název stránky s odkazem."
6848
 
6849
- #: app/libraries/main.php:3125
6850
  msgid "Agreement Page"
6851
  msgstr "Stránka smlouvy"
6852
 
6853
- #: app/libraries/main.php:3136
6854
  msgid "Checked by default"
6855
  msgstr "Ve výchozím nastavení zaškrtnuto"
6856
 
6857
- #: app/libraries/main.php:3137
6858
  msgid "Unchecked by default"
6859
  msgstr "Ve výchozím nastavení není zaškrtnuto"
6860
 
6861
- #: app/libraries/main.php:3160
6862
  msgid "Insert a label for this option"
6863
  msgstr "Vložte štítek pro tuto možnost"
6864
 
6865
- #: app/libraries/main.php:3175
6866
  msgid "Free"
6867
  msgstr "Zdarma"
6868
 
6869
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
6870
  msgid "M.E. Calender"
6871
  msgstr "M.E. Kalendář"
6872
 
6873
- #: app/libraries/main.php:3936
6874
  #, php-format
6875
  msgid "Copy of %s"
6876
  msgstr "Kopie %s"
6877
 
6878
- #: app/libraries/main.php:4651
6879
  msgid "Booked an event."
6880
  msgstr "Událost byla rezervována."
6881
 
6882
- #: app/libraries/main.php:4692
6883
  #, php-format
6884
  msgid "%s booked %s event."
6885
  msgstr "%s zarezervoval %s událost."
6886
 
6887
- #: app/libraries/main.php:5257
6888
  msgid "Taxonomies"
6889
  msgstr "Taxonomie"
6890
 
6891
  # Mrknout na kontext
6892
- #: app/libraries/main.php:5259
6893
  msgid "Category Plural Label"
6894
  msgstr "Štítek množné kategorie"
6895
 
6896
  # Mrknout na kontext
6897
- #: app/libraries/main.php:5260
6898
  msgid "Category Singular Label"
6899
  msgstr "Štítek jednotné kategorie"
6900
 
6901
- #: app/libraries/main.php:5261
6902
  msgid "Label Plural Label"
6903
  msgstr "Štítek množného štítku"
6904
 
6905
- #: app/libraries/main.php:5262
6906
  msgid "Label Singular Label"
6907
  msgstr "Štítek jednotného štítku"
6908
 
6909
- #: app/libraries/main.php:5263
6910
  msgid "Location Plural Label"
6911
  msgstr "Štítek množného umístění"
6912
 
6913
- #: app/libraries/main.php:5264
6914
  msgid "Location Singular Label"
6915
  msgstr "Štítek jednotného umístění"
6916
 
6917
- #: app/libraries/main.php:5265
6918
  msgid "Organizer Plural Label"
6919
  msgstr "Štítek množného organizátora"
6920
 
6921
- #: app/libraries/main.php:5266
6922
  msgid "Organizer Singular Label"
6923
  msgstr "Štítek jednotného organizátora"
6924
 
6925
- #: app/libraries/main.php:5267
6926
  msgid "Speaker Plural Label"
6927
  msgstr "Štítek množného řečníka"
6928
 
6929
- #: app/libraries/main.php:5268
6930
  msgid "Speaker Singular Label"
6931
  msgstr "Štítek jednotného řečníka"
6932
 
6933
- #: app/libraries/main.php:5274
6934
  msgid "Sunday abbreviation"
6935
  msgstr "Neděle zkratka"
6936
 
6937
- #: app/libraries/main.php:5275
6938
  msgid "Monday abbreviation"
6939
  msgstr "Pondělí zkratka"
6940
 
6941
- #: app/libraries/main.php:5276
6942
  msgid "Tuesday abbreviation"
6943
  msgstr "Úterý zkratka"
6944
 
6945
- #: app/libraries/main.php:5277
6946
  msgid "Wednesday abbreviation"
6947
  msgstr "Středa zkratka"
6948
 
6949
- #: app/libraries/main.php:5278
6950
  msgid "Thursday abbreviation"
6951
  msgstr "Čtvrtek zkratka"
6952
 
6953
- #: app/libraries/main.php:5279
6954
  msgid "Friday abbreviation"
6955
  msgstr "Pátek zkratka"
6956
 
6957
- #: app/libraries/main.php:5280
6958
  msgid "Saturday abbreviation"
6959
  msgstr "Sobota zkratka"
6960
 
6961
- #: app/libraries/main.php:5284
6962
  msgid "Others"
6963
  msgstr "Další"
6964
 
6965
- #: app/libraries/main.php:5286
6966
  msgid "Booking Success Message"
6967
  msgstr "Zpráva o úspěchu rezervace"
6968
 
6969
- #: app/libraries/main.php:5286
6970
  msgid ""
6971
  "Thanks for your booking. Your tickets booked, booking verification might be "
6972
  "needed, please check your email."
@@ -6974,17 +7084,17 @@ msgstr ""
6974
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
6975
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
6976
 
6977
- #: app/libraries/main.php:5287 app/widgets/single.php:131
6978
  msgid "Register Button"
6979
  msgstr "Registrační tlačítko"
6980
 
6981
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
6982
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6983
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6984
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6985
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
6986
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
6987
- #: app/skins/single.php:771 app/skins/single/default.php:255
6988
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
6989
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
6990
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -6995,11 +7105,11 @@ msgstr "Registrační tlačítko"
6995
  msgid "REGISTER"
6996
  msgstr "REGISTROVAT"
6997
 
6998
- #: app/libraries/main.php:5288
6999
  msgid "View Detail Button"
7000
  msgstr "Tlačítko Zobrazit detail"
7001
 
7002
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7003
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7004
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7005
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7010,85 +7120,85 @@ msgstr "Tlačítko Zobrazit detail"
7010
  msgid "View Detail"
7011
  msgstr "Zobrazit detail"
7012
 
7013
- #: app/libraries/main.php:5289
7014
  msgid "Event Detail Button"
7015
  msgstr "Tlačítko Detail události"
7016
 
7017
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7018
  msgid "Event Detail"
7019
  msgstr "Zobrazit událost"
7020
 
7021
- #: app/libraries/main.php:5291
7022
  msgid "More Info Link"
7023
  msgstr "Odkaz na více informací"
7024
 
7025
- #: app/libraries/main.php:5294
7026
  msgid "Ticket (Singular)"
7027
  msgstr "Vstupenka (Jednotné)"
7028
 
7029
- #: app/libraries/main.php:5295
7030
  msgid "Tickets (Plural)"
7031
  msgstr "Vstupenky (Množné)"
7032
 
7033
- #: app/libraries/main.php:5381
7034
  msgid "EventON"
7035
  msgstr "EventON"
7036
 
7037
- #: app/libraries/main.php:5382
7038
  msgid "The Events Calendar"
7039
  msgstr "The Events Calendar"
7040
 
7041
- #: app/libraries/main.php:5383
7042
  msgid "Events Schedule WP Plugin"
7043
  msgstr "Events Schedule WP Plugin"
7044
 
7045
- #: app/libraries/main.php:5384
7046
  msgid "Calendarize It"
7047
  msgstr "Calendarize It"
7048
 
7049
- #: app/libraries/main.php:5385
7050
  #, fuzzy
7051
  #| msgid "Event Speakers"
7052
  msgid "Event Espresso"
7053
  msgstr "Řečník události"
7054
 
7055
- #: app/libraries/main.php:5386
7056
  #, fuzzy
7057
  #| msgid "Event Repeating (Recurring events)"
7058
  msgid "Events Manager (Recurring)"
7059
  msgstr "Opakování události (opakující se události)"
7060
 
7061
- #: app/libraries/main.php:5387
7062
  #, fuzzy
7063
  #| msgid "Modern Events Calendar (Lite)"
7064
  msgid "Events Manager (Single)"
7065
  msgstr "Modern Events Calendar (Lite)"
7066
 
7067
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7068
  msgid "Confirmed"
7069
  msgstr "Potvrzeno"
7070
 
7071
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7072
  msgid "Rejected"
7073
  msgstr "Odmítnuto"
7074
 
7075
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7076
  msgid "Pending"
7077
  msgstr "Nevyřízený"
7078
 
7079
- #: app/libraries/main.php:5511
7080
  msgid "Waiting"
7081
  msgstr "Čekající"
7082
 
7083
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7084
  msgid "Skin controller does not exist."
7085
  msgstr "Ovladač vzhledu neexistuje."
7086
 
7087
- #: app/libraries/main.php:5830
7088
  msgid "Sold Out"
7089
  msgstr "Vyprodáno"
7090
 
7091
- #: app/libraries/main.php:5838
7092
  #, fuzzy
7093
  #| msgid "Ticket"
7094
  msgid "Last Few Tickets"
@@ -7098,54 +7208,56 @@ msgstr "Vstupenka"
7098
  msgid "Please verify your email."
7099
  msgstr "Prosím, ověřte svůj e-mail."
7100
 
7101
- #: app/libraries/notifications.php:142
7102
  msgid "Your booking is received."
7103
  msgstr "Vaše rezervace je přijata."
7104
 
7105
- #: app/libraries/notifications.php:249
7106
  msgid "Your booking is confirmed."
7107
  msgstr "Vaše rezervace je potvrzena."
7108
 
7109
- #: app/libraries/notifications.php:391
7110
  msgid "booking canceled."
7111
  msgstr "rezervace zrušena."
7112
 
7113
- #: app/libraries/notifications.php:466
7114
  msgid "A new booking is received."
7115
  msgstr "Je přijata nová rezervace."
7116
 
7117
- #: app/libraries/notifications.php:657
7118
  msgid "A new event is added."
7119
  msgstr "Je přidána se nová událost."
7120
 
7121
- #: app/libraries/notifications.php:726
7122
  msgid "Your event is published."
7123
  msgstr "Vaše událost je zveřejněna."
7124
 
7125
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7126
- #: app/libraries/notifications.php:964
7127
  msgid "to"
7128
  msgstr "do"
7129
 
7130
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7131
  msgid "+ Add to Google Calendar"
7132
  msgstr "+ Přidat do Google kalendáře"
7133
 
7134
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7135
  msgid "+ iCal export"
7136
  msgstr "+ iCal export"
7137
 
7138
- #: app/libraries/notifications.php:1043
7139
  msgid "Yes"
7140
  msgstr "Ano"
7141
 
7142
- #: app/libraries/notifications.php:1043
7143
  msgid "No"
7144
  msgstr "Ne"
7145
 
7146
- #: app/libraries/skins.php:1000
7147
- msgid "none"
7148
- msgstr ""
 
 
7149
 
7150
  #: app/modules/attendees-list/details.php:36
7151
  msgid "Event Attendees"
@@ -7182,12 +7294,18 @@ msgstr ""
7182
  msgid "Free Booking"
7183
  msgstr "Rezervace zdarma"
7184
 
 
 
 
 
 
 
7185
  #: app/modules/booking/steps/form.php:165
7186
  msgid "Fill other attendees information like the first form."
7187
  msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
7188
 
7189
  #: app/modules/booking/steps/form.php:179
7190
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7191
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7192
  msgid "Next"
7193
  msgstr "Další"
@@ -7200,17 +7318,17 @@ msgstr "Děkujeme za vaši rezervaci."
7200
  msgid "Book Event"
7201
  msgstr "Rezervovat událost"
7202
 
7203
- #: app/modules/booking/steps/tickets.php:44
7204
  #, php-format
7205
  msgid "Available %s: <span>%s</span>"
7206
  msgstr "K dispozici %s: <span>%s</span>"
7207
 
7208
- #: app/modules/booking/steps/tickets.php:48
7209
  #, php-format
7210
- msgid "The %s ticket sales has stoped!"
7211
  msgstr ""
7212
 
7213
- #: app/modules/booking/steps/tickets.php:49
7214
  #, php-format
7215
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7216
  msgstr ""
@@ -7232,7 +7350,7 @@ msgstr "Adresa od ..."
7232
  msgid "Get Directions"
7233
  msgstr "Získat směr"
7234
 
7235
- #: app/modules/links/details.php:17 app/skins/single.php:455
7236
  msgid "Share this event"
7237
  msgstr "Sdílet tuto událost"
7238
 
@@ -7259,7 +7377,7 @@ msgstr "Další výskyt"
7259
  msgid "Go to occurrence page"
7260
  msgstr "Přejít na stránku výskytu"
7261
 
7262
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7263
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7264
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7265
  msgid "Time"
@@ -7385,27 +7503,27 @@ msgstr "Žádné události"
7385
  msgid "Home"
7386
  msgstr "Domů"
7387
 
7388
- #: app/skins/single.php:538 app/skins/single/default.php:51
7389
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7390
  #: app/skins/single/modern.php:265
7391
  msgid "Sold out!"
7392
  msgstr "Vyprodáno!"
7393
 
7394
- #: app/skins/single.php:816 app/skins/single.php:871
7395
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7396
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7397
  #: app/skins/single/modern.php:44
7398
  msgid "Phone"
7399
  msgstr "Telefon"
7400
 
7401
- #: app/skins/single.php:830 app/skins/single.php:885
7402
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7403
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7404
  #: app/skins/single/modern.php:58
7405
  msgid "Website"
7406
  msgstr "Webová stránka"
7407
 
7408
- #: app/skins/single.php:955
7409
  msgid "Speakers:"
7410
  msgstr "Řečník:"
7411
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar Lite\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:48+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: cs_CZ\n"
292
  msgid "Add New Event"
293
  msgstr "Přidat novou událost"
294
 
295
+ #: app/features/events.php:161 app/features/ix.php:3889
296
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
297
  msgid "No events found!"
298
  msgstr "Nebyly nalezeny žádné události!"
327
  #: app/features/mec/meta_boxes/search_form.php:575
328
  #: app/features/mec/meta_boxes/search_form.php:672
329
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
330
+ #: app/features/search.php:67 app/libraries/main.php:5278
331
+ #: app/libraries/skins.php:858 app/skins/single.php:566
332
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
333
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
334
  #: app/skins/single/modern.php:113
337
 
338
  #: app/features/events.php:183 app/features/events.php:3275
339
  #: app/features/fes/form.php:757 app/features/mec.php:402
340
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
341
  msgid "Categories"
342
  msgstr "Kategorie"
343
 
426
  msgstr "Opakování události"
427
 
428
  #: app/features/events.php:333 app/features/events.php:1286
429
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
430
  msgid "Hourly Schedule"
431
  msgstr "Hodinový rozvrh"
432
 
444
 
445
  #: app/features/events.php:336 app/features/events.php:3322
446
  #: app/features/events.php:3513 app/features/events.php:3555
447
+ #: app/features/ix.php:3510 app/features/ix.php:3551
448
  #: app/features/mec/meta_boxes/display_options.php:960
449
  #: app/features/mec/meta_boxes/search_form.php:45
450
  #: app/features/mec/meta_boxes/search_form.php:107
461
  #: app/features/organizers.php:58 app/features/organizers.php:204
462
  #: app/features/organizers.php:260 app/features/organizers.php:262
463
  #: app/features/organizers.php:271 app/features/search.php:75
464
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
465
+ #: app/skins/single.php:812 app/skins/single/default.php:217
466
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
467
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
468
  msgid "Organizer"
469
  msgstr "Organizátor"
470
 
471
  #: app/features/events.php:337 app/features/events.php:1172
472
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
473
+ #: app/skins/single.php:589 app/skins/single/default.php:126
474
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
475
  #: app/skins/single/modern.php:208
476
  msgid "Cost"
488
  #: app/features/events.php:3802 app/features/fes.php:223
489
  #: app/features/fes/form.php:689 app/features/labels.php:178
490
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
491
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
492
  #: app/modules/booking/steps/form.php:37
493
  msgid "Name"
494
  msgstr "Jméno"
498
  #: app/features/fes.php:223 app/features/fes/form.php:685
499
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
500
  #: app/features/organizers.php:111 app/features/organizers.php:152
501
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
502
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
503
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
504
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
505
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
506
+ #: app/skins/single.php:884 app/skins/single/default.php:234
507
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
508
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
509
  msgid "Email"
516
  #: app/features/events.php:491 app/features/events.php:497
517
  #: app/features/events.php:3323 app/features/events.php:3513
518
  #: app/features/events.php:3555 app/features/fes/form.php:247
519
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
520
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
521
  #: app/features/mec/dashboard.php:400
522
  #: app/features/mec/meta_boxes/display_options.php:48
523
  #: app/features/mec/meta_boxes/display_options.php:228
554
  #: app/features/events.php:583 app/features/events.php:588
555
  #: app/features/events.php:3324 app/features/events.php:3513
556
  #: app/features/events.php:3555 app/features/fes/form.php:287
557
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
558
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
559
  #: app/features/mec/dashboard.php:401
560
  msgid "End Date"
561
  msgstr "Konečný den"
635
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
636
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
637
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
638
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
639
+ #: app/features/mec/notifications.php:277
640
+ #: app/features/mec/notifications.php:380
641
+ #: app/features/mec/notifications.php:486
642
+ #: app/features/mec/notifications.php:587
643
+ #: app/features/mec/notifications.php:598
644
+ #: app/features/mec/notifications.php:704
645
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
646
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
647
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
648
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
658
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
659
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
660
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
661
+ #: app/skins/single.php:674 app/skins/single/default.php:141
662
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
663
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
664
  msgid "Read More"
829
 
830
  #: app/features/events.php:1168 app/features/events.php:3513
831
  #: app/features/events.php:3555 app/features/fes/form.php:727
832
+ #: app/features/ix.php:3510 app/features/ix.php:3551
833
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Cena události"
846
  #: app/features/events.php:1204 app/features/events.php:2541
847
  #: app/features/fes.php:223 app/features/mec/booking.php:491
848
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
849
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
850
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
851
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
852
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
853
  msgid "Date"
889
  #: app/features/events.php:1437 app/features/events.php:2322
890
  #: app/features/events.php:2369 app/features/events.php:3319
891
  #: app/features/events.php:3513 app/features/events.php:3555
892
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
893
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
894
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
895
  msgid "Title"
896
  msgstr "Název"
903
  #: app/features/events.php:2357 app/features/events.php:2399
904
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
905
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
906
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
907
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
908
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
909
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
910
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
911
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
912
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
913
  msgid "Remove"
914
  msgstr "Odstranit"
915
 
937
  #: app/features/events.php:1445 app/features/fes/form.php:851
938
  #: app/features/mec.php:410 app/features/mec/modules.php:52
939
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
940
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
941
  #: app/modules/speakers/details.php:18
942
  msgid "Speakers"
943
  msgstr "Řečníci"
952
  msgstr "Odkazy na událost"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
956
  msgid "Event Link"
957
  msgstr "Odkaz na událost"
958
 
976
  msgstr "Zkracovač URL"
977
 
978
  #: app/features/events.php:1495 app/features/events.php:1508
979
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
980
+ #: app/skins/single.php:673 app/skins/single/default.php:140
981
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
982
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
983
  #: app/widgets/single.php:107
1010
 
1011
  #: app/features/events.php:1596 app/features/events.php:1849
1012
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1013
+ #: app/modules/booking/steps/tickets.php:40
1014
  #: app/skins/available_spot/tpl.php:160
1015
  msgid "Unlimited"
1016
  msgstr "Neomezené"
1045
  msgstr "12"
1046
 
1047
  #: app/features/events.php:1653 app/libraries/book.php:60
1048
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1049
  msgid "Tickets"
1050
  msgstr "Vstupenky"
1051
 
1071
 
1072
  #: app/features/events.php:1680 app/features/events.php:1955
1073
  #: app/features/events.php:3513 app/features/events.php:3555
1074
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1075
  msgid "Start Time"
1076
  msgstr "Začátek"
1077
 
1078
  #: app/features/events.php:1739 app/features/events.php:1985
1079
  #: app/features/events.php:3513 app/features/events.php:3555
1080
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1081
  msgid "End Time"
1082
  msgstr "Konec"
1083
 
1109
  msgid "Available Tickets"
1110
  msgstr "Dostupné vstupenky"
1111
 
1112
+ #: app/features/events.php:1853 app/features/events.php:2068
1113
  #, fuzzy
1114
  #| msgid "Maximum Per Ticket"
1115
  msgid "Minimum Ticket e.g. 3"
1116
  msgstr "Maximum na jednu vstupenku"
1117
 
1118
+ #: app/features/events.php:1856 app/features/events.php:2071
1119
  #, fuzzy
1120
  #| msgid "Maximum Per Ticket"
1121
  msgid "MinimumTicket"
1122
  msgstr "Maximum na jednu vstupenku"
1123
 
1124
+ #: app/features/events.php:1858 app/features/events.php:2073
1125
  msgid "Set a number for the minimum ticket reservation"
1126
  msgstr ""
1127
 
1128
+ #: app/features/events.php:1866 app/features/events.php:2081
1129
  msgid "e.g. 0"
1130
  msgstr ""
1131
 
1132
+ #: app/features/events.php:1868 app/features/events.php:2083
1133
  #, fuzzy
1134
  #| msgid "Days"
1135
  msgid "Day"
1136
  msgstr "Dny"
1137
 
1138
+ #: app/features/events.php:1869 app/features/events.php:2084
1139
  msgid "Hour"
1140
  msgstr ""
1141
 
1142
+ #: app/features/events.php:1871 app/features/events.php:2086
1143
  #, php-format
1144
  msgid "Stop selling ticket %s before event start."
1145
  msgstr ""
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
+ #: app/libraries/skins.php:988
1167
  msgid "Label"
1168
  msgstr "Štítek"
1169
 
1229
  msgstr "Maximum na jednu vstupenku. Ponechte to prázdné pro neomezené."
1230
 
1231
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1232
+ #: app/libraries/main.php:2767
1233
  msgid "MEC Name"
1234
  msgstr "MEC Jméno"
1235
 
1236
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1237
+ #: app/libraries/main.php:2796
1238
  msgid "MEC Email"
1239
  msgstr "MEC Email"
1240
 
1241
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1242
+ #: app/libraries/main.php:2737
1243
  msgid "Text"
1244
  msgstr "Text"
1245
 
1246
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1247
  #: app/features/organizers.php:103 app/features/organizers.php:148
1248
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1249
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1250
  msgid "Tel"
1251
  msgstr "Tel"
1252
 
1253
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1254
+ #: app/libraries/main.php:2855
1255
  msgid "File"
1256
  msgstr "Soubor"
1257
 
1258
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1259
+ #: app/libraries/main.php:2942
1260
  msgid "Textarea"
1261
  msgstr "Plocha textu"
1262
 
1263
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1264
+ #: app/libraries/main.php:2995
1265
  msgid "Checkboxes"
1266
  msgstr "Zatržítko"
1267
 
1268
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1269
+ #: app/libraries/main.php:3039
1270
  msgid "Radio Buttons"
1271
  msgstr "Přepínače"
1272
 
1346
  #: app/features/mec/meta_boxes/search_form.php:696
1347
  #: app/features/mec/meta_boxes/search_form.php:703
1348
  #: app/features/mec/meta_boxes/search_form.php:710
1349
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1350
  msgid "Dropdown"
1351
  msgstr "Rozbalovací"
1352
 
1353
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1354
+ #: app/libraries/main.php:3130
1355
  msgid "Agreement"
1356
  msgstr "Smlouva"
1357
 
1358
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1359
+ #: app/libraries/main.php:2971
1360
  msgid "Paragraph"
1361
  msgstr "Paragraf"
1362
 
1385
  msgstr "Limit účastníků"
1386
 
1387
  #: app/features/events.php:3321 app/features/events.php:3513
1388
+ #: app/features/events.php:3555 app/features/ix.php:3510
1389
+ #: app/features/ix.php:3551 app/features/locations.php:58
1390
  #: app/features/locations.php:230 app/features/locations.php:287
1391
  #: app/features/locations.php:289 app/features/locations.php:298
1392
  #: app/features/mec/meta_boxes/display_options.php:959
1403
  #: app/features/mec/meta_boxes/search_form.php:679
1404
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1405
  #: app/features/search.php:71 app/libraries/main.php:2236
1406
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1407
+ #: app/skins/single.php:493 app/skins/single.php:924
1408
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1409
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1410
  #: app/skins/single/modern.php:97
1445
  msgstr "Duplikát"
1446
 
1447
  #: app/features/events.php:3513 app/features/events.php:3555
1448
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1449
  #: app/features/labels.php:177 app/features/locations.php:229
1450
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1451
  msgid "ID"
1452
  msgstr "ID"
1453
 
1454
  #: app/features/events.php:3513 app/features/events.php:3555
1455
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1456
  msgid "Link"
1457
  msgstr "Odkaz"
1458
 
1468
 
1469
  #: app/features/events.php:3808 app/features/fes.php:223
1470
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1471
+ #: app/libraries/main.php:5312
1472
  msgid "Ticket"
1473
  msgstr "Vstupenka"
1474
 
1644
 
1645
  #: app/features/fes/form.php:783 app/features/labels.php:61
1646
  #: app/features/labels.php:221 app/features/mec.php:403
1647
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1648
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1649
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1650
  #: app/skins/single/modern.php:223
1651
  msgid "Labels"
1718
  msgid "The events are imported successfully!"
1719
  msgstr "Události byly úspěšně importovány!"
1720
 
1721
+ #: app/features/ix.php:943
1722
  msgid "Third Party plugin is not installed and activated!"
1723
  msgstr "Plugin třetích stran není nainstalován a aktivován!"
1724
 
1725
+ #: app/features/ix.php:966
1726
  msgid "Third Party plugin is invalid!"
1727
  msgstr "Plugin třetí strany je neplatný!"
1728
 
1729
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1730
  msgid "Both of API key and Calendar ID are required!"
1731
  msgstr "Obě hodnoty: klíč API a ID kalendáře jsou povinné!"
1732
 
1733
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1734
  msgid "Please select some events to import!"
1735
  msgstr "Vyberte události, které chcete importovat!"
1736
 
1737
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1738
  msgid "Both of API key and Group URL are required!"
1739
  msgstr "Obě hodnoty: klíč API a skupina URL jsou povinné!"
1740
 
1741
+ #: app/features/ix.php:3433
1742
  msgid "Check at Meetup"
1743
  msgstr "Ověřit Meetup"
1744
 
1745
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1746
  msgid "Organizer Tel"
1747
  msgstr "Organizátor Tel"
1748
 
1749
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1750
  msgid "Organizer Email"
1751
  msgstr "Organizátor Email"
1752
 
1753
  # Client Secret dle kontextu
1754
+ #: app/features/ix.php:3632
1755
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1756
  msgstr ""
1757
  "Vyžadují se všechny klientské ID, tajné informace klienta a ID kalendáře!"
1758
 
1759
+ #: app/features/ix.php:3655
1760
  #, php-format
1761
  msgid "All seems good! Please click %s for authenticating your app."
1762
  msgstr "Vše vypadá dobře! Klikněte na % s pro ověření vaší aplikace."
1763
 
1764
+ #: app/features/ix.php:3709
1765
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1766
  msgstr ""
1767
  "Všechny klientské aplikace, tajné informace klienta a ID kalendáře jsou "
1768
  "povinné!"
1769
 
1770
+ #: app/features/ix.php:3825
1771
  #, php-format
1772
  msgid "%s events added to Google Calendar successfully."
1773
  msgstr "% s události byly přidané do Google kalendáře úspěšně."
1774
 
1775
+ #: app/features/ix.php:3826
1776
  #, php-format
1777
  msgid "%s previously added events get updated."
1778
  msgstr "% s dříve přidané události byly aktualizovány."
1779
 
1780
+ #: app/features/ix.php:3827
1781
  #, php-format
1782
  msgid "%s events failed to add for following reasons: %s"
1783
  msgstr "% s události se nepodařilo přidat z následujících důvodů: % s"
1784
 
1785
+ #: app/features/ix.php:3859
1786
  msgid "Please insert your Facebook page's link."
1787
  msgstr "Vložte prosím odkaz na svou stránku na Facebooku."
1788
 
1789
+ #: app/features/ix.php:3868
1790
  msgid ""
1791
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1792
  "valid Facebook page link."
1794
  "Vaši facebookovou stránku jsme nemohli rozpoznat. Zkontrolujte to a "
1795
  "poskytněte nám platný odkaz na stránku Facebooku."
1796
 
1797
+ #: app/features/ix.php:3900
1798
  msgid "Please insert your facebook page's link."
1799
  msgstr "Vložte prosím odkaz na svou facebookovou stránku."
1800
 
1801
+ #: app/features/ix.php:3905
1802
  msgid ""
1803
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1804
  "valid facebook page link."
1969
  #: app/features/ix/export_g_calendar.php:72
1970
  #: app/features/ix/export_g_calendar.php:147
1971
  #: app/features/ix/export_g_calendar.php:164
1972
+ #: app/features/mec/notifications.php:131
1973
+ #: app/features/mec/notifications.php:223
1974
+ #: app/features/mec/notifications.php:320
1975
+ #: app/features/mec/notifications.php:635
1976
  msgid "Add to Google Calendar"
1977
  msgstr "Přidat do Google kalendáře"
1978
 
1979
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1980
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1981
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1982
  msgid "Checking ..."
1983
  msgstr "Ověřování ..."
2232
 
2233
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2234
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2235
+ #: app/features/mec/notifications.php:540
2236
  msgid "Important Note"
2237
  msgstr "Důležitá poznámka"
2238
 
2418
  msgstr "Ztvárněná"
2419
 
2420
  #: app/features/labels.php:118 app/features/labels.php:143
2421
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2422
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2423
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2424
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2437
  msgstr "Vybrané a zrušené události můžete zobrazit jiným stylem!"
2438
 
2439
  #: app/features/labels.php:180 app/features/locations.php:232
2440
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2441
  #: app/modules/booking/steps/tickets.php:38
2442
  msgid "Count"
2443
  msgstr "Spočítat"
2455
 
2456
  #: app/features/locations.php:59 app/features/mec.php:404
2457
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2458
+ #: app/libraries/main.php:5281
2459
  msgid "Locations"
2460
  msgstr "Umístění"
2461
 
2488
 
2489
  #: app/features/locations.php:138 app/features/locations.php:180
2490
  #: app/features/organizers.php:127 app/features/organizers.php:160
2491
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2492
  msgid "Thumbnail"
2493
  msgstr "Náhled"
2494
 
2495
  #: app/features/locations.php:143 app/features/locations.php:183
2496
  #: app/features/organizers.php:132 app/features/organizers.php:163
2497
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2498
  msgid "Upload/Add image"
2499
  msgstr "Nahrát / přidat obrázek"
2500
 
2502
  #: app/features/locations.php:340 app/features/locations.php:347
2503
  #: app/features/organizers.php:133 app/features/organizers.php:164
2504
  #: app/features/organizers.php:299 app/features/organizers.php:306
2505
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2506
  msgid "Remove image"
2507
  msgstr "Odebrat obrázek"
2508
 
2565
  msgid "Don't show map in single event page"
2566
  msgstr "Nezobrazovat mapu na jednostránkové události"
2567
 
2568
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2569
  msgid "Other Locations"
2570
  msgstr "Další místa"
2571
 
2591
  msgid "Troubleshooting"
2592
  msgstr "Odstraňování problémů"
2593
 
2594
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2595
  #, php-format
2596
  msgid "%s to %s"
2597
  msgstr ""
2623
 
2624
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2625
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2626
+ #: app/libraries/main.php:5283
2627
  msgid "Organizers"
2628
  msgstr "Organizátoři"
2629
 
2744
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2745
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2746
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2747
+ #: app/features/mec/notifications.php:816
2748
+ #: app/features/mec/notifications.php:828
2749
+ #: app/features/mec/notifications.php:924
2750
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2751
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2752
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2753
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2870
  msgid "Enable Express Attendees Form"
2871
  msgstr "Povolit formulář Expres účastníci"
2872
 
2873
+ #: app/features/mec/booking.php:186
2874
  msgid "Attendees Form"
2875
  msgstr "Formulář účastníků"
2876
 
2902
  msgid "Auto verification for paid bookings"
2903
  msgstr "Automatické ověření pro placené rezervace"
2904
 
2905
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2906
  #: app/libraries/main.php:579
2907
  msgid "Booking Confirmation"
2908
  msgstr "Potvrzení rezervace"
2968
  "údaje pro povolené brány pro události a přijímat platby přímo!"
2969
 
2970
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2971
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2972
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2973
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2974
  msgid "Saved"
2975
  msgstr "Uloženo"
2976
 
2977
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2978
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2979
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2980
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2981
  msgid "Settings Saved!"
2983
 
2984
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2985
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2986
+ #: app/features/mec/notifications.php:905
2987
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2988
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2989
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
2990
  msgid "Verified"
2991
  msgstr "Ověřeno"
2992
 
2993
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2994
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
2995
  #: app/features/mec/single.php:291
2996
  msgid "Please Refresh Page"
2997
  msgstr "Prosím obnovte stránku"
4114
  #: app/features/mec/meta_boxes/search_form.php:693
4115
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4116
  #: app/features/search.php:79 app/features/speakers.php:61
4117
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4118
+ #: app/libraries/skins.php:936
4119
  msgid "Speaker"
4120
  msgstr "Řečník"
4121
 
4131
  #: app/features/mec/meta_boxes/search_form.php:603
4132
  #: app/features/mec/meta_boxes/search_form.php:700
4133
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4134
+ #: app/features/search.php:83 app/libraries/skins.php:962
4135
  msgid "Tag"
4136
  msgstr "Štítek"
4137
 
4391
  msgid "It sends to attendee after booking for notifying him/her."
4392
  msgstr "Po rezervaci odešle účastníkovi informační upozornění."
4393
 
4394
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4395
+ #: app/features/mec/notifications.php:233
4396
+ #: app/features/mec/notifications.php:336
4397
+ #: app/features/mec/notifications.php:442
4398
+ #: app/features/mec/notifications.php:543
4399
+ #: app/features/mec/notifications.php:660
4400
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4401
  msgid "Email Subject"
4402
  msgstr "Předmět emailové zprávy"
4403
 
4404
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4405
+ #: app/features/mec/notifications.php:147
4406
+ #: app/features/mec/notifications.php:154
4407
+ #: app/features/mec/notifications.php:239
4408
+ #: app/features/mec/notifications.php:246
4409
+ #: app/features/mec/notifications.php:342
4410
+ #: app/features/mec/notifications.php:349
4411
+ #: app/features/mec/notifications.php:448
4412
+ #: app/features/mec/notifications.php:455
4413
+ #: app/features/mec/notifications.php:549
4414
+ #: app/features/mec/notifications.php:556
4415
+ #: app/features/mec/notifications.php:666
4416
+ #: app/features/mec/notifications.php:673
4417
+ #: app/features/mec/notifications.php:749
4418
+ #: app/features/mec/notifications.php:756
4419
+ msgid "Receiver Users"
4420
+ msgstr ""
4421
+
4422
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4423
+ #: app/features/mec/notifications.php:247
4424
+ #: app/features/mec/notifications.php:350
4425
+ #: app/features/mec/notifications.php:456
4426
+ #: app/features/mec/notifications.php:557
4427
+ #: app/features/mec/notifications.php:674
4428
+ #: app/features/mec/notifications.php:757
4429
+ msgid "Select your desired users to send a copy of email to them!"
4430
+ msgstr ""
4431
+
4432
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4433
+ #: app/features/mec/notifications.php:164
4434
+ #: app/features/mec/notifications.php:171
4435
+ #: app/features/mec/notifications.php:256
4436
+ #: app/features/mec/notifications.php:263
4437
+ #: app/features/mec/notifications.php:359
4438
+ #: app/features/mec/notifications.php:366
4439
+ #: app/features/mec/notifications.php:465
4440
+ #: app/features/mec/notifications.php:472
4441
+ #: app/features/mec/notifications.php:566
4442
+ #: app/features/mec/notifications.php:573
4443
+ #: app/features/mec/notifications.php:683
4444
+ #: app/features/mec/notifications.php:690
4445
+ #: app/features/mec/notifications.php:766
4446
+ #: app/features/mec/notifications.php:773
4447
+ msgid "Receiver Roles"
4448
+ msgstr ""
4449
+
4450
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4451
+ #: app/features/mec/notifications.php:264
4452
+ #: app/features/mec/notifications.php:367
4453
+ #: app/features/mec/notifications.php:473
4454
+ #: app/features/mec/notifications.php:574
4455
+ #: app/features/mec/notifications.php:691
4456
+ #: app/features/mec/notifications.php:774
4457
+ msgid "Select users a specific role."
4458
+ msgstr ""
4459
+
4460
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4461
+ #: app/features/mec/notifications.php:180
4462
+ #: app/features/mec/notifications.php:184
4463
+ #: app/features/mec/notifications.php:272
4464
+ #: app/features/mec/notifications.php:276
4465
+ #: app/features/mec/notifications.php:375
4466
+ #: app/features/mec/notifications.php:379
4467
+ #: app/features/mec/notifications.php:481
4468
+ #: app/features/mec/notifications.php:485
4469
+ #: app/features/mec/notifications.php:582
4470
+ #: app/features/mec/notifications.php:586
4471
+ #: app/features/mec/notifications.php:597
4472
+ #: app/features/mec/notifications.php:699
4473
+ #: app/features/mec/notifications.php:703
4474
+ #: app/features/mec/notifications.php:782
4475
+ #: app/features/mec/notifications.php:786
4476
  msgid "Custom Recipients"
4477
  msgstr "Vlastní příjemci"
4478
 
4479
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4480
+ #: app/features/mec/notifications.php:277
4481
+ #: app/features/mec/notifications.php:380
4482
+ #: app/features/mec/notifications.php:486
4483
+ #: app/features/mec/notifications.php:587
4484
+ #: app/features/mec/notifications.php:598
4485
+ #: app/features/mec/notifications.php:704
4486
+ #: app/features/mec/notifications.php:787
4487
  msgid "Insert comma separated emails for multiple recipients."
4488
  msgstr "Vložte e-maily oddělené čárkami pro více příjemců."
4489
 
4490
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4491
+ #: app/features/mec/notifications.php:493
4492
  msgid "Send the email to event organizer"
4493
  msgstr "Pošlete e-mail organizátorovi události"
4494
 
4495
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4496
+ #: app/features/mec/notifications.php:287
4497
+ #: app/features/mec/notifications.php:398
4498
+ #: app/features/mec/notifications.php:496
4499
+ #: app/features/mec/notifications.php:604
4500
+ #: app/features/mec/notifications.php:710
4501
+ #: app/features/mec/notifications.php:793
4502
  msgid "Email Content"
4503
  msgstr "Obsah zprávy"
4504
 
4505
+ #: app/features/mec/notifications.php:101
4506
+ #: app/features/mec/notifications.php:194
4507
+ #: app/features/mec/notifications.php:290
4508
+ #: app/features/mec/notifications.php:401
4509
+ #: app/features/mec/notifications.php:499
4510
+ #: app/features/mec/notifications.php:607
4511
+ #: app/features/mec/notifications.php:713
4512
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4513
  msgid "You can use following placeholders"
4514
  msgstr "Můžete použít následující zástupné symboly"
4515
 
4516
+ #: app/features/mec/notifications.php:103
4517
+ #: app/features/mec/notifications.php:196
4518
+ #: app/features/mec/notifications.php:292
4519
+ #: app/features/mec/notifications.php:403
4520
+ #: app/features/mec/notifications.php:501
4521
+ #: app/features/mec/notifications.php:609
4522
  msgid "First name of attendee"
4523
  msgstr "První jméno účastníka"
4524
 
4525
+ #: app/features/mec/notifications.php:104
4526
+ #: app/features/mec/notifications.php:197
4527
+ #: app/features/mec/notifications.php:293
4528
+ #: app/features/mec/notifications.php:404
4529
+ #: app/features/mec/notifications.php:502
4530
+ #: app/features/mec/notifications.php:610
4531
  msgid "Last name of attendee"
4532
  msgstr "Příjmení účastníka"
4533
 
4534
+ #: app/features/mec/notifications.php:105
4535
+ #: app/features/mec/notifications.php:198
4536
+ #: app/features/mec/notifications.php:294
4537
+ #: app/features/mec/notifications.php:405
4538
+ #: app/features/mec/notifications.php:503
4539
+ #: app/features/mec/notifications.php:611
4540
  msgid "Email of attendee"
4541
  msgstr "Email účastníka"
4542
 
4543
+ #: app/features/mec/notifications.php:106
4544
+ #: app/features/mec/notifications.php:199
4545
+ #: app/features/mec/notifications.php:295
4546
+ #: app/features/mec/notifications.php:406
4547
+ #: app/features/mec/notifications.php:504
4548
+ #: app/features/mec/notifications.php:612
4549
  msgid "Booked date of event"
4550
  msgstr "Datum rezervace akce"
4551
 
4552
+ #: app/features/mec/notifications.php:107
4553
+ #: app/features/mec/notifications.php:200
4554
+ #: app/features/mec/notifications.php:296
4555
+ #: app/features/mec/notifications.php:407
4556
+ #: app/features/mec/notifications.php:505
4557
+ #: app/features/mec/notifications.php:613
4558
  msgid "Booked time of event"
4559
  msgstr "Čas rezervace akce"
4560
 
4561
+ #: app/features/mec/notifications.php:108
4562
+ #: app/features/mec/notifications.php:201
4563
+ #: app/features/mec/notifications.php:297
4564
+ #: app/features/mec/notifications.php:408
4565
+ #: app/features/mec/notifications.php:506
4566
+ #: app/features/mec/notifications.php:614
4567
  msgid "Booking Price"
4568
  msgstr "Cena rezervace"
4569
 
4570
+ #: app/features/mec/notifications.php:109
4571
+ #: app/features/mec/notifications.php:202
4572
+ #: app/features/mec/notifications.php:298
4573
+ #: app/features/mec/notifications.php:409
4574
+ #: app/features/mec/notifications.php:507
4575
+ #: app/features/mec/notifications.php:615
4576
  msgid "Date and time of placing booking"
4577
  msgstr ""
4578
 
4579
+ #: app/features/mec/notifications.php:110
4580
+ #: app/features/mec/notifications.php:203
4581
+ #: app/features/mec/notifications.php:299
4582
+ #: app/features/mec/notifications.php:410
4583
+ #: app/features/mec/notifications.php:508
4584
+ #: app/features/mec/notifications.php:616
4585
+ #: app/features/mec/notifications.php:721
4586
+ #: app/features/mec/notifications.php:804
4587
  msgid "Your website title"
4588
  msgstr "Název vašeho webu"
4589
 
4590
+ #: app/features/mec/notifications.php:111
4591
+ #: app/features/mec/notifications.php:204
4592
+ #: app/features/mec/notifications.php:300
4593
+ #: app/features/mec/notifications.php:411
4594
+ #: app/features/mec/notifications.php:509
4595
+ #: app/features/mec/notifications.php:617
4596
+ #: app/features/mec/notifications.php:722
4597
+ #: app/features/mec/notifications.php:805
4598
  msgid "Your website URL"
4599
  msgstr "URL vašeho webu"
4600
 
4601
+ #: app/features/mec/notifications.php:112
4602
+ #: app/features/mec/notifications.php:205
4603
+ #: app/features/mec/notifications.php:301
4604
+ #: app/features/mec/notifications.php:412
4605
+ #: app/features/mec/notifications.php:510
4606
+ #: app/features/mec/notifications.php:618
4607
+ #: app/features/mec/notifications.php:723
4608
+ #: app/features/mec/notifications.php:806
4609
  msgid "Your website description"
4610
  msgstr "Popis vašeho webu"
4611
 
4612
+ #: app/features/mec/notifications.php:113
4613
+ #: app/features/mec/notifications.php:206
4614
+ #: app/features/mec/notifications.php:302
4615
+ #: app/features/mec/notifications.php:413
4616
+ #: app/features/mec/notifications.php:511
4617
+ #: app/features/mec/notifications.php:619
4618
  msgid "Event title"
4619
  msgstr "Název události"
4620
 
4621
+ #: app/features/mec/notifications.php:114
4622
+ #: app/features/mec/notifications.php:207
4623
+ #: app/features/mec/notifications.php:303
4624
+ #: app/features/mec/notifications.php:414
4625
+ #: app/features/mec/notifications.php:512
4626
+ #: app/features/mec/notifications.php:620
4627
  msgid "Event link"
4628
  msgstr "Odkaz události"
4629
 
4630
+ #: app/features/mec/notifications.php:115
4631
+ #: app/features/mec/notifications.php:208
4632
+ #: app/features/mec/notifications.php:304
4633
+ #: app/features/mec/notifications.php:717
4634
+ #: app/features/mec/notifications.php:800
4635
  #, fuzzy
4636
  #| msgid "Start Date"
4637
  msgid "Event Start Date"
4638
  msgstr "Počátečná den"
4639
 
4640
+ #: app/features/mec/notifications.php:116
4641
+ #: app/features/mec/notifications.php:209
4642
+ #: app/features/mec/notifications.php:305
4643
+ #: app/features/mec/notifications.php:718
4644
+ #: app/features/mec/notifications.php:801
4645
  #, fuzzy
4646
  #| msgid "End Date"
4647
  msgid "Event End Date"
4648
  msgstr "Konečný den"
4649
 
4650
+ #: app/features/mec/notifications.php:117
4651
+ #: app/features/mec/notifications.php:210
4652
+ #: app/features/mec/notifications.php:306
4653
+ #: app/features/mec/notifications.php:415
4654
+ #: app/features/mec/notifications.php:513
4655
+ #: app/features/mec/notifications.php:621
4656
  msgid "Speaker name of booked event"
4657
  msgstr "Jméno řečníka rezervované události"
4658
 
4659
+ #: app/features/mec/notifications.php:118
4660
+ #: app/features/mec/notifications.php:211
4661
+ #: app/features/mec/notifications.php:307
4662
+ #: app/features/mec/notifications.php:416
4663
+ #: app/features/mec/notifications.php:514
4664
+ #: app/features/mec/notifications.php:622
4665
  msgid "Organizer name of booked event"
4666
  msgstr "Jméno organizátora rezervované události"
4667
 
4668
+ #: app/features/mec/notifications.php:119
4669
+ #: app/features/mec/notifications.php:212
4670
+ #: app/features/mec/notifications.php:308
4671
+ #: app/features/mec/notifications.php:417
4672
+ #: app/features/mec/notifications.php:515
4673
+ #: app/features/mec/notifications.php:623
4674
  msgid "Organizer tel of booked event"
4675
  msgstr "Telefon organizátora rezervované události"
4676
 
4677
+ #: app/features/mec/notifications.php:120
4678
+ #: app/features/mec/notifications.php:213
4679
+ #: app/features/mec/notifications.php:309
4680
+ #: app/features/mec/notifications.php:418
4681
+ #: app/features/mec/notifications.php:516
4682
+ #: app/features/mec/notifications.php:624
4683
  msgid "Organizer email of booked event"
4684
  msgstr "Email organizátora rezervované události"
4685
 
4686
+ #: app/features/mec/notifications.php:121
4687
+ #: app/features/mec/notifications.php:214
4688
+ #: app/features/mec/notifications.php:310
4689
+ #: app/features/mec/notifications.php:419
4690
+ #: app/features/mec/notifications.php:517
4691
+ #: app/features/mec/notifications.php:625
4692
  msgid "Location name of booked event"
4693
  msgstr "Název místa rezervované události"
4694
 
4695
+ #: app/features/mec/notifications.php:122
4696
+ #: app/features/mec/notifications.php:215
4697
+ #: app/features/mec/notifications.php:311
4698
+ #: app/features/mec/notifications.php:420
4699
+ #: app/features/mec/notifications.php:518
4700
+ #: app/features/mec/notifications.php:626
4701
  msgid "Location address of booked event"
4702
  msgstr "Adresa místa rezervované události"
4703
 
4704
+ #: app/features/mec/notifications.php:123
4705
+ #: app/features/mec/notifications.php:216
4706
+ #: app/features/mec/notifications.php:312
4707
+ #: app/features/mec/notifications.php:421
4708
+ #: app/features/mec/notifications.php:519
4709
+ #: app/features/mec/notifications.php:627
4710
  #, fuzzy
4711
  #| msgid "Speaker name of booked event"
4712
  msgid "Featured image of booked event"
4713
  msgstr "Jméno řečníka rezervované události"
4714
 
4715
+ #: app/features/mec/notifications.php:124
4716
+ #: app/features/mec/notifications.php:423
4717
+ #: app/features/mec/notifications.php:521
4718
  msgid "Full Attendee info such as booking form data, name, email etc."
4719
  msgstr ""
4720
  "Úplné informace o účastnících, jako jsou údaje z rezervačního formuláře, "
4721
  "jméno, e-mail atd."
4722
 
4723
+ #: app/features/mec/notifications.php:125
4724
+ #: app/features/mec/notifications.php:314
4725
+ #: app/features/mec/notifications.php:629
4726
  msgid "Invoice Link"
4727
  msgstr "Odkaz na fakturu"
4728
 
4729
+ #: app/features/mec/notifications.php:126
4730
+ #: app/features/mec/notifications.php:218
4731
+ #: app/features/mec/notifications.php:315
4732
+ #: app/features/mec/notifications.php:424
4733
+ #: app/features/mec/notifications.php:522
4734
+ #: app/features/mec/notifications.php:630
4735
  msgid "Total Attendees"
4736
  msgstr "Celkový počet účastníků"
4737
 
4738
+ #: app/features/mec/notifications.php:127
4739
+ #: app/features/mec/notifications.php:219
4740
+ #: app/features/mec/notifications.php:316
4741
+ #: app/features/mec/notifications.php:425
4742
+ #: app/features/mec/notifications.php:523
4743
+ #: app/features/mec/notifications.php:631
4744
+ #, fuzzy
4745
+ #| msgid "Amount Tickets"
4746
+ msgid "Amount of Booked Tickets"
4747
+ msgstr "Počet vstupenek"
4748
+
4749
+ #: app/features/mec/notifications.php:128
4750
+ #: app/features/mec/notifications.php:220
4751
+ #: app/features/mec/notifications.php:317
4752
+ #: app/features/mec/notifications.php:632
4753
  msgid "Ticket name"
4754
  msgstr "Název vstupenky"
4755
 
4756
+ #: app/features/mec/notifications.php:129
4757
+ #: app/features/mec/notifications.php:221
4758
+ #: app/features/mec/notifications.php:318
4759
+ #: app/features/mec/notifications.php:633
4760
  msgid "Ticket time"
4761
  msgstr "Čas vstupenky"
4762
 
4763
+ #: app/features/mec/notifications.php:130
4764
+ #: app/features/mec/notifications.php:222
4765
+ #: app/features/mec/notifications.php:319
4766
+ #: app/features/mec/notifications.php:634
4767
  msgid "Download ICS file"
4768
  msgstr "Stáhnout ICS soubor"
4769
 
4770
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4771
  msgid "Booking Verification"
4772
  msgstr "Ověření rezervace"
4773
 
4774
+ #: app/features/mec/notifications.php:139
4775
  msgid "It sends to attendee email for verifying their booking/email."
4776
  msgstr "Odesílá e-mail účastníkovi k ověření jeho rezervace / e-mailu."
4777
 
4778
+ #: app/features/mec/notifications.php:217
4779
  msgid "Email/Booking verification link."
4780
  msgstr "Ověřovací odkaz E-mailu / Rezervace."
4781
 
4782
+ #: app/features/mec/notifications.php:231
4783
  msgid "It sends to attendee after confirming the booking by admin."
4784
  msgstr "Po potvrzení rezervace od administrátora odešle účastníkovi."
4785
 
4786
+ #: app/features/mec/notifications.php:284
4787
  msgid "Send One Single Email Only To First Attendee"
4788
  msgstr ""
4789
 
4790
+ #: app/features/mec/notifications.php:313
4791
+ #: app/features/mec/notifications.php:628
4792
  msgid "Booking cancellation link."
4793
  msgstr "Odkaz na zrušení rezervace."
4794
 
4795
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
4796
  msgid "Booking Cancellation"
4797
  msgstr "Zrušení rezervace"
4798
 
4799
+ #: app/features/mec/notifications.php:330
4800
  msgid "Enable cancellation notification"
4801
  msgstr "Povolit oznámení o zrušení"
4802
 
4803
+ #: app/features/mec/notifications.php:334
4804
  msgid ""
4805
  "It sends to selected recipients after booking cancellation for notifying "
4806
  "them."
4807
  msgstr "Po zrušení rezervace odešle vybraným příjemcům upozornění."
4808
 
4809
+ #: app/features/mec/notifications.php:387
4810
+ #: app/features/mec/notifications.php:654
4811
  msgid "Send the email to admin"
4812
  msgstr "Odeslat email administrátorovi"
4813
 
4814
+ #: app/features/mec/notifications.php:395
4815
  msgid "Send the email to booking user"
4816
  msgstr "Pošlete rezervační e-mail uživateli"
4817
 
4818
+ #: app/features/mec/notifications.php:422
4819
+ #: app/features/mec/notifications.php:520
4820
  msgid "Admin booking management link."
4821
  msgstr "Odkaz administrátora na správu rezervace."
4822
 
4823
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4824
  msgid "Admin"
4825
  msgstr "Administrátor"
4826
 
4827
+ #: app/features/mec/notifications.php:436
4828
  msgid "Enable admin notification"
4829
  msgstr "Povolit oznámení správce"
4830
 
4831
+ #: app/features/mec/notifications.php:440
4832
  msgid "It sends to admin to notify him/her that a new booking received."
4833
  msgstr "Zašle správci informaci o přijetí nové rezervace."
4834
 
4835
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4836
+ #: app/libraries/notifications.php:603
4837
  msgid "Booking Reminder"
4838
  msgstr "Připomenutí rezervace"
4839
 
4840
+ #: app/features/mec/notifications.php:534
4841
  msgid "Enable booking reminder notification"
4842
  msgstr "Povolit upozornění na připomenutí rezervace"
4843
 
4844
+ #: app/features/mec/notifications.php:540
4845
  #, php-format
4846
  msgid ""
4847
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4852
  "zasílat připomenutí. Mějte na paměti, že byste měli zavolat tento soubor "
4853
  "% s, jinak může zasílat připomenutí několikrát."
4854
 
4855
+ #: app/features/mec/notifications.php:540
4856
  msgid "only once per day"
4857
  msgstr "pouze jednou denně"
4858
 
4859
+ #: app/features/mec/notifications.php:593
4860
  msgid "Days"
4861
  msgstr "Dny"
4862
 
4863
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4864
  #: app/libraries/main.php:583
4865
  msgid "New Event"
4866
  msgstr "Nová událost"
4867
 
4868
+ #: app/features/mec/notifications.php:648
4869
  msgid "Enable new event notification"
4870
  msgstr "Povolit oznámení na novou událost"
4871
 
4872
+ #: app/features/mec/notifications.php:658
4873
  msgid ""
4874
  "It sends after adding a new event from frontend event submission or from "
4875
  "website backend."
4877
  "Odesílá se po přidání nové události z webových stránek události (frontend) "
4878
  "nebo z administrace webových stránek (backend)."
4879
 
4880
+ #: app/features/mec/notifications.php:715
4881
+ #: app/features/mec/notifications.php:798
4882
  msgid "Title of event"
4883
  msgstr "Název události"
4884
 
4885
+ #: app/features/mec/notifications.php:716
4886
+ #: app/features/mec/notifications.php:799
4887
  msgid "Link of event"
4888
  msgstr "Odkaz události"
4889
 
4890
+ #: app/features/mec/notifications.php:719
4891
+ #: app/features/mec/notifications.php:802
4892
  msgid "Status of event"
4893
  msgstr "Stav události"
4894
 
4895
+ #: app/features/mec/notifications.php:720
4896
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4897
  #: app/features/mec/settings.php:738
4898
  msgid "Event Note"
4899
  msgstr "Poznámka události"
4900
 
4901
+ #: app/features/mec/notifications.php:724
4902
+ #: app/features/mec/notifications.php:807
4903
  msgid "Admin events management link."
4904
  msgstr "Odkaz administrátora na správu událostí."
4905
 
4906
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4907
  msgid "User Event Publishing"
4908
  msgstr "Publikování uživatelských událostí"
4909
 
4910
+ #: app/features/mec/notifications.php:737
4911
  msgid "Enable user event publishing notification"
4912
  msgstr "Povolit oznámení o zveřejnění události uživatele"
4913
 
4914
+ #: app/features/mec/notifications.php:741
4915
  msgid ""
4916
  "It sends after published a new event from frontend event submission or from "
4917
  "website backend."
5088
  msgstr "Můžete povolit nebo zakázat skripty schématu"
5089
 
5090
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5091
+ #: app/libraries/main.php:5290
5092
  msgid "Weekdays"
5093
  msgstr "Pracovní dny"
5094
 
6314
  msgid "eg. https://webnus.net"
6315
  msgstr "např. https://webnus.net"
6316
 
6317
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6318
+ #: app/skins/single.php:862
6319
  msgid "Other Organizers"
6320
  msgstr "Další organizátoři"
6321
 
6322
+ #: app/features/organizers.php:314
6323
  msgid ""
6324
  "You can select extra organizers in addition to main organizer if you like."
6325
  msgstr ""
6338
  msgid "#"
6339
  msgstr "#"
6340
 
6341
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6342
  msgid "Status"
6343
  msgstr "Stav"
6344
 
6371
  msgid "No bookings found!"
6372
  msgstr "Nebyly nalezeny žádné rezervace!"
6373
 
6374
+ #: app/features/search.php:87 app/libraries/main.php:5280
6375
  msgid "label"
6376
  msgstr "štítek"
6377
 
6396
  msgstr "Žádný výsledek vyhledávání."
6397
 
6398
  #: app/features/search_bar/search_result.php:11
6399
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6400
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6401
+ #: app/skins/single.php:160 app/skins/single.php:753
6402
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6403
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6404
  msgid "All of the day"
6405
  msgstr "Celý den"
6406
 
6407
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6408
+ #: app/features/speakers.php:270
6409
  msgid "Job Title"
6410
  msgstr "Pracovní pozice"
6411
 
6412
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6413
  msgid "Insert speaker job title."
6414
  msgstr "Vložte pracovní pozici řečníka."
6415
 
6416
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6417
  msgid "Insert speaker phone number."
6418
  msgstr "Vložte telefonní číslo řečníka."
6419
 
6420
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6421
  msgid "Insert speaker email address."
6422
  msgstr "Vložte email řečníka."
6423
 
6424
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6425
  msgid "Facebook Page"
6426
  msgstr "Stránka na Facebooku"
6427
 
6428
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6429
  msgid "Insert URL of Facebook Page"
6430
  msgstr "Vložte URL stránky na Facebooku"
6431
 
6432
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6433
  msgid "Instagram"
6434
  msgstr "Instagram"
6435
 
6436
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6437
  msgid "Insert URL of Instagram"
6438
  msgstr "Vložte URL Instagramu"
6439
 
6440
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6441
+ #, fuzzy
6442
+ #| msgid "Linkedin"
6443
+ msgid "LinkedIn"
6444
+ msgstr "Linkedin"
6445
+
6446
+ #: app/features/speakers.php:154
6447
+ #, fuzzy
6448
+ #| msgid "Insert URL of Instagram"
6449
+ msgid "Insert URL of LinkedIn"
6450
+ msgstr "Vložte URL Instagramu"
6451
+
6452
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6453
  msgid "Twitter Page"
6454
  msgstr "Stránka na Twitteru"
6455
 
6456
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6457
  msgid "Insert URL of Twitter Page"
6458
  msgstr "Vložte URL stránky na Twitteru"
6459
 
6460
+ #: app/features/speakers.php:209
6461
+ #, fuzzy
6462
+ #| msgid "Insert URL of Instagram"
6463
+ msgid "Insert URL of linkedin"
6464
+ msgstr "Vložte URL Instagramu"
6465
+
6466
+ #: app/features/speakers.php:330
6467
  msgid "Sorry, You must insert speaker name!"
6468
  msgstr "Litujeme, musíte zadat jméno řečníka!"
6469
 
6470
+ #: app/features/speakers.php:379
6471
  msgid ""
6472
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6473
  "section and speaker widget section!"
6628
  msgid "Tile View"
6629
  msgstr "Zobrazení rozvrhu"
6630
 
6631
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6632
  msgid "SU"
6633
  msgstr "NE"
6634
 
6635
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6636
  msgid "MO"
6637
  msgstr "PO"
6638
 
6639
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6640
  msgid "TU"
6641
  msgstr "ÚT"
6642
 
6643
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6644
  msgid "WE"
6645
  msgstr "ST"
6646
 
6647
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6648
  msgid "TH"
6649
  msgstr "ČT"
6650
 
6651
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6652
  msgid "FR"
6653
  msgstr "PÁ"
6654
 
6655
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6656
  msgid "SA"
6657
  msgstr "SO"
6658
 
6914
  msgid "iCal export stopped!"
6915
  msgstr "iCal export byl zastaven!"
6916
 
6917
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
6918
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
6919
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
6920
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
6921
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
6922
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
6923
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
6924
  msgid "Sort"
6925
  msgstr "Seřadit"
6926
 
6927
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
6928
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
6929
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
6930
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
6931
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
6932
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
6933
  msgid "Required Field"
6934
  msgstr "Požadovaná pole"
6935
 
6936
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
6937
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
6938
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
6939
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
6940
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
6941
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
6942
  msgid "Insert a label for this field"
6943
  msgstr "Vložte štítek pro toto pole"
6944
 
6945
+ #: app/libraries/main.php:2976
6946
  msgid "HTML and shortcode are allowed."
6947
  msgstr "HTML a zkrácené kódy jsou povoleny."
6948
 
6949
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
6950
+ #: app/libraries/main.php:3107
6951
  msgid "Option"
6952
  msgstr "Možnost"
6953
 
6954
+ #: app/libraries/main.php:3141
6955
  #, php-format
6956
  msgid "Instead of %s, the page title with a link will be show."
6957
  msgstr "Místo%s se zobrazí název stránky s odkazem."
6958
 
6959
+ #: app/libraries/main.php:3143
6960
  msgid "Agreement Page"
6961
  msgstr "Stránka smlouvy"
6962
 
6963
+ #: app/libraries/main.php:3154
6964
  msgid "Checked by default"
6965
  msgstr "Ve výchozím nastavení zaškrtnuto"
6966
 
6967
+ #: app/libraries/main.php:3155
6968
  msgid "Unchecked by default"
6969
  msgstr "Ve výchozím nastavení není zaškrtnuto"
6970
 
6971
+ #: app/libraries/main.php:3178
6972
  msgid "Insert a label for this option"
6973
  msgstr "Vložte štítek pro tuto možnost"
6974
 
6975
+ #: app/libraries/main.php:3193
6976
  msgid "Free"
6977
  msgstr "Zdarma"
6978
 
6979
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
6980
  msgid "M.E. Calender"
6981
  msgstr "M.E. Kalendář"
6982
 
6983
+ #: app/libraries/main.php:3954
6984
  #, php-format
6985
  msgid "Copy of %s"
6986
  msgstr "Kopie %s"
6987
 
6988
+ #: app/libraries/main.php:4669
6989
  msgid "Booked an event."
6990
  msgstr "Událost byla rezervována."
6991
 
6992
+ #: app/libraries/main.php:4710
6993
  #, php-format
6994
  msgid "%s booked %s event."
6995
  msgstr "%s zarezervoval %s událost."
6996
 
6997
+ #: app/libraries/main.php:5275
6998
  msgid "Taxonomies"
6999
  msgstr "Taxonomie"
7000
 
7001
  # Mrknout na kontext
7002
+ #: app/libraries/main.php:5277
7003
  msgid "Category Plural Label"
7004
  msgstr "Štítek množné kategorie"
7005
 
7006
  # Mrknout na kontext
7007
+ #: app/libraries/main.php:5278
7008
  msgid "Category Singular Label"
7009
  msgstr "Štítek jednotné kategorie"
7010
 
7011
+ #: app/libraries/main.php:5279
7012
  msgid "Label Plural Label"
7013
  msgstr "Štítek množného štítku"
7014
 
7015
+ #: app/libraries/main.php:5280
7016
  msgid "Label Singular Label"
7017
  msgstr "Štítek jednotného štítku"
7018
 
7019
+ #: app/libraries/main.php:5281
7020
  msgid "Location Plural Label"
7021
  msgstr "Štítek množného umístění"
7022
 
7023
+ #: app/libraries/main.php:5282
7024
  msgid "Location Singular Label"
7025
  msgstr "Štítek jednotného umístění"
7026
 
7027
+ #: app/libraries/main.php:5283
7028
  msgid "Organizer Plural Label"
7029
  msgstr "Štítek množného organizátora"
7030
 
7031
+ #: app/libraries/main.php:5284
7032
  msgid "Organizer Singular Label"
7033
  msgstr "Štítek jednotného organizátora"
7034
 
7035
+ #: app/libraries/main.php:5285
7036
  msgid "Speaker Plural Label"
7037
  msgstr "Štítek množného řečníka"
7038
 
7039
+ #: app/libraries/main.php:5286
7040
  msgid "Speaker Singular Label"
7041
  msgstr "Štítek jednotného řečníka"
7042
 
7043
+ #: app/libraries/main.php:5292
7044
  msgid "Sunday abbreviation"
7045
  msgstr "Neděle zkratka"
7046
 
7047
+ #: app/libraries/main.php:5293
7048
  msgid "Monday abbreviation"
7049
  msgstr "Pondělí zkratka"
7050
 
7051
+ #: app/libraries/main.php:5294
7052
  msgid "Tuesday abbreviation"
7053
  msgstr "Úterý zkratka"
7054
 
7055
+ #: app/libraries/main.php:5295
7056
  msgid "Wednesday abbreviation"
7057
  msgstr "Středa zkratka"
7058
 
7059
+ #: app/libraries/main.php:5296
7060
  msgid "Thursday abbreviation"
7061
  msgstr "Čtvrtek zkratka"
7062
 
7063
+ #: app/libraries/main.php:5297
7064
  msgid "Friday abbreviation"
7065
  msgstr "Pátek zkratka"
7066
 
7067
+ #: app/libraries/main.php:5298
7068
  msgid "Saturday abbreviation"
7069
  msgstr "Sobota zkratka"
7070
 
7071
+ #: app/libraries/main.php:5302
7072
  msgid "Others"
7073
  msgstr "Další"
7074
 
7075
+ #: app/libraries/main.php:5304
7076
  msgid "Booking Success Message"
7077
  msgstr "Zpráva o úspěchu rezervace"
7078
 
7079
+ #: app/libraries/main.php:5304
7080
  msgid ""
7081
  "Thanks for your booking. Your tickets booked, booking verification might be "
7082
  "needed, please check your email."
7084
  "Děkujeme za vaši rezervaci. Vaše vstupenky jsou rezervovány, může být nutné "
7085
  "ověřit rezervaci. Zkontrolujte prosím svůj e-mail."
7086
 
7087
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7088
  msgid "Register Button"
7089
  msgstr "Registrační tlačítko"
7090
 
7091
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7092
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7093
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7094
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7095
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7096
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7097
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7098
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7099
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7100
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7105
  msgid "REGISTER"
7106
  msgstr "REGISTROVAT"
7107
 
7108
+ #: app/libraries/main.php:5306
7109
  msgid "View Detail Button"
7110
  msgstr "Tlačítko Zobrazit detail"
7111
 
7112
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7113
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7114
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7115
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7120
  msgid "View Detail"
7121
  msgstr "Zobrazit detail"
7122
 
7123
+ #: app/libraries/main.php:5307
7124
  msgid "Event Detail Button"
7125
  msgstr "Tlačítko Detail události"
7126
 
7127
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7128
  msgid "Event Detail"
7129
  msgstr "Zobrazit událost"
7130
 
7131
+ #: app/libraries/main.php:5309
7132
  msgid "More Info Link"
7133
  msgstr "Odkaz na více informací"
7134
 
7135
+ #: app/libraries/main.php:5312
7136
  msgid "Ticket (Singular)"
7137
  msgstr "Vstupenka (Jednotné)"
7138
 
7139
+ #: app/libraries/main.php:5313
7140
  msgid "Tickets (Plural)"
7141
  msgstr "Vstupenky (Množné)"
7142
 
7143
+ #: app/libraries/main.php:5399
7144
  msgid "EventON"
7145
  msgstr "EventON"
7146
 
7147
+ #: app/libraries/main.php:5400
7148
  msgid "The Events Calendar"
7149
  msgstr "The Events Calendar"
7150
 
7151
+ #: app/libraries/main.php:5401
7152
  msgid "Events Schedule WP Plugin"
7153
  msgstr "Events Schedule WP Plugin"
7154
 
7155
+ #: app/libraries/main.php:5402
7156
  msgid "Calendarize It"
7157
  msgstr "Calendarize It"
7158
 
7159
+ #: app/libraries/main.php:5403
7160
  #, fuzzy
7161
  #| msgid "Event Speakers"
7162
  msgid "Event Espresso"
7163
  msgstr "Řečník události"
7164
 
7165
+ #: app/libraries/main.php:5404
7166
  #, fuzzy
7167
  #| msgid "Event Repeating (Recurring events)"
7168
  msgid "Events Manager (Recurring)"
7169
  msgstr "Opakování události (opakující se události)"
7170
 
7171
+ #: app/libraries/main.php:5405
7172
  #, fuzzy
7173
  #| msgid "Modern Events Calendar (Lite)"
7174
  msgid "Events Manager (Single)"
7175
  msgstr "Modern Events Calendar (Lite)"
7176
 
7177
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7178
  msgid "Confirmed"
7179
  msgstr "Potvrzeno"
7180
 
7181
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7182
  msgid "Rejected"
7183
  msgstr "Odmítnuto"
7184
 
7185
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7186
  msgid "Pending"
7187
  msgstr "Nevyřízený"
7188
 
7189
+ #: app/libraries/main.php:5529
7190
  msgid "Waiting"
7191
  msgstr "Čekající"
7192
 
7193
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7194
  msgid "Skin controller does not exist."
7195
  msgstr "Ovladač vzhledu neexistuje."
7196
 
7197
+ #: app/libraries/main.php:5848
7198
  msgid "Sold Out"
7199
  msgstr "Vyprodáno"
7200
 
7201
+ #: app/libraries/main.php:5856
7202
  #, fuzzy
7203
  #| msgid "Ticket"
7204
  msgid "Last Few Tickets"
7208
  msgid "Please verify your email."
7209
  msgstr "Prosím, ověřte svůj e-mail."
7210
 
7211
+ #: app/libraries/notifications.php:153
7212
  msgid "Your booking is received."
7213
  msgstr "Vaše rezervace je přijata."
7214
 
7215
+ #: app/libraries/notifications.php:271
7216
  msgid "Your booking is confirmed."
7217
  msgstr "Vaše rezervace je potvrzena."
7218
 
7219
+ #: app/libraries/notifications.php:435
7220
  msgid "booking canceled."
7221
  msgstr "rezervace zrušena."
7222
 
7223
+ #: app/libraries/notifications.php:510
7224
  msgid "A new booking is received."
7225
  msgstr "Je přijata nová rezervace."
7226
 
7227
+ #: app/libraries/notifications.php:734
7228
  msgid "A new event is added."
7229
  msgstr "Je přidána se nová událost."
7230
 
7231
+ #: app/libraries/notifications.php:803
7232
  msgid "Your event is published."
7233
  msgstr "Vaše událost je zveřejněna."
7234
 
7235
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7236
+ #: app/libraries/notifications.php:1052
7237
  msgid "to"
7238
  msgstr "do"
7239
 
7240
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7241
  msgid "+ Add to Google Calendar"
7242
  msgstr "+ Přidat do Google kalendáře"
7243
 
7244
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7245
  msgid "+ iCal export"
7246
  msgstr "+ iCal export"
7247
 
7248
+ #: app/libraries/notifications.php:1131
7249
  msgid "Yes"
7250
  msgstr "Ano"
7251
 
7252
+ #: app/libraries/notifications.php:1131
7253
  msgid "No"
7254
  msgstr "Ne"
7255
 
7256
+ #: app/libraries/skins.php:1008
7257
+ #, fuzzy
7258
+ #| msgid "Select All"
7259
+ msgid "Select"
7260
+ msgstr "Vybrat vše"
7261
 
7262
  #: app/modules/attendees-list/details.php:36
7263
  msgid "Event Attendees"
7294
  msgid "Free Booking"
7295
  msgstr "Rezervace zdarma"
7296
 
7297
+ #: app/modules/booking/steps/form.php:52
7298
+ #, fuzzy
7299
+ #| msgid "Attendees Form"
7300
+ msgid "Attendee's Form"
7301
+ msgstr "Formulář účastníků"
7302
+
7303
  #: app/modules/booking/steps/form.php:165
7304
  msgid "Fill other attendees information like the first form."
7305
  msgstr "Vyplňte informace o dalších účastnících, jako v prvním formuláři."
7306
 
7307
  #: app/modules/booking/steps/form.php:179
7308
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7309
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7310
  msgid "Next"
7311
  msgstr "Další"
7318
  msgid "Book Event"
7319
  msgstr "Rezervovat událost"
7320
 
7321
+ #: app/modules/booking/steps/tickets.php:40
7322
  #, php-format
7323
  msgid "Available %s: <span>%s</span>"
7324
  msgstr "K dispozici %s: <span>%s</span>"
7325
 
7326
+ #: app/modules/booking/steps/tickets.php:44
7327
  #, php-format
7328
+ msgid "The %s ticket sales has stopped!"
7329
  msgstr ""
7330
 
7331
+ #: app/modules/booking/steps/tickets.php:45
7332
  #, php-format
7333
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7334
  msgstr ""
7350
  msgid "Get Directions"
7351
  msgstr "Získat směr"
7352
 
7353
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7354
  msgid "Share this event"
7355
  msgstr "Sdílet tuto událost"
7356
 
7377
  msgid "Go to occurrence page"
7378
  msgstr "Přejít na stránku výskytu"
7379
 
7380
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7381
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7382
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7383
  msgid "Time"
7503
  msgid "Home"
7504
  msgstr "Domů"
7505
 
7506
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7507
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7508
  #: app/skins/single/modern.php:265
7509
  msgid "Sold out!"
7510
  msgstr "Vyprodáno!"
7511
 
7512
+ #: app/skins/single.php:822 app/skins/single.php:877
7513
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7514
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7515
  #: app/skins/single/modern.php:44
7516
  msgid "Phone"
7517
  msgstr "Telefon"
7518
 
7519
+ #: app/skins/single.php:836 app/skins/single.php:891
7520
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7521
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7522
  #: app/skins/single/modern.php:58
7523
  msgid "Website"
7524
  msgstr "Webová stránka"
7525
 
7526
+ #: app/skins/single.php:961
7527
  msgid "Speakers:"
7528
  msgstr "Řečník:"
7529
 
languages/modern-events-calendar-lite-de_DE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-de_DE.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
6
- "PO-Revision-Date: 2020-01-14 10:03+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -297,7 +297,7 @@ msgstr "Veranstaltung hinzufügen"
297
  msgid "Add New Event"
298
  msgstr "Neue Veranstaltung hinzufügen"
299
 
300
- #: app/features/events.php:161 app/features/ix.php:3752
301
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
302
  msgid "No events found!"
303
  msgstr "Keine Veranstaltungen gefunden!"
@@ -332,8 +332,8 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
332
  #: app/features/mec/meta_boxes/search_form.php:575
333
  #: app/features/mec/meta_boxes/search_form.php:672
334
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
335
- #: app/features/search.php:67 app/libraries/main.php:5260
336
- #: app/libraries/skins.php:850 app/skins/single.php:560
337
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
338
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
339
  #: app/skins/single/modern.php:113
@@ -342,7 +342,7 @@ msgstr "Kategorie"
342
 
343
  #: app/features/events.php:183 app/features/events.php:3275
344
  #: app/features/fes/form.php:757 app/features/mec.php:402
345
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
346
  msgid "Categories"
347
  msgstr "Kategorien"
348
 
@@ -431,7 +431,7 @@ msgid "Event Repeating"
431
  msgstr "Wiederholende Veranstaltung"
432
 
433
  #: app/features/events.php:333 app/features/events.php:1286
434
- #: app/features/mec/settings.php:710 app/skins/single.php:941
435
  msgid "Hourly Schedule"
436
  msgstr "Stundenplan"
437
 
@@ -449,7 +449,7 @@ msgstr "Link"
449
 
450
  #: app/features/events.php:336 app/features/events.php:3322
451
  #: app/features/events.php:3513 app/features/events.php:3555
452
- #: app/features/ix.php:3373 app/features/ix.php:3414
453
  #: app/features/mec/meta_boxes/display_options.php:960
454
  #: app/features/mec/meta_boxes/search_form.php:45
455
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -466,16 +466,16 @@ msgstr "Link"
466
  #: app/features/organizers.php:58 app/features/organizers.php:204
467
  #: app/features/organizers.php:260 app/features/organizers.php:262
468
  #: app/features/organizers.php:271 app/features/search.php:75
469
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
470
- #: app/skins/single.php:806 app/skins/single/default.php:217
471
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
472
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
473
  msgid "Organizer"
474
  msgstr "Veranstalter"
475
 
476
  #: app/features/events.php:337 app/features/events.php:1172
477
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
478
- #: app/skins/single.php:583 app/skins/single/default.php:126
479
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
480
  #: app/skins/single/modern.php:208
481
  msgid "Cost"
@@ -493,7 +493,7 @@ msgstr "Gäste Daten"
493
  #: app/features/events.php:3802 app/features/fes.php:223
494
  #: app/features/fes/form.php:689 app/features/labels.php:178
495
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
496
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
497
  #: app/modules/booking/steps/form.php:37
498
  msgid "Name"
499
  msgstr "Name"
@@ -503,12 +503,12 @@ msgstr "Name"
503
  #: app/features/fes.php:223 app/features/fes/form.php:685
504
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
505
  #: app/features/organizers.php:111 app/features/organizers.php:152
506
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
507
- #: app/features/speakers.php:187 app/libraries/main.php:1539
508
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
509
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
510
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
511
- #: app/skins/single.php:878 app/skins/single/default.php:234
512
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
513
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
514
  msgid "Email"
@@ -521,8 +521,8 @@ msgstr "Datum und Uhrzeit"
521
  #: app/features/events.php:491 app/features/events.php:497
522
  #: app/features/events.php:3323 app/features/events.php:3513
523
  #: app/features/events.php:3555 app/features/fes/form.php:247
524
- #: app/features/fes/form.php:251 app/features/ix.php:3373
525
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
526
  #: app/features/mec/dashboard.php:400
527
  #: app/features/mec/meta_boxes/display_options.php:48
528
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -559,8 +559,8 @@ msgstr "PM"
559
  #: app/features/events.php:583 app/features/events.php:588
560
  #: app/features/events.php:3324 app/features/events.php:3513
561
  #: app/features/events.php:3555 app/features/fes/form.php:287
562
- #: app/features/fes/form.php:291 app/features/ix.php:3373
563
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
564
  #: app/features/mec/dashboard.php:401
565
  msgid "End Date"
566
  msgstr "Ende Datum"
@@ -644,14 +644,14 @@ msgstr ""
644
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
645
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
646
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
647
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
648
- #: app/features/mec/notifications.php:170
649
- #: app/features/mec/notifications.php:238
650
- #: app/features/mec/notifications.php:308
651
- #: app/features/mec/notifications.php:373
652
- #: app/features/mec/notifications.php:384
653
- #: app/features/mec/notifications.php:454
654
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
655
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
656
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
657
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -667,7 +667,7 @@ msgstr ""
667
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
668
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
669
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
670
- #: app/skins/single.php:668 app/skins/single/default.php:141
671
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
672
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
673
  msgid "Read More"
@@ -852,8 +852,8 @@ msgstr "Nächstes Auftreten von anderen Events."
852
 
853
  #: app/features/events.php:1168 app/features/events.php:3513
854
  #: app/features/events.php:3555 app/features/fes/form.php:727
855
- #: app/features/ix.php:3373 app/features/ix.php:3414
856
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
857
  #: app/widgets/single.php:103
858
  msgid "Event Cost"
859
  msgstr ""
@@ -872,8 +872,8 @@ msgstr "Ausschluss bestimmter Tage"
872
  #: app/features/events.php:1204 app/features/events.php:2541
873
  #: app/features/fes.php:223 app/features/mec/booking.php:491
874
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
875
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
876
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
877
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
878
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
879
  msgid "Date"
@@ -910,8 +910,8 @@ msgstr ""
910
  #: app/features/events.php:1437 app/features/events.php:2322
911
  #: app/features/events.php:2369 app/features/events.php:3319
912
  #: app/features/events.php:3513 app/features/events.php:3555
913
- #: app/features/fes/form.php:236 app/features/ix.php:3373
914
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
915
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
916
  msgid "Title"
917
  msgstr "Titel"
@@ -924,13 +924,13 @@ msgstr "Titel"
924
  #: app/features/events.php:2357 app/features/events.php:2399
925
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
926
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
927
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
928
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
929
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
930
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
931
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
932
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
933
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
934
  msgid "Remove"
935
  msgstr "Entfernen"
936
 
@@ -958,7 +958,7 @@ msgstr "Beschreibung"
958
  #: app/features/events.php:1445 app/features/fes/form.php:851
959
  #: app/features/mec.php:410 app/features/mec/modules.php:52
960
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
961
- #: app/libraries/main.php:565 app/libraries/main.php:5267
962
  #: app/modules/speakers/details.php:18
963
  msgid "Speakers"
964
  msgstr ""
@@ -975,7 +975,7 @@ msgid "Event Links"
975
  msgstr "Veranstaltungslinks"
976
 
977
  #: app/features/events.php:1479 app/features/events.php:1485
978
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
979
  msgid "Event Link"
980
  msgstr "Veranstaltungslink"
981
 
@@ -1003,8 +1003,8 @@ msgid "URL Shortener"
1003
  msgstr ""
1004
 
1005
  #: app/features/events.php:1495 app/features/events.php:1508
1006
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
1007
- #: app/skins/single.php:667 app/skins/single/default.php:140
1008
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1009
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1010
  #: app/widgets/single.php:107
@@ -1040,7 +1040,7 @@ msgstr "Gesamt Verfügbare Plätze"
1040
 
1041
  #: app/features/events.php:1596 app/features/events.php:1849
1042
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1043
- #: app/modules/booking/steps/tickets.php:44
1044
  #: app/skins/available_spot/tpl.php:160
1045
  msgid "Unlimited"
1046
  msgstr "Unlimitiert"
@@ -1077,7 +1077,7 @@ msgid "12"
1077
  msgstr ""
1078
 
1079
  #: app/features/events.php:1653 app/libraries/book.php:60
1080
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1081
  msgid "Tickets"
1082
  msgstr "Tickets"
1083
 
@@ -1100,13 +1100,13 @@ msgstr "Ticket Name"
1100
 
1101
  #: app/features/events.php:1680 app/features/events.php:1955
1102
  #: app/features/events.php:3513 app/features/events.php:3555
1103
- #: app/features/ix.php:3373 app/features/ix.php:3414
1104
  msgid "Start Time"
1105
  msgstr "Uhrzeit des Beginns"
1106
 
1107
  #: app/features/events.php:1739 app/features/events.php:1985
1108
  #: app/features/events.php:3513 app/features/events.php:3555
1109
- #: app/features/ix.php:3373 app/features/ix.php:3414
1110
  msgid "End Time"
1111
  msgstr "Uhrzeit Ende"
1112
 
@@ -1138,37 +1138,37 @@ msgstr "Um das auf der Webseite anzuzeigen zum Beispiel 15 €"
1138
  msgid "Available Tickets"
1139
  msgstr "Verfügbare Tickets: %s "
1140
 
1141
- #: app/features/events.php:1855 app/features/events.php:2070
1142
  #, fuzzy
1143
  #| msgid "Amount (Per Ticket)"
1144
  msgid "Minimum Ticket e.g. 3"
1145
  msgstr "Betrag (pro Ticket)"
1146
 
1147
- #: app/features/events.php:1858 app/features/events.php:2073
1148
  #, fuzzy
1149
  #| msgid "Amount (Per Ticket)"
1150
  msgid "MinimumTicket"
1151
  msgstr "Betrag (pro Ticket)"
1152
 
1153
- #: app/features/events.php:1860 app/features/events.php:2075
1154
  msgid "Set a number for the minimum ticket reservation"
1155
  msgstr ""
1156
 
1157
- #: app/features/events.php:1868 app/features/events.php:2083
1158
  msgid "e.g. 0"
1159
  msgstr ""
1160
 
1161
- #: app/features/events.php:1870 app/features/events.php:2085
1162
  #, fuzzy
1163
  #| msgid "Days"
1164
  msgid "Day"
1165
  msgstr "Tage"
1166
 
1167
- #: app/features/events.php:1871 app/features/events.php:2086
1168
  msgid "Hour"
1169
  msgstr ""
1170
 
1171
- #: app/features/events.php:1873 app/features/events.php:2088
1172
  #, php-format
1173
  msgid "Stop selling ticket %s before event start."
1174
  msgstr ""
@@ -1194,7 +1194,7 @@ msgstr "Preisschild"
1194
  #: app/features/mec/meta_boxes/search_form.php:610
1195
  #: app/features/mec/meta_boxes/search_form.php:707
1196
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1197
- #: app/libraries/skins.php:980
1198
  msgid "Label"
1199
  msgstr "Label"
1200
 
@@ -1264,48 +1264,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1264
  msgstr ""
1265
 
1266
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1267
- #: app/libraries/main.php:2749
1268
  #, fuzzy
1269
  #| msgid "Name"
1270
  msgid "MEC Name"
1271
  msgstr "Name"
1272
 
1273
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1274
- #: app/libraries/main.php:2778
1275
  #, fuzzy
1276
  #| msgid "Email"
1277
  msgid "MEC Email"
1278
  msgstr "Email"
1279
 
1280
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1281
- #: app/libraries/main.php:2719
1282
  msgid "Text"
1283
  msgstr "Text"
1284
 
1285
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1286
  #: app/features/organizers.php:103 app/features/organizers.php:148
1287
- #: app/features/speakers.php:118 app/features/speakers.php:183
1288
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1289
  msgid "Tel"
1290
  msgstr "Tel"
1291
 
1292
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1293
- #: app/libraries/main.php:2837
1294
  msgid "File"
1295
  msgstr ""
1296
 
1297
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1298
- #: app/libraries/main.php:2924
1299
  msgid "Textarea"
1300
  msgstr "Textbereich"
1301
 
1302
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1303
- #: app/libraries/main.php:2977
1304
  msgid "Checkboxes"
1305
  msgstr "Checkboxes"
1306
 
1307
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1308
- #: app/libraries/main.php:3021
1309
  msgid "Radio Buttons"
1310
  msgstr "Radio Buttons"
1311
 
@@ -1385,17 +1385,17 @@ msgstr "Radio Buttons"
1385
  #: app/features/mec/meta_boxes/search_form.php:696
1386
  #: app/features/mec/meta_boxes/search_form.php:703
1387
  #: app/features/mec/meta_boxes/search_form.php:710
1388
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1389
  msgid "Dropdown"
1390
  msgstr "Dropdown"
1391
 
1392
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1393
- #: app/libraries/main.php:3112
1394
  msgid "Agreement"
1395
  msgstr "Zustimmung"
1396
 
1397
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1398
- #: app/libraries/main.php:2953
1399
  msgid "Paragraph"
1400
  msgstr "Absatz"
1401
 
@@ -1424,8 +1424,8 @@ msgid "Attendees List"
1424
  msgstr "Teilnehmer Limit, maximale Anzahl"
1425
 
1426
  #: app/features/events.php:3321 app/features/events.php:3513
1427
- #: app/features/events.php:3555 app/features/ix.php:3373
1428
- #: app/features/ix.php:3414 app/features/locations.php:58
1429
  #: app/features/locations.php:230 app/features/locations.php:287
1430
  #: app/features/locations.php:289 app/features/locations.php:298
1431
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1442,8 +1442,8 @@ msgstr "Teilnehmer Limit, maximale Anzahl"
1442
  #: app/features/mec/meta_boxes/search_form.php:679
1443
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1444
  #: app/features/search.php:71 app/libraries/main.php:2236
1445
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1446
- #: app/skins/single.php:487 app/skins/single.php:918
1447
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1448
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1449
  #: app/skins/single/modern.php:97
@@ -1484,14 +1484,14 @@ msgid "Duplicate"
1484
  msgstr "Kopie"
1485
 
1486
  #: app/features/events.php:3513 app/features/events.php:3555
1487
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1488
  #: app/features/labels.php:177 app/features/locations.php:229
1489
- #: app/features/organizers.php:203 app/features/speakers.php:253
1490
  msgid "ID"
1491
  msgstr "ID"
1492
 
1493
  #: app/features/events.php:3513 app/features/events.php:3555
1494
- #: app/features/ix.php:3373 app/features/ix.php:3414
1495
  msgid "Link"
1496
  msgstr "Link"
1497
 
@@ -1507,7 +1507,7 @@ msgstr "%s Email"
1507
 
1508
  #: app/features/events.php:3808 app/features/fes.php:223
1509
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1510
- #: app/libraries/main.php:5294
1511
  msgid "Ticket"
1512
  msgstr "Ticket"
1513
 
@@ -1691,8 +1691,8 @@ msgstr "Bild entfernen"
1691
 
1692
  #: app/features/fes/form.php:783 app/features/labels.php:61
1693
  #: app/features/labels.php:221 app/features/mec.php:403
1694
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1695
- #: app/skins/single.php:696 app/skins/single/default.php:155
1696
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1697
  #: app/skins/single/modern.php:223
1698
  msgid "Labels"
@@ -1772,76 +1772,76 @@ msgstr ""
1772
  msgid "The events are imported successfully!"
1773
  msgstr ""
1774
 
1775
- #: app/features/ix.php:806
1776
  msgid "Third Party plugin is not installed and activated!"
1777
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1778
 
1779
- #: app/features/ix.php:829
1780
  msgid "Third Party plugin is invalid!"
1781
  msgstr "Drittanbieter-Plugin ist ungültig!"
1782
 
1783
- #: app/features/ix.php:2580 app/features/ix.php:2638
1784
  msgid "Both of API key and Calendar ID are required!"
1785
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1786
 
1787
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1788
  msgid "Please select some events to import!"
1789
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1790
 
1791
- #: app/features/ix.php:2994 app/features/ix.php:3057
1792
  #, fuzzy
1793
  #| msgid "Both of API key and Calendar ID are required!"
1794
  msgid "Both of API key and Group URL are required!"
1795
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1796
 
1797
- #: app/features/ix.php:3296
1798
  msgid "Check at Meetup"
1799
  msgstr ""
1800
 
1801
- #: app/features/ix.php:3373 app/features/ix.php:3414
1802
  msgid "Organizer Tel"
1803
  msgstr "Organisator Telefon"
1804
 
1805
- #: app/features/ix.php:3373 app/features/ix.php:3414
1806
  msgid "Organizer Email"
1807
  msgstr "Organisator Email"
1808
 
1809
- #: app/features/ix.php:3495
1810
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1811
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1812
 
1813
- #: app/features/ix.php:3518
1814
  #, php-format
1815
  msgid "All seems good! Please click %s for authenticating your app."
1816
  msgstr ""
1817
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1818
 
1819
- #: app/features/ix.php:3572
1820
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1821
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1822
 
1823
- #: app/features/ix.php:3688
1824
  #, php-format
1825
  msgid "%s events added to Google Calendar successfully."
1826
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
1827
 
1828
- #: app/features/ix.php:3689
1829
  #, php-format
1830
  msgid "%s previously added events get updated."
1831
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1832
 
1833
- #: app/features/ix.php:3690
1834
  #, php-format
1835
  msgid "%s events failed to add for following reasons: %s"
1836
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1837
 
1838
- #: app/features/ix.php:3722
1839
  #, fuzzy
1840
  #| msgid "Please insert your facebook page's link."
1841
  msgid "Please insert your Facebook page's link."
1842
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1843
 
1844
- #: app/features/ix.php:3731
1845
  #, fuzzy
1846
  #| msgid ""
1847
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -1853,11 +1853,11 @@ msgstr ""
1853
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1854
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1855
 
1856
- #: app/features/ix.php:3763
1857
  msgid "Please insert your facebook page's link."
1858
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1859
 
1860
- #: app/features/ix.php:3768
1861
  msgid ""
1862
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1863
  "valid facebook page link."
@@ -2031,14 +2031,15 @@ msgstr "Umschalten"
2031
  #: app/features/ix/export_g_calendar.php:72
2032
  #: app/features/ix/export_g_calendar.php:147
2033
  #: app/features/ix/export_g_calendar.php:164
2034
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
2035
- #: app/features/mec/notifications.php:213
2036
- #: app/features/mec/notifications.php:420
 
2037
  msgid "Add to Google Calendar"
2038
  msgstr "Zum Google Kalender hinzufügen"
2039
 
2040
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2041
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
2042
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2043
  msgid "Checking ..."
2044
  msgstr "Überprüfung"
@@ -2310,7 +2311,7 @@ msgstr "Automatischer Google Calender Import"
2310
 
2311
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2312
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2313
- #: app/features/mec/notifications.php:361
2314
  msgid "Important Note"
2315
  msgstr "Important Note"
2316
 
@@ -2513,7 +2514,7 @@ msgid "Featured"
2513
  msgstr "Ausgewähltes Bild"
2514
 
2515
  #: app/features/labels.php:118 app/features/labels.php:143
2516
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2517
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2518
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2519
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2532,7 +2533,7 @@ msgid "You can show featured and canceled events by a different style!"
2532
  msgstr ""
2533
 
2534
  #: app/features/labels.php:180 app/features/locations.php:232
2535
- #: app/features/organizers.php:206 app/features/speakers.php:257
2536
  #: app/modules/booking/steps/tickets.php:38
2537
  msgid "Count"
2538
  msgstr "Zähler"
@@ -2549,7 +2550,7 @@ msgstr "Event %s"
2549
 
2550
  #: app/features/locations.php:59 app/features/mec.php:404
2551
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2552
- #: app/libraries/main.php:5263
2553
  msgid "Locations"
2554
  msgstr "Orte"
2555
 
@@ -2582,13 +2583,13 @@ msgstr "Geologischer Längengrad (Optional)"
2582
 
2583
  #: app/features/locations.php:138 app/features/locations.php:180
2584
  #: app/features/organizers.php:127 app/features/organizers.php:160
2585
- #: app/features/speakers.php:158 app/features/speakers.php:203
2586
  msgid "Thumbnail"
2587
  msgstr "Miniaturansicht"
2588
 
2589
  #: app/features/locations.php:143 app/features/locations.php:183
2590
  #: app/features/organizers.php:132 app/features/organizers.php:163
2591
- #: app/features/speakers.php:163 app/features/speakers.php:206
2592
  msgid "Upload/Add image"
2593
  msgstr "Bild hochladen/hinzufügen"
2594
 
@@ -2596,7 +2597,7 @@ msgstr "Bild hochladen/hinzufügen"
2596
  #: app/features/locations.php:340 app/features/locations.php:347
2597
  #: app/features/organizers.php:133 app/features/organizers.php:164
2598
  #: app/features/organizers.php:299 app/features/organizers.php:306
2599
- #: app/features/speakers.php:164 app/features/speakers.php:207
2600
  msgid "Remove image"
2601
  msgstr "Bild entfernen"
2602
 
@@ -2661,7 +2662,7 @@ msgstr "Bild wählen"
2661
  msgid "Don't show map in single event page"
2662
  msgstr "Karte in Einzelansicht nicht anzeigen"
2663
 
2664
- #: app/features/locations.php:356 app/libraries/main.php:5297
2665
  #, fuzzy
2666
  #| msgid "Locations"
2667
  msgid "Other Locations"
@@ -2691,7 +2692,7 @@ msgstr ""
2691
  msgid "Troubleshooting"
2692
  msgstr ""
2693
 
2694
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2695
  #, php-format
2696
  msgid "%s to %s"
2697
  msgstr "%s zu %s"
@@ -2727,7 +2728,7 @@ msgstr "Support"
2727
 
2728
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2729
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2730
- #: app/libraries/main.php:5265
2731
  msgid "Organizers"
2732
  msgstr "Veranstalter"
2733
 
@@ -2849,10 +2850,10 @@ msgstr "Suche %s"
2849
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2850
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2851
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2852
- #: app/features/mec/notifications.php:531
2853
- #: app/features/mec/notifications.php:543
2854
- #: app/features/mec/notifications.php:639
2855
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2856
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2857
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2858
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2973,7 +2974,7 @@ msgstr ""
2973
  msgid "Enable Express Attendees Form"
2974
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2975
 
2976
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2977
  msgid "Attendees Form"
2978
  msgstr "Teilnahmeformular"
2979
 
@@ -3009,7 +3010,7 @@ msgstr "Automatische Verifizierung für kostenlose Buchungen"
3009
  msgid "Auto verification for paid bookings"
3010
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3011
 
3012
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
3013
  #: app/libraries/main.php:579
3014
  msgid "Booking Confirmation"
3015
  msgstr "Buchungsbestätigung"
@@ -3075,14 +3076,14 @@ msgid ""
3075
  msgstr ""
3076
 
3077
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3078
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
3079
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3080
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3081
  msgid "Saved"
3082
  msgstr "Gesichert"
3083
 
3084
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3085
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
3086
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3087
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3088
  msgid "Settings Saved!"
@@ -3090,15 +3091,15 @@ msgstr ""
3090
 
3091
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3092
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3093
- #: app/features/mec/notifications.php:620
3094
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
3095
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3096
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
3097
  msgid "Verified"
3098
  msgstr "Verifiziert"
3099
 
3100
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3101
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
3102
  #: app/features/mec/single.php:291
3103
  msgid "Please Refresh Page"
3104
  msgstr "Bitte Seiten Refresh vornehmen"
@@ -4245,8 +4246,8 @@ msgstr "Deaktiviert"
4245
  #: app/features/mec/meta_boxes/search_form.php:693
4246
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4247
  #: app/features/search.php:79 app/features/speakers.php:61
4248
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4249
- #: app/libraries/skins.php:928
4250
  msgid "Speaker"
4251
  msgstr ""
4252
 
@@ -4262,7 +4263,7 @@ msgstr ""
4262
  #: app/features/mec/meta_boxes/search_form.php:603
4263
  #: app/features/mec/meta_boxes/search_form.php:700
4264
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4265
- #: app/features/search.php:83 app/libraries/skins.php:954
4266
  #, fuzzy
4267
  #| msgid "Tags"
4268
  msgid "Tag"
@@ -4530,346 +4531,435 @@ msgstr ""
4530
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4531
  "benachrichtigen."
4532
 
4533
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4534
- #: app/features/mec/notifications.php:161
4535
- #: app/features/mec/notifications.php:229
4536
- #: app/features/mec/notifications.php:299
4537
- #: app/features/mec/notifications.php:364
4538
- #: app/features/mec/notifications.php:445
4539
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4540
  msgid "Email Subject"
4541
  msgstr "Email Betreff"
4542
 
4543
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4544
- #: app/features/mec/notifications.php:109
4545
- #: app/features/mec/notifications.php:113
4546
- #: app/features/mec/notifications.php:165
4547
- #: app/features/mec/notifications.php:169
4548
- #: app/features/mec/notifications.php:233
4549
- #: app/features/mec/notifications.php:237
4550
- #: app/features/mec/notifications.php:303
4551
- #: app/features/mec/notifications.php:307
4552
- #: app/features/mec/notifications.php:368
4553
- #: app/features/mec/notifications.php:372
4554
- #: app/features/mec/notifications.php:383
4555
- #: app/features/mec/notifications.php:449
4556
- #: app/features/mec/notifications.php:453
4557
- #: app/features/mec/notifications.php:497
4558
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4559
  msgid "Custom Recipients"
4560
  msgstr "Individuelle Empfänger"
4561
 
4562
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4563
- #: app/features/mec/notifications.php:170
4564
- #: app/features/mec/notifications.php:238
4565
- #: app/features/mec/notifications.php:308
4566
- #: app/features/mec/notifications.php:373
4567
- #: app/features/mec/notifications.php:384
4568
- #: app/features/mec/notifications.php:454
4569
- #: app/features/mec/notifications.php:502
4570
  msgid "Insert comma separated emails for multiple recipients."
4571
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
4572
 
4573
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4574
- #: app/features/mec/notifications.php:315
4575
  msgid "Send the email to event organizer"
4576
  msgstr "Sendet das Email zum Event Organisator"
4577
 
4578
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4579
- #: app/features/mec/notifications.php:180
4580
- #: app/features/mec/notifications.php:256
4581
- #: app/features/mec/notifications.php:318
4582
- #: app/features/mec/notifications.php:390
4583
- #: app/features/mec/notifications.php:460
4584
- #: app/features/mec/notifications.php:508
4585
  msgid "Email Content"
4586
  msgstr "Email Inhalt"
4587
 
4588
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4589
- #: app/features/mec/notifications.php:183
4590
- #: app/features/mec/notifications.php:259
4591
- #: app/features/mec/notifications.php:321
4592
- #: app/features/mec/notifications.php:393
4593
- #: app/features/mec/notifications.php:463
4594
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4595
  msgid "You can use following placeholders"
4596
  msgstr "Sie können die folgenden Platzhalter wählen"
4597
 
4598
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4599
- #: app/features/mec/notifications.php:185
4600
- #: app/features/mec/notifications.php:261
4601
- #: app/features/mec/notifications.php:323
4602
- #: app/features/mec/notifications.php:395
 
4603
  msgid "First name of attendee"
4604
  msgstr "Vorname des Teilnehmers"
4605
 
4606
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4607
- #: app/features/mec/notifications.php:186
4608
- #: app/features/mec/notifications.php:262
4609
- #: app/features/mec/notifications.php:324
4610
- #: app/features/mec/notifications.php:396
 
4611
  msgid "Last name of attendee"
4612
  msgstr "Nachname des Teilnehmers"
4613
 
4614
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4615
- #: app/features/mec/notifications.php:187
4616
- #: app/features/mec/notifications.php:263
4617
- #: app/features/mec/notifications.php:325
4618
- #: app/features/mec/notifications.php:397
 
4619
  msgid "Email of attendee"
4620
  msgstr "Email des Teilnehmers"
4621
 
4622
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4623
- #: app/features/mec/notifications.php:188
4624
- #: app/features/mec/notifications.php:264
4625
- #: app/features/mec/notifications.php:326
4626
- #: app/features/mec/notifications.php:398
 
4627
  msgid "Booked date of event"
4628
  msgstr "Gebuchtes Datum der Veranstaltung"
4629
 
4630
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4631
- #: app/features/mec/notifications.php:189
4632
- #: app/features/mec/notifications.php:265
4633
- #: app/features/mec/notifications.php:327
4634
- #: app/features/mec/notifications.php:399
 
4635
  #, fuzzy
4636
  #| msgid "Booked date of event"
4637
  msgid "Booked time of event"
4638
  msgstr "Gebuchtes Datum der Veranstaltung"
4639
 
4640
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4641
- #: app/features/mec/notifications.php:190
4642
- #: app/features/mec/notifications.php:266
4643
- #: app/features/mec/notifications.php:328
4644
- #: app/features/mec/notifications.php:400
 
4645
  msgid "Booking Price"
4646
  msgstr "Buchungspreis"
4647
 
4648
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4649
- #: app/features/mec/notifications.php:191
4650
- #: app/features/mec/notifications.php:267
4651
- #: app/features/mec/notifications.php:329
4652
- #: app/features/mec/notifications.php:401
 
4653
  msgid "Date and time of placing booking"
4654
  msgstr ""
4655
 
4656
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4657
- #: app/features/mec/notifications.php:192
4658
- #: app/features/mec/notifications.php:268
4659
- #: app/features/mec/notifications.php:330
4660
- #: app/features/mec/notifications.php:402
4661
- #: app/features/mec/notifications.php:471
4662
- #: app/features/mec/notifications.php:519
 
4663
  msgid "Your website title"
4664
  msgstr "Titel Ihrer Webseite"
4665
 
4666
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4667
- #: app/features/mec/notifications.php:193
4668
- #: app/features/mec/notifications.php:269
4669
- #: app/features/mec/notifications.php:331
4670
- #: app/features/mec/notifications.php:403
4671
- #: app/features/mec/notifications.php:472
4672
- #: app/features/mec/notifications.php:520
 
4673
  msgid "Your website URL"
4674
  msgstr "URL Ihrer Webseite"
4675
 
4676
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4677
- #: app/features/mec/notifications.php:194
4678
- #: app/features/mec/notifications.php:270
4679
- #: app/features/mec/notifications.php:332
4680
- #: app/features/mec/notifications.php:404
4681
- #: app/features/mec/notifications.php:473
4682
- #: app/features/mec/notifications.php:521
 
4683
  msgid "Your website description"
4684
  msgstr "Beschreibung Ihrer Webseite"
4685
 
4686
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4687
- #: app/features/mec/notifications.php:195
4688
- #: app/features/mec/notifications.php:271
4689
- #: app/features/mec/notifications.php:333
4690
- #: app/features/mec/notifications.php:405
 
4691
  msgid "Event title"
4692
  msgstr "Titel der Veranstaltung"
4693
 
4694
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4695
- #: app/features/mec/notifications.php:196
4696
- #: app/features/mec/notifications.php:272
4697
- #: app/features/mec/notifications.php:334
4698
- #: app/features/mec/notifications.php:406
 
4699
  #, fuzzy
4700
  #| msgid "Event Link"
4701
  msgid "Event link"
4702
  msgstr "Veranstaltungslink"
4703
 
4704
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4705
- #: app/features/mec/notifications.php:197
4706
- #: app/features/mec/notifications.php:467
4707
- #: app/features/mec/notifications.php:515
 
4708
  #, fuzzy
4709
  #| msgid "Start Date"
4710
  msgid "Event Start Date"
4711
  msgstr "Start Datum"
4712
 
4713
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4714
- #: app/features/mec/notifications.php:198
4715
- #: app/features/mec/notifications.php:468
4716
- #: app/features/mec/notifications.php:516
 
4717
  #, fuzzy
4718
  #| msgid "End Date"
4719
  msgid "Event End Date"
4720
  msgstr "Ende Datum"
4721
 
4722
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4723
- #: app/features/mec/notifications.php:199
4724
- #: app/features/mec/notifications.php:273
4725
- #: app/features/mec/notifications.php:335
4726
- #: app/features/mec/notifications.php:407
 
4727
  #, fuzzy
4728
  #| msgid "Organizer name of booked event"
4729
  msgid "Speaker name of booked event"
4730
  msgstr "Name des Veranstalters des gebuchten Events"
4731
 
4732
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4733
- #: app/features/mec/notifications.php:200
4734
- #: app/features/mec/notifications.php:274
4735
- #: app/features/mec/notifications.php:336
4736
- #: app/features/mec/notifications.php:408
 
4737
  msgid "Organizer name of booked event"
4738
  msgstr "Name des Veranstalters des gebuchten Events"
4739
 
4740
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4741
- #: app/features/mec/notifications.php:201
4742
- #: app/features/mec/notifications.php:275
4743
- #: app/features/mec/notifications.php:337
4744
- #: app/features/mec/notifications.php:409
 
4745
  msgid "Organizer tel of booked event"
4746
  msgstr "Tel des Veranstalters"
4747
 
4748
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4749
- #: app/features/mec/notifications.php:202
4750
- #: app/features/mec/notifications.php:276
4751
- #: app/features/mec/notifications.php:338
4752
- #: app/features/mec/notifications.php:410
 
4753
  msgid "Organizer email of booked event"
4754
  msgstr "Email des Veranstalters des gebuchten events"
4755
 
4756
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4757
- #: app/features/mec/notifications.php:203
4758
- #: app/features/mec/notifications.php:277
4759
- #: app/features/mec/notifications.php:339
4760
- #: app/features/mec/notifications.php:411
 
4761
  msgid "Location name of booked event"
4762
  msgstr "Veranstaltungsort"
4763
 
4764
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4765
- #: app/features/mec/notifications.php:204
4766
- #: app/features/mec/notifications.php:278
4767
- #: app/features/mec/notifications.php:340
4768
- #: app/features/mec/notifications.php:412
 
4769
  msgid "Location address of booked event"
4770
  msgstr "Adresse der gebuchten Veranstaltung"
4771
 
4772
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4773
- #: app/features/mec/notifications.php:205
4774
- #: app/features/mec/notifications.php:279
4775
- #: app/features/mec/notifications.php:341
4776
- #: app/features/mec/notifications.php:413
 
4777
  #, fuzzy
4778
  #| msgid "Organizer name of booked event"
4779
  msgid "Featured image of booked event"
4780
  msgstr "Name des Veranstalters des gebuchten Events"
4781
 
4782
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4783
- #: app/features/mec/notifications.php:343
 
4784
  msgid "Full Attendee info such as booking form data, name, email etc."
4785
  msgstr ""
4786
  "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
4787
  "Name, email, etc."
4788
 
4789
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4790
- #: app/features/mec/notifications.php:415
 
4791
  msgid "Invoice Link"
4792
  msgstr "Rechnungslink"
4793
 
4794
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4795
- #: app/features/mec/notifications.php:208
4796
- #: app/features/mec/notifications.php:282
4797
- #: app/features/mec/notifications.php:344
4798
- #: app/features/mec/notifications.php:416
 
4799
  msgid "Total Attendees"
4800
  msgstr ""
4801
 
4802
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4803
- #: app/features/mec/notifications.php:210
4804
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4805
  #, fuzzy
4806
  #| msgid "Ticket Name"
4807
  msgid "Ticket name"
4808
  msgstr "Ticket Name"
4809
 
4810
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4811
- #: app/features/mec/notifications.php:211
4812
- #: app/features/mec/notifications.php:418
 
4813
  #, fuzzy
4814
  #| msgid "Ticket Name"
4815
  msgid "Ticket time"
4816
  msgstr "Ticket Name"
4817
 
4818
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4819
- #: app/features/mec/notifications.php:212
4820
- #: app/features/mec/notifications.php:419
 
4821
  #, fuzzy
4822
  #| msgid "Download Invoice"
4823
  msgid "Download ICS file"
4824
  msgstr "Download Rechnung\n"
4825
 
4826
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4827
  msgid "Booking Verification"
4828
  msgstr "Verifizierung der Buchung"
4829
 
4830
- #: app/features/mec/notifications.php:103
4831
  msgid "It sends to attendee email for verifying their booking/email."
4832
  msgstr ""
4833
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
4834
  "verifizieren."
4835
 
4836
- #: app/features/mec/notifications.php:146
4837
  msgid "Email/Booking verification link."
4838
  msgstr "Bestätigungslink für Email/Buchung"
4839
 
4840
- #: app/features/mec/notifications.php:159
4841
  msgid "It sends to attendee after confirming the booking by admin."
4842
  msgstr ""
4843
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
4844
 
4845
- #: app/features/mec/notifications.php:177
4846
  msgid "Send One Single Email Only To First Attendee"
4847
  msgstr ""
4848
 
4849
- #: app/features/mec/notifications.php:206
4850
- #: app/features/mec/notifications.php:414
4851
  msgid "Booking cancellation link."
4852
  msgstr "Link zur Stornierung der Buchung"
4853
 
4854
- #: app/features/mec/notifications.php:209
4855
- #, fuzzy
4856
- #| msgid "Amount (Per Ticket)"
4857
- msgid "Amount Tickets"
4858
- msgstr "Betrag (pro Ticket)"
4859
-
4860
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4861
  #, fuzzy
4862
  #| msgid "Booking cancellation link."
4863
  msgid "Booking Cancellation"
4864
  msgstr "Link zur Stornierung der Buchung"
4865
 
4866
- #: app/features/mec/notifications.php:223
4867
  #, fuzzy
4868
  #| msgid "Enable new event notification"
4869
  msgid "Enable cancellation notification"
4870
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4871
 
4872
- #: app/features/mec/notifications.php:227
4873
  #, fuzzy
4874
  #| msgid "It sends to attendee after booking for notifying him/her."
4875
  msgid ""
@@ -4879,50 +4969,50 @@ msgstr ""
4879
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4880
  "benachrichtigen."
4881
 
4882
- #: app/features/mec/notifications.php:245
4883
- #: app/features/mec/notifications.php:439
4884
  #, fuzzy
4885
  #| msgid "Send the email to event organizer"
4886
  msgid "Send the email to admin"
4887
  msgstr "Sendet das Email zum Event Organisator"
4888
 
4889
- #: app/features/mec/notifications.php:253
4890
  #, fuzzy
4891
  #| msgid "Send the email to event organizer"
4892
  msgid "Send the email to booking user"
4893
  msgstr "Sendet das Email zum Event Organisator"
4894
 
4895
- #: app/features/mec/notifications.php:280
4896
- #: app/features/mec/notifications.php:342
4897
  msgid "Admin booking management link."
4898
  msgstr "Admin-link zur Buchungsverwaltung"
4899
 
4900
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4901
  msgid "Admin"
4902
  msgstr ""
4903
 
4904
- #: app/features/mec/notifications.php:293
4905
  #, fuzzy
4906
  #| msgid "Enable booking notification"
4907
  msgid "Enable admin notification"
4908
  msgstr "Buchungsbenachrichtigung aktivieren"
4909
 
4910
- #: app/features/mec/notifications.php:297
4911
  msgid "It sends to admin to notify him/her that a new booking received."
4912
  msgstr ""
4913
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
4914
  "Informieren, dass eine neue Buchung eingegangen ist."
4915
 
4916
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4917
- #: app/libraries/notifications.php:548
4918
  msgid "Booking Reminder"
4919
  msgstr "Buchungs Erinnerung"
4920
 
4921
- #: app/features/mec/notifications.php:355
4922
  msgid "Enable booking reminder notification"
4923
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
4924
 
4925
- #: app/features/mec/notifications.php:361
4926
  #, php-format
4927
  msgid ""
4928
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4934,24 +5024,24 @@ msgstr ""
4934
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
4935
  "gesendet werden."
4936
 
4937
- #: app/features/mec/notifications.php:361
4938
  msgid "only once per day"
4939
  msgstr "nur einmal pro Tag"
4940
 
4941
- #: app/features/mec/notifications.php:379
4942
  msgid "Days"
4943
  msgstr "Tage"
4944
 
4945
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4946
  #: app/libraries/main.php:583
4947
  msgid "New Event"
4948
  msgstr "Neue Veranstaltung"
4949
 
4950
- #: app/features/mec/notifications.php:433
4951
  msgid "Enable new event notification"
4952
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4953
 
4954
- #: app/features/mec/notifications.php:443
4955
  msgid ""
4956
  "It sends after adding a new event from frontend event submission or from "
4957
  "website backend."
@@ -4959,47 +5049,47 @@ msgstr ""
4959
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
4960
  "Übermittlung oder dem Backend versandt."
4961
 
4962
- #: app/features/mec/notifications.php:465
4963
- #: app/features/mec/notifications.php:513
4964
  msgid "Title of event"
4965
  msgstr "Titel der Veranstaltung"
4966
 
4967
- #: app/features/mec/notifications.php:466
4968
- #: app/features/mec/notifications.php:514
4969
  #, fuzzy
4970
  #| msgid "Title of event"
4971
  msgid "Link of event"
4972
  msgstr "Titel der Veranstaltung"
4973
 
4974
- #: app/features/mec/notifications.php:469
4975
- #: app/features/mec/notifications.php:517
4976
  msgid "Status of event"
4977
  msgstr "Status der Veranstaltung"
4978
 
4979
- #: app/features/mec/notifications.php:470
4980
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4981
  #: app/features/mec/settings.php:738
4982
  msgid "Event Note"
4983
  msgstr "Veranstaltungsnotiz"
4984
 
4985
- #: app/features/mec/notifications.php:474
4986
- #: app/features/mec/notifications.php:522
4987
  msgid "Admin events management link."
4988
  msgstr "Admin-link zur Veranstaltungsverwaltung"
4989
 
4990
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4991
  #, fuzzy
4992
  #| msgid "The event published."
4993
  msgid "User Event Publishing"
4994
  msgstr "Die Veranstaltung wurde veröffentlicht."
4995
 
4996
- #: app/features/mec/notifications.php:487
4997
  #, fuzzy
4998
  #| msgid "Enable new event notification"
4999
  msgid "Enable user event publishing notification"
5000
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
5001
 
5002
- #: app/features/mec/notifications.php:491
5003
  #, fuzzy
5004
  #| msgid ""
5005
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5182,7 +5272,7 @@ msgid "You can enable/disable Schema scripts"
5182
  msgstr ""
5183
 
5184
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5185
- #: app/libraries/main.php:5272
5186
  msgid "Weekdays"
5187
  msgstr "Wochentage"
5188
 
@@ -6475,12 +6565,12 @@ msgstr "z.B.. max@mustermann.com"
6475
  msgid "eg. https://webnus.net"
6476
  msgstr "http://webnus.net"
6477
 
6478
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6479
- #: app/skins/single.php:856
6480
  msgid "Other Organizers"
6481
  msgstr "Andere Veranstalter"
6482
 
6483
- #: app/features/organizers.php:313
6484
  msgid ""
6485
  "You can select extra organizers in addition to main organizer if you like."
6486
  msgstr ""
@@ -6503,7 +6593,7 @@ msgstr "Ihre Buchung kann nicht storniert werden."
6503
  msgid "#"
6504
  msgstr ""
6505
 
6506
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6507
  msgid "Status"
6508
  msgstr ""
6509
 
@@ -6540,7 +6630,7 @@ msgstr ""
6540
  msgid "No bookings found!"
6541
  msgstr "Keine Buchungen gefunden"
6542
 
6543
- #: app/features/search.php:87 app/libraries/main.php:5262
6544
  msgid "label"
6545
  msgstr "label"
6546
 
@@ -6567,76 +6657,94 @@ msgid "No search result."
6567
  msgstr ""
6568
 
6569
  #: app/features/search_bar/search_result.php:11
6570
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6571
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6572
- #: app/skins/single.php:160 app/skins/single.php:747
6573
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6574
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6575
  msgid "All of the day"
6576
  msgstr "Den ganzen Tag"
6577
 
6578
- #: app/features/speakers.php:110 app/features/speakers.php:179
6579
- #: app/features/speakers.php:255
6580
  #, fuzzy
6581
  #| msgid "Title"
6582
  msgid "Job Title"
6583
  msgstr "Titel"
6584
 
6585
- #: app/features/speakers.php:113 app/features/speakers.php:180
6586
  msgid "Insert speaker job title."
6587
  msgstr ""
6588
 
6589
- #: app/features/speakers.php:121 app/features/speakers.php:184
6590
  #, fuzzy
6591
  #| msgid "Insert organizer phone number."
6592
  msgid "Insert speaker phone number."
6593
  msgstr "Veranstalter Telefonnummer einfügen"
6594
 
6595
- #: app/features/speakers.php:129 app/features/speakers.php:188
6596
  #, fuzzy
6597
  #| msgid "Insert organizer email address."
6598
  msgid "Insert speaker email address."
6599
  msgstr "Veranstalter Email-Adresse einfügen"
6600
 
6601
- #: app/features/speakers.php:134 app/features/speakers.php:191
6602
  #, fuzzy
6603
  #| msgid "Facebook Page Link"
6604
  msgid "Facebook Page"
6605
  msgstr "Facebook Seiten Link"
6606
 
6607
- #: app/features/speakers.php:137 app/features/speakers.php:192
6608
  #, fuzzy
6609
  #| msgid "Import from Facebook Calendar"
6610
  msgid "Insert URL of Facebook Page"
6611
  msgstr "Vom Facebook Kalender Importieren"
6612
 
6613
- #: app/features/speakers.php:142 app/features/speakers.php:195
6614
  msgid "Instagram"
6615
  msgstr ""
6616
 
6617
- #: app/features/speakers.php:145 app/features/speakers.php:196
6618
  #, fuzzy
6619
  #| msgid "Insert -1 for unlimited usage"
6620
  msgid "Insert URL of Instagram"
6621
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6622
 
6623
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6624
  #, fuzzy
6625
  #| msgid "Twitter"
6626
  msgid "Twitter Page"
6627
  msgstr "Twitter"
6628
 
6629
- #: app/features/speakers.php:153 app/features/speakers.php:200
6630
  #, fuzzy
6631
  #| msgid "Insert -1 for unlimited usage"
6632
  msgid "Insert URL of Twitter Page"
6633
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6634
 
6635
- #: app/features/speakers.php:315
 
 
 
 
 
 
6636
  msgid "Sorry, You must insert speaker name!"
6637
  msgstr ""
6638
 
6639
- #: app/features/speakers.php:364
6640
  msgid ""
6641
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6642
  "section and speaker widget section!"
@@ -6798,31 +6906,31 @@ msgstr "Stundenplan"
6798
  msgid "Tile View"
6799
  msgstr "Stundenplan"
6800
 
6801
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6802
  msgid "SU"
6803
  msgstr "SO"
6804
 
6805
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6806
  msgid "MO"
6807
  msgstr "MO"
6808
 
6809
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6810
  msgid "TU"
6811
  msgstr "DI"
6812
 
6813
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6814
  msgid "WE"
6815
  msgstr "MI"
6816
 
6817
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6818
  msgid "TH"
6819
  msgstr "DO"
6820
 
6821
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6822
  msgid "FR"
6823
  msgstr "FR"
6824
 
6825
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6826
  msgid "SA"
6827
  msgstr "SA"
6828
 
@@ -7091,173 +7199,173 @@ msgstr "Die Anfrage ist ungültig!"
7091
  msgid "iCal export stopped!"
7092
  msgstr "iCal Export wurde unterbrochen!"
7093
 
7094
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
7095
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
7096
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
7097
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
7098
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
7099
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
7100
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
7101
  msgid "Sort"
7102
  msgstr "Sortieren"
7103
 
7104
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
7105
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
7106
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
7107
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
7108
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
7109
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
7110
  msgid "Required Field"
7111
  msgstr "Pflichtfeld"
7112
 
7113
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
7114
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
7115
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
7116
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
7117
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
7118
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
7119
  msgid "Insert a label for this field"
7120
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
7121
 
7122
- #: app/libraries/main.php:2958
7123
  msgid "HTML and shortcode are allowed."
7124
  msgstr "HTML und shortcodes sind erlaubt."
7125
 
7126
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
7127
- #: app/libraries/main.php:3089
7128
  msgid "Option"
7129
  msgstr "Option"
7130
 
7131
- #: app/libraries/main.php:3123
7132
  #, php-format
7133
  msgid "Instead of %s, the page title with a link will be show."
7134
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
7135
 
7136
- #: app/libraries/main.php:3125
7137
  msgid "Agreement Page"
7138
  msgstr "Zustimmungsseite"
7139
 
7140
- #: app/libraries/main.php:3136
7141
  msgid "Checked by default"
7142
  msgstr ""
7143
 
7144
- #: app/libraries/main.php:3137
7145
  msgid "Unchecked by default"
7146
  msgstr ""
7147
 
7148
- #: app/libraries/main.php:3160
7149
  msgid "Insert a label for this option"
7150
  msgstr "Ein neues Label für diese Option einfügen"
7151
 
7152
- #: app/libraries/main.php:3175
7153
  msgid "Free"
7154
  msgstr "kostenfrei"
7155
 
7156
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
7157
  #, fuzzy
7158
  #| msgid "M.E. Calendar"
7159
  msgid "M.E. Calender"
7160
  msgstr "M.E. Calender"
7161
 
7162
- #: app/libraries/main.php:3936
7163
  #, php-format
7164
  msgid "Copy of %s"
7165
  msgstr "Kopie von %s"
7166
 
7167
- #: app/libraries/main.php:4651
7168
  msgid "Booked an event."
7169
  msgstr "Eine Veranstaltung wurde gebucht."
7170
 
7171
- #: app/libraries/main.php:4692
7172
  #, php-format
7173
  msgid "%s booked %s event."
7174
  msgstr "%s gebuchtes %s Event"
7175
 
7176
- #: app/libraries/main.php:5257
7177
  msgid "Taxonomies"
7178
  msgstr "Klassifizierung "
7179
 
7180
- #: app/libraries/main.php:5259
7181
  msgid "Category Plural Label"
7182
  msgstr "Kategorien"
7183
 
7184
- #: app/libraries/main.php:5260
7185
  msgid "Category Singular Label"
7186
  msgstr "Kategorie"
7187
 
7188
- #: app/libraries/main.php:5261
7189
  msgid "Label Plural Label"
7190
  msgstr "Labels"
7191
 
7192
- #: app/libraries/main.php:5262
7193
  msgid "Label Singular Label"
7194
  msgstr "Label"
7195
 
7196
- #: app/libraries/main.php:5263
7197
  msgid "Location Plural Label"
7198
  msgstr "Veranstaltungsorte"
7199
 
7200
- #: app/libraries/main.php:5264
7201
  msgid "Location Singular Label"
7202
  msgstr "Veranstaltungsort"
7203
 
7204
- #: app/libraries/main.php:5265
7205
  msgid "Organizer Plural Label"
7206
  msgstr "Veranstalter"
7207
 
7208
- #: app/libraries/main.php:5266
7209
  msgid "Organizer Singular Label"
7210
  msgstr "Veranstalter"
7211
 
7212
- #: app/libraries/main.php:5267
7213
  #, fuzzy
7214
  #| msgid "Label Plural Label"
7215
  msgid "Speaker Plural Label"
7216
  msgstr "Labels"
7217
 
7218
- #: app/libraries/main.php:5268
7219
  #, fuzzy
7220
  #| msgid "Label Singular Label"
7221
  msgid "Speaker Singular Label"
7222
  msgstr "Label"
7223
 
7224
- #: app/libraries/main.php:5274
7225
  msgid "Sunday abbreviation"
7226
  msgstr "Sonntag Abkürzung"
7227
 
7228
- #: app/libraries/main.php:5275
7229
  msgid "Monday abbreviation"
7230
  msgstr "Montag Abkürzung"
7231
 
7232
- #: app/libraries/main.php:5276
7233
  msgid "Tuesday abbreviation"
7234
  msgstr "Dienstag Abkürzung"
7235
 
7236
- #: app/libraries/main.php:5277
7237
  msgid "Wednesday abbreviation"
7238
  msgstr "Mittwoch Abkürzung"
7239
 
7240
- #: app/libraries/main.php:5278
7241
  msgid "Thursday abbreviation"
7242
  msgstr "Donnerstag Abkürzung"
7243
 
7244
- #: app/libraries/main.php:5279
7245
  msgid "Friday abbreviation"
7246
  msgstr "Freitag Abkürzung"
7247
 
7248
- #: app/libraries/main.php:5280
7249
  msgid "Saturday abbreviation"
7250
  msgstr "Samstag Abkürzung "
7251
 
7252
- #: app/libraries/main.php:5284
7253
  msgid "Others"
7254
  msgstr "Andere"
7255
 
7256
- #: app/libraries/main.php:5286
7257
  msgid "Booking Success Message"
7258
  msgstr "Buchung erfolgreich Mitteilung"
7259
 
7260
- #: app/libraries/main.php:5286
7261
  msgid ""
7262
  "Thanks for your booking. Your tickets booked, booking verification might be "
7263
  "needed, please check your email."
@@ -7265,17 +7373,17 @@ msgstr ""
7265
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
7266
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
7267
 
7268
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7269
  msgid "Register Button"
7270
  msgstr "Register Button"
7271
 
7272
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7273
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7274
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7275
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7276
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7277
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7278
- #: app/skins/single.php:771 app/skins/single/default.php:255
7279
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7280
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7281
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7286,11 +7394,11 @@ msgstr "Register Button"
7286
  msgid "REGISTER"
7287
  msgstr "ANMELDEN"
7288
 
7289
- #: app/libraries/main.php:5288
7290
  msgid "View Detail Button"
7291
  msgstr "Ansicht Detail Button"
7292
 
7293
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7294
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7295
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7296
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7301,87 +7409,87 @@ msgstr "Ansicht Detail Button"
7301
  msgid "View Detail"
7302
  msgstr "Details "
7303
 
7304
- #: app/libraries/main.php:5289
7305
  msgid "Event Detail Button"
7306
  msgstr "Event Detail Button"
7307
 
7308
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7309
  msgid "Event Detail"
7310
  msgstr "Veranstaltungsdetails"
7311
 
7312
- #: app/libraries/main.php:5291
7313
  msgid "More Info Link"
7314
  msgstr "Link Mehr Informationen"
7315
 
7316
- #: app/libraries/main.php:5294
7317
  msgid "Ticket (Singular)"
7318
  msgstr "Ticket"
7319
 
7320
- #: app/libraries/main.php:5295
7321
  msgid "Tickets (Plural)"
7322
  msgstr "Tickets"
7323
 
7324
- #: app/libraries/main.php:5381
7325
  msgid "EventON"
7326
  msgstr "EventON"
7327
 
7328
- #: app/libraries/main.php:5382
7329
  msgid "The Events Calendar"
7330
  msgstr "The Events Calendar"
7331
 
7332
- #: app/libraries/main.php:5383
7333
  msgid "Events Schedule WP Plugin"
7334
  msgstr "Event Zeitplan WP-Plugin"
7335
 
7336
- #: app/libraries/main.php:5384
7337
  msgid "Calendarize It"
7338
  msgstr ""
7339
 
7340
- #: app/libraries/main.php:5385
7341
  #, fuzzy
7342
  #| msgid "No Search Options"
7343
  msgid "Event Espresso"
7344
  msgstr "Keine Suchoptionen"
7345
 
7346
- #: app/libraries/main.php:5386
7347
  #, fuzzy
7348
  #| msgid "Event Repeating"
7349
  msgid "Events Manager (Recurring)"
7350
  msgstr "Wiederholende Veranstaltung"
7351
 
7352
- #: app/libraries/main.php:5387
7353
  #, fuzzy
7354
  #| msgid "Modern Events Calendar"
7355
  msgid "Events Manager (Single)"
7356
  msgstr "Moderner Event Kalender "
7357
 
7358
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7359
  msgid "Confirmed"
7360
  msgstr "Bestätigt"
7361
 
7362
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7363
  msgid "Rejected"
7364
  msgstr "Abgelehnt"
7365
 
7366
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7367
  msgid "Pending"
7368
  msgstr "Ausstehend"
7369
 
7370
- #: app/libraries/main.php:5511
7371
  msgid "Waiting"
7372
  msgstr "in Bearbeitung"
7373
 
7374
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7375
  msgid "Skin controller does not exist."
7376
  msgstr "Skin contoller existiert nicht."
7377
 
7378
- #: app/libraries/main.php:5830
7379
  #, fuzzy
7380
  #| msgid "Sold out!"
7381
  msgid "Sold Out"
7382
  msgstr "Ausverkauft!"
7383
 
7384
- #: app/libraries/main.php:5838
7385
  #, fuzzy
7386
  #| msgid "Ticket"
7387
  msgid "Last Few Tickets"
@@ -7391,58 +7499,60 @@ msgstr "Ticket"
7391
  msgid "Please verify your email."
7392
  msgstr "Bitte bestätigen Sie Ihre email."
7393
 
7394
- #: app/libraries/notifications.php:142
7395
  msgid "Your booking is received."
7396
  msgstr "Ihre Buchung ist eingegangen"
7397
 
7398
- #: app/libraries/notifications.php:249
7399
  msgid "Your booking is confirmed."
7400
  msgstr "Ihre Buchung wurde bestätigt."
7401
 
7402
- #: app/libraries/notifications.php:391
7403
  #, fuzzy
7404
  #| msgid "Your booking cannot be canceled."
7405
  msgid "booking canceled."
7406
  msgstr "Ihre Buchung kann nicht storniert werden."
7407
 
7408
- #: app/libraries/notifications.php:466
7409
  msgid "A new booking is received."
7410
  msgstr "Eine neue Buchung ist eingegangen."
7411
 
7412
- #: app/libraries/notifications.php:657
7413
  msgid "A new event is added."
7414
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
7415
 
7416
- #: app/libraries/notifications.php:726
7417
  #, fuzzy
7418
  #| msgid "The event published."
7419
  msgid "Your event is published."
7420
  msgstr "Die Veranstaltung wurde veröffentlicht."
7421
 
7422
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7423
- #: app/libraries/notifications.php:964
7424
  msgid "to"
7425
  msgstr ""
7426
 
7427
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7428
  msgid "+ Add to Google Calendar"
7429
  msgstr "+ zum Google Calendar hinzufügen"
7430
 
7431
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7432
  msgid "+ iCal export"
7433
  msgstr "+ zu iCal exportieren"
7434
 
7435
- #: app/libraries/notifications.php:1043
7436
  msgid "Yes"
7437
  msgstr "Ja"
7438
 
7439
- #: app/libraries/notifications.php:1043
7440
  msgid "No"
7441
  msgstr "Nein"
7442
 
7443
- #: app/libraries/skins.php:1000
7444
- msgid "none"
7445
- msgstr ""
 
 
7446
 
7447
  #: app/modules/attendees-list/details.php:36
7448
  msgid "Event Attendees"
@@ -7479,6 +7589,12 @@ msgstr ""
7479
  msgid "Free Booking"
7480
  msgstr "Kostenlose Buchung"
7481
 
 
 
 
 
 
 
7482
  #: app/modules/booking/steps/form.php:165
7483
  #, fuzzy
7484
  #| msgid "Fill other attendees's information like the first form."
@@ -7487,7 +7603,7 @@ msgstr ""
7487
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
7488
 
7489
  #: app/modules/booking/steps/form.php:179
7490
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7491
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7492
  msgid "Next"
7493
  msgstr "Weiter"
@@ -7500,17 +7616,17 @@ msgstr "Vielen Dank für Ihre Buchung."
7500
  msgid "Book Event"
7501
  msgstr "Veranstaltung buchen"
7502
 
7503
- #: app/modules/booking/steps/tickets.php:44
7504
  #, php-format
7505
  msgid "Available %s: <span>%s</span>"
7506
  msgstr "Verfügbar %s: <span>%s</span>"
7507
 
7508
- #: app/modules/booking/steps/tickets.php:48
7509
  #, php-format
7510
- msgid "The %s ticket sales has stoped!"
7511
  msgstr ""
7512
 
7513
- #: app/modules/booking/steps/tickets.php:49
7514
  #, php-format
7515
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7516
  msgstr ""
@@ -7533,7 +7649,7 @@ msgstr "Adresse von..."
7533
  msgid "Get Directions"
7534
  msgstr "Wegbeschreibung"
7535
 
7536
- #: app/modules/links/details.php:17 app/skins/single.php:455
7537
  msgid "Share this event"
7538
  msgstr "Diese Veranstaltung teilen"
7539
 
@@ -7560,7 +7676,7 @@ msgstr "Nächstes Event"
7560
  msgid "Go to occurrence page"
7561
  msgstr "Zum Event"
7562
 
7563
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7564
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7565
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7566
  msgid "Time"
@@ -7690,27 +7806,27 @@ msgstr "Keine Veranstaltungen"
7690
  msgid "Home"
7691
  msgstr ""
7692
 
7693
- #: app/skins/single.php:538 app/skins/single/default.php:51
7694
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7695
  #: app/skins/single/modern.php:265
7696
  msgid "Sold out!"
7697
  msgstr "Ausverkauft!"
7698
 
7699
- #: app/skins/single.php:816 app/skins/single.php:871
7700
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7701
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7702
  #: app/skins/single/modern.php:44
7703
  msgid "Phone"
7704
  msgstr "Phone"
7705
 
7706
- #: app/skins/single.php:830 app/skins/single.php:885
7707
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7708
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7709
  #: app/skins/single/modern.php:58
7710
  msgid "Website"
7711
  msgstr "Website"
7712
 
7713
- #: app/skins/single.php:955
7714
  #, fuzzy
7715
  #| msgid "No Search Options"
7716
  msgid "Speakers:"
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
6
+ "PO-Revision-Date: 2020-01-22 10:48+0330\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
297
  msgid "Add New Event"
298
  msgstr "Neue Veranstaltung hinzufügen"
299
 
300
+ #: app/features/events.php:161 app/features/ix.php:3889
301
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
302
  msgid "No events found!"
303
  msgstr "Keine Veranstaltungen gefunden!"
332
  #: app/features/mec/meta_boxes/search_form.php:575
333
  #: app/features/mec/meta_boxes/search_form.php:672
334
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
335
+ #: app/features/search.php:67 app/libraries/main.php:5278
336
+ #: app/libraries/skins.php:858 app/skins/single.php:566
337
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
338
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
339
  #: app/skins/single/modern.php:113
342
 
343
  #: app/features/events.php:183 app/features/events.php:3275
344
  #: app/features/fes/form.php:757 app/features/mec.php:402
345
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
346
  msgid "Categories"
347
  msgstr "Kategorien"
348
 
431
  msgstr "Wiederholende Veranstaltung"
432
 
433
  #: app/features/events.php:333 app/features/events.php:1286
434
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
435
  msgid "Hourly Schedule"
436
  msgstr "Stundenplan"
437
 
449
 
450
  #: app/features/events.php:336 app/features/events.php:3322
451
  #: app/features/events.php:3513 app/features/events.php:3555
452
+ #: app/features/ix.php:3510 app/features/ix.php:3551
453
  #: app/features/mec/meta_boxes/display_options.php:960
454
  #: app/features/mec/meta_boxes/search_form.php:45
455
  #: app/features/mec/meta_boxes/search_form.php:107
466
  #: app/features/organizers.php:58 app/features/organizers.php:204
467
  #: app/features/organizers.php:260 app/features/organizers.php:262
468
  #: app/features/organizers.php:271 app/features/search.php:75
469
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
470
+ #: app/skins/single.php:812 app/skins/single/default.php:217
471
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
472
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
473
  msgid "Organizer"
474
  msgstr "Veranstalter"
475
 
476
  #: app/features/events.php:337 app/features/events.php:1172
477
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
478
+ #: app/skins/single.php:589 app/skins/single/default.php:126
479
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
480
  #: app/skins/single/modern.php:208
481
  msgid "Cost"
493
  #: app/features/events.php:3802 app/features/fes.php:223
494
  #: app/features/fes/form.php:689 app/features/labels.php:178
495
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
496
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
497
  #: app/modules/booking/steps/form.php:37
498
  msgid "Name"
499
  msgstr "Name"
503
  #: app/features/fes.php:223 app/features/fes/form.php:685
504
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
505
  #: app/features/organizers.php:111 app/features/organizers.php:152
506
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
507
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
508
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
509
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
510
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
511
+ #: app/skins/single.php:884 app/skins/single/default.php:234
512
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
513
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
514
  msgid "Email"
521
  #: app/features/events.php:491 app/features/events.php:497
522
  #: app/features/events.php:3323 app/features/events.php:3513
523
  #: app/features/events.php:3555 app/features/fes/form.php:247
524
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
525
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
526
  #: app/features/mec/dashboard.php:400
527
  #: app/features/mec/meta_boxes/display_options.php:48
528
  #: app/features/mec/meta_boxes/display_options.php:228
559
  #: app/features/events.php:583 app/features/events.php:588
560
  #: app/features/events.php:3324 app/features/events.php:3513
561
  #: app/features/events.php:3555 app/features/fes/form.php:287
562
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
563
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
564
  #: app/features/mec/dashboard.php:401
565
  msgid "End Date"
566
  msgstr "Ende Datum"
644
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
645
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
646
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
647
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
648
+ #: app/features/mec/notifications.php:277
649
+ #: app/features/mec/notifications.php:380
650
+ #: app/features/mec/notifications.php:486
651
+ #: app/features/mec/notifications.php:587
652
+ #: app/features/mec/notifications.php:598
653
+ #: app/features/mec/notifications.php:704
654
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
655
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
656
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
657
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
667
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
668
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
669
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
670
+ #: app/skins/single.php:674 app/skins/single/default.php:141
671
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
672
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
673
  msgid "Read More"
852
 
853
  #: app/features/events.php:1168 app/features/events.php:3513
854
  #: app/features/events.php:3555 app/features/fes/form.php:727
855
+ #: app/features/ix.php:3510 app/features/ix.php:3551
856
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
857
  #: app/widgets/single.php:103
858
  msgid "Event Cost"
859
  msgstr ""
872
  #: app/features/events.php:1204 app/features/events.php:2541
873
  #: app/features/fes.php:223 app/features/mec/booking.php:491
874
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
875
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
876
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
877
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
878
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
879
  msgid "Date"
910
  #: app/features/events.php:1437 app/features/events.php:2322
911
  #: app/features/events.php:2369 app/features/events.php:3319
912
  #: app/features/events.php:3513 app/features/events.php:3555
913
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
914
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
915
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
916
  msgid "Title"
917
  msgstr "Titel"
924
  #: app/features/events.php:2357 app/features/events.php:2399
925
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
926
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
927
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
928
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
929
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
930
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
931
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
932
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
933
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
934
  msgid "Remove"
935
  msgstr "Entfernen"
936
 
958
  #: app/features/events.php:1445 app/features/fes/form.php:851
959
  #: app/features/mec.php:410 app/features/mec/modules.php:52
960
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
961
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
962
  #: app/modules/speakers/details.php:18
963
  msgid "Speakers"
964
  msgstr ""
975
  msgstr "Veranstaltungslinks"
976
 
977
  #: app/features/events.php:1479 app/features/events.php:1485
978
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
979
  msgid "Event Link"
980
  msgstr "Veranstaltungslink"
981
 
1003
  msgstr ""
1004
 
1005
  #: app/features/events.php:1495 app/features/events.php:1508
1006
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
1007
+ #: app/skins/single.php:673 app/skins/single/default.php:140
1008
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1009
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1010
  #: app/widgets/single.php:107
1040
 
1041
  #: app/features/events.php:1596 app/features/events.php:1849
1042
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1043
+ #: app/modules/booking/steps/tickets.php:40
1044
  #: app/skins/available_spot/tpl.php:160
1045
  msgid "Unlimited"
1046
  msgstr "Unlimitiert"
1077
  msgstr ""
1078
 
1079
  #: app/features/events.php:1653 app/libraries/book.php:60
1080
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1081
  msgid "Tickets"
1082
  msgstr "Tickets"
1083
 
1100
 
1101
  #: app/features/events.php:1680 app/features/events.php:1955
1102
  #: app/features/events.php:3513 app/features/events.php:3555
1103
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1104
  msgid "Start Time"
1105
  msgstr "Uhrzeit des Beginns"
1106
 
1107
  #: app/features/events.php:1739 app/features/events.php:1985
1108
  #: app/features/events.php:3513 app/features/events.php:3555
1109
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1110
  msgid "End Time"
1111
  msgstr "Uhrzeit Ende"
1112
 
1138
  msgid "Available Tickets"
1139
  msgstr "Verfügbare Tickets: %s "
1140
 
1141
+ #: app/features/events.php:1853 app/features/events.php:2068
1142
  #, fuzzy
1143
  #| msgid "Amount (Per Ticket)"
1144
  msgid "Minimum Ticket e.g. 3"
1145
  msgstr "Betrag (pro Ticket)"
1146
 
1147
+ #: app/features/events.php:1856 app/features/events.php:2071
1148
  #, fuzzy
1149
  #| msgid "Amount (Per Ticket)"
1150
  msgid "MinimumTicket"
1151
  msgstr "Betrag (pro Ticket)"
1152
 
1153
+ #: app/features/events.php:1858 app/features/events.php:2073
1154
  msgid "Set a number for the minimum ticket reservation"
1155
  msgstr ""
1156
 
1157
+ #: app/features/events.php:1866 app/features/events.php:2081
1158
  msgid "e.g. 0"
1159
  msgstr ""
1160
 
1161
+ #: app/features/events.php:1868 app/features/events.php:2083
1162
  #, fuzzy
1163
  #| msgid "Days"
1164
  msgid "Day"
1165
  msgstr "Tage"
1166
 
1167
+ #: app/features/events.php:1869 app/features/events.php:2084
1168
  msgid "Hour"
1169
  msgstr ""
1170
 
1171
+ #: app/features/events.php:1871 app/features/events.php:2086
1172
  #, php-format
1173
  msgid "Stop selling ticket %s before event start."
1174
  msgstr ""
1194
  #: app/features/mec/meta_boxes/search_form.php:610
1195
  #: app/features/mec/meta_boxes/search_form.php:707
1196
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1197
+ #: app/libraries/skins.php:988
1198
  msgid "Label"
1199
  msgstr "Label"
1200
 
1264
  msgstr ""
1265
 
1266
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1267
+ #: app/libraries/main.php:2767
1268
  #, fuzzy
1269
  #| msgid "Name"
1270
  msgid "MEC Name"
1271
  msgstr "Name"
1272
 
1273
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1274
+ #: app/libraries/main.php:2796
1275
  #, fuzzy
1276
  #| msgid "Email"
1277
  msgid "MEC Email"
1278
  msgstr "Email"
1279
 
1280
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1281
+ #: app/libraries/main.php:2737
1282
  msgid "Text"
1283
  msgstr "Text"
1284
 
1285
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1286
  #: app/features/organizers.php:103 app/features/organizers.php:148
1287
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1288
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1289
  msgid "Tel"
1290
  msgstr "Tel"
1291
 
1292
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1293
+ #: app/libraries/main.php:2855
1294
  msgid "File"
1295
  msgstr ""
1296
 
1297
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1298
+ #: app/libraries/main.php:2942
1299
  msgid "Textarea"
1300
  msgstr "Textbereich"
1301
 
1302
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1303
+ #: app/libraries/main.php:2995
1304
  msgid "Checkboxes"
1305
  msgstr "Checkboxes"
1306
 
1307
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1308
+ #: app/libraries/main.php:3039
1309
  msgid "Radio Buttons"
1310
  msgstr "Radio Buttons"
1311
 
1385
  #: app/features/mec/meta_boxes/search_form.php:696
1386
  #: app/features/mec/meta_boxes/search_form.php:703
1387
  #: app/features/mec/meta_boxes/search_form.php:710
1388
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1389
  msgid "Dropdown"
1390
  msgstr "Dropdown"
1391
 
1392
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1393
+ #: app/libraries/main.php:3130
1394
  msgid "Agreement"
1395
  msgstr "Zustimmung"
1396
 
1397
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1398
+ #: app/libraries/main.php:2971
1399
  msgid "Paragraph"
1400
  msgstr "Absatz"
1401
 
1424
  msgstr "Teilnehmer Limit, maximale Anzahl"
1425
 
1426
  #: app/features/events.php:3321 app/features/events.php:3513
1427
+ #: app/features/events.php:3555 app/features/ix.php:3510
1428
+ #: app/features/ix.php:3551 app/features/locations.php:58
1429
  #: app/features/locations.php:230 app/features/locations.php:287
1430
  #: app/features/locations.php:289 app/features/locations.php:298
1431
  #: app/features/mec/meta_boxes/display_options.php:959
1442
  #: app/features/mec/meta_boxes/search_form.php:679
1443
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1444
  #: app/features/search.php:71 app/libraries/main.php:2236
1445
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1446
+ #: app/skins/single.php:493 app/skins/single.php:924
1447
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1448
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1449
  #: app/skins/single/modern.php:97
1484
  msgstr "Kopie"
1485
 
1486
  #: app/features/events.php:3513 app/features/events.php:3555
1487
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1488
  #: app/features/labels.php:177 app/features/locations.php:229
1489
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1490
  msgid "ID"
1491
  msgstr "ID"
1492
 
1493
  #: app/features/events.php:3513 app/features/events.php:3555
1494
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1495
  msgid "Link"
1496
  msgstr "Link"
1497
 
1507
 
1508
  #: app/features/events.php:3808 app/features/fes.php:223
1509
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1510
+ #: app/libraries/main.php:5312
1511
  msgid "Ticket"
1512
  msgstr "Ticket"
1513
 
1691
 
1692
  #: app/features/fes/form.php:783 app/features/labels.php:61
1693
  #: app/features/labels.php:221 app/features/mec.php:403
1694
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1695
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1696
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1697
  #: app/skins/single/modern.php:223
1698
  msgid "Labels"
1772
  msgid "The events are imported successfully!"
1773
  msgstr ""
1774
 
1775
+ #: app/features/ix.php:943
1776
  msgid "Third Party plugin is not installed and activated!"
1777
  msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1778
 
1779
+ #: app/features/ix.php:966
1780
  msgid "Third Party plugin is invalid!"
1781
  msgstr "Drittanbieter-Plugin ist ungültig!"
1782
 
1783
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1784
  msgid "Both of API key and Calendar ID are required!"
1785
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1786
 
1787
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1788
  msgid "Please select some events to import!"
1789
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1790
 
1791
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1792
  #, fuzzy
1793
  #| msgid "Both of API key and Calendar ID are required!"
1794
  msgid "Both of API key and Group URL are required!"
1795
  msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1796
 
1797
+ #: app/features/ix.php:3433
1798
  msgid "Check at Meetup"
1799
  msgstr ""
1800
 
1801
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1802
  msgid "Organizer Tel"
1803
  msgstr "Organisator Telefon"
1804
 
1805
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1806
  msgid "Organizer Email"
1807
  msgstr "Organisator Email"
1808
 
1809
+ #: app/features/ix.php:3632
1810
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1811
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1812
 
1813
+ #: app/features/ix.php:3655
1814
  #, php-format
1815
  msgid "All seems good! Please click %s for authenticating your app."
1816
  msgstr ""
1817
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1818
 
1819
+ #: app/features/ix.php:3709
1820
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1821
  msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1822
 
1823
+ #: app/features/ix.php:3825
1824
  #, php-format
1825
  msgid "%s events added to Google Calendar successfully."
1826
  msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
1827
 
1828
+ #: app/features/ix.php:3826
1829
  #, php-format
1830
  msgid "%s previously added events get updated."
1831
  msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1832
 
1833
+ #: app/features/ix.php:3827
1834
  #, php-format
1835
  msgid "%s events failed to add for following reasons: %s"
1836
  msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1837
 
1838
+ #: app/features/ix.php:3859
1839
  #, fuzzy
1840
  #| msgid "Please insert your facebook page's link."
1841
  msgid "Please insert your Facebook page's link."
1842
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1843
 
1844
+ #: app/features/ix.php:3868
1845
  #, fuzzy
1846
  #| msgid ""
1847
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
1853
  "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1854
  "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1855
 
1856
+ #: app/features/ix.php:3900
1857
  msgid "Please insert your facebook page's link."
1858
  msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1859
 
1860
+ #: app/features/ix.php:3905
1861
  msgid ""
1862
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1863
  "valid facebook page link."
2031
  #: app/features/ix/export_g_calendar.php:72
2032
  #: app/features/ix/export_g_calendar.php:147
2033
  #: app/features/ix/export_g_calendar.php:164
2034
+ #: app/features/mec/notifications.php:131
2035
+ #: app/features/mec/notifications.php:223
2036
+ #: app/features/mec/notifications.php:320
2037
+ #: app/features/mec/notifications.php:635
2038
  msgid "Add to Google Calendar"
2039
  msgstr "Zum Google Kalender hinzufügen"
2040
 
2041
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2042
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2043
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2044
  msgid "Checking ..."
2045
  msgstr "Überprüfung"
2311
 
2312
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2313
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2314
+ #: app/features/mec/notifications.php:540
2315
  msgid "Important Note"
2316
  msgstr "Important Note"
2317
 
2514
  msgstr "Ausgewähltes Bild"
2515
 
2516
  #: app/features/labels.php:118 app/features/labels.php:143
2517
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2518
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2519
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2520
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2533
  msgstr ""
2534
 
2535
  #: app/features/labels.php:180 app/features/locations.php:232
2536
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2537
  #: app/modules/booking/steps/tickets.php:38
2538
  msgid "Count"
2539
  msgstr "Zähler"
2550
 
2551
  #: app/features/locations.php:59 app/features/mec.php:404
2552
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2553
+ #: app/libraries/main.php:5281
2554
  msgid "Locations"
2555
  msgstr "Orte"
2556
 
2583
 
2584
  #: app/features/locations.php:138 app/features/locations.php:180
2585
  #: app/features/organizers.php:127 app/features/organizers.php:160
2586
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2587
  msgid "Thumbnail"
2588
  msgstr "Miniaturansicht"
2589
 
2590
  #: app/features/locations.php:143 app/features/locations.php:183
2591
  #: app/features/organizers.php:132 app/features/organizers.php:163
2592
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2593
  msgid "Upload/Add image"
2594
  msgstr "Bild hochladen/hinzufügen"
2595
 
2597
  #: app/features/locations.php:340 app/features/locations.php:347
2598
  #: app/features/organizers.php:133 app/features/organizers.php:164
2599
  #: app/features/organizers.php:299 app/features/organizers.php:306
2600
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2601
  msgid "Remove image"
2602
  msgstr "Bild entfernen"
2603
 
2662
  msgid "Don't show map in single event page"
2663
  msgstr "Karte in Einzelansicht nicht anzeigen"
2664
 
2665
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2666
  #, fuzzy
2667
  #| msgid "Locations"
2668
  msgid "Other Locations"
2692
  msgid "Troubleshooting"
2693
  msgstr ""
2694
 
2695
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2696
  #, php-format
2697
  msgid "%s to %s"
2698
  msgstr "%s zu %s"
2728
 
2729
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2730
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2731
+ #: app/libraries/main.php:5283
2732
  msgid "Organizers"
2733
  msgstr "Veranstalter"
2734
 
2850
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2851
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2852
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2853
+ #: app/features/mec/notifications.php:816
2854
+ #: app/features/mec/notifications.php:828
2855
+ #: app/features/mec/notifications.php:924
2856
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2857
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2858
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2859
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2974
  msgid "Enable Express Attendees Form"
2975
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
2976
 
2977
+ #: app/features/mec/booking.php:186
2978
  msgid "Attendees Form"
2979
  msgstr "Teilnahmeformular"
2980
 
3010
  msgid "Auto verification for paid bookings"
3011
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3012
 
3013
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
3014
  #: app/libraries/main.php:579
3015
  msgid "Booking Confirmation"
3016
  msgstr "Buchungsbestätigung"
3076
  msgstr ""
3077
 
3078
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3079
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3080
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3081
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3082
  msgid "Saved"
3083
  msgstr "Gesichert"
3084
 
3085
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3086
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3087
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3088
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3089
  msgid "Settings Saved!"
3091
 
3092
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3093
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3094
+ #: app/features/mec/notifications.php:905
3095
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3096
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3097
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
3098
  msgid "Verified"
3099
  msgstr "Verifiziert"
3100
 
3101
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3102
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3103
  #: app/features/mec/single.php:291
3104
  msgid "Please Refresh Page"
3105
  msgstr "Bitte Seiten Refresh vornehmen"
4246
  #: app/features/mec/meta_boxes/search_form.php:693
4247
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4248
  #: app/features/search.php:79 app/features/speakers.php:61
4249
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4250
+ #: app/libraries/skins.php:936
4251
  msgid "Speaker"
4252
  msgstr ""
4253
 
4263
  #: app/features/mec/meta_boxes/search_form.php:603
4264
  #: app/features/mec/meta_boxes/search_form.php:700
4265
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4266
+ #: app/features/search.php:83 app/libraries/skins.php:962
4267
  #, fuzzy
4268
  #| msgid "Tags"
4269
  msgid "Tag"
4531
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4532
  "benachrichtigen."
4533
 
4534
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4535
+ #: app/features/mec/notifications.php:233
4536
+ #: app/features/mec/notifications.php:336
4537
+ #: app/features/mec/notifications.php:442
4538
+ #: app/features/mec/notifications.php:543
4539
+ #: app/features/mec/notifications.php:660
4540
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4541
  msgid "Email Subject"
4542
  msgstr "Email Betreff"
4543
 
4544
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4545
+ #: app/features/mec/notifications.php:147
4546
+ #: app/features/mec/notifications.php:154
4547
+ #: app/features/mec/notifications.php:239
4548
+ #: app/features/mec/notifications.php:246
4549
+ #: app/features/mec/notifications.php:342
4550
+ #: app/features/mec/notifications.php:349
4551
+ #: app/features/mec/notifications.php:448
4552
+ #: app/features/mec/notifications.php:455
4553
+ #: app/features/mec/notifications.php:549
4554
+ #: app/features/mec/notifications.php:556
4555
+ #: app/features/mec/notifications.php:666
4556
+ #: app/features/mec/notifications.php:673
4557
+ #: app/features/mec/notifications.php:749
4558
+ #: app/features/mec/notifications.php:756
4559
+ msgid "Receiver Users"
4560
+ msgstr ""
4561
+
4562
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4563
+ #: app/features/mec/notifications.php:247
4564
+ #: app/features/mec/notifications.php:350
4565
+ #: app/features/mec/notifications.php:456
4566
+ #: app/features/mec/notifications.php:557
4567
+ #: app/features/mec/notifications.php:674
4568
+ #: app/features/mec/notifications.php:757
4569
+ msgid "Select your desired users to send a copy of email to them!"
4570
+ msgstr ""
4571
+
4572
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4573
+ #: app/features/mec/notifications.php:164
4574
+ #: app/features/mec/notifications.php:171
4575
+ #: app/features/mec/notifications.php:256
4576
+ #: app/features/mec/notifications.php:263
4577
+ #: app/features/mec/notifications.php:359
4578
+ #: app/features/mec/notifications.php:366
4579
+ #: app/features/mec/notifications.php:465
4580
+ #: app/features/mec/notifications.php:472
4581
+ #: app/features/mec/notifications.php:566
4582
+ #: app/features/mec/notifications.php:573
4583
+ #: app/features/mec/notifications.php:683
4584
+ #: app/features/mec/notifications.php:690
4585
+ #: app/features/mec/notifications.php:766
4586
+ #: app/features/mec/notifications.php:773
4587
+ msgid "Receiver Roles"
4588
+ msgstr ""
4589
+
4590
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4591
+ #: app/features/mec/notifications.php:264
4592
+ #: app/features/mec/notifications.php:367
4593
+ #: app/features/mec/notifications.php:473
4594
+ #: app/features/mec/notifications.php:574
4595
+ #: app/features/mec/notifications.php:691
4596
+ #: app/features/mec/notifications.php:774
4597
+ msgid "Select users a specific role."
4598
+ msgstr ""
4599
+
4600
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4601
+ #: app/features/mec/notifications.php:180
4602
+ #: app/features/mec/notifications.php:184
4603
+ #: app/features/mec/notifications.php:272
4604
+ #: app/features/mec/notifications.php:276
4605
+ #: app/features/mec/notifications.php:375
4606
+ #: app/features/mec/notifications.php:379
4607
+ #: app/features/mec/notifications.php:481
4608
+ #: app/features/mec/notifications.php:485
4609
+ #: app/features/mec/notifications.php:582
4610
+ #: app/features/mec/notifications.php:586
4611
+ #: app/features/mec/notifications.php:597
4612
+ #: app/features/mec/notifications.php:699
4613
+ #: app/features/mec/notifications.php:703
4614
+ #: app/features/mec/notifications.php:782
4615
+ #: app/features/mec/notifications.php:786
4616
  msgid "Custom Recipients"
4617
  msgstr "Individuelle Empfänger"
4618
 
4619
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4620
+ #: app/features/mec/notifications.php:277
4621
+ #: app/features/mec/notifications.php:380
4622
+ #: app/features/mec/notifications.php:486
4623
+ #: app/features/mec/notifications.php:587
4624
+ #: app/features/mec/notifications.php:598
4625
+ #: app/features/mec/notifications.php:704
4626
+ #: app/features/mec/notifications.php:787
4627
  msgid "Insert comma separated emails for multiple recipients."
4628
  msgstr "Geben Sie mit Komma getrennte email-Adressen ein für mehrere Empfänger"
4629
 
4630
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4631
+ #: app/features/mec/notifications.php:493
4632
  msgid "Send the email to event organizer"
4633
  msgstr "Sendet das Email zum Event Organisator"
4634
 
4635
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4636
+ #: app/features/mec/notifications.php:287
4637
+ #: app/features/mec/notifications.php:398
4638
+ #: app/features/mec/notifications.php:496
4639
+ #: app/features/mec/notifications.php:604
4640
+ #: app/features/mec/notifications.php:710
4641
+ #: app/features/mec/notifications.php:793
4642
  msgid "Email Content"
4643
  msgstr "Email Inhalt"
4644
 
4645
+ #: app/features/mec/notifications.php:101
4646
+ #: app/features/mec/notifications.php:194
4647
+ #: app/features/mec/notifications.php:290
4648
+ #: app/features/mec/notifications.php:401
4649
+ #: app/features/mec/notifications.php:499
4650
+ #: app/features/mec/notifications.php:607
4651
+ #: app/features/mec/notifications.php:713
4652
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4653
  msgid "You can use following placeholders"
4654
  msgstr "Sie können die folgenden Platzhalter wählen"
4655
 
4656
+ #: app/features/mec/notifications.php:103
4657
+ #: app/features/mec/notifications.php:196
4658
+ #: app/features/mec/notifications.php:292
4659
+ #: app/features/mec/notifications.php:403
4660
+ #: app/features/mec/notifications.php:501
4661
+ #: app/features/mec/notifications.php:609
4662
  msgid "First name of attendee"
4663
  msgstr "Vorname des Teilnehmers"
4664
 
4665
+ #: app/features/mec/notifications.php:104
4666
+ #: app/features/mec/notifications.php:197
4667
+ #: app/features/mec/notifications.php:293
4668
+ #: app/features/mec/notifications.php:404
4669
+ #: app/features/mec/notifications.php:502
4670
+ #: app/features/mec/notifications.php:610
4671
  msgid "Last name of attendee"
4672
  msgstr "Nachname des Teilnehmers"
4673
 
4674
+ #: app/features/mec/notifications.php:105
4675
+ #: app/features/mec/notifications.php:198
4676
+ #: app/features/mec/notifications.php:294
4677
+ #: app/features/mec/notifications.php:405
4678
+ #: app/features/mec/notifications.php:503
4679
+ #: app/features/mec/notifications.php:611
4680
  msgid "Email of attendee"
4681
  msgstr "Email des Teilnehmers"
4682
 
4683
+ #: app/features/mec/notifications.php:106
4684
+ #: app/features/mec/notifications.php:199
4685
+ #: app/features/mec/notifications.php:295
4686
+ #: app/features/mec/notifications.php:406
4687
+ #: app/features/mec/notifications.php:504
4688
+ #: app/features/mec/notifications.php:612
4689
  msgid "Booked date of event"
4690
  msgstr "Gebuchtes Datum der Veranstaltung"
4691
 
4692
+ #: app/features/mec/notifications.php:107
4693
+ #: app/features/mec/notifications.php:200
4694
+ #: app/features/mec/notifications.php:296
4695
+ #: app/features/mec/notifications.php:407
4696
+ #: app/features/mec/notifications.php:505
4697
+ #: app/features/mec/notifications.php:613
4698
  #, fuzzy
4699
  #| msgid "Booked date of event"
4700
  msgid "Booked time of event"
4701
  msgstr "Gebuchtes Datum der Veranstaltung"
4702
 
4703
+ #: app/features/mec/notifications.php:108
4704
+ #: app/features/mec/notifications.php:201
4705
+ #: app/features/mec/notifications.php:297
4706
+ #: app/features/mec/notifications.php:408
4707
+ #: app/features/mec/notifications.php:506
4708
+ #: app/features/mec/notifications.php:614
4709
  msgid "Booking Price"
4710
  msgstr "Buchungspreis"
4711
 
4712
+ #: app/features/mec/notifications.php:109
4713
+ #: app/features/mec/notifications.php:202
4714
+ #: app/features/mec/notifications.php:298
4715
+ #: app/features/mec/notifications.php:409
4716
+ #: app/features/mec/notifications.php:507
4717
+ #: app/features/mec/notifications.php:615
4718
  msgid "Date and time of placing booking"
4719
  msgstr ""
4720
 
4721
+ #: app/features/mec/notifications.php:110
4722
+ #: app/features/mec/notifications.php:203
4723
+ #: app/features/mec/notifications.php:299
4724
+ #: app/features/mec/notifications.php:410
4725
+ #: app/features/mec/notifications.php:508
4726
+ #: app/features/mec/notifications.php:616
4727
+ #: app/features/mec/notifications.php:721
4728
+ #: app/features/mec/notifications.php:804
4729
  msgid "Your website title"
4730
  msgstr "Titel Ihrer Webseite"
4731
 
4732
+ #: app/features/mec/notifications.php:111
4733
+ #: app/features/mec/notifications.php:204
4734
+ #: app/features/mec/notifications.php:300
4735
+ #: app/features/mec/notifications.php:411
4736
+ #: app/features/mec/notifications.php:509
4737
+ #: app/features/mec/notifications.php:617
4738
+ #: app/features/mec/notifications.php:722
4739
+ #: app/features/mec/notifications.php:805
4740
  msgid "Your website URL"
4741
  msgstr "URL Ihrer Webseite"
4742
 
4743
+ #: app/features/mec/notifications.php:112
4744
+ #: app/features/mec/notifications.php:205
4745
+ #: app/features/mec/notifications.php:301
4746
+ #: app/features/mec/notifications.php:412
4747
+ #: app/features/mec/notifications.php:510
4748
+ #: app/features/mec/notifications.php:618
4749
+ #: app/features/mec/notifications.php:723
4750
+ #: app/features/mec/notifications.php:806
4751
  msgid "Your website description"
4752
  msgstr "Beschreibung Ihrer Webseite"
4753
 
4754
+ #: app/features/mec/notifications.php:113
4755
+ #: app/features/mec/notifications.php:206
4756
+ #: app/features/mec/notifications.php:302
4757
+ #: app/features/mec/notifications.php:413
4758
+ #: app/features/mec/notifications.php:511
4759
+ #: app/features/mec/notifications.php:619
4760
  msgid "Event title"
4761
  msgstr "Titel der Veranstaltung"
4762
 
4763
+ #: app/features/mec/notifications.php:114
4764
+ #: app/features/mec/notifications.php:207
4765
+ #: app/features/mec/notifications.php:303
4766
+ #: app/features/mec/notifications.php:414
4767
+ #: app/features/mec/notifications.php:512
4768
+ #: app/features/mec/notifications.php:620
4769
  #, fuzzy
4770
  #| msgid "Event Link"
4771
  msgid "Event link"
4772
  msgstr "Veranstaltungslink"
4773
 
4774
+ #: app/features/mec/notifications.php:115
4775
+ #: app/features/mec/notifications.php:208
4776
+ #: app/features/mec/notifications.php:304
4777
+ #: app/features/mec/notifications.php:717
4778
+ #: app/features/mec/notifications.php:800
4779
  #, fuzzy
4780
  #| msgid "Start Date"
4781
  msgid "Event Start Date"
4782
  msgstr "Start Datum"
4783
 
4784
+ #: app/features/mec/notifications.php:116
4785
+ #: app/features/mec/notifications.php:209
4786
+ #: app/features/mec/notifications.php:305
4787
+ #: app/features/mec/notifications.php:718
4788
+ #: app/features/mec/notifications.php:801
4789
  #, fuzzy
4790
  #| msgid "End Date"
4791
  msgid "Event End Date"
4792
  msgstr "Ende Datum"
4793
 
4794
+ #: app/features/mec/notifications.php:117
4795
+ #: app/features/mec/notifications.php:210
4796
+ #: app/features/mec/notifications.php:306
4797
+ #: app/features/mec/notifications.php:415
4798
+ #: app/features/mec/notifications.php:513
4799
+ #: app/features/mec/notifications.php:621
4800
  #, fuzzy
4801
  #| msgid "Organizer name of booked event"
4802
  msgid "Speaker name of booked event"
4803
  msgstr "Name des Veranstalters des gebuchten Events"
4804
 
4805
+ #: app/features/mec/notifications.php:118
4806
+ #: app/features/mec/notifications.php:211
4807
+ #: app/features/mec/notifications.php:307
4808
+ #: app/features/mec/notifications.php:416
4809
+ #: app/features/mec/notifications.php:514
4810
+ #: app/features/mec/notifications.php:622
4811
  msgid "Organizer name of booked event"
4812
  msgstr "Name des Veranstalters des gebuchten Events"
4813
 
4814
+ #: app/features/mec/notifications.php:119
4815
+ #: app/features/mec/notifications.php:212
4816
+ #: app/features/mec/notifications.php:308
4817
+ #: app/features/mec/notifications.php:417
4818
+ #: app/features/mec/notifications.php:515
4819
+ #: app/features/mec/notifications.php:623
4820
  msgid "Organizer tel of booked event"
4821
  msgstr "Tel des Veranstalters"
4822
 
4823
+ #: app/features/mec/notifications.php:120
4824
+ #: app/features/mec/notifications.php:213
4825
+ #: app/features/mec/notifications.php:309
4826
+ #: app/features/mec/notifications.php:418
4827
+ #: app/features/mec/notifications.php:516
4828
+ #: app/features/mec/notifications.php:624
4829
  msgid "Organizer email of booked event"
4830
  msgstr "Email des Veranstalters des gebuchten events"
4831
 
4832
+ #: app/features/mec/notifications.php:121
4833
+ #: app/features/mec/notifications.php:214
4834
+ #: app/features/mec/notifications.php:310
4835
+ #: app/features/mec/notifications.php:419
4836
+ #: app/features/mec/notifications.php:517
4837
+ #: app/features/mec/notifications.php:625
4838
  msgid "Location name of booked event"
4839
  msgstr "Veranstaltungsort"
4840
 
4841
+ #: app/features/mec/notifications.php:122
4842
+ #: app/features/mec/notifications.php:215
4843
+ #: app/features/mec/notifications.php:311
4844
+ #: app/features/mec/notifications.php:420
4845
+ #: app/features/mec/notifications.php:518
4846
+ #: app/features/mec/notifications.php:626
4847
  msgid "Location address of booked event"
4848
  msgstr "Adresse der gebuchten Veranstaltung"
4849
 
4850
+ #: app/features/mec/notifications.php:123
4851
+ #: app/features/mec/notifications.php:216
4852
+ #: app/features/mec/notifications.php:312
4853
+ #: app/features/mec/notifications.php:421
4854
+ #: app/features/mec/notifications.php:519
4855
+ #: app/features/mec/notifications.php:627
4856
  #, fuzzy
4857
  #| msgid "Organizer name of booked event"
4858
  msgid "Featured image of booked event"
4859
  msgstr "Name des Veranstalters des gebuchten Events"
4860
 
4861
+ #: app/features/mec/notifications.php:124
4862
+ #: app/features/mec/notifications.php:423
4863
+ #: app/features/mec/notifications.php:521
4864
  msgid "Full Attendee info such as booking form data, name, email etc."
4865
  msgstr ""
4866
  "Gesamte Teinehmerinformationen wie z.B. Daten aus dem Buchungsformular, "
4867
  "Name, email, etc."
4868
 
4869
+ #: app/features/mec/notifications.php:125
4870
+ #: app/features/mec/notifications.php:314
4871
+ #: app/features/mec/notifications.php:629
4872
  msgid "Invoice Link"
4873
  msgstr "Rechnungslink"
4874
 
4875
+ #: app/features/mec/notifications.php:126
4876
+ #: app/features/mec/notifications.php:218
4877
+ #: app/features/mec/notifications.php:315
4878
+ #: app/features/mec/notifications.php:424
4879
+ #: app/features/mec/notifications.php:522
4880
+ #: app/features/mec/notifications.php:630
4881
  msgid "Total Attendees"
4882
  msgstr ""
4883
 
4884
+ #: app/features/mec/notifications.php:127
4885
+ #: app/features/mec/notifications.php:219
4886
+ #: app/features/mec/notifications.php:316
4887
+ #: app/features/mec/notifications.php:425
4888
+ #: app/features/mec/notifications.php:523
4889
+ #: app/features/mec/notifications.php:631
4890
+ #, fuzzy
4891
+ #| msgid "Amount (Per Ticket)"
4892
+ msgid "Amount of Booked Tickets"
4893
+ msgstr "Betrag (pro Ticket)"
4894
+
4895
+ #: app/features/mec/notifications.php:128
4896
+ #: app/features/mec/notifications.php:220
4897
+ #: app/features/mec/notifications.php:317
4898
+ #: app/features/mec/notifications.php:632
4899
  #, fuzzy
4900
  #| msgid "Ticket Name"
4901
  msgid "Ticket name"
4902
  msgstr "Ticket Name"
4903
 
4904
+ #: app/features/mec/notifications.php:129
4905
+ #: app/features/mec/notifications.php:221
4906
+ #: app/features/mec/notifications.php:318
4907
+ #: app/features/mec/notifications.php:633
4908
  #, fuzzy
4909
  #| msgid "Ticket Name"
4910
  msgid "Ticket time"
4911
  msgstr "Ticket Name"
4912
 
4913
+ #: app/features/mec/notifications.php:130
4914
+ #: app/features/mec/notifications.php:222
4915
+ #: app/features/mec/notifications.php:319
4916
+ #: app/features/mec/notifications.php:634
4917
  #, fuzzy
4918
  #| msgid "Download Invoice"
4919
  msgid "Download ICS file"
4920
  msgstr "Download Rechnung\n"
4921
 
4922
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4923
  msgid "Booking Verification"
4924
  msgstr "Verifizierung der Buchung"
4925
 
4926
+ #: app/features/mec/notifications.php:139
4927
  msgid "It sends to attendee email for verifying their booking/email."
4928
  msgstr ""
4929
  "Versendet an den Teilnehmer eine Email um dessen Buchung/Mail zu "
4930
  "verifizieren."
4931
 
4932
+ #: app/features/mec/notifications.php:217
4933
  msgid "Email/Booking verification link."
4934
  msgstr "Bestätigungslink für Email/Buchung"
4935
 
4936
+ #: app/features/mec/notifications.php:231
4937
  msgid "It sends to attendee after confirming the booking by admin."
4938
  msgstr ""
4939
  "Es wird an den Teilnehmer gesendet nach Bestätigung der Buchung vom admin."
4940
 
4941
+ #: app/features/mec/notifications.php:284
4942
  msgid "Send One Single Email Only To First Attendee"
4943
  msgstr ""
4944
 
4945
+ #: app/features/mec/notifications.php:313
4946
+ #: app/features/mec/notifications.php:628
4947
  msgid "Booking cancellation link."
4948
  msgstr "Link zur Stornierung der Buchung"
4949
 
4950
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4951
  #, fuzzy
4952
  #| msgid "Booking cancellation link."
4953
  msgid "Booking Cancellation"
4954
  msgstr "Link zur Stornierung der Buchung"
4955
 
4956
+ #: app/features/mec/notifications.php:330
4957
  #, fuzzy
4958
  #| msgid "Enable new event notification"
4959
  msgid "Enable cancellation notification"
4960
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
4961
 
4962
+ #: app/features/mec/notifications.php:334
4963
  #, fuzzy
4964
  #| msgid "It sends to attendee after booking for notifying him/her."
4965
  msgid ""
4969
  "Wird an den Teilnehmer in Anschluss an die Buchung versendet, um Ihn/Sie zu "
4970
  "benachrichtigen."
4971
 
4972
+ #: app/features/mec/notifications.php:387
4973
+ #: app/features/mec/notifications.php:654
4974
  #, fuzzy
4975
  #| msgid "Send the email to event organizer"
4976
  msgid "Send the email to admin"
4977
  msgstr "Sendet das Email zum Event Organisator"
4978
 
4979
+ #: app/features/mec/notifications.php:395
4980
  #, fuzzy
4981
  #| msgid "Send the email to event organizer"
4982
  msgid "Send the email to booking user"
4983
  msgstr "Sendet das Email zum Event Organisator"
4984
 
4985
+ #: app/features/mec/notifications.php:422
4986
+ #: app/features/mec/notifications.php:520
4987
  msgid "Admin booking management link."
4988
  msgstr "Admin-link zur Buchungsverwaltung"
4989
 
4990
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4991
  msgid "Admin"
4992
  msgstr ""
4993
 
4994
+ #: app/features/mec/notifications.php:436
4995
  #, fuzzy
4996
  #| msgid "Enable booking notification"
4997
  msgid "Enable admin notification"
4998
  msgstr "Buchungsbenachrichtigung aktivieren"
4999
 
5000
+ #: app/features/mec/notifications.php:440
5001
  msgid "It sends to admin to notify him/her that a new booking received."
5002
  msgstr ""
5003
  "Sendet eine Benachrichtigung an den Adminstrator um diesen darüber zu "
5004
  "Informieren, dass eine neue Buchung eingegangen ist."
5005
 
5006
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
5007
+ #: app/libraries/notifications.php:603
5008
  msgid "Booking Reminder"
5009
  msgstr "Buchungs Erinnerung"
5010
 
5011
+ #: app/features/mec/notifications.php:534
5012
  msgid "Enable booking reminder notification"
5013
  msgstr "Aktivieren Sie die Erinnerung für die Buchungserinnerung"
5014
 
5015
+ #: app/features/mec/notifications.php:540
5016
  #, php-format
5017
  msgid ""
5018
  "Set a cronjob to call %s file once per day otherwise it won't send the "
5024
  "Sie diese Datei% s aufrufen sollten, sonst könnten die Erinnerungen mehrmals "
5025
  "gesendet werden."
5026
 
5027
+ #: app/features/mec/notifications.php:540
5028
  msgid "only once per day"
5029
  msgstr "nur einmal pro Tag"
5030
 
5031
+ #: app/features/mec/notifications.php:593
5032
  msgid "Days"
5033
  msgstr "Tage"
5034
 
5035
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
5036
  #: app/libraries/main.php:583
5037
  msgid "New Event"
5038
  msgstr "Neue Veranstaltung"
5039
 
5040
+ #: app/features/mec/notifications.php:648
5041
  msgid "Enable new event notification"
5042
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
5043
 
5044
+ #: app/features/mec/notifications.php:658
5045
  msgid ""
5046
  "It sends after adding a new event from frontend event submission or from "
5047
  "website backend."
5049
  "Wird nach dem Hinzufügen einer neuen Veranstaltung aus der Frontend-"
5050
  "Übermittlung oder dem Backend versandt."
5051
 
5052
+ #: app/features/mec/notifications.php:715
5053
+ #: app/features/mec/notifications.php:798
5054
  msgid "Title of event"
5055
  msgstr "Titel der Veranstaltung"
5056
 
5057
+ #: app/features/mec/notifications.php:716
5058
+ #: app/features/mec/notifications.php:799
5059
  #, fuzzy
5060
  #| msgid "Title of event"
5061
  msgid "Link of event"
5062
  msgstr "Titel der Veranstaltung"
5063
 
5064
+ #: app/features/mec/notifications.php:719
5065
+ #: app/features/mec/notifications.php:802
5066
  msgid "Status of event"
5067
  msgstr "Status der Veranstaltung"
5068
 
5069
+ #: app/features/mec/notifications.php:720
5070
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
5071
  #: app/features/mec/settings.php:738
5072
  msgid "Event Note"
5073
  msgstr "Veranstaltungsnotiz"
5074
 
5075
+ #: app/features/mec/notifications.php:724
5076
+ #: app/features/mec/notifications.php:807
5077
  msgid "Admin events management link."
5078
  msgstr "Admin-link zur Veranstaltungsverwaltung"
5079
 
5080
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
5081
  #, fuzzy
5082
  #| msgid "The event published."
5083
  msgid "User Event Publishing"
5084
  msgstr "Die Veranstaltung wurde veröffentlicht."
5085
 
5086
+ #: app/features/mec/notifications.php:737
5087
  #, fuzzy
5088
  #| msgid "Enable new event notification"
5089
  msgid "Enable user event publishing notification"
5090
  msgstr "Benachrichtigung bei neuen Veranstaltungen aktivieren"
5091
 
5092
+ #: app/features/mec/notifications.php:741
5093
  #, fuzzy
5094
  #| msgid ""
5095
  #| "It sends after adding a new event from frontend event submission or from "
5272
  msgstr ""
5273
 
5274
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5275
+ #: app/libraries/main.php:5290
5276
  msgid "Weekdays"
5277
  msgstr "Wochentage"
5278
 
6565
  msgid "eg. https://webnus.net"
6566
  msgstr "http://webnus.net"
6567
 
6568
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6569
+ #: app/skins/single.php:862
6570
  msgid "Other Organizers"
6571
  msgstr "Andere Veranstalter"
6572
 
6573
+ #: app/features/organizers.php:314
6574
  msgid ""
6575
  "You can select extra organizers in addition to main organizer if you like."
6576
  msgstr ""
6593
  msgid "#"
6594
  msgstr ""
6595
 
6596
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6597
  msgid "Status"
6598
  msgstr ""
6599
 
6630
  msgid "No bookings found!"
6631
  msgstr "Keine Buchungen gefunden"
6632
 
6633
+ #: app/features/search.php:87 app/libraries/main.php:5280
6634
  msgid "label"
6635
  msgstr "label"
6636
 
6657
  msgstr ""
6658
 
6659
  #: app/features/search_bar/search_result.php:11
6660
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6661
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6662
+ #: app/skins/single.php:160 app/skins/single.php:753
6663
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6664
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6665
  msgid "All of the day"
6666
  msgstr "Den ganzen Tag"
6667
 
6668
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6669
+ #: app/features/speakers.php:270
6670
  #, fuzzy
6671
  #| msgid "Title"
6672
  msgid "Job Title"
6673
  msgstr "Titel"
6674
 
6675
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6676
  msgid "Insert speaker job title."
6677
  msgstr ""
6678
 
6679
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6680
  #, fuzzy
6681
  #| msgid "Insert organizer phone number."
6682
  msgid "Insert speaker phone number."
6683
  msgstr "Veranstalter Telefonnummer einfügen"
6684
 
6685
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6686
  #, fuzzy
6687
  #| msgid "Insert organizer email address."
6688
  msgid "Insert speaker email address."
6689
  msgstr "Veranstalter Email-Adresse einfügen"
6690
 
6691
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6692
  #, fuzzy
6693
  #| msgid "Facebook Page Link"
6694
  msgid "Facebook Page"
6695
  msgstr "Facebook Seiten Link"
6696
 
6697
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6698
  #, fuzzy
6699
  #| msgid "Import from Facebook Calendar"
6700
  msgid "Insert URL of Facebook Page"
6701
  msgstr "Vom Facebook Kalender Importieren"
6702
 
6703
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6704
  msgid "Instagram"
6705
  msgstr ""
6706
 
6707
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6708
  #, fuzzy
6709
  #| msgid "Insert -1 for unlimited usage"
6710
  msgid "Insert URL of Instagram"
6711
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6712
 
6713
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6714
+ #, fuzzy
6715
+ #| msgid "Linkedin"
6716
+ msgid "LinkedIn"
6717
+ msgstr "Linkedin"
6718
+
6719
+ #: app/features/speakers.php:154
6720
+ #, fuzzy
6721
+ #| msgid "Insert -1 for unlimited usage"
6722
+ msgid "Insert URL of LinkedIn"
6723
+ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6724
+
6725
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6726
  #, fuzzy
6727
  #| msgid "Twitter"
6728
  msgid "Twitter Page"
6729
  msgstr "Twitter"
6730
 
6731
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6732
  #, fuzzy
6733
  #| msgid "Insert -1 for unlimited usage"
6734
  msgid "Insert URL of Twitter Page"
6735
  msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6736
 
6737
+ #: app/features/speakers.php:209
6738
+ #, fuzzy
6739
+ #| msgid "Insert -1 for unlimited usage"
6740
+ msgid "Insert URL of linkedin"
6741
+ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
6742
+
6743
+ #: app/features/speakers.php:330
6744
  msgid "Sorry, You must insert speaker name!"
6745
  msgstr ""
6746
 
6747
+ #: app/features/speakers.php:379
6748
  msgid ""
6749
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6750
  "section and speaker widget section!"
6906
  msgid "Tile View"
6907
  msgstr "Stundenplan"
6908
 
6909
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6910
  msgid "SU"
6911
  msgstr "SO"
6912
 
6913
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6914
  msgid "MO"
6915
  msgstr "MO"
6916
 
6917
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6918
  msgid "TU"
6919
  msgstr "DI"
6920
 
6921
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6922
  msgid "WE"
6923
  msgstr "MI"
6924
 
6925
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6926
  msgid "TH"
6927
  msgstr "DO"
6928
 
6929
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6930
  msgid "FR"
6931
  msgstr "FR"
6932
 
6933
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6934
  msgid "SA"
6935
  msgstr "SA"
6936
 
7199
  msgid "iCal export stopped!"
7200
  msgstr "iCal Export wurde unterbrochen!"
7201
 
7202
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
7203
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
7204
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
7205
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
7206
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
7207
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
7208
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
7209
  msgid "Sort"
7210
  msgstr "Sortieren"
7211
 
7212
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
7213
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
7214
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
7215
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
7216
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
7217
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
7218
  msgid "Required Field"
7219
  msgstr "Pflichtfeld"
7220
 
7221
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
7222
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
7223
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
7224
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
7225
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
7226
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
7227
  msgid "Insert a label for this field"
7228
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
7229
 
7230
+ #: app/libraries/main.php:2976
7231
  msgid "HTML and shortcode are allowed."
7232
  msgstr "HTML und shortcodes sind erlaubt."
7233
 
7234
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
7235
+ #: app/libraries/main.php:3107
7236
  msgid "Option"
7237
  msgstr "Option"
7238
 
7239
+ #: app/libraries/main.php:3141
7240
  #, php-format
7241
  msgid "Instead of %s, the page title with a link will be show."
7242
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
7243
 
7244
+ #: app/libraries/main.php:3143
7245
  msgid "Agreement Page"
7246
  msgstr "Zustimmungsseite"
7247
 
7248
+ #: app/libraries/main.php:3154
7249
  msgid "Checked by default"
7250
  msgstr ""
7251
 
7252
+ #: app/libraries/main.php:3155
7253
  msgid "Unchecked by default"
7254
  msgstr ""
7255
 
7256
+ #: app/libraries/main.php:3178
7257
  msgid "Insert a label for this option"
7258
  msgstr "Ein neues Label für diese Option einfügen"
7259
 
7260
+ #: app/libraries/main.php:3193
7261
  msgid "Free"
7262
  msgstr "kostenfrei"
7263
 
7264
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7265
  #, fuzzy
7266
  #| msgid "M.E. Calendar"
7267
  msgid "M.E. Calender"
7268
  msgstr "M.E. Calender"
7269
 
7270
+ #: app/libraries/main.php:3954
7271
  #, php-format
7272
  msgid "Copy of %s"
7273
  msgstr "Kopie von %s"
7274
 
7275
+ #: app/libraries/main.php:4669
7276
  msgid "Booked an event."
7277
  msgstr "Eine Veranstaltung wurde gebucht."
7278
 
7279
+ #: app/libraries/main.php:4710
7280
  #, php-format
7281
  msgid "%s booked %s event."
7282
  msgstr "%s gebuchtes %s Event"
7283
 
7284
+ #: app/libraries/main.php:5275
7285
  msgid "Taxonomies"
7286
  msgstr "Klassifizierung "
7287
 
7288
+ #: app/libraries/main.php:5277
7289
  msgid "Category Plural Label"
7290
  msgstr "Kategorien"
7291
 
7292
+ #: app/libraries/main.php:5278
7293
  msgid "Category Singular Label"
7294
  msgstr "Kategorie"
7295
 
7296
+ #: app/libraries/main.php:5279
7297
  msgid "Label Plural Label"
7298
  msgstr "Labels"
7299
 
7300
+ #: app/libraries/main.php:5280
7301
  msgid "Label Singular Label"
7302
  msgstr "Label"
7303
 
7304
+ #: app/libraries/main.php:5281
7305
  msgid "Location Plural Label"
7306
  msgstr "Veranstaltungsorte"
7307
 
7308
+ #: app/libraries/main.php:5282
7309
  msgid "Location Singular Label"
7310
  msgstr "Veranstaltungsort"
7311
 
7312
+ #: app/libraries/main.php:5283
7313
  msgid "Organizer Plural Label"
7314
  msgstr "Veranstalter"
7315
 
7316
+ #: app/libraries/main.php:5284
7317
  msgid "Organizer Singular Label"
7318
  msgstr "Veranstalter"
7319
 
7320
+ #: app/libraries/main.php:5285
7321
  #, fuzzy
7322
  #| msgid "Label Plural Label"
7323
  msgid "Speaker Plural Label"
7324
  msgstr "Labels"
7325
 
7326
+ #: app/libraries/main.php:5286
7327
  #, fuzzy
7328
  #| msgid "Label Singular Label"
7329
  msgid "Speaker Singular Label"
7330
  msgstr "Label"
7331
 
7332
+ #: app/libraries/main.php:5292
7333
  msgid "Sunday abbreviation"
7334
  msgstr "Sonntag Abkürzung"
7335
 
7336
+ #: app/libraries/main.php:5293
7337
  msgid "Monday abbreviation"
7338
  msgstr "Montag Abkürzung"
7339
 
7340
+ #: app/libraries/main.php:5294
7341
  msgid "Tuesday abbreviation"
7342
  msgstr "Dienstag Abkürzung"
7343
 
7344
+ #: app/libraries/main.php:5295
7345
  msgid "Wednesday abbreviation"
7346
  msgstr "Mittwoch Abkürzung"
7347
 
7348
+ #: app/libraries/main.php:5296
7349
  msgid "Thursday abbreviation"
7350
  msgstr "Donnerstag Abkürzung"
7351
 
7352
+ #: app/libraries/main.php:5297
7353
  msgid "Friday abbreviation"
7354
  msgstr "Freitag Abkürzung"
7355
 
7356
+ #: app/libraries/main.php:5298
7357
  msgid "Saturday abbreviation"
7358
  msgstr "Samstag Abkürzung "
7359
 
7360
+ #: app/libraries/main.php:5302
7361
  msgid "Others"
7362
  msgstr "Andere"
7363
 
7364
+ #: app/libraries/main.php:5304
7365
  msgid "Booking Success Message"
7366
  msgstr "Buchung erfolgreich Mitteilung"
7367
 
7368
+ #: app/libraries/main.php:5304
7369
  msgid ""
7370
  "Thanks for your booking. Your tickets booked, booking verification might be "
7371
  "needed, please check your email."
7373
  "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
7374
  "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
7375
 
7376
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7377
  msgid "Register Button"
7378
  msgstr "Register Button"
7379
 
7380
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7381
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7382
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7383
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7384
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7385
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7386
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7387
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7388
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7389
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7394
  msgid "REGISTER"
7395
  msgstr "ANMELDEN"
7396
 
7397
+ #: app/libraries/main.php:5306
7398
  msgid "View Detail Button"
7399
  msgstr "Ansicht Detail Button"
7400
 
7401
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7402
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7403
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7404
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7409
  msgid "View Detail"
7410
  msgstr "Details "
7411
 
7412
+ #: app/libraries/main.php:5307
7413
  msgid "Event Detail Button"
7414
  msgstr "Event Detail Button"
7415
 
7416
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7417
  msgid "Event Detail"
7418
  msgstr "Veranstaltungsdetails"
7419
 
7420
+ #: app/libraries/main.php:5309
7421
  msgid "More Info Link"
7422
  msgstr "Link Mehr Informationen"
7423
 
7424
+ #: app/libraries/main.php:5312
7425
  msgid "Ticket (Singular)"
7426
  msgstr "Ticket"
7427
 
7428
+ #: app/libraries/main.php:5313
7429
  msgid "Tickets (Plural)"
7430
  msgstr "Tickets"
7431
 
7432
+ #: app/libraries/main.php:5399
7433
  msgid "EventON"
7434
  msgstr "EventON"
7435
 
7436
+ #: app/libraries/main.php:5400
7437
  msgid "The Events Calendar"
7438
  msgstr "The Events Calendar"
7439
 
7440
+ #: app/libraries/main.php:5401
7441
  msgid "Events Schedule WP Plugin"
7442
  msgstr "Event Zeitplan WP-Plugin"
7443
 
7444
+ #: app/libraries/main.php:5402
7445
  msgid "Calendarize It"
7446
  msgstr ""
7447
 
7448
+ #: app/libraries/main.php:5403
7449
  #, fuzzy
7450
  #| msgid "No Search Options"
7451
  msgid "Event Espresso"
7452
  msgstr "Keine Suchoptionen"
7453
 
7454
+ #: app/libraries/main.php:5404
7455
  #, fuzzy
7456
  #| msgid "Event Repeating"
7457
  msgid "Events Manager (Recurring)"
7458
  msgstr "Wiederholende Veranstaltung"
7459
 
7460
+ #: app/libraries/main.php:5405
7461
  #, fuzzy
7462
  #| msgid "Modern Events Calendar"
7463
  msgid "Events Manager (Single)"
7464
  msgstr "Moderner Event Kalender "
7465
 
7466
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7467
  msgid "Confirmed"
7468
  msgstr "Bestätigt"
7469
 
7470
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7471
  msgid "Rejected"
7472
  msgstr "Abgelehnt"
7473
 
7474
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7475
  msgid "Pending"
7476
  msgstr "Ausstehend"
7477
 
7478
+ #: app/libraries/main.php:5529
7479
  msgid "Waiting"
7480
  msgstr "in Bearbeitung"
7481
 
7482
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7483
  msgid "Skin controller does not exist."
7484
  msgstr "Skin contoller existiert nicht."
7485
 
7486
+ #: app/libraries/main.php:5848
7487
  #, fuzzy
7488
  #| msgid "Sold out!"
7489
  msgid "Sold Out"
7490
  msgstr "Ausverkauft!"
7491
 
7492
+ #: app/libraries/main.php:5856
7493
  #, fuzzy
7494
  #| msgid "Ticket"
7495
  msgid "Last Few Tickets"
7499
  msgid "Please verify your email."
7500
  msgstr "Bitte bestätigen Sie Ihre email."
7501
 
7502
+ #: app/libraries/notifications.php:153
7503
  msgid "Your booking is received."
7504
  msgstr "Ihre Buchung ist eingegangen"
7505
 
7506
+ #: app/libraries/notifications.php:271
7507
  msgid "Your booking is confirmed."
7508
  msgstr "Ihre Buchung wurde bestätigt."
7509
 
7510
+ #: app/libraries/notifications.php:435
7511
  #, fuzzy
7512
  #| msgid "Your booking cannot be canceled."
7513
  msgid "booking canceled."
7514
  msgstr "Ihre Buchung kann nicht storniert werden."
7515
 
7516
+ #: app/libraries/notifications.php:510
7517
  msgid "A new booking is received."
7518
  msgstr "Eine neue Buchung ist eingegangen."
7519
 
7520
+ #: app/libraries/notifications.php:734
7521
  msgid "A new event is added."
7522
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
7523
 
7524
+ #: app/libraries/notifications.php:803
7525
  #, fuzzy
7526
  #| msgid "The event published."
7527
  msgid "Your event is published."
7528
  msgstr "Die Veranstaltung wurde veröffentlicht."
7529
 
7530
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7531
+ #: app/libraries/notifications.php:1052
7532
  msgid "to"
7533
  msgstr ""
7534
 
7535
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7536
  msgid "+ Add to Google Calendar"
7537
  msgstr "+ zum Google Calendar hinzufügen"
7538
 
7539
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7540
  msgid "+ iCal export"
7541
  msgstr "+ zu iCal exportieren"
7542
 
7543
+ #: app/libraries/notifications.php:1131
7544
  msgid "Yes"
7545
  msgstr "Ja"
7546
 
7547
+ #: app/libraries/notifications.php:1131
7548
  msgid "No"
7549
  msgstr "Nein"
7550
 
7551
+ #: app/libraries/skins.php:1008
7552
+ #, fuzzy
7553
+ #| msgid "Select All"
7554
+ msgid "Select"
7555
+ msgstr "Alles Auswählen"
7556
 
7557
  #: app/modules/attendees-list/details.php:36
7558
  msgid "Event Attendees"
7589
  msgid "Free Booking"
7590
  msgstr "Kostenlose Buchung"
7591
 
7592
+ #: app/modules/booking/steps/form.php:52
7593
+ #, fuzzy
7594
+ #| msgid "Attendees Form"
7595
+ msgid "Attendee's Form"
7596
+ msgstr "Teilnahmeformular"
7597
+
7598
  #: app/modules/booking/steps/form.php:165
7599
  #, fuzzy
7600
  #| msgid "Fill other attendees's information like the first form."
7603
  "Füllen Sie die Informationen anderer Teilnehmer wie das erste Formular aus."
7604
 
7605
  #: app/modules/booking/steps/form.php:179
7606
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7607
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7608
  msgid "Next"
7609
  msgstr "Weiter"
7616
  msgid "Book Event"
7617
  msgstr "Veranstaltung buchen"
7618
 
7619
+ #: app/modules/booking/steps/tickets.php:40
7620
  #, php-format
7621
  msgid "Available %s: <span>%s</span>"
7622
  msgstr "Verfügbar %s: <span>%s</span>"
7623
 
7624
+ #: app/modules/booking/steps/tickets.php:44
7625
  #, php-format
7626
+ msgid "The %s ticket sales has stopped!"
7627
  msgstr ""
7628
 
7629
+ #: app/modules/booking/steps/tickets.php:45
7630
  #, php-format
7631
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7632
  msgstr ""
7649
  msgid "Get Directions"
7650
  msgstr "Wegbeschreibung"
7651
 
7652
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7653
  msgid "Share this event"
7654
  msgstr "Diese Veranstaltung teilen"
7655
 
7676
  msgid "Go to occurrence page"
7677
  msgstr "Zum Event"
7678
 
7679
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7680
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7681
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7682
  msgid "Time"
7806
  msgid "Home"
7807
  msgstr ""
7808
 
7809
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7810
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7811
  #: app/skins/single/modern.php:265
7812
  msgid "Sold out!"
7813
  msgstr "Ausverkauft!"
7814
 
7815
+ #: app/skins/single.php:822 app/skins/single.php:877
7816
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7817
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7818
  #: app/skins/single/modern.php:44
7819
  msgid "Phone"
7820
  msgstr "Phone"
7821
 
7822
+ #: app/skins/single.php:836 app/skins/single.php:891
7823
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7824
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7825
  #: app/skins/single/modern.php:58
7826
  msgid "Website"
7827
  msgstr "Website"
7828
 
7829
+ #: app/skins/single.php:961
7830
  #, fuzzy
7831
  #| msgid "No Search Options"
7832
  msgid "Speakers:"
languages/modern-events-calendar-lite-en_US.mo CHANGED
Binary file
languages/modern-events-calendar-lite-en_US.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:03+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -261,7 +261,7 @@ msgstr ""
261
  msgid "Add New Event"
262
  msgstr ""
263
 
264
- #: app/features/events.php:161 app/features/ix.php:3752
265
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
266
  msgid "No events found!"
267
  msgstr ""
@@ -296,8 +296,8 @@ msgstr ""
296
  #: app/features/mec/meta_boxes/search_form.php:575
297
  #: app/features/mec/meta_boxes/search_form.php:672
298
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
299
- #: app/features/search.php:67 app/libraries/main.php:5260
300
- #: app/libraries/skins.php:850 app/skins/single.php:560
301
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
302
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
303
  #: app/skins/single/modern.php:113
@@ -306,7 +306,7 @@ msgstr ""
306
 
307
  #: app/features/events.php:183 app/features/events.php:3275
308
  #: app/features/fes/form.php:757 app/features/mec.php:402
309
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
310
  msgid "Categories"
311
  msgstr ""
312
 
@@ -391,7 +391,7 @@ msgid "Event Repeating"
391
  msgstr ""
392
 
393
  #: app/features/events.php:333 app/features/events.php:1286
394
- #: app/features/mec/settings.php:710 app/skins/single.php:941
395
  msgid "Hourly Schedule"
396
  msgstr ""
397
 
@@ -405,7 +405,7 @@ msgstr ""
405
 
406
  #: app/features/events.php:336 app/features/events.php:3322
407
  #: app/features/events.php:3513 app/features/events.php:3555
408
- #: app/features/ix.php:3373 app/features/ix.php:3414
409
  #: app/features/mec/meta_boxes/display_options.php:960
410
  #: app/features/mec/meta_boxes/search_form.php:45
411
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -422,16 +422,16 @@ msgstr ""
422
  #: app/features/organizers.php:58 app/features/organizers.php:204
423
  #: app/features/organizers.php:260 app/features/organizers.php:262
424
  #: app/features/organizers.php:271 app/features/search.php:75
425
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
426
- #: app/skins/single.php:806 app/skins/single/default.php:217
427
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
428
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
429
  msgid "Organizer"
430
  msgstr ""
431
 
432
  #: app/features/events.php:337 app/features/events.php:1172
433
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
434
- #: app/skins/single.php:583 app/skins/single/default.php:126
435
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
436
  #: app/skins/single/modern.php:208
437
  msgid "Cost"
@@ -449,7 +449,7 @@ msgstr ""
449
  #: app/features/events.php:3802 app/features/fes.php:223
450
  #: app/features/fes/form.php:689 app/features/labels.php:178
451
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
452
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
453
  #: app/modules/booking/steps/form.php:37
454
  msgid "Name"
455
  msgstr ""
@@ -459,12 +459,12 @@ msgstr ""
459
  #: app/features/fes.php:223 app/features/fes/form.php:685
460
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
461
  #: app/features/organizers.php:111 app/features/organizers.php:152
462
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
463
- #: app/features/speakers.php:187 app/libraries/main.php:1539
464
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
465
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
466
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
467
- #: app/skins/single.php:878 app/skins/single/default.php:234
468
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
469
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
470
  msgid "Email"
@@ -477,8 +477,8 @@ msgstr ""
477
  #: app/features/events.php:491 app/features/events.php:497
478
  #: app/features/events.php:3323 app/features/events.php:3513
479
  #: app/features/events.php:3555 app/features/fes/form.php:247
480
- #: app/features/fes/form.php:251 app/features/ix.php:3373
481
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
482
  #: app/features/mec/dashboard.php:400
483
  #: app/features/mec/meta_boxes/display_options.php:48
484
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -515,8 +515,8 @@ msgstr ""
515
  #: app/features/events.php:583 app/features/events.php:588
516
  #: app/features/events.php:3324 app/features/events.php:3513
517
  #: app/features/events.php:3555 app/features/fes/form.php:287
518
- #: app/features/fes/form.php:291 app/features/ix.php:3373
519
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
520
  #: app/features/mec/dashboard.php:401
521
  msgid "End Date"
522
  msgstr ""
@@ -594,14 +594,14 @@ msgstr ""
594
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
595
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
596
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
597
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
598
- #: app/features/mec/notifications.php:170
599
- #: app/features/mec/notifications.php:238
600
- #: app/features/mec/notifications.php:308
601
- #: app/features/mec/notifications.php:373
602
- #: app/features/mec/notifications.php:384
603
- #: app/features/mec/notifications.php:454
604
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
605
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
606
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
607
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -617,7 +617,7 @@ msgstr ""
617
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
618
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
619
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
620
- #: app/skins/single.php:668 app/skins/single/default.php:141
621
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
622
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
623
  msgid "Read More"
@@ -780,8 +780,8 @@ msgstr ""
780
 
781
  #: app/features/events.php:1168 app/features/events.php:3513
782
  #: app/features/events.php:3555 app/features/fes/form.php:727
783
- #: app/features/ix.php:3373 app/features/ix.php:3414
784
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
785
  #: app/widgets/single.php:103
786
  msgid "Event Cost"
787
  msgstr ""
@@ -797,8 +797,8 @@ msgstr ""
797
  #: app/features/events.php:1204 app/features/events.php:2541
798
  #: app/features/fes.php:223 app/features/mec/booking.php:491
799
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
800
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
801
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
802
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
803
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
804
  msgid "Date"
@@ -835,8 +835,8 @@ msgstr ""
835
  #: app/features/events.php:1437 app/features/events.php:2322
836
  #: app/features/events.php:2369 app/features/events.php:3319
837
  #: app/features/events.php:3513 app/features/events.php:3555
838
- #: app/features/fes/form.php:236 app/features/ix.php:3373
839
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
840
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
841
  msgid "Title"
842
  msgstr ""
@@ -849,13 +849,13 @@ msgstr ""
849
  #: app/features/events.php:2357 app/features/events.php:2399
850
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
851
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
852
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
853
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
854
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
855
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
856
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
857
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
858
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
859
  msgid "Remove"
860
  msgstr ""
861
 
@@ -883,7 +883,7 @@ msgstr ""
883
  #: app/features/events.php:1445 app/features/fes/form.php:851
884
  #: app/features/mec.php:410 app/features/mec/modules.php:52
885
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
886
- #: app/libraries/main.php:565 app/libraries/main.php:5267
887
  #: app/modules/speakers/details.php:18
888
  msgid "Speakers"
889
  msgstr ""
@@ -898,7 +898,7 @@ msgid "Event Links"
898
  msgstr ""
899
 
900
  #: app/features/events.php:1479 app/features/events.php:1485
901
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
902
  msgid "Event Link"
903
  msgstr ""
904
 
@@ -919,8 +919,8 @@ msgid "URL Shortener"
919
  msgstr ""
920
 
921
  #: app/features/events.php:1495 app/features/events.php:1508
922
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
923
- #: app/skins/single.php:667 app/skins/single/default.php:140
924
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
925
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
926
  #: app/widgets/single.php:107
@@ -951,7 +951,7 @@ msgstr ""
951
 
952
  #: app/features/events.php:1596 app/features/events.php:1849
953
  #: app/features/events.php:2064 app/modules/booking/default.php:85
954
- #: app/modules/booking/steps/tickets.php:44
955
  #: app/skins/available_spot/tpl.php:160
956
  msgid "Unlimited"
957
  msgstr ""
@@ -984,7 +984,7 @@ msgid "12"
984
  msgstr ""
985
 
986
  #: app/features/events.php:1653 app/libraries/book.php:60
987
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
988
  msgid "Tickets"
989
  msgstr ""
990
 
@@ -1005,13 +1005,13 @@ msgstr ""
1005
 
1006
  #: app/features/events.php:1680 app/features/events.php:1955
1007
  #: app/features/events.php:3513 app/features/events.php:3555
1008
- #: app/features/ix.php:3373 app/features/ix.php:3414
1009
  msgid "Start Time"
1010
  msgstr ""
1011
 
1012
  #: app/features/events.php:1739 app/features/events.php:1985
1013
  #: app/features/events.php:3513 app/features/events.php:3555
1014
- #: app/features/ix.php:3373 app/features/ix.php:3414
1015
  msgid "End Time"
1016
  msgstr ""
1017
 
@@ -1043,31 +1043,31 @@ msgstr ""
1043
  msgid "Available Tickets"
1044
  msgstr ""
1045
 
1046
- #: app/features/events.php:1855 app/features/events.php:2070
1047
  msgid "Minimum Ticket e.g. 3"
1048
  msgstr ""
1049
 
1050
- #: app/features/events.php:1858 app/features/events.php:2073
1051
  msgid "MinimumTicket"
1052
  msgstr ""
1053
 
1054
- #: app/features/events.php:1860 app/features/events.php:2075
1055
  msgid "Set a number for the minimum ticket reservation"
1056
  msgstr ""
1057
 
1058
- #: app/features/events.php:1868 app/features/events.php:2083
1059
  msgid "e.g. 0"
1060
  msgstr ""
1061
 
1062
- #: app/features/events.php:1870 app/features/events.php:2085
1063
  msgid "Day"
1064
  msgstr ""
1065
 
1066
- #: app/features/events.php:1871 app/features/events.php:2086
1067
  msgid "Hour"
1068
  msgstr ""
1069
 
1070
- #: app/features/events.php:1873 app/features/events.php:2088
1071
  #, php-format
1072
  msgid "Stop selling ticket %s before event start."
1073
  msgstr ""
@@ -1091,7 +1091,7 @@ msgstr ""
1091
  #: app/features/mec/meta_boxes/search_form.php:610
1092
  #: app/features/mec/meta_boxes/search_form.php:707
1093
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1094
- #: app/libraries/skins.php:980
1095
  msgid "Label"
1096
  msgstr ""
1097
 
@@ -1155,44 +1155,44 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1155
  msgstr ""
1156
 
1157
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1158
- #: app/libraries/main.php:2749
1159
  msgid "MEC Name"
1160
  msgstr ""
1161
 
1162
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1163
- #: app/libraries/main.php:2778
1164
  msgid "MEC Email"
1165
  msgstr ""
1166
 
1167
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1168
- #: app/libraries/main.php:2719
1169
  msgid "Text"
1170
  msgstr ""
1171
 
1172
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1173
  #: app/features/organizers.php:103 app/features/organizers.php:148
1174
- #: app/features/speakers.php:118 app/features/speakers.php:183
1175
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1176
  msgid "Tel"
1177
  msgstr ""
1178
 
1179
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1180
- #: app/libraries/main.php:2837
1181
  msgid "File"
1182
  msgstr ""
1183
 
1184
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1185
- #: app/libraries/main.php:2924
1186
  msgid "Textarea"
1187
  msgstr ""
1188
 
1189
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1190
- #: app/libraries/main.php:2977
1191
  msgid "Checkboxes"
1192
  msgstr ""
1193
 
1194
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1195
- #: app/libraries/main.php:3021
1196
  msgid "Radio Buttons"
1197
  msgstr ""
1198
 
@@ -1272,17 +1272,17 @@ msgstr ""
1272
  #: app/features/mec/meta_boxes/search_form.php:696
1273
  #: app/features/mec/meta_boxes/search_form.php:703
1274
  #: app/features/mec/meta_boxes/search_form.php:710
1275
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1276
  msgid "Dropdown"
1277
  msgstr ""
1278
 
1279
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1280
- #: app/libraries/main.php:3112
1281
  msgid "Agreement"
1282
  msgstr ""
1283
 
1284
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1285
- #: app/libraries/main.php:2953
1286
  msgid "Paragraph"
1287
  msgstr ""
1288
 
@@ -1309,8 +1309,8 @@ msgid "Attendees List"
1309
  msgstr ""
1310
 
1311
  #: app/features/events.php:3321 app/features/events.php:3513
1312
- #: app/features/events.php:3555 app/features/ix.php:3373
1313
- #: app/features/ix.php:3414 app/features/locations.php:58
1314
  #: app/features/locations.php:230 app/features/locations.php:287
1315
  #: app/features/locations.php:289 app/features/locations.php:298
1316
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1327,8 +1327,8 @@ msgstr ""
1327
  #: app/features/mec/meta_boxes/search_form.php:679
1328
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1329
  #: app/features/search.php:71 app/libraries/main.php:2236
1330
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1331
- #: app/skins/single.php:487 app/skins/single.php:918
1332
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1333
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1334
  #: app/skins/single/modern.php:97
@@ -1369,14 +1369,14 @@ msgid "Duplicate"
1369
  msgstr ""
1370
 
1371
  #: app/features/events.php:3513 app/features/events.php:3555
1372
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1373
  #: app/features/labels.php:177 app/features/locations.php:229
1374
- #: app/features/organizers.php:203 app/features/speakers.php:253
1375
  msgid "ID"
1376
  msgstr ""
1377
 
1378
  #: app/features/events.php:3513 app/features/events.php:3555
1379
- #: app/features/ix.php:3373 app/features/ix.php:3414
1380
  msgid "Link"
1381
  msgstr ""
1382
 
@@ -1392,7 +1392,7 @@ msgstr ""
1392
 
1393
  #: app/features/events.php:3808 app/features/fes.php:223
1394
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1395
- #: app/libraries/main.php:5294
1396
  msgid "Ticket"
1397
  msgstr ""
1398
 
@@ -1560,8 +1560,8 @@ msgstr ""
1560
 
1561
  #: app/features/fes/form.php:783 app/features/labels.php:61
1562
  #: app/features/labels.php:221 app/features/mec.php:403
1563
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1564
- #: app/skins/single.php:696 app/skins/single/default.php:155
1565
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1566
  #: app/skins/single/modern.php:223
1567
  msgid "Labels"
@@ -1634,81 +1634,81 @@ msgstr ""
1634
  msgid "The events are imported successfully!"
1635
  msgstr ""
1636
 
1637
- #: app/features/ix.php:806
1638
  msgid "Third Party plugin is not installed and activated!"
1639
  msgstr ""
1640
 
1641
- #: app/features/ix.php:829
1642
  msgid "Third Party plugin is invalid!"
1643
  msgstr ""
1644
 
1645
- #: app/features/ix.php:2580 app/features/ix.php:2638
1646
  msgid "Both of API key and Calendar ID are required!"
1647
  msgstr ""
1648
 
1649
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1650
  msgid "Please select some events to import!"
1651
  msgstr ""
1652
 
1653
- #: app/features/ix.php:2994 app/features/ix.php:3057
1654
  msgid "Both of API key and Group URL are required!"
1655
  msgstr ""
1656
 
1657
- #: app/features/ix.php:3296
1658
  msgid "Check at Meetup"
1659
  msgstr ""
1660
 
1661
- #: app/features/ix.php:3373 app/features/ix.php:3414
1662
  msgid "Organizer Tel"
1663
  msgstr ""
1664
 
1665
- #: app/features/ix.php:3373 app/features/ix.php:3414
1666
  msgid "Organizer Email"
1667
  msgstr ""
1668
 
1669
- #: app/features/ix.php:3495
1670
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1671
  msgstr ""
1672
 
1673
- #: app/features/ix.php:3518
1674
  #, php-format
1675
  msgid "All seems good! Please click %s for authenticating your app."
1676
  msgstr ""
1677
 
1678
- #: app/features/ix.php:3572
1679
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1680
  msgstr ""
1681
 
1682
- #: app/features/ix.php:3688
1683
  #, php-format
1684
  msgid "%s events added to Google Calendar successfully."
1685
  msgstr ""
1686
 
1687
- #: app/features/ix.php:3689
1688
  #, php-format
1689
  msgid "%s previously added events get updated."
1690
  msgstr ""
1691
 
1692
- #: app/features/ix.php:3690
1693
  #, php-format
1694
  msgid "%s events failed to add for following reasons: %s"
1695
  msgstr ""
1696
 
1697
- #: app/features/ix.php:3722
1698
  msgid "Please insert your Facebook page's link."
1699
  msgstr ""
1700
 
1701
- #: app/features/ix.php:3731
1702
  msgid ""
1703
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1704
  "valid Facebook page link."
1705
  msgstr ""
1706
 
1707
- #: app/features/ix.php:3763
1708
  msgid "Please insert your facebook page's link."
1709
  msgstr ""
1710
 
1711
- #: app/features/ix.php:3768
1712
  msgid ""
1713
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1714
  "valid facebook page link."
@@ -1871,14 +1871,15 @@ msgstr ""
1871
  #: app/features/ix/export_g_calendar.php:72
1872
  #: app/features/ix/export_g_calendar.php:147
1873
  #: app/features/ix/export_g_calendar.php:164
1874
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
1875
- #: app/features/mec/notifications.php:213
1876
- #: app/features/mec/notifications.php:420
 
1877
  msgid "Add to Google Calendar"
1878
  msgstr ""
1879
 
1880
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1881
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
1882
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1883
  msgid "Checking ..."
1884
  msgstr ""
@@ -2116,7 +2117,7 @@ msgstr ""
2116
 
2117
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2118
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2119
- #: app/features/mec/notifications.php:361
2120
  msgid "Important Note"
2121
  msgstr ""
2122
 
@@ -2285,7 +2286,7 @@ msgid "Featured"
2285
  msgstr ""
2286
 
2287
  #: app/features/labels.php:118 app/features/labels.php:143
2288
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2289
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2290
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2291
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2304,7 +2305,7 @@ msgid "You can show featured and canceled events by a different style!"
2304
  msgstr ""
2305
 
2306
  #: app/features/labels.php:180 app/features/locations.php:232
2307
- #: app/features/organizers.php:206 app/features/speakers.php:257
2308
  #: app/modules/booking/steps/tickets.php:38
2309
  msgid "Count"
2310
  msgstr ""
@@ -2321,7 +2322,7 @@ msgstr ""
2321
 
2322
  #: app/features/locations.php:59 app/features/mec.php:404
2323
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2324
- #: app/libraries/main.php:5263
2325
  msgid "Locations"
2326
  msgstr ""
2327
 
@@ -2354,13 +2355,13 @@ msgstr ""
2354
 
2355
  #: app/features/locations.php:138 app/features/locations.php:180
2356
  #: app/features/organizers.php:127 app/features/organizers.php:160
2357
- #: app/features/speakers.php:158 app/features/speakers.php:203
2358
  msgid "Thumbnail"
2359
  msgstr ""
2360
 
2361
  #: app/features/locations.php:143 app/features/locations.php:183
2362
  #: app/features/organizers.php:132 app/features/organizers.php:163
2363
- #: app/features/speakers.php:163 app/features/speakers.php:206
2364
  msgid "Upload/Add image"
2365
  msgstr ""
2366
 
@@ -2368,7 +2369,7 @@ msgstr ""
2368
  #: app/features/locations.php:340 app/features/locations.php:347
2369
  #: app/features/organizers.php:133 app/features/organizers.php:164
2370
  #: app/features/organizers.php:299 app/features/organizers.php:306
2371
- #: app/features/speakers.php:164 app/features/speakers.php:207
2372
  msgid "Remove image"
2373
  msgstr ""
2374
 
@@ -2426,7 +2427,7 @@ msgstr ""
2426
  msgid "Don't show map in single event page"
2427
  msgstr ""
2428
 
2429
- #: app/features/locations.php:356 app/libraries/main.php:5297
2430
  msgid "Other Locations"
2431
  msgstr ""
2432
 
@@ -2449,7 +2450,7 @@ msgstr ""
2449
  msgid "Troubleshooting"
2450
  msgstr ""
2451
 
2452
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2453
  #, php-format
2454
  msgid "%s to %s"
2455
  msgstr ""
@@ -2479,7 +2480,7 @@ msgstr ""
2479
 
2480
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2481
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2482
- #: app/libraries/main.php:5265
2483
  msgid "Organizers"
2484
  msgstr ""
2485
 
@@ -2593,10 +2594,10 @@ msgstr ""
2593
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2594
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2595
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2596
- #: app/features/mec/notifications.php:531
2597
- #: app/features/mec/notifications.php:543
2598
- #: app/features/mec/notifications.php:639
2599
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2600
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2601
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2602
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2707,7 +2708,7 @@ msgstr ""
2707
  msgid "Enable Express Attendees Form"
2708
  msgstr ""
2709
 
2710
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2711
  msgid "Attendees Form"
2712
  msgstr ""
2713
 
@@ -2737,7 +2738,7 @@ msgstr ""
2737
  msgid "Auto verification for paid bookings"
2738
  msgstr ""
2739
 
2740
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2741
  #: app/libraries/main.php:579
2742
  msgid "Booking Confirmation"
2743
  msgstr ""
@@ -2799,14 +2800,14 @@ msgid ""
2799
  msgstr ""
2800
 
2801
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2802
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
2803
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2804
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2805
  msgid "Saved"
2806
  msgstr ""
2807
 
2808
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2809
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
2810
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2811
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2812
  msgid "Settings Saved!"
@@ -2814,15 +2815,15 @@ msgstr ""
2814
 
2815
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2816
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2817
- #: app/features/mec/notifications.php:620
2818
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
2819
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2820
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
2821
  msgid "Verified"
2822
  msgstr ""
2823
 
2824
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2825
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
2826
  #: app/features/mec/single.php:291
2827
  msgid "Please Refresh Page"
2828
  msgstr ""
@@ -3912,8 +3913,8 @@ msgstr ""
3912
  #: app/features/mec/meta_boxes/search_form.php:693
3913
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3914
  #: app/features/search.php:79 app/features/speakers.php:61
3915
- #: app/features/speakers.php:254 app/libraries/main.php:5268
3916
- #: app/libraries/skins.php:928
3917
  msgid "Speaker"
3918
  msgstr ""
3919
 
@@ -3929,7 +3930,7 @@ msgstr ""
3929
  #: app/features/mec/meta_boxes/search_form.php:603
3930
  #: app/features/mec/meta_boxes/search_form.php:700
3931
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
3932
- #: app/features/search.php:83 app/libraries/skins.php:954
3933
  msgid "Tag"
3934
  msgstr ""
3935
 
@@ -4175,358 +4176,447 @@ msgstr ""
4175
  msgid "It sends to attendee after booking for notifying him/her."
4176
  msgstr ""
4177
 
4178
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4179
- #: app/features/mec/notifications.php:161
4180
- #: app/features/mec/notifications.php:229
4181
- #: app/features/mec/notifications.php:299
4182
- #: app/features/mec/notifications.php:364
4183
- #: app/features/mec/notifications.php:445
4184
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4185
  msgid "Email Subject"
4186
  msgstr ""
4187
 
4188
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4189
- #: app/features/mec/notifications.php:109
4190
- #: app/features/mec/notifications.php:113
4191
- #: app/features/mec/notifications.php:165
4192
- #: app/features/mec/notifications.php:169
4193
- #: app/features/mec/notifications.php:233
4194
- #: app/features/mec/notifications.php:237
4195
- #: app/features/mec/notifications.php:303
4196
- #: app/features/mec/notifications.php:307
4197
- #: app/features/mec/notifications.php:368
4198
- #: app/features/mec/notifications.php:372
4199
- #: app/features/mec/notifications.php:383
4200
- #: app/features/mec/notifications.php:449
4201
- #: app/features/mec/notifications.php:453
4202
- #: app/features/mec/notifications.php:497
4203
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4204
  msgid "Custom Recipients"
4205
  msgstr ""
4206
 
4207
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4208
- #: app/features/mec/notifications.php:170
4209
- #: app/features/mec/notifications.php:238
4210
- #: app/features/mec/notifications.php:308
4211
- #: app/features/mec/notifications.php:373
4212
- #: app/features/mec/notifications.php:384
4213
- #: app/features/mec/notifications.php:454
4214
- #: app/features/mec/notifications.php:502
4215
  msgid "Insert comma separated emails for multiple recipients."
4216
  msgstr ""
4217
 
4218
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4219
- #: app/features/mec/notifications.php:315
4220
  msgid "Send the email to event organizer"
4221
  msgstr ""
4222
 
4223
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4224
- #: app/features/mec/notifications.php:180
4225
- #: app/features/mec/notifications.php:256
4226
- #: app/features/mec/notifications.php:318
4227
- #: app/features/mec/notifications.php:390
4228
- #: app/features/mec/notifications.php:460
4229
- #: app/features/mec/notifications.php:508
4230
  msgid "Email Content"
4231
  msgstr ""
4232
 
4233
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4234
- #: app/features/mec/notifications.php:183
4235
- #: app/features/mec/notifications.php:259
4236
- #: app/features/mec/notifications.php:321
4237
- #: app/features/mec/notifications.php:393
4238
- #: app/features/mec/notifications.php:463
4239
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4240
  msgid "You can use following placeholders"
4241
  msgstr ""
4242
 
4243
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4244
- #: app/features/mec/notifications.php:185
4245
- #: app/features/mec/notifications.php:261
4246
- #: app/features/mec/notifications.php:323
4247
- #: app/features/mec/notifications.php:395
 
4248
  msgid "First name of attendee"
4249
  msgstr ""
4250
 
4251
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4252
- #: app/features/mec/notifications.php:186
4253
- #: app/features/mec/notifications.php:262
4254
- #: app/features/mec/notifications.php:324
4255
- #: app/features/mec/notifications.php:396
 
4256
  msgid "Last name of attendee"
4257
  msgstr ""
4258
 
4259
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4260
- #: app/features/mec/notifications.php:187
4261
- #: app/features/mec/notifications.php:263
4262
- #: app/features/mec/notifications.php:325
4263
- #: app/features/mec/notifications.php:397
 
4264
  msgid "Email of attendee"
4265
  msgstr ""
4266
 
4267
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4268
- #: app/features/mec/notifications.php:188
4269
- #: app/features/mec/notifications.php:264
4270
- #: app/features/mec/notifications.php:326
4271
- #: app/features/mec/notifications.php:398
 
4272
  msgid "Booked date of event"
4273
  msgstr ""
4274
 
4275
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4276
- #: app/features/mec/notifications.php:189
4277
- #: app/features/mec/notifications.php:265
4278
- #: app/features/mec/notifications.php:327
4279
- #: app/features/mec/notifications.php:399
 
4280
  msgid "Booked time of event"
4281
  msgstr ""
4282
 
4283
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4284
- #: app/features/mec/notifications.php:190
4285
- #: app/features/mec/notifications.php:266
4286
- #: app/features/mec/notifications.php:328
4287
- #: app/features/mec/notifications.php:400
 
4288
  msgid "Booking Price"
4289
  msgstr ""
4290
 
4291
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4292
- #: app/features/mec/notifications.php:191
4293
- #: app/features/mec/notifications.php:267
4294
- #: app/features/mec/notifications.php:329
4295
- #: app/features/mec/notifications.php:401
 
4296
  msgid "Date and time of placing booking"
4297
  msgstr ""
4298
 
4299
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4300
- #: app/features/mec/notifications.php:192
4301
- #: app/features/mec/notifications.php:268
4302
- #: app/features/mec/notifications.php:330
4303
- #: app/features/mec/notifications.php:402
4304
- #: app/features/mec/notifications.php:471
4305
- #: app/features/mec/notifications.php:519
 
4306
  msgid "Your website title"
4307
  msgstr ""
4308
 
4309
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4310
- #: app/features/mec/notifications.php:193
4311
- #: app/features/mec/notifications.php:269
4312
- #: app/features/mec/notifications.php:331
4313
- #: app/features/mec/notifications.php:403
4314
- #: app/features/mec/notifications.php:472
4315
- #: app/features/mec/notifications.php:520
 
4316
  msgid "Your website URL"
4317
  msgstr ""
4318
 
4319
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4320
- #: app/features/mec/notifications.php:194
4321
- #: app/features/mec/notifications.php:270
4322
- #: app/features/mec/notifications.php:332
4323
- #: app/features/mec/notifications.php:404
4324
- #: app/features/mec/notifications.php:473
4325
- #: app/features/mec/notifications.php:521
 
4326
  msgid "Your website description"
4327
  msgstr ""
4328
 
4329
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4330
- #: app/features/mec/notifications.php:195
4331
- #: app/features/mec/notifications.php:271
4332
- #: app/features/mec/notifications.php:333
4333
- #: app/features/mec/notifications.php:405
 
4334
  msgid "Event title"
4335
  msgstr ""
4336
 
4337
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4338
- #: app/features/mec/notifications.php:196
4339
- #: app/features/mec/notifications.php:272
4340
- #: app/features/mec/notifications.php:334
4341
- #: app/features/mec/notifications.php:406
 
4342
  msgid "Event link"
4343
  msgstr ""
4344
 
4345
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4346
- #: app/features/mec/notifications.php:197
4347
- #: app/features/mec/notifications.php:467
4348
- #: app/features/mec/notifications.php:515
 
4349
  msgid "Event Start Date"
4350
  msgstr ""
4351
 
4352
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4353
- #: app/features/mec/notifications.php:198
4354
- #: app/features/mec/notifications.php:468
4355
- #: app/features/mec/notifications.php:516
 
4356
  msgid "Event End Date"
4357
  msgstr ""
4358
 
4359
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4360
- #: app/features/mec/notifications.php:199
4361
- #: app/features/mec/notifications.php:273
4362
- #: app/features/mec/notifications.php:335
4363
- #: app/features/mec/notifications.php:407
 
4364
  msgid "Speaker name of booked event"
4365
  msgstr ""
4366
 
4367
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4368
- #: app/features/mec/notifications.php:200
4369
- #: app/features/mec/notifications.php:274
4370
- #: app/features/mec/notifications.php:336
4371
- #: app/features/mec/notifications.php:408
 
4372
  msgid "Organizer name of booked event"
4373
  msgstr ""
4374
 
4375
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4376
- #: app/features/mec/notifications.php:201
4377
- #: app/features/mec/notifications.php:275
4378
- #: app/features/mec/notifications.php:337
4379
- #: app/features/mec/notifications.php:409
 
4380
  msgid "Organizer tel of booked event"
4381
  msgstr ""
4382
 
4383
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4384
- #: app/features/mec/notifications.php:202
4385
- #: app/features/mec/notifications.php:276
4386
- #: app/features/mec/notifications.php:338
4387
- #: app/features/mec/notifications.php:410
 
4388
  msgid "Organizer email of booked event"
4389
  msgstr ""
4390
 
4391
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4392
- #: app/features/mec/notifications.php:203
4393
- #: app/features/mec/notifications.php:277
4394
- #: app/features/mec/notifications.php:339
4395
- #: app/features/mec/notifications.php:411
 
4396
  msgid "Location name of booked event"
4397
  msgstr ""
4398
 
4399
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4400
- #: app/features/mec/notifications.php:204
4401
- #: app/features/mec/notifications.php:278
4402
- #: app/features/mec/notifications.php:340
4403
- #: app/features/mec/notifications.php:412
 
4404
  msgid "Location address of booked event"
4405
  msgstr ""
4406
 
4407
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4408
- #: app/features/mec/notifications.php:205
4409
- #: app/features/mec/notifications.php:279
4410
- #: app/features/mec/notifications.php:341
4411
- #: app/features/mec/notifications.php:413
 
4412
  msgid "Featured image of booked event"
4413
  msgstr ""
4414
 
4415
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4416
- #: app/features/mec/notifications.php:343
 
4417
  msgid "Full Attendee info such as booking form data, name, email etc."
4418
  msgstr ""
4419
 
4420
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4421
- #: app/features/mec/notifications.php:415
 
4422
  msgid "Invoice Link"
4423
  msgstr ""
4424
 
4425
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4426
- #: app/features/mec/notifications.php:208
4427
- #: app/features/mec/notifications.php:282
4428
- #: app/features/mec/notifications.php:344
4429
- #: app/features/mec/notifications.php:416
 
4430
  msgid "Total Attendees"
4431
  msgstr ""
4432
 
4433
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4434
- #: app/features/mec/notifications.php:210
4435
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
4436
  msgid "Ticket name"
4437
  msgstr ""
4438
 
4439
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4440
- #: app/features/mec/notifications.php:211
4441
- #: app/features/mec/notifications.php:418
 
4442
  msgid "Ticket time"
4443
  msgstr ""
4444
 
4445
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4446
- #: app/features/mec/notifications.php:212
4447
- #: app/features/mec/notifications.php:419
 
4448
  msgid "Download ICS file"
4449
  msgstr ""
4450
 
4451
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4452
  msgid "Booking Verification"
4453
  msgstr ""
4454
 
4455
- #: app/features/mec/notifications.php:103
4456
  msgid "It sends to attendee email for verifying their booking/email."
4457
  msgstr ""
4458
 
4459
- #: app/features/mec/notifications.php:146
4460
  msgid "Email/Booking verification link."
4461
  msgstr ""
4462
 
4463
- #: app/features/mec/notifications.php:159
4464
  msgid "It sends to attendee after confirming the booking by admin."
4465
  msgstr ""
4466
 
4467
- #: app/features/mec/notifications.php:177
4468
  msgid "Send One Single Email Only To First Attendee"
4469
  msgstr ""
4470
 
4471
- #: app/features/mec/notifications.php:206
4472
- #: app/features/mec/notifications.php:414
4473
  msgid "Booking cancellation link."
4474
  msgstr ""
4475
 
4476
- #: app/features/mec/notifications.php:209
4477
- msgid "Amount Tickets"
4478
- msgstr ""
4479
-
4480
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4481
  msgid "Booking Cancellation"
4482
  msgstr ""
4483
 
4484
- #: app/features/mec/notifications.php:223
4485
  msgid "Enable cancellation notification"
4486
  msgstr ""
4487
 
4488
- #: app/features/mec/notifications.php:227
4489
  msgid ""
4490
  "It sends to selected recipients after booking cancellation for notifying "
4491
  "them."
4492
  msgstr ""
4493
 
4494
- #: app/features/mec/notifications.php:245
4495
- #: app/features/mec/notifications.php:439
4496
  msgid "Send the email to admin"
4497
  msgstr ""
4498
 
4499
- #: app/features/mec/notifications.php:253
4500
  msgid "Send the email to booking user"
4501
  msgstr ""
4502
 
4503
- #: app/features/mec/notifications.php:280
4504
- #: app/features/mec/notifications.php:342
4505
  msgid "Admin booking management link."
4506
  msgstr ""
4507
 
4508
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4509
  msgid "Admin"
4510
  msgstr ""
4511
 
4512
- #: app/features/mec/notifications.php:293
4513
  msgid "Enable admin notification"
4514
  msgstr ""
4515
 
4516
- #: app/features/mec/notifications.php:297
4517
  msgid "It sends to admin to notify him/her that a new booking received."
4518
  msgstr ""
4519
 
4520
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4521
- #: app/libraries/notifications.php:548
4522
  msgid "Booking Reminder"
4523
  msgstr ""
4524
 
4525
- #: app/features/mec/notifications.php:355
4526
  msgid "Enable booking reminder notification"
4527
  msgstr ""
4528
 
4529
- #: app/features/mec/notifications.php:361
4530
  #, php-format
4531
  msgid ""
4532
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4534,64 +4624,64 @@ msgid ""
4534
  "send the reminders multiple times."
4535
  msgstr ""
4536
 
4537
- #: app/features/mec/notifications.php:361
4538
  msgid "only once per day"
4539
  msgstr ""
4540
 
4541
- #: app/features/mec/notifications.php:379
4542
  msgid "Days"
4543
  msgstr ""
4544
 
4545
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4546
  #: app/libraries/main.php:583
4547
  msgid "New Event"
4548
  msgstr ""
4549
 
4550
- #: app/features/mec/notifications.php:433
4551
  msgid "Enable new event notification"
4552
  msgstr ""
4553
 
4554
- #: app/features/mec/notifications.php:443
4555
  msgid ""
4556
  "It sends after adding a new event from frontend event submission or from "
4557
  "website backend."
4558
  msgstr ""
4559
 
4560
- #: app/features/mec/notifications.php:465
4561
- #: app/features/mec/notifications.php:513
4562
  msgid "Title of event"
4563
  msgstr ""
4564
 
4565
- #: app/features/mec/notifications.php:466
4566
- #: app/features/mec/notifications.php:514
4567
  msgid "Link of event"
4568
  msgstr ""
4569
 
4570
- #: app/features/mec/notifications.php:469
4571
- #: app/features/mec/notifications.php:517
4572
  msgid "Status of event"
4573
  msgstr ""
4574
 
4575
- #: app/features/mec/notifications.php:470
4576
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4577
  #: app/features/mec/settings.php:738
4578
  msgid "Event Note"
4579
  msgstr ""
4580
 
4581
- #: app/features/mec/notifications.php:474
4582
- #: app/features/mec/notifications.php:522
4583
  msgid "Admin events management link."
4584
  msgstr ""
4585
 
4586
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4587
  msgid "User Event Publishing"
4588
  msgstr ""
4589
 
4590
- #: app/features/mec/notifications.php:487
4591
  msgid "Enable user event publishing notification"
4592
  msgstr ""
4593
 
4594
- #: app/features/mec/notifications.php:491
4595
  msgid ""
4596
  "It sends after published a new event from frontend event submission or from "
4597
  "website backend."
@@ -4744,7 +4834,7 @@ msgid "You can enable/disable Schema scripts"
4744
  msgstr ""
4745
 
4746
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4747
- #: app/libraries/main.php:5272
4748
  msgid "Weekdays"
4749
  msgstr ""
4750
 
@@ -5846,12 +5936,12 @@ msgstr ""
5846
  msgid "eg. https://webnus.net"
5847
  msgstr ""
5848
 
5849
- #: app/features/organizers.php:311 app/libraries/main.php:5296
5850
- #: app/skins/single.php:856
5851
  msgid "Other Organizers"
5852
  msgstr ""
5853
 
5854
- #: app/features/organizers.php:313
5855
  msgid ""
5856
  "You can select extra organizers in addition to main organizer if you like."
5857
  msgstr ""
@@ -5869,7 +5959,7 @@ msgstr ""
5869
  msgid "#"
5870
  msgstr ""
5871
 
5872
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
5873
  msgid "Status"
5874
  msgstr ""
5875
 
@@ -5902,7 +5992,7 @@ msgstr ""
5902
  msgid "No bookings found!"
5903
  msgstr ""
5904
 
5905
- #: app/features/search.php:87 app/libraries/main.php:5262
5906
  msgid "label"
5907
  msgstr ""
5908
 
@@ -5927,60 +6017,72 @@ msgid "No search result."
5927
  msgstr ""
5928
 
5929
  #: app/features/search_bar/search_result.php:11
5930
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
5931
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
5932
- #: app/skins/single.php:160 app/skins/single.php:747
5933
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
5934
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
5935
  msgid "All of the day"
5936
  msgstr ""
5937
 
5938
- #: app/features/speakers.php:110 app/features/speakers.php:179
5939
- #: app/features/speakers.php:255
5940
  msgid "Job Title"
5941
  msgstr ""
5942
 
5943
- #: app/features/speakers.php:113 app/features/speakers.php:180
5944
  msgid "Insert speaker job title."
5945
  msgstr ""
5946
 
5947
- #: app/features/speakers.php:121 app/features/speakers.php:184
5948
  msgid "Insert speaker phone number."
5949
  msgstr ""
5950
 
5951
- #: app/features/speakers.php:129 app/features/speakers.php:188
5952
  msgid "Insert speaker email address."
5953
  msgstr ""
5954
 
5955
- #: app/features/speakers.php:134 app/features/speakers.php:191
5956
  msgid "Facebook Page"
5957
  msgstr ""
5958
 
5959
- #: app/features/speakers.php:137 app/features/speakers.php:192
5960
  msgid "Insert URL of Facebook Page"
5961
  msgstr ""
5962
 
5963
- #: app/features/speakers.php:142 app/features/speakers.php:195
5964
  msgid "Instagram"
5965
  msgstr ""
5966
 
5967
- #: app/features/speakers.php:145 app/features/speakers.php:196
5968
  msgid "Insert URL of Instagram"
5969
  msgstr ""
5970
 
5971
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
5972
  msgid "Twitter Page"
5973
  msgstr ""
5974
 
5975
- #: app/features/speakers.php:153 app/features/speakers.php:200
5976
  msgid "Insert URL of Twitter Page"
5977
  msgstr ""
5978
 
5979
- #: app/features/speakers.php:315
 
 
 
 
5980
  msgid "Sorry, You must insert speaker name!"
5981
  msgstr ""
5982
 
5983
- #: app/features/speakers.php:364
5984
  msgid ""
5985
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
5986
  "section and speaker widget section!"
@@ -6134,31 +6236,31 @@ msgstr ""
6134
  msgid "Tile View"
6135
  msgstr ""
6136
 
6137
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6138
  msgid "SU"
6139
  msgstr ""
6140
 
6141
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6142
  msgid "MO"
6143
  msgstr ""
6144
 
6145
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6146
  msgid "TU"
6147
  msgstr ""
6148
 
6149
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6150
  msgid "WE"
6151
  msgstr ""
6152
 
6153
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6154
  msgid "TH"
6155
  msgstr ""
6156
 
6157
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6158
  msgid "FR"
6159
  msgstr ""
6160
 
6161
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6162
  msgid "SA"
6163
  msgstr ""
6164
 
@@ -6395,183 +6497,183 @@ msgstr ""
6395
  msgid "iCal export stopped!"
6396
  msgstr ""
6397
 
6398
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6399
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6400
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6401
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6402
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6403
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6404
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6405
  msgid "Sort"
6406
  msgstr ""
6407
 
6408
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6409
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6410
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6411
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6412
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6413
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6414
  msgid "Required Field"
6415
  msgstr ""
6416
 
6417
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6418
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6419
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6420
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6421
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6422
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6423
  msgid "Insert a label for this field"
6424
  msgstr ""
6425
 
6426
- #: app/libraries/main.php:2958
6427
  msgid "HTML and shortcode are allowed."
6428
  msgstr ""
6429
 
6430
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
6431
- #: app/libraries/main.php:3089
6432
  msgid "Option"
6433
  msgstr ""
6434
 
6435
- #: app/libraries/main.php:3123
6436
  #, php-format
6437
  msgid "Instead of %s, the page title with a link will be show."
6438
  msgstr ""
6439
 
6440
- #: app/libraries/main.php:3125
6441
  msgid "Agreement Page"
6442
  msgstr ""
6443
 
6444
- #: app/libraries/main.php:3136
6445
  msgid "Checked by default"
6446
  msgstr ""
6447
 
6448
- #: app/libraries/main.php:3137
6449
  msgid "Unchecked by default"
6450
  msgstr ""
6451
 
6452
- #: app/libraries/main.php:3160
6453
  msgid "Insert a label for this option"
6454
  msgstr ""
6455
 
6456
- #: app/libraries/main.php:3175
6457
  msgid "Free"
6458
  msgstr ""
6459
 
6460
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
6461
  msgid "M.E. Calender"
6462
  msgstr ""
6463
 
6464
- #: app/libraries/main.php:3936
6465
  #, php-format
6466
  msgid "Copy of %s"
6467
  msgstr ""
6468
 
6469
- #: app/libraries/main.php:4651
6470
  msgid "Booked an event."
6471
  msgstr ""
6472
 
6473
- #: app/libraries/main.php:4692
6474
  #, php-format
6475
  msgid "%s booked %s event."
6476
  msgstr ""
6477
 
6478
- #: app/libraries/main.php:5257
6479
  msgid "Taxonomies"
6480
  msgstr ""
6481
 
6482
- #: app/libraries/main.php:5259
6483
  msgid "Category Plural Label"
6484
  msgstr ""
6485
 
6486
- #: app/libraries/main.php:5260
6487
  msgid "Category Singular Label"
6488
  msgstr ""
6489
 
6490
- #: app/libraries/main.php:5261
6491
  msgid "Label Plural Label"
6492
  msgstr ""
6493
 
6494
- #: app/libraries/main.php:5262
6495
  msgid "Label Singular Label"
6496
  msgstr ""
6497
 
6498
- #: app/libraries/main.php:5263
6499
  msgid "Location Plural Label"
6500
  msgstr ""
6501
 
6502
- #: app/libraries/main.php:5264
6503
  msgid "Location Singular Label"
6504
  msgstr ""
6505
 
6506
- #: app/libraries/main.php:5265
6507
  msgid "Organizer Plural Label"
6508
  msgstr ""
6509
 
6510
- #: app/libraries/main.php:5266
6511
  msgid "Organizer Singular Label"
6512
  msgstr ""
6513
 
6514
- #: app/libraries/main.php:5267
6515
  msgid "Speaker Plural Label"
6516
  msgstr ""
6517
 
6518
- #: app/libraries/main.php:5268
6519
  msgid "Speaker Singular Label"
6520
  msgstr ""
6521
 
6522
- #: app/libraries/main.php:5274
6523
  msgid "Sunday abbreviation"
6524
  msgstr ""
6525
 
6526
- #: app/libraries/main.php:5275
6527
  msgid "Monday abbreviation"
6528
  msgstr ""
6529
 
6530
- #: app/libraries/main.php:5276
6531
  msgid "Tuesday abbreviation"
6532
  msgstr ""
6533
 
6534
- #: app/libraries/main.php:5277
6535
  msgid "Wednesday abbreviation"
6536
  msgstr ""
6537
 
6538
- #: app/libraries/main.php:5278
6539
  msgid "Thursday abbreviation"
6540
  msgstr ""
6541
 
6542
- #: app/libraries/main.php:5279
6543
  msgid "Friday abbreviation"
6544
  msgstr ""
6545
 
6546
- #: app/libraries/main.php:5280
6547
  msgid "Saturday abbreviation"
6548
  msgstr ""
6549
 
6550
- #: app/libraries/main.php:5284
6551
  msgid "Others"
6552
  msgstr ""
6553
 
6554
- #: app/libraries/main.php:5286
6555
  msgid "Booking Success Message"
6556
  msgstr ""
6557
 
6558
- #: app/libraries/main.php:5286
6559
  msgid ""
6560
  "Thanks for your booking. Your tickets booked, booking verification might be "
6561
  "needed, please check your email."
6562
  msgstr ""
6563
 
6564
- #: app/libraries/main.php:5287 app/widgets/single.php:131
6565
  msgid "Register Button"
6566
  msgstr ""
6567
 
6568
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
6569
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6570
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6571
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6572
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
6573
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
6574
- #: app/skins/single.php:771 app/skins/single/default.php:255
6575
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
6576
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
6577
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -6582,11 +6684,11 @@ msgstr ""
6582
  msgid "REGISTER"
6583
  msgstr ""
6584
 
6585
- #: app/libraries/main.php:5288
6586
  msgid "View Detail Button"
6587
  msgstr ""
6588
 
6589
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
6590
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6591
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6592
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -6597,79 +6699,79 @@ msgstr ""
6597
  msgid "View Detail"
6598
  msgstr ""
6599
 
6600
- #: app/libraries/main.php:5289
6601
  msgid "Event Detail Button"
6602
  msgstr ""
6603
 
6604
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
6605
  msgid "Event Detail"
6606
  msgstr ""
6607
 
6608
- #: app/libraries/main.php:5291
6609
  msgid "More Info Link"
6610
  msgstr ""
6611
 
6612
- #: app/libraries/main.php:5294
6613
  msgid "Ticket (Singular)"
6614
  msgstr ""
6615
 
6616
- #: app/libraries/main.php:5295
6617
  msgid "Tickets (Plural)"
6618
  msgstr ""
6619
 
6620
- #: app/libraries/main.php:5381
6621
  msgid "EventON"
6622
  msgstr ""
6623
 
6624
- #: app/libraries/main.php:5382
6625
  msgid "The Events Calendar"
6626
  msgstr ""
6627
 
6628
- #: app/libraries/main.php:5383
6629
  msgid "Events Schedule WP Plugin"
6630
  msgstr ""
6631
 
6632
- #: app/libraries/main.php:5384
6633
  msgid "Calendarize It"
6634
  msgstr ""
6635
 
6636
- #: app/libraries/main.php:5385
6637
  msgid "Event Espresso"
6638
  msgstr ""
6639
 
6640
- #: app/libraries/main.php:5386
6641
  msgid "Events Manager (Recurring)"
6642
  msgstr ""
6643
 
6644
- #: app/libraries/main.php:5387
6645
  msgid "Events Manager (Single)"
6646
  msgstr ""
6647
 
6648
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
6649
  msgid "Confirmed"
6650
  msgstr ""
6651
 
6652
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
6653
  msgid "Rejected"
6654
  msgstr ""
6655
 
6656
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
6657
  msgid "Pending"
6658
  msgstr ""
6659
 
6660
- #: app/libraries/main.php:5511
6661
  msgid "Waiting"
6662
  msgstr ""
6663
 
6664
- #: app/libraries/main.php:5716 app/libraries/render.php:378
6665
  msgid "Skin controller does not exist."
6666
  msgstr ""
6667
 
6668
- #: app/libraries/main.php:5830
6669
  msgid "Sold Out"
6670
  msgstr ""
6671
 
6672
- #: app/libraries/main.php:5838
6673
  msgid "Last Few Tickets"
6674
  msgstr ""
6675
 
@@ -6677,53 +6779,53 @@ msgstr ""
6677
  msgid "Please verify your email."
6678
  msgstr ""
6679
 
6680
- #: app/libraries/notifications.php:142
6681
  msgid "Your booking is received."
6682
  msgstr ""
6683
 
6684
- #: app/libraries/notifications.php:249
6685
  msgid "Your booking is confirmed."
6686
  msgstr ""
6687
 
6688
- #: app/libraries/notifications.php:391
6689
  msgid "booking canceled."
6690
  msgstr ""
6691
 
6692
- #: app/libraries/notifications.php:466
6693
  msgid "A new booking is received."
6694
  msgstr ""
6695
 
6696
- #: app/libraries/notifications.php:657
6697
  msgid "A new event is added."
6698
  msgstr ""
6699
 
6700
- #: app/libraries/notifications.php:726
6701
  msgid "Your event is published."
6702
  msgstr ""
6703
 
6704
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
6705
- #: app/libraries/notifications.php:964
6706
  msgid "to"
6707
  msgstr ""
6708
 
6709
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
6710
  msgid "+ Add to Google Calendar"
6711
  msgstr ""
6712
 
6713
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
6714
  msgid "+ iCal export"
6715
  msgstr ""
6716
 
6717
- #: app/libraries/notifications.php:1043
6718
  msgid "Yes"
6719
  msgstr ""
6720
 
6721
- #: app/libraries/notifications.php:1043
6722
  msgid "No"
6723
  msgstr ""
6724
 
6725
- #: app/libraries/skins.php:1000
6726
- msgid "none"
6727
  msgstr ""
6728
 
6729
  #: app/modules/attendees-list/details.php:36
@@ -6759,12 +6861,16 @@ msgstr ""
6759
  msgid "Free Booking"
6760
  msgstr ""
6761
 
 
 
 
 
6762
  #: app/modules/booking/steps/form.php:165
6763
  msgid "Fill other attendees information like the first form."
6764
  msgstr ""
6765
 
6766
  #: app/modules/booking/steps/form.php:179
6767
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
6768
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6769
  msgid "Next"
6770
  msgstr ""
@@ -6777,17 +6883,17 @@ msgstr ""
6777
  msgid "Book Event"
6778
  msgstr ""
6779
 
6780
- #: app/modules/booking/steps/tickets.php:44
6781
  #, php-format
6782
  msgid "Available %s: <span>%s</span>"
6783
  msgstr ""
6784
 
6785
- #: app/modules/booking/steps/tickets.php:48
6786
  #, php-format
6787
- msgid "The %s ticket sales has stoped!"
6788
  msgstr ""
6789
 
6790
- #: app/modules/booking/steps/tickets.php:49
6791
  #, php-format
6792
  msgid "The %s ticket is sold out. You can try another ticket or another date."
6793
  msgstr ""
@@ -6808,7 +6914,7 @@ msgstr ""
6808
  msgid "Get Directions"
6809
  msgstr ""
6810
 
6811
- #: app/modules/links/details.php:17 app/skins/single.php:455
6812
  msgid "Share this event"
6813
  msgstr ""
6814
 
@@ -6835,7 +6941,7 @@ msgstr ""
6835
  msgid "Go to occurrence page"
6836
  msgstr ""
6837
 
6838
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
6839
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
6840
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
6841
  msgid "Time"
@@ -6961,27 +7067,27 @@ msgstr ""
6961
  msgid "Home"
6962
  msgstr ""
6963
 
6964
- #: app/skins/single.php:538 app/skins/single/default.php:51
6965
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
6966
  #: app/skins/single/modern.php:265
6967
  msgid "Sold out!"
6968
  msgstr ""
6969
 
6970
- #: app/skins/single.php:816 app/skins/single.php:871
6971
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
6972
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
6973
  #: app/skins/single/modern.php:44
6974
  msgid "Phone"
6975
  msgstr ""
6976
 
6977
- #: app/skins/single.php:830 app/skins/single.php:885
6978
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
6979
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
6980
  #: app/skins/single/modern.php:58
6981
  msgid "Website"
6982
  msgstr ""
6983
 
6984
- #: app/skins/single.php:955
6985
  msgid "Speakers:"
6986
  msgstr ""
6987
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:48+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
261
  msgid "Add New Event"
262
  msgstr ""
263
 
264
+ #: app/features/events.php:161 app/features/ix.php:3889
265
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
266
  msgid "No events found!"
267
  msgstr ""
296
  #: app/features/mec/meta_boxes/search_form.php:575
297
  #: app/features/mec/meta_boxes/search_form.php:672
298
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
299
+ #: app/features/search.php:67 app/libraries/main.php:5278
300
+ #: app/libraries/skins.php:858 app/skins/single.php:566
301
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
302
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
303
  #: app/skins/single/modern.php:113
306
 
307
  #: app/features/events.php:183 app/features/events.php:3275
308
  #: app/features/fes/form.php:757 app/features/mec.php:402
309
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
310
  msgid "Categories"
311
  msgstr ""
312
 
391
  msgstr ""
392
 
393
  #: app/features/events.php:333 app/features/events.php:1286
394
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
395
  msgid "Hourly Schedule"
396
  msgstr ""
397
 
405
 
406
  #: app/features/events.php:336 app/features/events.php:3322
407
  #: app/features/events.php:3513 app/features/events.php:3555
408
+ #: app/features/ix.php:3510 app/features/ix.php:3551
409
  #: app/features/mec/meta_boxes/display_options.php:960
410
  #: app/features/mec/meta_boxes/search_form.php:45
411
  #: app/features/mec/meta_boxes/search_form.php:107
422
  #: app/features/organizers.php:58 app/features/organizers.php:204
423
  #: app/features/organizers.php:260 app/features/organizers.php:262
424
  #: app/features/organizers.php:271 app/features/search.php:75
425
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
426
+ #: app/skins/single.php:812 app/skins/single/default.php:217
427
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
428
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
429
  msgid "Organizer"
430
  msgstr ""
431
 
432
  #: app/features/events.php:337 app/features/events.php:1172
433
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
434
+ #: app/skins/single.php:589 app/skins/single/default.php:126
435
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
436
  #: app/skins/single/modern.php:208
437
  msgid "Cost"
449
  #: app/features/events.php:3802 app/features/fes.php:223
450
  #: app/features/fes/form.php:689 app/features/labels.php:178
451
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
452
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
453
  #: app/modules/booking/steps/form.php:37
454
  msgid "Name"
455
  msgstr ""
459
  #: app/features/fes.php:223 app/features/fes/form.php:685
460
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
461
  #: app/features/organizers.php:111 app/features/organizers.php:152
462
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
463
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
464
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
465
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
466
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
467
+ #: app/skins/single.php:884 app/skins/single/default.php:234
468
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
469
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
470
  msgid "Email"
477
  #: app/features/events.php:491 app/features/events.php:497
478
  #: app/features/events.php:3323 app/features/events.php:3513
479
  #: app/features/events.php:3555 app/features/fes/form.php:247
480
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
481
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
482
  #: app/features/mec/dashboard.php:400
483
  #: app/features/mec/meta_boxes/display_options.php:48
484
  #: app/features/mec/meta_boxes/display_options.php:228
515
  #: app/features/events.php:583 app/features/events.php:588
516
  #: app/features/events.php:3324 app/features/events.php:3513
517
  #: app/features/events.php:3555 app/features/fes/form.php:287
518
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
519
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
520
  #: app/features/mec/dashboard.php:401
521
  msgid "End Date"
522
  msgstr ""
594
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
595
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
596
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
597
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
598
+ #: app/features/mec/notifications.php:277
599
+ #: app/features/mec/notifications.php:380
600
+ #: app/features/mec/notifications.php:486
601
+ #: app/features/mec/notifications.php:587
602
+ #: app/features/mec/notifications.php:598
603
+ #: app/features/mec/notifications.php:704
604
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
605
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
606
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
607
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
617
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
618
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
619
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
620
+ #: app/skins/single.php:674 app/skins/single/default.php:141
621
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
622
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
623
  msgid "Read More"
780
 
781
  #: app/features/events.php:1168 app/features/events.php:3513
782
  #: app/features/events.php:3555 app/features/fes/form.php:727
783
+ #: app/features/ix.php:3510 app/features/ix.php:3551
784
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
785
  #: app/widgets/single.php:103
786
  msgid "Event Cost"
787
  msgstr ""
797
  #: app/features/events.php:1204 app/features/events.php:2541
798
  #: app/features/fes.php:223 app/features/mec/booking.php:491
799
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
800
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
801
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
802
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
803
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
804
  msgid "Date"
835
  #: app/features/events.php:1437 app/features/events.php:2322
836
  #: app/features/events.php:2369 app/features/events.php:3319
837
  #: app/features/events.php:3513 app/features/events.php:3555
838
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
839
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
840
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
841
  msgid "Title"
842
  msgstr ""
849
  #: app/features/events.php:2357 app/features/events.php:2399
850
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
851
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
852
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
853
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
854
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
855
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
856
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
857
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
858
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
859
  msgid "Remove"
860
  msgstr ""
861
 
883
  #: app/features/events.php:1445 app/features/fes/form.php:851
884
  #: app/features/mec.php:410 app/features/mec/modules.php:52
885
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
886
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
887
  #: app/modules/speakers/details.php:18
888
  msgid "Speakers"
889
  msgstr ""
898
  msgstr ""
899
 
900
  #: app/features/events.php:1479 app/features/events.php:1485
901
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
902
  msgid "Event Link"
903
  msgstr ""
904
 
919
  msgstr ""
920
 
921
  #: app/features/events.php:1495 app/features/events.php:1508
922
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
923
+ #: app/skins/single.php:673 app/skins/single/default.php:140
924
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
925
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
926
  #: app/widgets/single.php:107
951
 
952
  #: app/features/events.php:1596 app/features/events.php:1849
953
  #: app/features/events.php:2064 app/modules/booking/default.php:85
954
+ #: app/modules/booking/steps/tickets.php:40
955
  #: app/skins/available_spot/tpl.php:160
956
  msgid "Unlimited"
957
  msgstr ""
984
  msgstr ""
985
 
986
  #: app/features/events.php:1653 app/libraries/book.php:60
987
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
988
  msgid "Tickets"
989
  msgstr ""
990
 
1005
 
1006
  #: app/features/events.php:1680 app/features/events.php:1955
1007
  #: app/features/events.php:3513 app/features/events.php:3555
1008
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1009
  msgid "Start Time"
1010
  msgstr ""
1011
 
1012
  #: app/features/events.php:1739 app/features/events.php:1985
1013
  #: app/features/events.php:3513 app/features/events.php:3555
1014
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1015
  msgid "End Time"
1016
  msgstr ""
1017
 
1043
  msgid "Available Tickets"
1044
  msgstr ""
1045
 
1046
+ #: app/features/events.php:1853 app/features/events.php:2068
1047
  msgid "Minimum Ticket e.g. 3"
1048
  msgstr ""
1049
 
1050
+ #: app/features/events.php:1856 app/features/events.php:2071
1051
  msgid "MinimumTicket"
1052
  msgstr ""
1053
 
1054
+ #: app/features/events.php:1858 app/features/events.php:2073
1055
  msgid "Set a number for the minimum ticket reservation"
1056
  msgstr ""
1057
 
1058
+ #: app/features/events.php:1866 app/features/events.php:2081
1059
  msgid "e.g. 0"
1060
  msgstr ""
1061
 
1062
+ #: app/features/events.php:1868 app/features/events.php:2083
1063
  msgid "Day"
1064
  msgstr ""
1065
 
1066
+ #: app/features/events.php:1869 app/features/events.php:2084
1067
  msgid "Hour"
1068
  msgstr ""
1069
 
1070
+ #: app/features/events.php:1871 app/features/events.php:2086
1071
  #, php-format
1072
  msgid "Stop selling ticket %s before event start."
1073
  msgstr ""
1091
  #: app/features/mec/meta_boxes/search_form.php:610
1092
  #: app/features/mec/meta_boxes/search_form.php:707
1093
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1094
+ #: app/libraries/skins.php:988
1095
  msgid "Label"
1096
  msgstr ""
1097
 
1155
  msgstr ""
1156
 
1157
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1158
+ #: app/libraries/main.php:2767
1159
  msgid "MEC Name"
1160
  msgstr ""
1161
 
1162
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1163
+ #: app/libraries/main.php:2796
1164
  msgid "MEC Email"
1165
  msgstr ""
1166
 
1167
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1168
+ #: app/libraries/main.php:2737
1169
  msgid "Text"
1170
  msgstr ""
1171
 
1172
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1173
  #: app/features/organizers.php:103 app/features/organizers.php:148
1174
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1175
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1176
  msgid "Tel"
1177
  msgstr ""
1178
 
1179
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1180
+ #: app/libraries/main.php:2855
1181
  msgid "File"
1182
  msgstr ""
1183
 
1184
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1185
+ #: app/libraries/main.php:2942
1186
  msgid "Textarea"
1187
  msgstr ""
1188
 
1189
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1190
+ #: app/libraries/main.php:2995
1191
  msgid "Checkboxes"
1192
  msgstr ""
1193
 
1194
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1195
+ #: app/libraries/main.php:3039
1196
  msgid "Radio Buttons"
1197
  msgstr ""
1198
 
1272
  #: app/features/mec/meta_boxes/search_form.php:696
1273
  #: app/features/mec/meta_boxes/search_form.php:703
1274
  #: app/features/mec/meta_boxes/search_form.php:710
1275
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1276
  msgid "Dropdown"
1277
  msgstr ""
1278
 
1279
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1280
+ #: app/libraries/main.php:3130
1281
  msgid "Agreement"
1282
  msgstr ""
1283
 
1284
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1285
+ #: app/libraries/main.php:2971
1286
  msgid "Paragraph"
1287
  msgstr ""
1288
 
1309
  msgstr ""
1310
 
1311
  #: app/features/events.php:3321 app/features/events.php:3513
1312
+ #: app/features/events.php:3555 app/features/ix.php:3510
1313
+ #: app/features/ix.php:3551 app/features/locations.php:58
1314
  #: app/features/locations.php:230 app/features/locations.php:287
1315
  #: app/features/locations.php:289 app/features/locations.php:298
1316
  #: app/features/mec/meta_boxes/display_options.php:959
1327
  #: app/features/mec/meta_boxes/search_form.php:679
1328
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1329
  #: app/features/search.php:71 app/libraries/main.php:2236
1330
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1331
+ #: app/skins/single.php:493 app/skins/single.php:924
1332
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1333
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1334
  #: app/skins/single/modern.php:97
1369
  msgstr ""
1370
 
1371
  #: app/features/events.php:3513 app/features/events.php:3555
1372
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1373
  #: app/features/labels.php:177 app/features/locations.php:229
1374
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1375
  msgid "ID"
1376
  msgstr ""
1377
 
1378
  #: app/features/events.php:3513 app/features/events.php:3555
1379
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1380
  msgid "Link"
1381
  msgstr ""
1382
 
1392
 
1393
  #: app/features/events.php:3808 app/features/fes.php:223
1394
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1395
+ #: app/libraries/main.php:5312
1396
  msgid "Ticket"
1397
  msgstr ""
1398
 
1560
 
1561
  #: app/features/fes/form.php:783 app/features/labels.php:61
1562
  #: app/features/labels.php:221 app/features/mec.php:403
1563
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1564
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1565
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1566
  #: app/skins/single/modern.php:223
1567
  msgid "Labels"
1634
  msgid "The events are imported successfully!"
1635
  msgstr ""
1636
 
1637
+ #: app/features/ix.php:943
1638
  msgid "Third Party plugin is not installed and activated!"
1639
  msgstr ""
1640
 
1641
+ #: app/features/ix.php:966
1642
  msgid "Third Party plugin is invalid!"
1643
  msgstr ""
1644
 
1645
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1646
  msgid "Both of API key and Calendar ID are required!"
1647
  msgstr ""
1648
 
1649
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1650
  msgid "Please select some events to import!"
1651
  msgstr ""
1652
 
1653
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1654
  msgid "Both of API key and Group URL are required!"
1655
  msgstr ""
1656
 
1657
+ #: app/features/ix.php:3433
1658
  msgid "Check at Meetup"
1659
  msgstr ""
1660
 
1661
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1662
  msgid "Organizer Tel"
1663
  msgstr ""
1664
 
1665
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1666
  msgid "Organizer Email"
1667
  msgstr ""
1668
 
1669
+ #: app/features/ix.php:3632
1670
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1671
  msgstr ""
1672
 
1673
+ #: app/features/ix.php:3655
1674
  #, php-format
1675
  msgid "All seems good! Please click %s for authenticating your app."
1676
  msgstr ""
1677
 
1678
+ #: app/features/ix.php:3709
1679
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1680
  msgstr ""
1681
 
1682
+ #: app/features/ix.php:3825
1683
  #, php-format
1684
  msgid "%s events added to Google Calendar successfully."
1685
  msgstr ""
1686
 
1687
+ #: app/features/ix.php:3826
1688
  #, php-format
1689
  msgid "%s previously added events get updated."
1690
  msgstr ""
1691
 
1692
+ #: app/features/ix.php:3827
1693
  #, php-format
1694
  msgid "%s events failed to add for following reasons: %s"
1695
  msgstr ""
1696
 
1697
+ #: app/features/ix.php:3859
1698
  msgid "Please insert your Facebook page's link."
1699
  msgstr ""
1700
 
1701
+ #: app/features/ix.php:3868
1702
  msgid ""
1703
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1704
  "valid Facebook page link."
1705
  msgstr ""
1706
 
1707
+ #: app/features/ix.php:3900
1708
  msgid "Please insert your facebook page's link."
1709
  msgstr ""
1710
 
1711
+ #: app/features/ix.php:3905
1712
  msgid ""
1713
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1714
  "valid facebook page link."
1871
  #: app/features/ix/export_g_calendar.php:72
1872
  #: app/features/ix/export_g_calendar.php:147
1873
  #: app/features/ix/export_g_calendar.php:164
1874
+ #: app/features/mec/notifications.php:131
1875
+ #: app/features/mec/notifications.php:223
1876
+ #: app/features/mec/notifications.php:320
1877
+ #: app/features/mec/notifications.php:635
1878
  msgid "Add to Google Calendar"
1879
  msgstr ""
1880
 
1881
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1882
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1883
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1884
  msgid "Checking ..."
1885
  msgstr ""
2117
 
2118
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2119
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2120
+ #: app/features/mec/notifications.php:540
2121
  msgid "Important Note"
2122
  msgstr ""
2123
 
2286
  msgstr ""
2287
 
2288
  #: app/features/labels.php:118 app/features/labels.php:143
2289
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2290
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2291
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2292
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2305
  msgstr ""
2306
 
2307
  #: app/features/labels.php:180 app/features/locations.php:232
2308
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2309
  #: app/modules/booking/steps/tickets.php:38
2310
  msgid "Count"
2311
  msgstr ""
2322
 
2323
  #: app/features/locations.php:59 app/features/mec.php:404
2324
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2325
+ #: app/libraries/main.php:5281
2326
  msgid "Locations"
2327
  msgstr ""
2328
 
2355
 
2356
  #: app/features/locations.php:138 app/features/locations.php:180
2357
  #: app/features/organizers.php:127 app/features/organizers.php:160
2358
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2359
  msgid "Thumbnail"
2360
  msgstr ""
2361
 
2362
  #: app/features/locations.php:143 app/features/locations.php:183
2363
  #: app/features/organizers.php:132 app/features/organizers.php:163
2364
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2365
  msgid "Upload/Add image"
2366
  msgstr ""
2367
 
2369
  #: app/features/locations.php:340 app/features/locations.php:347
2370
  #: app/features/organizers.php:133 app/features/organizers.php:164
2371
  #: app/features/organizers.php:299 app/features/organizers.php:306
2372
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2373
  msgid "Remove image"
2374
  msgstr ""
2375
 
2427
  msgid "Don't show map in single event page"
2428
  msgstr ""
2429
 
2430
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2431
  msgid "Other Locations"
2432
  msgstr ""
2433
 
2450
  msgid "Troubleshooting"
2451
  msgstr ""
2452
 
2453
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2454
  #, php-format
2455
  msgid "%s to %s"
2456
  msgstr ""
2480
 
2481
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2482
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2483
+ #: app/libraries/main.php:5283
2484
  msgid "Organizers"
2485
  msgstr ""
2486
 
2594
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2595
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2596
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2597
+ #: app/features/mec/notifications.php:816
2598
+ #: app/features/mec/notifications.php:828
2599
+ #: app/features/mec/notifications.php:924
2600
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2601
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2602
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2603
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2708
  msgid "Enable Express Attendees Form"
2709
  msgstr ""
2710
 
2711
+ #: app/features/mec/booking.php:186
2712
  msgid "Attendees Form"
2713
  msgstr ""
2714
 
2738
  msgid "Auto verification for paid bookings"
2739
  msgstr ""
2740
 
2741
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2742
  #: app/libraries/main.php:579
2743
  msgid "Booking Confirmation"
2744
  msgstr ""
2800
  msgstr ""
2801
 
2802
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2803
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2804
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2805
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2806
  msgid "Saved"
2807
  msgstr ""
2808
 
2809
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2810
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2811
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2812
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2813
  msgid "Settings Saved!"
2815
 
2816
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2817
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2818
+ #: app/features/mec/notifications.php:905
2819
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2820
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2821
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
2822
  msgid "Verified"
2823
  msgstr ""
2824
 
2825
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2826
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
2827
  #: app/features/mec/single.php:291
2828
  msgid "Please Refresh Page"
2829
  msgstr ""
3913
  #: app/features/mec/meta_boxes/search_form.php:693
3914
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3915
  #: app/features/search.php:79 app/features/speakers.php:61
3916
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
3917
+ #: app/libraries/skins.php:936
3918
  msgid "Speaker"
3919
  msgstr ""
3920
 
3930
  #: app/features/mec/meta_boxes/search_form.php:603
3931
  #: app/features/mec/meta_boxes/search_form.php:700
3932
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
3933
+ #: app/features/search.php:83 app/libraries/skins.php:962
3934
  msgid "Tag"
3935
  msgstr ""
3936
 
4176
  msgid "It sends to attendee after booking for notifying him/her."
4177
  msgstr ""
4178
 
4179
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4180
+ #: app/features/mec/notifications.php:233
4181
+ #: app/features/mec/notifications.php:336
4182
+ #: app/features/mec/notifications.php:442
4183
+ #: app/features/mec/notifications.php:543
4184
+ #: app/features/mec/notifications.php:660
4185
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4186
  msgid "Email Subject"
4187
  msgstr ""
4188
 
4189
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4190
+ #: app/features/mec/notifications.php:147
4191
+ #: app/features/mec/notifications.php:154
4192
+ #: app/features/mec/notifications.php:239
4193
+ #: app/features/mec/notifications.php:246
4194
+ #: app/features/mec/notifications.php:342
4195
+ #: app/features/mec/notifications.php:349
4196
+ #: app/features/mec/notifications.php:448
4197
+ #: app/features/mec/notifications.php:455
4198
+ #: app/features/mec/notifications.php:549
4199
+ #: app/features/mec/notifications.php:556
4200
+ #: app/features/mec/notifications.php:666
4201
+ #: app/features/mec/notifications.php:673
4202
+ #: app/features/mec/notifications.php:749
4203
+ #: app/features/mec/notifications.php:756
4204
+ msgid "Receiver Users"
4205
+ msgstr ""
4206
+
4207
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4208
+ #: app/features/mec/notifications.php:247
4209
+ #: app/features/mec/notifications.php:350
4210
+ #: app/features/mec/notifications.php:456
4211
+ #: app/features/mec/notifications.php:557
4212
+ #: app/features/mec/notifications.php:674
4213
+ #: app/features/mec/notifications.php:757
4214
+ msgid "Select your desired users to send a copy of email to them!"
4215
+ msgstr ""
4216
+
4217
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4218
+ #: app/features/mec/notifications.php:164
4219
+ #: app/features/mec/notifications.php:171
4220
+ #: app/features/mec/notifications.php:256
4221
+ #: app/features/mec/notifications.php:263
4222
+ #: app/features/mec/notifications.php:359
4223
+ #: app/features/mec/notifications.php:366
4224
+ #: app/features/mec/notifications.php:465
4225
+ #: app/features/mec/notifications.php:472
4226
+ #: app/features/mec/notifications.php:566
4227
+ #: app/features/mec/notifications.php:573
4228
+ #: app/features/mec/notifications.php:683
4229
+ #: app/features/mec/notifications.php:690
4230
+ #: app/features/mec/notifications.php:766
4231
+ #: app/features/mec/notifications.php:773
4232
+ msgid "Receiver Roles"
4233
+ msgstr ""
4234
+
4235
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4236
+ #: app/features/mec/notifications.php:264
4237
+ #: app/features/mec/notifications.php:367
4238
+ #: app/features/mec/notifications.php:473
4239
+ #: app/features/mec/notifications.php:574
4240
+ #: app/features/mec/notifications.php:691
4241
+ #: app/features/mec/notifications.php:774
4242
+ msgid "Select users a specific role."
4243
+ msgstr ""
4244
+
4245
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4246
+ #: app/features/mec/notifications.php:180
4247
+ #: app/features/mec/notifications.php:184
4248
+ #: app/features/mec/notifications.php:272
4249
+ #: app/features/mec/notifications.php:276
4250
+ #: app/features/mec/notifications.php:375
4251
+ #: app/features/mec/notifications.php:379
4252
+ #: app/features/mec/notifications.php:481
4253
+ #: app/features/mec/notifications.php:485
4254
+ #: app/features/mec/notifications.php:582
4255
+ #: app/features/mec/notifications.php:586
4256
+ #: app/features/mec/notifications.php:597
4257
+ #: app/features/mec/notifications.php:699
4258
+ #: app/features/mec/notifications.php:703
4259
+ #: app/features/mec/notifications.php:782
4260
+ #: app/features/mec/notifications.php:786
4261
  msgid "Custom Recipients"
4262
  msgstr ""
4263
 
4264
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4265
+ #: app/features/mec/notifications.php:277
4266
+ #: app/features/mec/notifications.php:380
4267
+ #: app/features/mec/notifications.php:486
4268
+ #: app/features/mec/notifications.php:587
4269
+ #: app/features/mec/notifications.php:598
4270
+ #: app/features/mec/notifications.php:704
4271
+ #: app/features/mec/notifications.php:787
4272
  msgid "Insert comma separated emails for multiple recipients."
4273
  msgstr ""
4274
 
4275
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4276
+ #: app/features/mec/notifications.php:493
4277
  msgid "Send the email to event organizer"
4278
  msgstr ""
4279
 
4280
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4281
+ #: app/features/mec/notifications.php:287
4282
+ #: app/features/mec/notifications.php:398
4283
+ #: app/features/mec/notifications.php:496
4284
+ #: app/features/mec/notifications.php:604
4285
+ #: app/features/mec/notifications.php:710
4286
+ #: app/features/mec/notifications.php:793
4287
  msgid "Email Content"
4288
  msgstr ""
4289
 
4290
+ #: app/features/mec/notifications.php:101
4291
+ #: app/features/mec/notifications.php:194
4292
+ #: app/features/mec/notifications.php:290
4293
+ #: app/features/mec/notifications.php:401
4294
+ #: app/features/mec/notifications.php:499
4295
+ #: app/features/mec/notifications.php:607
4296
+ #: app/features/mec/notifications.php:713
4297
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4298
  msgid "You can use following placeholders"
4299
  msgstr ""
4300
 
4301
+ #: app/features/mec/notifications.php:103
4302
+ #: app/features/mec/notifications.php:196
4303
+ #: app/features/mec/notifications.php:292
4304
+ #: app/features/mec/notifications.php:403
4305
+ #: app/features/mec/notifications.php:501
4306
+ #: app/features/mec/notifications.php:609
4307
  msgid "First name of attendee"
4308
  msgstr ""
4309
 
4310
+ #: app/features/mec/notifications.php:104
4311
+ #: app/features/mec/notifications.php:197
4312
+ #: app/features/mec/notifications.php:293
4313
+ #: app/features/mec/notifications.php:404
4314
+ #: app/features/mec/notifications.php:502
4315
+ #: app/features/mec/notifications.php:610
4316
  msgid "Last name of attendee"
4317
  msgstr ""
4318
 
4319
+ #: app/features/mec/notifications.php:105
4320
+ #: app/features/mec/notifications.php:198
4321
+ #: app/features/mec/notifications.php:294
4322
+ #: app/features/mec/notifications.php:405
4323
+ #: app/features/mec/notifications.php:503
4324
+ #: app/features/mec/notifications.php:611
4325
  msgid "Email of attendee"
4326
  msgstr ""
4327
 
4328
+ #: app/features/mec/notifications.php:106
4329
+ #: app/features/mec/notifications.php:199
4330
+ #: app/features/mec/notifications.php:295
4331
+ #: app/features/mec/notifications.php:406
4332
+ #: app/features/mec/notifications.php:504
4333
+ #: app/features/mec/notifications.php:612
4334
  msgid "Booked date of event"
4335
  msgstr ""
4336
 
4337
+ #: app/features/mec/notifications.php:107
4338
+ #: app/features/mec/notifications.php:200
4339
+ #: app/features/mec/notifications.php:296
4340
+ #: app/features/mec/notifications.php:407
4341
+ #: app/features/mec/notifications.php:505
4342
+ #: app/features/mec/notifications.php:613
4343
  msgid "Booked time of event"
4344
  msgstr ""
4345
 
4346
+ #: app/features/mec/notifications.php:108
4347
+ #: app/features/mec/notifications.php:201
4348
+ #: app/features/mec/notifications.php:297
4349
+ #: app/features/mec/notifications.php:408
4350
+ #: app/features/mec/notifications.php:506
4351
+ #: app/features/mec/notifications.php:614
4352
  msgid "Booking Price"
4353
  msgstr ""
4354
 
4355
+ #: app/features/mec/notifications.php:109
4356
+ #: app/features/mec/notifications.php:202
4357
+ #: app/features/mec/notifications.php:298
4358
+ #: app/features/mec/notifications.php:409
4359
+ #: app/features/mec/notifications.php:507
4360
+ #: app/features/mec/notifications.php:615
4361
  msgid "Date and time of placing booking"
4362
  msgstr ""
4363
 
4364
+ #: app/features/mec/notifications.php:110
4365
+ #: app/features/mec/notifications.php:203
4366
+ #: app/features/mec/notifications.php:299
4367
+ #: app/features/mec/notifications.php:410
4368
+ #: app/features/mec/notifications.php:508
4369
+ #: app/features/mec/notifications.php:616
4370
+ #: app/features/mec/notifications.php:721
4371
+ #: app/features/mec/notifications.php:804
4372
  msgid "Your website title"
4373
  msgstr ""
4374
 
4375
+ #: app/features/mec/notifications.php:111
4376
+ #: app/features/mec/notifications.php:204
4377
+ #: app/features/mec/notifications.php:300
4378
+ #: app/features/mec/notifications.php:411
4379
+ #: app/features/mec/notifications.php:509
4380
+ #: app/features/mec/notifications.php:617
4381
+ #: app/features/mec/notifications.php:722
4382
+ #: app/features/mec/notifications.php:805
4383
  msgid "Your website URL"
4384
  msgstr ""
4385
 
4386
+ #: app/features/mec/notifications.php:112
4387
+ #: app/features/mec/notifications.php:205
4388
+ #: app/features/mec/notifications.php:301
4389
+ #: app/features/mec/notifications.php:412
4390
+ #: app/features/mec/notifications.php:510
4391
+ #: app/features/mec/notifications.php:618
4392
+ #: app/features/mec/notifications.php:723
4393
+ #: app/features/mec/notifications.php:806
4394
  msgid "Your website description"
4395
  msgstr ""
4396
 
4397
+ #: app/features/mec/notifications.php:113
4398
+ #: app/features/mec/notifications.php:206
4399
+ #: app/features/mec/notifications.php:302
4400
+ #: app/features/mec/notifications.php:413
4401
+ #: app/features/mec/notifications.php:511
4402
+ #: app/features/mec/notifications.php:619
4403
  msgid "Event title"
4404
  msgstr ""
4405
 
4406
+ #: app/features/mec/notifications.php:114
4407
+ #: app/features/mec/notifications.php:207
4408
+ #: app/features/mec/notifications.php:303
4409
+ #: app/features/mec/notifications.php:414
4410
+ #: app/features/mec/notifications.php:512
4411
+ #: app/features/mec/notifications.php:620
4412
  msgid "Event link"
4413
  msgstr ""
4414
 
4415
+ #: app/features/mec/notifications.php:115
4416
+ #: app/features/mec/notifications.php:208
4417
+ #: app/features/mec/notifications.php:304
4418
+ #: app/features/mec/notifications.php:717
4419
+ #: app/features/mec/notifications.php:800
4420
  msgid "Event Start Date"
4421
  msgstr ""
4422
 
4423
+ #: app/features/mec/notifications.php:116
4424
+ #: app/features/mec/notifications.php:209
4425
+ #: app/features/mec/notifications.php:305
4426
+ #: app/features/mec/notifications.php:718
4427
+ #: app/features/mec/notifications.php:801
4428
  msgid "Event End Date"
4429
  msgstr ""
4430
 
4431
+ #: app/features/mec/notifications.php:117
4432
+ #: app/features/mec/notifications.php:210
4433
+ #: app/features/mec/notifications.php:306
4434
+ #: app/features/mec/notifications.php:415
4435
+ #: app/features/mec/notifications.php:513
4436
+ #: app/features/mec/notifications.php:621
4437
  msgid "Speaker name of booked event"
4438
  msgstr ""
4439
 
4440
+ #: app/features/mec/notifications.php:118
4441
+ #: app/features/mec/notifications.php:211
4442
+ #: app/features/mec/notifications.php:307
4443
+ #: app/features/mec/notifications.php:416
4444
+ #: app/features/mec/notifications.php:514
4445
+ #: app/features/mec/notifications.php:622
4446
  msgid "Organizer name of booked event"
4447
  msgstr ""
4448
 
4449
+ #: app/features/mec/notifications.php:119
4450
+ #: app/features/mec/notifications.php:212
4451
+ #: app/features/mec/notifications.php:308
4452
+ #: app/features/mec/notifications.php:417
4453
+ #: app/features/mec/notifications.php:515
4454
+ #: app/features/mec/notifications.php:623
4455
  msgid "Organizer tel of booked event"
4456
  msgstr ""
4457
 
4458
+ #: app/features/mec/notifications.php:120
4459
+ #: app/features/mec/notifications.php:213
4460
+ #: app/features/mec/notifications.php:309
4461
+ #: app/features/mec/notifications.php:418
4462
+ #: app/features/mec/notifications.php:516
4463
+ #: app/features/mec/notifications.php:624
4464
  msgid "Organizer email of booked event"
4465
  msgstr ""
4466
 
4467
+ #: app/features/mec/notifications.php:121
4468
+ #: app/features/mec/notifications.php:214
4469
+ #: app/features/mec/notifications.php:310
4470
+ #: app/features/mec/notifications.php:419
4471
+ #: app/features/mec/notifications.php:517
4472
+ #: app/features/mec/notifications.php:625
4473
  msgid "Location name of booked event"
4474
  msgstr ""
4475
 
4476
+ #: app/features/mec/notifications.php:122
4477
+ #: app/features/mec/notifications.php:215
4478
+ #: app/features/mec/notifications.php:311
4479
+ #: app/features/mec/notifications.php:420
4480
+ #: app/features/mec/notifications.php:518
4481
+ #: app/features/mec/notifications.php:626
4482
  msgid "Location address of booked event"
4483
  msgstr ""
4484
 
4485
+ #: app/features/mec/notifications.php:123
4486
+ #: app/features/mec/notifications.php:216
4487
+ #: app/features/mec/notifications.php:312
4488
+ #: app/features/mec/notifications.php:421
4489
+ #: app/features/mec/notifications.php:519
4490
+ #: app/features/mec/notifications.php:627
4491
  msgid "Featured image of booked event"
4492
  msgstr ""
4493
 
4494
+ #: app/features/mec/notifications.php:124
4495
+ #: app/features/mec/notifications.php:423
4496
+ #: app/features/mec/notifications.php:521
4497
  msgid "Full Attendee info such as booking form data, name, email etc."
4498
  msgstr ""
4499
 
4500
+ #: app/features/mec/notifications.php:125
4501
+ #: app/features/mec/notifications.php:314
4502
+ #: app/features/mec/notifications.php:629
4503
  msgid "Invoice Link"
4504
  msgstr ""
4505
 
4506
+ #: app/features/mec/notifications.php:126
4507
+ #: app/features/mec/notifications.php:218
4508
+ #: app/features/mec/notifications.php:315
4509
+ #: app/features/mec/notifications.php:424
4510
+ #: app/features/mec/notifications.php:522
4511
+ #: app/features/mec/notifications.php:630
4512
  msgid "Total Attendees"
4513
  msgstr ""
4514
 
4515
+ #: app/features/mec/notifications.php:127
4516
+ #: app/features/mec/notifications.php:219
4517
+ #: app/features/mec/notifications.php:316
4518
+ #: app/features/mec/notifications.php:425
4519
+ #: app/features/mec/notifications.php:523
4520
+ #: app/features/mec/notifications.php:631
4521
+ msgid "Amount of Booked Tickets"
4522
+ msgstr ""
4523
+
4524
+ #: app/features/mec/notifications.php:128
4525
+ #: app/features/mec/notifications.php:220
4526
+ #: app/features/mec/notifications.php:317
4527
+ #: app/features/mec/notifications.php:632
4528
  msgid "Ticket name"
4529
  msgstr ""
4530
 
4531
+ #: app/features/mec/notifications.php:129
4532
+ #: app/features/mec/notifications.php:221
4533
+ #: app/features/mec/notifications.php:318
4534
+ #: app/features/mec/notifications.php:633
4535
  msgid "Ticket time"
4536
  msgstr ""
4537
 
4538
+ #: app/features/mec/notifications.php:130
4539
+ #: app/features/mec/notifications.php:222
4540
+ #: app/features/mec/notifications.php:319
4541
+ #: app/features/mec/notifications.php:634
4542
  msgid "Download ICS file"
4543
  msgstr ""
4544
 
4545
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4546
  msgid "Booking Verification"
4547
  msgstr ""
4548
 
4549
+ #: app/features/mec/notifications.php:139
4550
  msgid "It sends to attendee email for verifying their booking/email."
4551
  msgstr ""
4552
 
4553
+ #: app/features/mec/notifications.php:217
4554
  msgid "Email/Booking verification link."
4555
  msgstr ""
4556
 
4557
+ #: app/features/mec/notifications.php:231
4558
  msgid "It sends to attendee after confirming the booking by admin."
4559
  msgstr ""
4560
 
4561
+ #: app/features/mec/notifications.php:284
4562
  msgid "Send One Single Email Only To First Attendee"
4563
  msgstr ""
4564
 
4565
+ #: app/features/mec/notifications.php:313
4566
+ #: app/features/mec/notifications.php:628
4567
  msgid "Booking cancellation link."
4568
  msgstr ""
4569
 
4570
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
4571
  msgid "Booking Cancellation"
4572
  msgstr ""
4573
 
4574
+ #: app/features/mec/notifications.php:330
4575
  msgid "Enable cancellation notification"
4576
  msgstr ""
4577
 
4578
+ #: app/features/mec/notifications.php:334
4579
  msgid ""
4580
  "It sends to selected recipients after booking cancellation for notifying "
4581
  "them."
4582
  msgstr ""
4583
 
4584
+ #: app/features/mec/notifications.php:387
4585
+ #: app/features/mec/notifications.php:654
4586
  msgid "Send the email to admin"
4587
  msgstr ""
4588
 
4589
+ #: app/features/mec/notifications.php:395
4590
  msgid "Send the email to booking user"
4591
  msgstr ""
4592
 
4593
+ #: app/features/mec/notifications.php:422
4594
+ #: app/features/mec/notifications.php:520
4595
  msgid "Admin booking management link."
4596
  msgstr ""
4597
 
4598
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4599
  msgid "Admin"
4600
  msgstr ""
4601
 
4602
+ #: app/features/mec/notifications.php:436
4603
  msgid "Enable admin notification"
4604
  msgstr ""
4605
 
4606
+ #: app/features/mec/notifications.php:440
4607
  msgid "It sends to admin to notify him/her that a new booking received."
4608
  msgstr ""
4609
 
4610
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4611
+ #: app/libraries/notifications.php:603
4612
  msgid "Booking Reminder"
4613
  msgstr ""
4614
 
4615
+ #: app/features/mec/notifications.php:534
4616
  msgid "Enable booking reminder notification"
4617
  msgstr ""
4618
 
4619
+ #: app/features/mec/notifications.php:540
4620
  #, php-format
4621
  msgid ""
4622
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4624
  "send the reminders multiple times."
4625
  msgstr ""
4626
 
4627
+ #: app/features/mec/notifications.php:540
4628
  msgid "only once per day"
4629
  msgstr ""
4630
 
4631
+ #: app/features/mec/notifications.php:593
4632
  msgid "Days"
4633
  msgstr ""
4634
 
4635
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4636
  #: app/libraries/main.php:583
4637
  msgid "New Event"
4638
  msgstr ""
4639
 
4640
+ #: app/features/mec/notifications.php:648
4641
  msgid "Enable new event notification"
4642
  msgstr ""
4643
 
4644
+ #: app/features/mec/notifications.php:658
4645
  msgid ""
4646
  "It sends after adding a new event from frontend event submission or from "
4647
  "website backend."
4648
  msgstr ""
4649
 
4650
+ #: app/features/mec/notifications.php:715
4651
+ #: app/features/mec/notifications.php:798
4652
  msgid "Title of event"
4653
  msgstr ""
4654
 
4655
+ #: app/features/mec/notifications.php:716
4656
+ #: app/features/mec/notifications.php:799
4657
  msgid "Link of event"
4658
  msgstr ""
4659
 
4660
+ #: app/features/mec/notifications.php:719
4661
+ #: app/features/mec/notifications.php:802
4662
  msgid "Status of event"
4663
  msgstr ""
4664
 
4665
+ #: app/features/mec/notifications.php:720
4666
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4667
  #: app/features/mec/settings.php:738
4668
  msgid "Event Note"
4669
  msgstr ""
4670
 
4671
+ #: app/features/mec/notifications.php:724
4672
+ #: app/features/mec/notifications.php:807
4673
  msgid "Admin events management link."
4674
  msgstr ""
4675
 
4676
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4677
  msgid "User Event Publishing"
4678
  msgstr ""
4679
 
4680
+ #: app/features/mec/notifications.php:737
4681
  msgid "Enable user event publishing notification"
4682
  msgstr ""
4683
 
4684
+ #: app/features/mec/notifications.php:741
4685
  msgid ""
4686
  "It sends after published a new event from frontend event submission or from "
4687
  "website backend."
4834
  msgstr ""
4835
 
4836
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4837
+ #: app/libraries/main.php:5290
4838
  msgid "Weekdays"
4839
  msgstr ""
4840
 
5936
  msgid "eg. https://webnus.net"
5937
  msgstr ""
5938
 
5939
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
5940
+ #: app/skins/single.php:862
5941
  msgid "Other Organizers"
5942
  msgstr ""
5943
 
5944
+ #: app/features/organizers.php:314
5945
  msgid ""
5946
  "You can select extra organizers in addition to main organizer if you like."
5947
  msgstr ""
5959
  msgid "#"
5960
  msgstr ""
5961
 
5962
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
5963
  msgid "Status"
5964
  msgstr ""
5965
 
5992
  msgid "No bookings found!"
5993
  msgstr ""
5994
 
5995
+ #: app/features/search.php:87 app/libraries/main.php:5280
5996
  msgid "label"
5997
  msgstr ""
5998
 
6017
  msgstr ""
6018
 
6019
  #: app/features/search_bar/search_result.php:11
6020
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6021
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6022
+ #: app/skins/single.php:160 app/skins/single.php:753
6023
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6024
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6025
  msgid "All of the day"
6026
  msgstr ""
6027
 
6028
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6029
+ #: app/features/speakers.php:270
6030
  msgid "Job Title"
6031
  msgstr ""
6032
 
6033
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6034
  msgid "Insert speaker job title."
6035
  msgstr ""
6036
 
6037
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6038
  msgid "Insert speaker phone number."
6039
  msgstr ""
6040
 
6041
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6042
  msgid "Insert speaker email address."
6043
  msgstr ""
6044
 
6045
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6046
  msgid "Facebook Page"
6047
  msgstr ""
6048
 
6049
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6050
  msgid "Insert URL of Facebook Page"
6051
  msgstr ""
6052
 
6053
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6054
  msgid "Instagram"
6055
  msgstr ""
6056
 
6057
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6058
  msgid "Insert URL of Instagram"
6059
  msgstr ""
6060
 
6061
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6062
+ msgid "LinkedIn"
6063
+ msgstr ""
6064
+
6065
+ #: app/features/speakers.php:154
6066
+ msgid "Insert URL of LinkedIn"
6067
+ msgstr ""
6068
+
6069
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6070
  msgid "Twitter Page"
6071
  msgstr ""
6072
 
6073
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6074
  msgid "Insert URL of Twitter Page"
6075
  msgstr ""
6076
 
6077
+ #: app/features/speakers.php:209
6078
+ msgid "Insert URL of linkedin"
6079
+ msgstr ""
6080
+
6081
+ #: app/features/speakers.php:330
6082
  msgid "Sorry, You must insert speaker name!"
6083
  msgstr ""
6084
 
6085
+ #: app/features/speakers.php:379
6086
  msgid ""
6087
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6088
  "section and speaker widget section!"
6236
  msgid "Tile View"
6237
  msgstr ""
6238
 
6239
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6240
  msgid "SU"
6241
  msgstr ""
6242
 
6243
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6244
  msgid "MO"
6245
  msgstr ""
6246
 
6247
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6248
  msgid "TU"
6249
  msgstr ""
6250
 
6251
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6252
  msgid "WE"
6253
  msgstr ""
6254
 
6255
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6256
  msgid "TH"
6257
  msgstr ""
6258
 
6259
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6260
  msgid "FR"
6261
  msgstr ""
6262
 
6263
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6264
  msgid "SA"
6265
  msgstr ""
6266
 
6497
  msgid "iCal export stopped!"
6498
  msgstr ""
6499
 
6500
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
6501
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
6502
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
6503
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
6504
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
6505
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
6506
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
6507
  msgid "Sort"
6508
  msgstr ""
6509
 
6510
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
6511
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
6512
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
6513
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
6514
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
6515
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
6516
  msgid "Required Field"
6517
  msgstr ""
6518
 
6519
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
6520
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
6521
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
6522
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
6523
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
6524
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
6525
  msgid "Insert a label for this field"
6526
  msgstr ""
6527
 
6528
+ #: app/libraries/main.php:2976
6529
  msgid "HTML and shortcode are allowed."
6530
  msgstr ""
6531
 
6532
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
6533
+ #: app/libraries/main.php:3107
6534
  msgid "Option"
6535
  msgstr ""
6536
 
6537
+ #: app/libraries/main.php:3141
6538
  #, php-format
6539
  msgid "Instead of %s, the page title with a link will be show."
6540
  msgstr ""
6541
 
6542
+ #: app/libraries/main.php:3143
6543
  msgid "Agreement Page"
6544
  msgstr ""
6545
 
6546
+ #: app/libraries/main.php:3154
6547
  msgid "Checked by default"
6548
  msgstr ""
6549
 
6550
+ #: app/libraries/main.php:3155
6551
  msgid "Unchecked by default"
6552
  msgstr ""
6553
 
6554
+ #: app/libraries/main.php:3178
6555
  msgid "Insert a label for this option"
6556
  msgstr ""
6557
 
6558
+ #: app/libraries/main.php:3193
6559
  msgid "Free"
6560
  msgstr ""
6561
 
6562
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
6563
  msgid "M.E. Calender"
6564
  msgstr ""
6565
 
6566
+ #: app/libraries/main.php:3954
6567
  #, php-format
6568
  msgid "Copy of %s"
6569
  msgstr ""
6570
 
6571
+ #: app/libraries/main.php:4669
6572
  msgid "Booked an event."
6573
  msgstr ""
6574
 
6575
+ #: app/libraries/main.php:4710
6576
  #, php-format
6577
  msgid "%s booked %s event."
6578
  msgstr ""
6579
 
6580
+ #: app/libraries/main.php:5275
6581
  msgid "Taxonomies"
6582
  msgstr ""
6583
 
6584
+ #: app/libraries/main.php:5277
6585
  msgid "Category Plural Label"
6586
  msgstr ""
6587
 
6588
+ #: app/libraries/main.php:5278
6589
  msgid "Category Singular Label"
6590
  msgstr ""
6591
 
6592
+ #: app/libraries/main.php:5279
6593
  msgid "Label Plural Label"
6594
  msgstr ""
6595
 
6596
+ #: app/libraries/main.php:5280
6597
  msgid "Label Singular Label"
6598
  msgstr ""
6599
 
6600
+ #: app/libraries/main.php:5281
6601
  msgid "Location Plural Label"
6602
  msgstr ""
6603
 
6604
+ #: app/libraries/main.php:5282
6605
  msgid "Location Singular Label"
6606
  msgstr ""
6607
 
6608
+ #: app/libraries/main.php:5283
6609
  msgid "Organizer Plural Label"
6610
  msgstr ""
6611
 
6612
+ #: app/libraries/main.php:5284
6613
  msgid "Organizer Singular Label"
6614
  msgstr ""
6615
 
6616
+ #: app/libraries/main.php:5285
6617
  msgid "Speaker Plural Label"
6618
  msgstr ""
6619
 
6620
+ #: app/libraries/main.php:5286
6621
  msgid "Speaker Singular Label"
6622
  msgstr ""
6623
 
6624
+ #: app/libraries/main.php:5292
6625
  msgid "Sunday abbreviation"
6626
  msgstr ""
6627
 
6628
+ #: app/libraries/main.php:5293
6629
  msgid "Monday abbreviation"
6630
  msgstr ""
6631
 
6632
+ #: app/libraries/main.php:5294
6633
  msgid "Tuesday abbreviation"
6634
  msgstr ""
6635
 
6636
+ #: app/libraries/main.php:5295
6637
  msgid "Wednesday abbreviation"
6638
  msgstr ""
6639
 
6640
+ #: app/libraries/main.php:5296
6641
  msgid "Thursday abbreviation"
6642
  msgstr ""
6643
 
6644
+ #: app/libraries/main.php:5297
6645
  msgid "Friday abbreviation"
6646
  msgstr ""
6647
 
6648
+ #: app/libraries/main.php:5298
6649
  msgid "Saturday abbreviation"
6650
  msgstr ""
6651
 
6652
+ #: app/libraries/main.php:5302
6653
  msgid "Others"
6654
  msgstr ""
6655
 
6656
+ #: app/libraries/main.php:5304
6657
  msgid "Booking Success Message"
6658
  msgstr ""
6659
 
6660
+ #: app/libraries/main.php:5304
6661
  msgid ""
6662
  "Thanks for your booking. Your tickets booked, booking verification might be "
6663
  "needed, please check your email."
6664
  msgstr ""
6665
 
6666
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
6667
  msgid "Register Button"
6668
  msgstr ""
6669
 
6670
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
6671
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6672
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6673
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6674
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
6675
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
6676
+ #: app/skins/single.php:777 app/skins/single/default.php:255
6677
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
6678
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
6679
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
6684
  msgid "REGISTER"
6685
  msgstr ""
6686
 
6687
+ #: app/libraries/main.php:5306
6688
  msgid "View Detail Button"
6689
  msgstr ""
6690
 
6691
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
6692
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6693
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6694
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
6699
  msgid "View Detail"
6700
  msgstr ""
6701
 
6702
+ #: app/libraries/main.php:5307
6703
  msgid "Event Detail Button"
6704
  msgstr ""
6705
 
6706
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
6707
  msgid "Event Detail"
6708
  msgstr ""
6709
 
6710
+ #: app/libraries/main.php:5309
6711
  msgid "More Info Link"
6712
  msgstr ""
6713
 
6714
+ #: app/libraries/main.php:5312
6715
  msgid "Ticket (Singular)"
6716
  msgstr ""
6717
 
6718
+ #: app/libraries/main.php:5313
6719
  msgid "Tickets (Plural)"
6720
  msgstr ""
6721
 
6722
+ #: app/libraries/main.php:5399
6723
  msgid "EventON"
6724
  msgstr ""
6725
 
6726
+ #: app/libraries/main.php:5400
6727
  msgid "The Events Calendar"
6728
  msgstr ""
6729
 
6730
+ #: app/libraries/main.php:5401
6731
  msgid "Events Schedule WP Plugin"
6732
  msgstr ""
6733
 
6734
+ #: app/libraries/main.php:5402
6735
  msgid "Calendarize It"
6736
  msgstr ""
6737
 
6738
+ #: app/libraries/main.php:5403
6739
  msgid "Event Espresso"
6740
  msgstr ""
6741
 
6742
+ #: app/libraries/main.php:5404
6743
  msgid "Events Manager (Recurring)"
6744
  msgstr ""
6745
 
6746
+ #: app/libraries/main.php:5405
6747
  msgid "Events Manager (Single)"
6748
  msgstr ""
6749
 
6750
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
6751
  msgid "Confirmed"
6752
  msgstr ""
6753
 
6754
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
6755
  msgid "Rejected"
6756
  msgstr ""
6757
 
6758
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
6759
  msgid "Pending"
6760
  msgstr ""
6761
 
6762
+ #: app/libraries/main.php:5529
6763
  msgid "Waiting"
6764
  msgstr ""
6765
 
6766
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
6767
  msgid "Skin controller does not exist."
6768
  msgstr ""
6769
 
6770
+ #: app/libraries/main.php:5848
6771
  msgid "Sold Out"
6772
  msgstr ""
6773
 
6774
+ #: app/libraries/main.php:5856
6775
  msgid "Last Few Tickets"
6776
  msgstr ""
6777
 
6779
  msgid "Please verify your email."
6780
  msgstr ""
6781
 
6782
+ #: app/libraries/notifications.php:153
6783
  msgid "Your booking is received."
6784
  msgstr ""
6785
 
6786
+ #: app/libraries/notifications.php:271
6787
  msgid "Your booking is confirmed."
6788
  msgstr ""
6789
 
6790
+ #: app/libraries/notifications.php:435
6791
  msgid "booking canceled."
6792
  msgstr ""
6793
 
6794
+ #: app/libraries/notifications.php:510
6795
  msgid "A new booking is received."
6796
  msgstr ""
6797
 
6798
+ #: app/libraries/notifications.php:734
6799
  msgid "A new event is added."
6800
  msgstr ""
6801
 
6802
+ #: app/libraries/notifications.php:803
6803
  msgid "Your event is published."
6804
  msgstr ""
6805
 
6806
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
6807
+ #: app/libraries/notifications.php:1052
6808
  msgid "to"
6809
  msgstr ""
6810
 
6811
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
6812
  msgid "+ Add to Google Calendar"
6813
  msgstr ""
6814
 
6815
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
6816
  msgid "+ iCal export"
6817
  msgstr ""
6818
 
6819
+ #: app/libraries/notifications.php:1131
6820
  msgid "Yes"
6821
  msgstr ""
6822
 
6823
+ #: app/libraries/notifications.php:1131
6824
  msgid "No"
6825
  msgstr ""
6826
 
6827
+ #: app/libraries/skins.php:1008
6828
+ msgid "Select"
6829
  msgstr ""
6830
 
6831
  #: app/modules/attendees-list/details.php:36
6861
  msgid "Free Booking"
6862
  msgstr ""
6863
 
6864
+ #: app/modules/booking/steps/form.php:52
6865
+ msgid "Attendee's Form"
6866
+ msgstr ""
6867
+
6868
  #: app/modules/booking/steps/form.php:165
6869
  msgid "Fill other attendees information like the first form."
6870
  msgstr ""
6871
 
6872
  #: app/modules/booking/steps/form.php:179
6873
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
6874
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6875
  msgid "Next"
6876
  msgstr ""
6883
  msgid "Book Event"
6884
  msgstr ""
6885
 
6886
+ #: app/modules/booking/steps/tickets.php:40
6887
  #, php-format
6888
  msgid "Available %s: <span>%s</span>"
6889
  msgstr ""
6890
 
6891
+ #: app/modules/booking/steps/tickets.php:44
6892
  #, php-format
6893
+ msgid "The %s ticket sales has stopped!"
6894
  msgstr ""
6895
 
6896
+ #: app/modules/booking/steps/tickets.php:45
6897
  #, php-format
6898
  msgid "The %s ticket is sold out. You can try another ticket or another date."
6899
  msgstr ""
6914
  msgid "Get Directions"
6915
  msgstr ""
6916
 
6917
+ #: app/modules/links/details.php:17 app/skins/single.php:461
6918
  msgid "Share this event"
6919
  msgstr ""
6920
 
6941
  msgid "Go to occurrence page"
6942
  msgstr ""
6943
 
6944
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
6945
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
6946
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
6947
  msgid "Time"
7067
  msgid "Home"
7068
  msgstr ""
7069
 
7070
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7071
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7072
  #: app/skins/single/modern.php:265
7073
  msgid "Sold out!"
7074
  msgstr ""
7075
 
7076
+ #: app/skins/single.php:822 app/skins/single.php:877
7077
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7078
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7079
  #: app/skins/single/modern.php:44
7080
  msgid "Phone"
7081
  msgstr ""
7082
 
7083
+ #: app/skins/single.php:836 app/skins/single.php:891
7084
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7085
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7086
  #: app/skins/single/modern.php:58
7087
  msgid "Website"
7088
  msgstr ""
7089
 
7090
+ #: app/skins/single.php:961
7091
  msgid "Speakers:"
7092
  msgstr ""
7093
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
8
- "PO-Revision-Date: 2020-01-14 10:03+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -290,7 +290,7 @@ msgstr "Nuevo evento"
290
  msgid "Add New Event"
291
  msgstr "Añadir nuevo evento"
292
 
293
- #: app/features/events.php:161 app/features/ix.php:3752
294
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
295
  msgid "No events found!"
296
  msgstr "No hay eventos"
@@ -325,8 +325,8 @@ msgstr "No hay eventos en la papelera"
325
  #: app/features/mec/meta_boxes/search_form.php:575
326
  #: app/features/mec/meta_boxes/search_form.php:672
327
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
328
- #: app/features/search.php:67 app/libraries/main.php:5260
329
- #: app/libraries/skins.php:850 app/skins/single.php:560
330
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
331
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
332
  #: app/skins/single/modern.php:113
@@ -335,7 +335,7 @@ msgstr "Categoría"
335
 
336
  #: app/features/events.php:183 app/features/events.php:3275
337
  #: app/features/fes/form.php:757 app/features/mec.php:402
338
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
339
  msgid "Categories"
340
  msgstr "Categorías"
341
 
@@ -424,7 +424,7 @@ msgid "Event Repeating"
424
  msgstr "Repetir el evento"
425
 
426
  #: app/features/events.php:333 app/features/events.php:1286
427
- #: app/features/mec/settings.php:710 app/skins/single.php:941
428
  msgid "Hourly Schedule"
429
  msgstr "Programación horaria"
430
 
@@ -442,7 +442,7 @@ msgstr "Enlace"
442
 
443
  #: app/features/events.php:336 app/features/events.php:3322
444
  #: app/features/events.php:3513 app/features/events.php:3555
445
- #: app/features/ix.php:3373 app/features/ix.php:3414
446
  #: app/features/mec/meta_boxes/display_options.php:960
447
  #: app/features/mec/meta_boxes/search_form.php:45
448
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -459,16 +459,16 @@ msgstr "Enlace"
459
  #: app/features/organizers.php:58 app/features/organizers.php:204
460
  #: app/features/organizers.php:260 app/features/organizers.php:262
461
  #: app/features/organizers.php:271 app/features/search.php:75
462
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
463
- #: app/skins/single.php:806 app/skins/single/default.php:217
464
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
465
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
466
  msgid "Organizer"
467
  msgstr "Organizador"
468
 
469
  #: app/features/events.php:337 app/features/events.php:1172
470
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
471
- #: app/skins/single.php:583 app/skins/single/default.php:126
472
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
473
  #: app/skins/single/modern.php:208
474
  msgid "Cost"
@@ -486,7 +486,7 @@ msgstr "Datos del invitado"
486
  #: app/features/events.php:3802 app/features/fes.php:223
487
  #: app/features/fes/form.php:689 app/features/labels.php:178
488
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
489
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
490
  #: app/modules/booking/steps/form.php:37
491
  msgid "Name"
492
  msgstr "Nombre"
@@ -496,12 +496,12 @@ msgstr "Nombre"
496
  #: app/features/fes.php:223 app/features/fes/form.php:685
497
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
498
  #: app/features/organizers.php:111 app/features/organizers.php:152
499
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
500
- #: app/features/speakers.php:187 app/libraries/main.php:1539
501
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
502
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
503
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
504
- #: app/skins/single.php:878 app/skins/single/default.php:234
505
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
506
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
507
  msgid "Email"
@@ -514,8 +514,8 @@ msgstr "Día y hora"
514
  #: app/features/events.php:491 app/features/events.php:497
515
  #: app/features/events.php:3323 app/features/events.php:3513
516
  #: app/features/events.php:3555 app/features/fes/form.php:247
517
- #: app/features/fes/form.php:251 app/features/ix.php:3373
518
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
519
  #: app/features/mec/dashboard.php:400
520
  #: app/features/mec/meta_boxes/display_options.php:48
521
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -552,8 +552,8 @@ msgstr "PM"
552
  #: app/features/events.php:583 app/features/events.php:588
553
  #: app/features/events.php:3324 app/features/events.php:3513
554
  #: app/features/events.php:3555 app/features/fes/form.php:287
555
- #: app/features/fes/form.php:291 app/features/ix.php:3373
556
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
557
  #: app/features/mec/dashboard.php:401
558
  msgid "End Date"
559
  msgstr "Día final"
@@ -637,14 +637,14 @@ msgstr ""
637
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
638
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
639
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
640
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
641
- #: app/features/mec/notifications.php:170
642
- #: app/features/mec/notifications.php:238
643
- #: app/features/mec/notifications.php:308
644
- #: app/features/mec/notifications.php:373
645
- #: app/features/mec/notifications.php:384
646
- #: app/features/mec/notifications.php:454
647
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
648
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
649
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
650
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -660,7 +660,7 @@ msgstr ""
660
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
661
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
662
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
663
- #: app/skins/single.php:668 app/skins/single/default.php:141
664
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
665
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
666
  msgid "Read More"
@@ -843,8 +843,8 @@ msgstr "Próxima aparición de otros eventos"
843
 
844
  #: app/features/events.php:1168 app/features/events.php:3513
845
  #: app/features/events.php:3555 app/features/fes/form.php:727
846
- #: app/features/ix.php:3373 app/features/ix.php:3414
847
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
848
  #: app/widgets/single.php:103
849
  msgid "Event Cost"
850
  msgstr "Coste del evento"
@@ -862,8 +862,8 @@ msgstr "Excluir ciertos días"
862
  #: app/features/events.php:1204 app/features/events.php:2541
863
  #: app/features/fes.php:223 app/features/mec/booking.php:491
864
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
865
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
866
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
867
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
868
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
869
  msgid "Date"
@@ -900,8 +900,8 @@ msgstr ""
900
  #: app/features/events.php:1437 app/features/events.php:2322
901
  #: app/features/events.php:2369 app/features/events.php:3319
902
  #: app/features/events.php:3513 app/features/events.php:3555
903
- #: app/features/fes/form.php:236 app/features/ix.php:3373
904
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
905
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
906
  msgid "Title"
907
  msgstr "Titulo"
@@ -914,13 +914,13 @@ msgstr "Titulo"
914
  #: app/features/events.php:2357 app/features/events.php:2399
915
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
916
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
917
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
918
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
919
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
920
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
921
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
922
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
923
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
924
  msgid "Remove"
925
  msgstr "Eliminar"
926
 
@@ -948,7 +948,7 @@ msgstr "Descripción"
948
  #: app/features/events.php:1445 app/features/fes/form.php:851
949
  #: app/features/mec.php:410 app/features/mec/modules.php:52
950
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
951
- #: app/libraries/main.php:565 app/libraries/main.php:5267
952
  #: app/modules/speakers/details.php:18
953
  msgid "Speakers"
954
  msgstr ""
@@ -965,7 +965,7 @@ msgid "Event Links"
965
  msgstr "Enlaces de eventos"
966
 
967
  #: app/features/events.php:1479 app/features/events.php:1485
968
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
969
  msgid "Event Link"
970
  msgstr "Enlace del evento"
971
 
@@ -992,8 +992,8 @@ msgid "URL Shortener"
992
  msgstr ""
993
 
994
  #: app/features/events.php:1495 app/features/events.php:1508
995
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
996
- #: app/skins/single.php:667 app/skins/single/default.php:140
997
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
998
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
999
  #: app/widgets/single.php:107
@@ -1026,7 +1026,7 @@ msgstr "Límite total de reservas"
1026
 
1027
  #: app/features/events.php:1596 app/features/events.php:1849
1028
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1029
- #: app/modules/booking/steps/tickets.php:44
1030
  #: app/skins/available_spot/tpl.php:160
1031
  msgid "Unlimited"
1032
  msgstr "Ilimitado"
@@ -1061,7 +1061,7 @@ msgid "12"
1061
  msgstr ""
1062
 
1063
  #: app/features/events.php:1653 app/libraries/book.php:60
1064
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1065
  msgid "Tickets"
1066
  msgstr "Tickets"
1067
 
@@ -1088,13 +1088,13 @@ msgstr "Nombre del ticket"
1088
 
1089
  #: app/features/events.php:1680 app/features/events.php:1955
1090
  #: app/features/events.php:3513 app/features/events.php:3555
1091
- #: app/features/ix.php:3373 app/features/ix.php:3414
1092
  msgid "Start Time"
1093
  msgstr "Hora de Inicio"
1094
 
1095
  #: app/features/events.php:1739 app/features/events.php:1985
1096
  #: app/features/events.php:3513 app/features/events.php:3555
1097
- #: app/features/ix.php:3373 app/features/ix.php:3414
1098
  msgid "End Time"
1099
  msgstr "Hora de finalización"
1100
 
@@ -1126,35 +1126,35 @@ msgstr "Para mostrar en la web. Ej. 15€"
1126
  msgid "Available Tickets"
1127
  msgstr "Tickets disponibles"
1128
 
1129
- #: app/features/events.php:1855 app/features/events.php:2070
1130
  msgid "Minimum Ticket e.g. 3"
1131
  msgstr ""
1132
 
1133
- #: app/features/events.php:1858 app/features/events.php:2073
1134
  #, fuzzy
1135
  #| msgid "Ticket"
1136
  msgid "MinimumTicket"
1137
  msgstr "Ticket"
1138
 
1139
- #: app/features/events.php:1860 app/features/events.php:2075
1140
  msgid "Set a number for the minimum ticket reservation"
1141
  msgstr ""
1142
 
1143
- #: app/features/events.php:1868 app/features/events.php:2083
1144
  msgid "e.g. 0"
1145
  msgstr ""
1146
 
1147
- #: app/features/events.php:1870 app/features/events.php:2085
1148
  #, fuzzy
1149
  #| msgid "Days"
1150
  msgid "Day"
1151
  msgstr "Días"
1152
 
1153
- #: app/features/events.php:1871 app/features/events.php:2086
1154
  msgid "Hour"
1155
  msgstr ""
1156
 
1157
- #: app/features/events.php:1873 app/features/events.php:2088
1158
  #, php-format
1159
  msgid "Stop selling ticket %s before event start."
1160
  msgstr ""
@@ -1178,7 +1178,7 @@ msgstr ""
1178
  #: app/features/mec/meta_boxes/search_form.php:610
1179
  #: app/features/mec/meta_boxes/search_form.php:707
1180
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1181
- #: app/libraries/skins.php:980
1182
  msgid "Label"
1183
  msgstr "Etiqueta"
1184
 
@@ -1244,48 +1244,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1244
  msgstr ""
1245
 
1246
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1247
- #: app/libraries/main.php:2749
1248
  #, fuzzy
1249
  #| msgid "Name"
1250
  msgid "MEC Name"
1251
  msgstr "Nombre"
1252
 
1253
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1254
- #: app/libraries/main.php:2778
1255
  #, fuzzy
1256
  #| msgid "Email"
1257
  msgid "MEC Email"
1258
  msgstr "Correo electrónico"
1259
 
1260
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1261
- #: app/libraries/main.php:2719
1262
  msgid "Text"
1263
  msgstr "Texto"
1264
 
1265
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1266
  #: app/features/organizers.php:103 app/features/organizers.php:148
1267
- #: app/features/speakers.php:118 app/features/speakers.php:183
1268
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1269
  msgid "Tel"
1270
  msgstr "Tel"
1271
 
1272
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1273
- #: app/libraries/main.php:2837
1274
  msgid "File"
1275
  msgstr ""
1276
 
1277
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1278
- #: app/libraries/main.php:2924
1279
  msgid "Textarea"
1280
  msgstr "Área de texto"
1281
 
1282
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1283
- #: app/libraries/main.php:2977
1284
  msgid "Checkboxes"
1285
  msgstr "Checkboxes"
1286
 
1287
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1288
- #: app/libraries/main.php:3021
1289
  msgid "Radio Buttons"
1290
  msgstr "Botón tipo radio"
1291
 
@@ -1365,17 +1365,17 @@ msgstr "Botón tipo radio"
1365
  #: app/features/mec/meta_boxes/search_form.php:696
1366
  #: app/features/mec/meta_boxes/search_form.php:703
1367
  #: app/features/mec/meta_boxes/search_form.php:710
1368
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1369
  msgid "Dropdown"
1370
  msgstr "Desplegable"
1371
 
1372
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1373
- #: app/libraries/main.php:3112
1374
  msgid "Agreement"
1375
  msgstr "Acuerdo"
1376
 
1377
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1378
- #: app/libraries/main.php:2953
1379
  msgid "Paragraph"
1380
  msgstr "Párrafo"
1381
 
@@ -1404,8 +1404,8 @@ msgid "Attendees List"
1404
  msgstr "Límite de asistentes"
1405
 
1406
  #: app/features/events.php:3321 app/features/events.php:3513
1407
- #: app/features/events.php:3555 app/features/ix.php:3373
1408
- #: app/features/ix.php:3414 app/features/locations.php:58
1409
  #: app/features/locations.php:230 app/features/locations.php:287
1410
  #: app/features/locations.php:289 app/features/locations.php:298
1411
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1422,8 +1422,8 @@ msgstr "Límite de asistentes"
1422
  #: app/features/mec/meta_boxes/search_form.php:679
1423
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1424
  #: app/features/search.php:71 app/libraries/main.php:2236
1425
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1426
- #: app/skins/single.php:487 app/skins/single.php:918
1427
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1428
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1429
  #: app/skins/single/modern.php:97
@@ -1464,14 +1464,14 @@ msgid "Duplicate"
1464
  msgstr "Duplicar"
1465
 
1466
  #: app/features/events.php:3513 app/features/events.php:3555
1467
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1468
  #: app/features/labels.php:177 app/features/locations.php:229
1469
- #: app/features/organizers.php:203 app/features/speakers.php:253
1470
  msgid "ID"
1471
  msgstr "ID"
1472
 
1473
  #: app/features/events.php:3513 app/features/events.php:3555
1474
- #: app/features/ix.php:3373 app/features/ix.php:3414
1475
  msgid "Link"
1476
  msgstr "Enlace"
1477
 
@@ -1487,7 +1487,7 @@ msgstr "%s Correo electrónico"
1487
 
1488
  #: app/features/events.php:3808 app/features/fes.php:223
1489
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1490
- #: app/libraries/main.php:5294
1491
  msgid "Ticket"
1492
  msgstr "Ticket"
1493
 
@@ -1669,8 +1669,8 @@ msgstr "Eliminar imagen"
1669
 
1670
  #: app/features/fes/form.php:783 app/features/labels.php:61
1671
  #: app/features/labels.php:221 app/features/mec.php:403
1672
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1673
- #: app/skins/single.php:696 app/skins/single/default.php:155
1674
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1675
  #: app/skins/single/modern.php:223
1676
  msgid "Labels"
@@ -1749,85 +1749,85 @@ msgstr ""
1749
  msgid "The events are imported successfully!"
1750
  msgstr "¡Los eventos se importaron correctamente!"
1751
 
1752
- #: app/features/ix.php:806
1753
  msgid "Third Party plugin is not installed and activated!"
1754
  msgstr "¡Plugin de terceros no esta instalado ni activado!"
1755
 
1756
- #: app/features/ix.php:829
1757
  msgid "Third Party plugin is invalid!"
1758
  msgstr "¡El Plugin de terceros no es válido!"
1759
 
1760
- #: app/features/ix.php:2580 app/features/ix.php:2638
1761
  msgid "Both of API key and Calendar ID are required!"
1762
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
1763
 
1764
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1765
  msgid "Please select some events to import!"
1766
  msgstr "Por favor, ¡selecciona algunos eventos para importar!"
1767
 
1768
- #: app/features/ix.php:2994 app/features/ix.php:3057
1769
  msgid "Both of API key and Group URL are required!"
1770
  msgstr ""
1771
 
1772
- #: app/features/ix.php:3296
1773
  msgid "Check at Meetup"
1774
  msgstr ""
1775
 
1776
- #: app/features/ix.php:3373 app/features/ix.php:3414
1777
  msgid "Organizer Tel"
1778
  msgstr "Teléfono del Organizador"
1779
 
1780
- #: app/features/ix.php:3373 app/features/ix.php:3414
1781
  msgid "Organizer Email"
1782
  msgstr "Correo electrónico del organizador"
1783
 
1784
- #: app/features/ix.php:3495
1785
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1786
  msgstr ""
1787
  "Todos los ID de cliente, secreto de cliente y ID de calendario son "
1788
  "necesarios."
1789
 
1790
- #: app/features/ix.php:3518
1791
  #, php-format
1792
  msgid "All seems good! Please click %s for authenticating your app."
1793
  msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
1794
 
1795
- #: app/features/ix.php:3572
1796
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1797
  msgstr ""
1798
  "¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
1799
  "son obligatorios!"
1800
 
1801
- #: app/features/ix.php:3688
1802
  #, php-format
1803
  msgid "%s events added to Google Calendar successfully."
1804
  msgstr "%s eventos añadidos con éxito a Google Calendar."
1805
 
1806
- #: app/features/ix.php:3689
1807
  #, php-format
1808
  msgid "%s previously added events get updated."
1809
  msgstr "%s eventos añadidos previamente se actualizan."
1810
 
1811
- #: app/features/ix.php:3690
1812
  #, php-format
1813
  msgid "%s events failed to add for following reasons: %s"
1814
  msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
1815
 
1816
- #: app/features/ix.php:3722
1817
  msgid "Please insert your Facebook page's link."
1818
  msgstr ""
1819
 
1820
- #: app/features/ix.php:3731
1821
  msgid ""
1822
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1823
  "valid Facebook page link."
1824
  msgstr ""
1825
 
1826
- #: app/features/ix.php:3763
1827
  msgid "Please insert your facebook page's link."
1828
  msgstr "Por favor, inserta el enlace de tu página de Facebook."
1829
 
1830
- #: app/features/ix.php:3768
1831
  msgid ""
1832
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1833
  "valid facebook page link."
@@ -1997,14 +1997,15 @@ msgstr "Toggle"
1997
  #: app/features/ix/export_g_calendar.php:72
1998
  #: app/features/ix/export_g_calendar.php:147
1999
  #: app/features/ix/export_g_calendar.php:164
2000
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
2001
- #: app/features/mec/notifications.php:213
2002
- #: app/features/mec/notifications.php:420
 
2003
  msgid "Add to Google Calendar"
2004
  msgstr "Añadir a Google Calendar"
2005
 
2006
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2007
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
2008
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2009
  msgid "Checking ..."
2010
  msgstr "Verificando…"
@@ -2261,7 +2262,7 @@ msgstr "Importación automática a Google"
2261
 
2262
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2263
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2264
- #: app/features/mec/notifications.php:361
2265
  msgid "Important Note"
2266
  msgstr "Nota importante"
2267
 
@@ -2442,7 +2443,7 @@ msgid "Featured"
2442
  msgstr ""
2443
 
2444
  #: app/features/labels.php:118 app/features/labels.php:143
2445
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2446
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2447
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2448
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2461,7 +2462,7 @@ msgid "You can show featured and canceled events by a different style!"
2461
  msgstr ""
2462
 
2463
  #: app/features/labels.php:180 app/features/locations.php:232
2464
- #: app/features/organizers.php:206 app/features/speakers.php:257
2465
  #: app/modules/booking/steps/tickets.php:38
2466
  msgid "Count"
2467
  msgstr "Contador"
@@ -2478,7 +2479,7 @@ msgstr "Evento %s"
2478
 
2479
  #: app/features/locations.php:59 app/features/mec.php:404
2480
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2481
- #: app/libraries/main.php:5263
2482
  msgid "Locations"
2483
  msgstr "Lugar"
2484
 
@@ -2511,13 +2512,13 @@ msgstr "Geolongitud (opcional)"
2511
 
2512
  #: app/features/locations.php:138 app/features/locations.php:180
2513
  #: app/features/organizers.php:127 app/features/organizers.php:160
2514
- #: app/features/speakers.php:158 app/features/speakers.php:203
2515
  msgid "Thumbnail"
2516
  msgstr "Miniatura"
2517
 
2518
  #: app/features/locations.php:143 app/features/locations.php:183
2519
  #: app/features/organizers.php:132 app/features/organizers.php:163
2520
- #: app/features/speakers.php:163 app/features/speakers.php:206
2521
  msgid "Upload/Add image"
2522
  msgstr "Subir/Añadir imagen"
2523
 
@@ -2525,7 +2526,7 @@ msgstr "Subir/Añadir imagen"
2525
  #: app/features/locations.php:340 app/features/locations.php:347
2526
  #: app/features/organizers.php:133 app/features/organizers.php:164
2527
  #: app/features/organizers.php:299 app/features/organizers.php:306
2528
- #: app/features/speakers.php:164 app/features/speakers.php:207
2529
  msgid "Remove image"
2530
  msgstr "Eliminar imagen"
2531
 
@@ -2585,7 +2586,7 @@ msgstr "Elegir imagen"
2585
  msgid "Don't show map in single event page"
2586
  msgstr "No mostrar el mapa en la página del detalle del evento"
2587
 
2588
- #: app/features/locations.php:356 app/libraries/main.php:5297
2589
  #, fuzzy
2590
  #| msgid "Locations"
2591
  msgid "Other Locations"
@@ -2615,7 +2616,7 @@ msgstr ""
2615
  msgid "Troubleshooting"
2616
  msgstr ""
2617
 
2618
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2619
  #, php-format
2620
  msgid "%s to %s"
2621
  msgstr ""
@@ -2647,7 +2648,7 @@ msgstr "Soporte"
2647
 
2648
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2649
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2650
- #: app/libraries/main.php:5265
2651
  msgid "Organizers"
2652
  msgstr "Organizadores"
2653
 
@@ -2769,10 +2770,10 @@ msgstr "Buscar %s"
2769
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2770
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2771
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2772
- #: app/features/mec/notifications.php:531
2773
- #: app/features/mec/notifications.php:543
2774
- #: app/features/mec/notifications.php:639
2775
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2776
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2777
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2778
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2893,7 +2894,7 @@ msgstr ""
2893
  msgid "Enable Express Attendees Form"
2894
  msgstr "Habilitar formulario de asistentes exprés"
2895
 
2896
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2897
  msgid "Attendees Form"
2898
  msgstr "Asistentes"
2899
 
@@ -2929,7 +2930,7 @@ msgstr "Auto verificación para reservas gratuitas"
2929
  msgid "Auto verification for paid bookings"
2930
  msgstr "Auto verificación para reservas de pago"
2931
 
2932
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2933
  #: app/libraries/main.php:579
2934
  msgid "Booking Confirmation"
2935
  msgstr "Confirmación de reserva"
@@ -2993,14 +2994,14 @@ msgid ""
2993
  msgstr ""
2994
 
2995
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2996
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
2997
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2998
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2999
  msgid "Saved"
3000
  msgstr "Guardado"
3001
 
3002
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3003
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
3004
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3005
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3006
  msgid "Settings Saved!"
@@ -3008,15 +3009,15 @@ msgstr "¡Ajustes guardados!"
3008
 
3009
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3010
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3011
- #: app/features/mec/notifications.php:620
3012
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
3013
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3014
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
3015
  msgid "Verified"
3016
  msgstr "Verificado"
3017
 
3018
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3019
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
3020
  #: app/features/mec/single.php:291
3021
  msgid "Please Refresh Page"
3022
  msgstr "Por favor, actualiza la página"
@@ -4158,8 +4159,8 @@ msgstr "Desactivado"
4158
  #: app/features/mec/meta_boxes/search_form.php:693
4159
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4160
  #: app/features/search.php:79 app/features/speakers.php:61
4161
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4162
- #: app/libraries/skins.php:928
4163
  msgid "Speaker"
4164
  msgstr ""
4165
 
@@ -4175,7 +4176,7 @@ msgstr ""
4175
  #: app/features/mec/meta_boxes/search_form.php:603
4176
  #: app/features/mec/meta_boxes/search_form.php:700
4177
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4178
- #: app/features/search.php:83 app/libraries/skins.php:954
4179
  #, fuzzy
4180
  #| msgid "Tags"
4181
  msgid "Tag"
@@ -4434,340 +4435,429 @@ msgstr "Activar notificación de reservas"
4434
  msgid "It sends to attendee after booking for notifying him/her."
4435
  msgstr "Se envía a los asistentes después de la reserva."
4436
 
4437
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4438
- #: app/features/mec/notifications.php:161
4439
- #: app/features/mec/notifications.php:229
4440
- #: app/features/mec/notifications.php:299
4441
- #: app/features/mec/notifications.php:364
4442
- #: app/features/mec/notifications.php:445
4443
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4444
  msgid "Email Subject"
4445
  msgstr "Asunto del correo electrónico"
4446
 
4447
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4448
- #: app/features/mec/notifications.php:109
4449
- #: app/features/mec/notifications.php:113
4450
- #: app/features/mec/notifications.php:165
4451
- #: app/features/mec/notifications.php:169
4452
- #: app/features/mec/notifications.php:233
4453
- #: app/features/mec/notifications.php:237
4454
- #: app/features/mec/notifications.php:303
4455
- #: app/features/mec/notifications.php:307
4456
- #: app/features/mec/notifications.php:368
4457
- #: app/features/mec/notifications.php:372
4458
- #: app/features/mec/notifications.php:383
4459
- #: app/features/mec/notifications.php:449
4460
- #: app/features/mec/notifications.php:453
4461
- #: app/features/mec/notifications.php:497
4462
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4463
  msgid "Custom Recipients"
4464
  msgstr "Destinatarios personalizados"
4465
 
4466
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4467
- #: app/features/mec/notifications.php:170
4468
- #: app/features/mec/notifications.php:238
4469
- #: app/features/mec/notifications.php:308
4470
- #: app/features/mec/notifications.php:373
4471
- #: app/features/mec/notifications.php:384
4472
- #: app/features/mec/notifications.php:454
4473
- #: app/features/mec/notifications.php:502
4474
  msgid "Insert comma separated emails for multiple recipients."
4475
  msgstr "Inserta los correos separados por coma para múltiples destinatarios."
4476
 
4477
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4478
- #: app/features/mec/notifications.php:315
4479
  msgid "Send the email to event organizer"
4480
  msgstr "Enviar correo al organizador del evento"
4481
 
4482
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4483
- #: app/features/mec/notifications.php:180
4484
- #: app/features/mec/notifications.php:256
4485
- #: app/features/mec/notifications.php:318
4486
- #: app/features/mec/notifications.php:390
4487
- #: app/features/mec/notifications.php:460
4488
- #: app/features/mec/notifications.php:508
4489
  msgid "Email Content"
4490
  msgstr "Contenido del correo"
4491
 
4492
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4493
- #: app/features/mec/notifications.php:183
4494
- #: app/features/mec/notifications.php:259
4495
- #: app/features/mec/notifications.php:321
4496
- #: app/features/mec/notifications.php:393
4497
- #: app/features/mec/notifications.php:463
4498
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4499
  msgid "You can use following placeholders"
4500
  msgstr "Puedes utilizar los siguientes marcadores de posición"
4501
 
4502
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4503
- #: app/features/mec/notifications.php:185
4504
- #: app/features/mec/notifications.php:261
4505
- #: app/features/mec/notifications.php:323
4506
- #: app/features/mec/notifications.php:395
 
4507
  msgid "First name of attendee"
4508
  msgstr "Nombre del asistente"
4509
 
4510
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4511
- #: app/features/mec/notifications.php:186
4512
- #: app/features/mec/notifications.php:262
4513
- #: app/features/mec/notifications.php:324
4514
- #: app/features/mec/notifications.php:396
 
4515
  msgid "Last name of attendee"
4516
  msgstr "Apellidos del asistente"
4517
 
4518
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4519
- #: app/features/mec/notifications.php:187
4520
- #: app/features/mec/notifications.php:263
4521
- #: app/features/mec/notifications.php:325
4522
- #: app/features/mec/notifications.php:397
 
4523
  msgid "Email of attendee"
4524
  msgstr "Correo electrónico del asistente"
4525
 
4526
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4527
- #: app/features/mec/notifications.php:188
4528
- #: app/features/mec/notifications.php:264
4529
- #: app/features/mec/notifications.php:326
4530
- #: app/features/mec/notifications.php:398
 
4531
  msgid "Booked date of event"
4532
  msgstr "Fecha de reserva del evento"
4533
 
4534
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4535
- #: app/features/mec/notifications.php:189
4536
- #: app/features/mec/notifications.php:265
4537
- #: app/features/mec/notifications.php:327
4538
- #: app/features/mec/notifications.php:399
 
4539
  #, fuzzy
4540
  #| msgid "Booked date of event"
4541
  msgid "Booked time of event"
4542
  msgstr "Fecha de reserva del evento"
4543
 
4544
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4545
- #: app/features/mec/notifications.php:190
4546
- #: app/features/mec/notifications.php:266
4547
- #: app/features/mec/notifications.php:328
4548
- #: app/features/mec/notifications.php:400
 
4549
  msgid "Booking Price"
4550
  msgstr "Precio de la reserva"
4551
 
4552
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4553
- #: app/features/mec/notifications.php:191
4554
- #: app/features/mec/notifications.php:267
4555
- #: app/features/mec/notifications.php:329
4556
- #: app/features/mec/notifications.php:401
 
4557
  msgid "Date and time of placing booking"
4558
  msgstr ""
4559
 
4560
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4561
- #: app/features/mec/notifications.php:192
4562
- #: app/features/mec/notifications.php:268
4563
- #: app/features/mec/notifications.php:330
4564
- #: app/features/mec/notifications.php:402
4565
- #: app/features/mec/notifications.php:471
4566
- #: app/features/mec/notifications.php:519
 
4567
  msgid "Your website title"
4568
  msgstr "Título de tu web"
4569
 
4570
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4571
- #: app/features/mec/notifications.php:193
4572
- #: app/features/mec/notifications.php:269
4573
- #: app/features/mec/notifications.php:331
4574
- #: app/features/mec/notifications.php:403
4575
- #: app/features/mec/notifications.php:472
4576
- #: app/features/mec/notifications.php:520
 
4577
  msgid "Your website URL"
4578
  msgstr "URL de tu sitio web"
4579
 
4580
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4581
- #: app/features/mec/notifications.php:194
4582
- #: app/features/mec/notifications.php:270
4583
- #: app/features/mec/notifications.php:332
4584
- #: app/features/mec/notifications.php:404
4585
- #: app/features/mec/notifications.php:473
4586
- #: app/features/mec/notifications.php:521
 
4587
  msgid "Your website description"
4588
  msgstr "Descripción de tu web"
4589
 
4590
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4591
- #: app/features/mec/notifications.php:195
4592
- #: app/features/mec/notifications.php:271
4593
- #: app/features/mec/notifications.php:333
4594
- #: app/features/mec/notifications.php:405
 
4595
  msgid "Event title"
4596
  msgstr "Título del evento"
4597
 
4598
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4599
- #: app/features/mec/notifications.php:196
4600
- #: app/features/mec/notifications.php:272
4601
- #: app/features/mec/notifications.php:334
4602
- #: app/features/mec/notifications.php:406
 
4603
  #, fuzzy
4604
  #| msgid "Event Link"
4605
  msgid "Event link"
4606
  msgstr "Enlace del evento"
4607
 
4608
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4609
- #: app/features/mec/notifications.php:197
4610
- #: app/features/mec/notifications.php:467
4611
- #: app/features/mec/notifications.php:515
 
4612
  #, fuzzy
4613
  #| msgid "Start Date"
4614
  msgid "Event Start Date"
4615
  msgstr "Día de inicio"
4616
 
4617
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4618
- #: app/features/mec/notifications.php:198
4619
- #: app/features/mec/notifications.php:468
4620
- #: app/features/mec/notifications.php:516
 
4621
  #, fuzzy
4622
  #| msgid "End Date"
4623
  msgid "Event End Date"
4624
  msgstr "Día final"
4625
 
4626
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4627
- #: app/features/mec/notifications.php:199
4628
- #: app/features/mec/notifications.php:273
4629
- #: app/features/mec/notifications.php:335
4630
- #: app/features/mec/notifications.php:407
 
4631
  #, fuzzy
4632
  #| msgid "Organizer name of booked event"
4633
  msgid "Speaker name of booked event"
4634
  msgstr "Nombre del organizador del evento reservado"
4635
 
4636
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4637
- #: app/features/mec/notifications.php:200
4638
- #: app/features/mec/notifications.php:274
4639
- #: app/features/mec/notifications.php:336
4640
- #: app/features/mec/notifications.php:408
 
4641
  msgid "Organizer name of booked event"
4642
  msgstr "Nombre del organizador del evento reservado"
4643
 
4644
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4645
- #: app/features/mec/notifications.php:201
4646
- #: app/features/mec/notifications.php:275
4647
- #: app/features/mec/notifications.php:337
4648
- #: app/features/mec/notifications.php:409
 
4649
  msgid "Organizer tel of booked event"
4650
  msgstr "Teléfono del organizador del evento reservado"
4651
 
4652
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4653
- #: app/features/mec/notifications.php:202
4654
- #: app/features/mec/notifications.php:276
4655
- #: app/features/mec/notifications.php:338
4656
- #: app/features/mec/notifications.php:410
 
4657
  msgid "Organizer email of booked event"
4658
  msgstr "Correo electrónico del organizar de un evento reservado"
4659
 
4660
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4661
- #: app/features/mec/notifications.php:203
4662
- #: app/features/mec/notifications.php:277
4663
- #: app/features/mec/notifications.php:339
4664
- #: app/features/mec/notifications.php:411
 
4665
  msgid "Location name of booked event"
4666
  msgstr "Nombre del lugar del organizador del evento reservado"
4667
 
4668
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4669
- #: app/features/mec/notifications.php:204
4670
- #: app/features/mec/notifications.php:278
4671
- #: app/features/mec/notifications.php:340
4672
- #: app/features/mec/notifications.php:412
 
4673
  msgid "Location address of booked event"
4674
  msgstr "Dirección del organizador del evento reservado"
4675
 
4676
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4677
- #: app/features/mec/notifications.php:205
4678
- #: app/features/mec/notifications.php:279
4679
- #: app/features/mec/notifications.php:341
4680
- #: app/features/mec/notifications.php:413
 
4681
  #, fuzzy
4682
  #| msgid "Organizer name of booked event"
4683
  msgid "Featured image of booked event"
4684
  msgstr "Nombre del organizador del evento reservado"
4685
 
4686
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4687
- #: app/features/mec/notifications.php:343
 
4688
  msgid "Full Attendee info such as booking form data, name, email etc."
4689
  msgstr ""
4690
  "Información completa del asistente, como datos de formulario de reserva, "
4691
  "nombre, correo electrónico, etc."
4692
 
4693
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4694
- #: app/features/mec/notifications.php:415
 
4695
  msgid "Invoice Link"
4696
  msgstr "Enlace de factura"
4697
 
4698
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4699
- #: app/features/mec/notifications.php:208
4700
- #: app/features/mec/notifications.php:282
4701
- #: app/features/mec/notifications.php:344
4702
- #: app/features/mec/notifications.php:416
 
4703
  msgid "Total Attendees"
4704
  msgstr "Total asistentes"
4705
 
4706
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4707
- #: app/features/mec/notifications.php:210
4708
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4709
  msgid "Ticket name"
4710
  msgstr "Nombre de la entrada"
4711
 
4712
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4713
- #: app/features/mec/notifications.php:211
4714
- #: app/features/mec/notifications.php:418
 
4715
  msgid "Ticket time"
4716
  msgstr "Hora de la entrada"
4717
 
4718
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4719
- #: app/features/mec/notifications.php:212
4720
- #: app/features/mec/notifications.php:419
 
4721
  msgid "Download ICS file"
4722
  msgstr "Descarga el archivo ICS"
4723
 
4724
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4725
  msgid "Booking Verification"
4726
  msgstr "Verificación de la reserva"
4727
 
4728
- #: app/features/mec/notifications.php:103
4729
  msgid "It sends to attendee email for verifying their booking/email."
4730
  msgstr ""
4731
  "Se envía a los asistentes un correo electrónico para verificar su reserva."
4732
 
4733
- #: app/features/mec/notifications.php:146
4734
  msgid "Email/Booking verification link."
4735
  msgstr "Enlace de verificación de correo electrónico/reserva."
4736
 
4737
- #: app/features/mec/notifications.php:159
4738
  msgid "It sends to attendee after confirming the booking by admin."
4739
  msgstr ""
4740
  "Se envía a los asistentes después de confirmar la reserva por el "
4741
  "administrador."
4742
 
4743
- #: app/features/mec/notifications.php:177
4744
  msgid "Send One Single Email Only To First Attendee"
4745
  msgstr ""
4746
 
4747
- #: app/features/mec/notifications.php:206
4748
- #: app/features/mec/notifications.php:414
4749
  msgid "Booking cancellation link."
4750
  msgstr "Enlace de cancelación de la reserva."
4751
 
4752
- #: app/features/mec/notifications.php:209
4753
- #, fuzzy
4754
- #| msgid "Amount (Per Ticket)"
4755
- msgid "Amount Tickets"
4756
- msgstr "Cantidad (Por ticket)"
4757
-
4758
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4759
  #, fuzzy
4760
  #| msgid "Booking cancellation link."
4761
  msgid "Booking Cancellation"
4762
  msgstr "Enlace de cancelación de la reserva."
4763
 
4764
- #: app/features/mec/notifications.php:223
4765
  #, fuzzy
4766
  #| msgid "Enable new event notification"
4767
  msgid "Enable cancellation notification"
4768
  msgstr "Activa los avisos de nuevos eventos"
4769
 
4770
- #: app/features/mec/notifications.php:227
4771
  #, fuzzy
4772
  #| msgid "It sends to attendee after booking for notifying him/her."
4773
  msgid ""
@@ -4775,48 +4865,48 @@ msgid ""
4775
  "them."
4776
  msgstr "Se envía a los asistentes después de la reserva."
4777
 
4778
- #: app/features/mec/notifications.php:245
4779
- #: app/features/mec/notifications.php:439
4780
  #, fuzzy
4781
  #| msgid "Send the email to event organizer"
4782
  msgid "Send the email to admin"
4783
  msgstr "Enviar correo al organizador del evento"
4784
 
4785
- #: app/features/mec/notifications.php:253
4786
  #, fuzzy
4787
  #| msgid "Send the email to event organizer"
4788
  msgid "Send the email to booking user"
4789
  msgstr "Enviar correo al organizador del evento"
4790
 
4791
- #: app/features/mec/notifications.php:280
4792
- #: app/features/mec/notifications.php:342
4793
  msgid "Admin booking management link."
4794
  msgstr "Enlace del administrador de reservas."
4795
 
4796
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4797
  msgid "Admin"
4798
  msgstr ""
4799
 
4800
- #: app/features/mec/notifications.php:293
4801
  #, fuzzy
4802
  #| msgid "Enable booking notification"
4803
  msgid "Enable admin notification"
4804
  msgstr "Activar notificación de reservas"
4805
 
4806
- #: app/features/mec/notifications.php:297
4807
  msgid "It sends to admin to notify him/her that a new booking received."
4808
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4809
 
4810
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4811
- #: app/libraries/notifications.php:548
4812
  msgid "Booking Reminder"
4813
  msgstr "Recordatorio de reserva"
4814
 
4815
- #: app/features/mec/notifications.php:355
4816
  msgid "Enable booking reminder notification"
4817
  msgstr "Activar recordatorio de reservas del evento."
4818
 
4819
- #: app/features/mec/notifications.php:361
4820
  #, php-format
4821
  msgid ""
4822
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4828,24 +4918,24 @@ msgstr ""
4828
  "este archivo %s, de lo contrario, puede enviar los recordatorios varias "
4829
  "veces."
4830
 
4831
- #: app/features/mec/notifications.php:361
4832
  msgid "only once per day"
4833
  msgstr "una vez al día"
4834
 
4835
- #: app/features/mec/notifications.php:379
4836
  msgid "Days"
4837
  msgstr "Días"
4838
 
4839
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4840
  #: app/libraries/main.php:583
4841
  msgid "New Event"
4842
  msgstr "Nuevo evento"
4843
 
4844
- #: app/features/mec/notifications.php:433
4845
  msgid "Enable new event notification"
4846
  msgstr "Activa los avisos de nuevos eventos"
4847
 
4848
- #: app/features/mec/notifications.php:443
4849
  msgid ""
4850
  "It sends after adding a new event from frontend event submission or from "
4851
  "website backend."
@@ -4853,47 +4943,47 @@ msgstr ""
4853
  "Se envía después de agregar un nuevo evento de presentación de evento de "
4854
  "frontend o desde el sitio web backend."
4855
 
4856
- #: app/features/mec/notifications.php:465
4857
- #: app/features/mec/notifications.php:513
4858
  msgid "Title of event"
4859
  msgstr "Título del evento"
4860
 
4861
- #: app/features/mec/notifications.php:466
4862
- #: app/features/mec/notifications.php:514
4863
  #, fuzzy
4864
  #| msgid "Title of event"
4865
  msgid "Link of event"
4866
  msgstr "Título del evento"
4867
 
4868
- #: app/features/mec/notifications.php:469
4869
- #: app/features/mec/notifications.php:517
4870
  msgid "Status of event"
4871
  msgstr "Estado del evento"
4872
 
4873
- #: app/features/mec/notifications.php:470
4874
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4875
  #: app/features/mec/settings.php:738
4876
  msgid "Event Note"
4877
  msgstr "Nota de evento"
4878
 
4879
- #: app/features/mec/notifications.php:474
4880
- #: app/features/mec/notifications.php:522
4881
  msgid "Admin events management link."
4882
  msgstr "Enlace del administrador de reservas."
4883
 
4884
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4885
  #, fuzzy
4886
  #| msgid "The event published."
4887
  msgid "User Event Publishing"
4888
  msgstr "El evento a sido publicado."
4889
 
4890
- #: app/features/mec/notifications.php:487
4891
  #, fuzzy
4892
  #| msgid "Enable new event notification"
4893
  msgid "Enable user event publishing notification"
4894
  msgstr "Activa los avisos de nuevos eventos"
4895
 
4896
- #: app/features/mec/notifications.php:491
4897
  #, fuzzy
4898
  #| msgid ""
4899
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5071,7 +5161,7 @@ msgid "You can enable/disable Schema scripts"
5071
  msgstr ""
5072
 
5073
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5074
- #: app/libraries/main.php:5272
5075
  msgid "Weekdays"
5076
  msgstr "Días de la semana"
5077
 
@@ -6339,12 +6429,12 @@ msgstr "ej. user@yoursite.com"
6339
  msgid "eg. https://webnus.net"
6340
  msgstr "ej. https://webnus.net"
6341
 
6342
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6343
- #: app/skins/single.php:856
6344
  msgid "Other Organizers"
6345
  msgstr "En común"
6346
 
6347
- #: app/features/organizers.php:313
6348
  msgid ""
6349
  "You can select extra organizers in addition to main organizer if you like."
6350
  msgstr ""
@@ -6366,7 +6456,7 @@ msgstr "La reserva no puede cancelarse."
6366
  msgid "#"
6367
  msgstr ""
6368
 
6369
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6370
  msgid "Status"
6371
  msgstr "Estado"
6372
 
@@ -6399,7 +6489,7 @@ msgstr ""
6399
  msgid "No bookings found!"
6400
  msgstr ""
6401
 
6402
- #: app/features/search.php:87 app/libraries/main.php:5262
6403
  msgid "label"
6404
  msgstr "etiqueta"
6405
 
@@ -6426,60 +6516,74 @@ msgid "No search result."
6426
  msgstr ""
6427
 
6428
  #: app/features/search_bar/search_result.php:11
6429
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6430
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6431
- #: app/skins/single.php:160 app/skins/single.php:747
6432
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6433
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6434
  msgid "All of the day"
6435
  msgstr "Todo el día"
6436
 
6437
- #: app/features/speakers.php:110 app/features/speakers.php:179
6438
- #: app/features/speakers.php:255
6439
  msgid "Job Title"
6440
  msgstr ""
6441
 
6442
- #: app/features/speakers.php:113 app/features/speakers.php:180
6443
  msgid "Insert speaker job title."
6444
  msgstr ""
6445
 
6446
- #: app/features/speakers.php:121 app/features/speakers.php:184
6447
  msgid "Insert speaker phone number."
6448
  msgstr ""
6449
 
6450
- #: app/features/speakers.php:129 app/features/speakers.php:188
6451
  msgid "Insert speaker email address."
6452
  msgstr ""
6453
 
6454
- #: app/features/speakers.php:134 app/features/speakers.php:191
6455
  msgid "Facebook Page"
6456
  msgstr ""
6457
 
6458
- #: app/features/speakers.php:137 app/features/speakers.php:192
6459
  msgid "Insert URL of Facebook Page"
6460
  msgstr ""
6461
 
6462
- #: app/features/speakers.php:142 app/features/speakers.php:195
6463
  msgid "Instagram"
6464
  msgstr ""
6465
 
6466
- #: app/features/speakers.php:145 app/features/speakers.php:196
6467
  msgid "Insert URL of Instagram"
6468
  msgstr ""
6469
 
6470
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
6471
  msgid "Twitter Page"
6472
  msgstr ""
6473
 
6474
- #: app/features/speakers.php:153 app/features/speakers.php:200
6475
  msgid "Insert URL of Twitter Page"
6476
  msgstr ""
6477
 
6478
- #: app/features/speakers.php:315
 
 
 
 
6479
  msgid "Sorry, You must insert speaker name!"
6480
  msgstr ""
6481
 
6482
- #: app/features/speakers.php:364
6483
  msgid ""
6484
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6485
  "section and speaker widget section!"
@@ -6637,31 +6741,31 @@ msgstr "Vista de Horario"
6637
  msgid "Tile View"
6638
  msgstr "Vista de Horario"
6639
 
6640
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6641
  msgid "SU"
6642
  msgstr "DO"
6643
 
6644
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6645
  msgid "MO"
6646
  msgstr "LU"
6647
 
6648
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6649
  msgid "TU"
6650
  msgstr "MA"
6651
 
6652
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6653
  msgid "WE"
6654
  msgstr "MI"
6655
 
6656
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6657
  msgid "TH"
6658
  msgstr "JU"
6659
 
6660
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6661
  msgid "FR"
6662
  msgstr "VI"
6663
 
6664
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6665
  msgid "SA"
6666
  msgstr "SA"
6667
 
@@ -6932,169 +7036,169 @@ msgstr "La solicitud no es válida."
6932
  msgid "iCal export stopped!"
6933
  msgstr "¡La exportación de iCal se detuvo!"
6934
 
6935
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6936
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6937
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6938
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6939
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6940
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6941
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6942
  msgid "Sort"
6943
  msgstr "Orden"
6944
 
6945
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6946
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6947
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6948
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6949
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6950
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6951
  msgid "Required Field"
6952
  msgstr "Campo obligatorio"
6953
 
6954
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6955
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6956
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6957
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6958
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6959
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6960
  msgid "Insert a label for this field"
6961
  msgstr "Introduce una etiqueta para este campo"
6962
 
6963
- #: app/libraries/main.php:2958
6964
  msgid "HTML and shortcode are allowed."
6965
  msgstr "Se permite HTML"
6966
 
6967
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
6968
- #: app/libraries/main.php:3089
6969
  msgid "Option"
6970
  msgstr "Opción"
6971
 
6972
- #: app/libraries/main.php:3123
6973
  #, php-format
6974
  msgid "Instead of %s, the page title with a link will be show."
6975
  msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
6976
 
6977
- #: app/libraries/main.php:3125
6978
  msgid "Agreement Page"
6979
  msgstr "Página de Acuerdo"
6980
 
6981
- #: app/libraries/main.php:3136
6982
  msgid "Checked by default"
6983
  msgstr "Marcado por defecto"
6984
 
6985
- #: app/libraries/main.php:3137
6986
  msgid "Unchecked by default"
6987
  msgstr "Sin marcar por defecto"
6988
 
6989
- #: app/libraries/main.php:3160
6990
  msgid "Insert a label for this option"
6991
  msgstr "Introduce una etiqueta para esta opción"
6992
 
6993
- #: app/libraries/main.php:3175
6994
  msgid "Free"
6995
  msgstr "Gratis"
6996
 
6997
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
6998
  #, fuzzy
6999
  #| msgid "M.E. Calendar"
7000
  msgid "M.E. Calender"
7001
  msgstr "M.E. Calendario"
7002
 
7003
- #: app/libraries/main.php:3936
7004
  #, php-format
7005
  msgid "Copy of %s"
7006
  msgstr "Copia de %s"
7007
 
7008
- #: app/libraries/main.php:4651
7009
  msgid "Booked an event."
7010
  msgstr "Has reservado para un evento."
7011
 
7012
- #: app/libraries/main.php:4692
7013
  #, php-format
7014
  msgid "%s booked %s event."
7015
  msgstr "%s reservado %s evento."
7016
 
7017
- #: app/libraries/main.php:5257
7018
  msgid "Taxonomies"
7019
  msgstr "Taxonomías"
7020
 
7021
- #: app/libraries/main.php:5259
7022
  msgid "Category Plural Label"
7023
  msgstr "Categoría Etiqueta plural"
7024
 
7025
- #: app/libraries/main.php:5260
7026
  msgid "Category Singular Label"
7027
  msgstr "Categoría Etiqueta Singular"
7028
 
7029
- #: app/libraries/main.php:5261
7030
  msgid "Label Plural Label"
7031
  msgstr "Etiqueta plural"
7032
 
7033
- #: app/libraries/main.php:5262
7034
  msgid "Label Singular Label"
7035
  msgstr "Etiqueta singular de la etiqueta"
7036
 
7037
- #: app/libraries/main.php:5263
7038
  msgid "Location Plural Label"
7039
  msgstr "Ubicación Etiqueta plural"
7040
 
7041
- #: app/libraries/main.php:5264
7042
  msgid "Location Singular Label"
7043
  msgstr "Etiqueta de ubicación en singular"
7044
 
7045
- #: app/libraries/main.php:5265
7046
  msgid "Organizer Plural Label"
7047
  msgstr "Etiqueta del organizador en plural"
7048
 
7049
- #: app/libraries/main.php:5266
7050
  msgid "Organizer Singular Label"
7051
  msgstr "Etiqueta Singular del Organizador"
7052
 
7053
- #: app/libraries/main.php:5267
7054
  msgid "Speaker Plural Label"
7055
  msgstr ""
7056
 
7057
- #: app/libraries/main.php:5268
7058
  msgid "Speaker Singular Label"
7059
  msgstr ""
7060
 
7061
- #: app/libraries/main.php:5274
7062
  msgid "Sunday abbreviation"
7063
  msgstr "Abreviatura de Domingo"
7064
 
7065
- #: app/libraries/main.php:5275
7066
  msgid "Monday abbreviation"
7067
  msgstr "Abreviatura de Lunes"
7068
 
7069
- #: app/libraries/main.php:5276
7070
  msgid "Tuesday abbreviation"
7071
  msgstr "Abreviatura de Martes"
7072
 
7073
- #: app/libraries/main.php:5277
7074
  msgid "Wednesday abbreviation"
7075
  msgstr "Abreviatura de Miércoles "
7076
 
7077
- #: app/libraries/main.php:5278
7078
  msgid "Thursday abbreviation"
7079
  msgstr "Abreviatura de Jueves"
7080
 
7081
- #: app/libraries/main.php:5279
7082
  msgid "Friday abbreviation"
7083
  msgstr "Abreviatura de Viernes"
7084
 
7085
- #: app/libraries/main.php:5280
7086
  msgid "Saturday abbreviation"
7087
  msgstr "Abreviatura de Sábado "
7088
 
7089
- #: app/libraries/main.php:5284
7090
  msgid "Others"
7091
  msgstr "Otros"
7092
 
7093
- #: app/libraries/main.php:5286
7094
  msgid "Booking Success Message"
7095
  msgstr "Mensaje de reserva correcta"
7096
 
7097
- #: app/libraries/main.php:5286
7098
  msgid ""
7099
  "Thanks for your booking. Your tickets booked, booking verification might be "
7100
  "needed, please check your email."
@@ -7102,17 +7206,17 @@ msgstr ""
7102
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
7103
  "una verificación, por favor consulta tu correo."
7104
 
7105
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7106
  msgid "Register Button"
7107
  msgstr "Botón de registro"
7108
 
7109
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7110
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7111
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7112
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7113
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7114
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7115
- #: app/skins/single.php:771 app/skins/single/default.php:255
7116
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7117
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7118
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7123,11 +7227,11 @@ msgstr "Botón de registro"
7123
  msgid "REGISTER"
7124
  msgstr "REGISTRO"
7125
 
7126
- #: app/libraries/main.php:5288
7127
  msgid "View Detail Button"
7128
  msgstr "Ver detalle del botón"
7129
 
7130
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7131
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7132
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7133
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7138,87 +7242,87 @@ msgstr "Ver detalle del botón"
7138
  msgid "View Detail"
7139
  msgstr "Ver detalle"
7140
 
7141
- #: app/libraries/main.php:5289
7142
  msgid "Event Detail Button"
7143
  msgstr "Botón de detalle del evento"
7144
 
7145
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7146
  msgid "Event Detail"
7147
  msgstr "Detalle del evento"
7148
 
7149
- #: app/libraries/main.php:5291
7150
  msgid "More Info Link"
7151
  msgstr "Enlace a Más Información"
7152
 
7153
- #: app/libraries/main.php:5294
7154
  msgid "Ticket (Singular)"
7155
  msgstr "Entrada (Singular)"
7156
 
7157
- #: app/libraries/main.php:5295
7158
  msgid "Tickets (Plural)"
7159
  msgstr "Entradas (Plural)"
7160
 
7161
- #: app/libraries/main.php:5381
7162
  msgid "EventON"
7163
  msgstr "EventON"
7164
 
7165
- #: app/libraries/main.php:5382
7166
  msgid "The Events Calendar"
7167
  msgstr "The Events Calendar"
7168
 
7169
- #: app/libraries/main.php:5383
7170
  msgid "Events Schedule WP Plugin"
7171
  msgstr "Events Schedule WP Plugin"
7172
 
7173
- #: app/libraries/main.php:5384
7174
  msgid "Calendarize It"
7175
  msgstr "Ponlo al calendario"
7176
 
7177
- #: app/libraries/main.php:5385
7178
  #, fuzzy
7179
  #| msgid "Event %s"
7180
  msgid "Event Espresso"
7181
  msgstr "Evento %s"
7182
 
7183
- #: app/libraries/main.php:5386
7184
  #, fuzzy
7185
  #| msgid "Event Repeating"
7186
  msgid "Events Manager (Recurring)"
7187
  msgstr "Repetir el evento"
7188
 
7189
- #: app/libraries/main.php:5387
7190
  #, fuzzy
7191
  #| msgid "Modern Events Calendar (Lite)"
7192
  msgid "Events Manager (Single)"
7193
  msgstr "Modern Events Calendar (Lite)"
7194
 
7195
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7196
  msgid "Confirmed"
7197
  msgstr ""
7198
 
7199
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7200
  msgid "Rejected"
7201
  msgstr ""
7202
 
7203
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7204
  msgid "Pending"
7205
  msgstr ""
7206
 
7207
- #: app/libraries/main.php:5511
7208
  msgid "Waiting"
7209
  msgstr ""
7210
 
7211
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7212
  msgid "Skin controller does not exist."
7213
  msgstr "No existe skin controller."
7214
 
7215
- #: app/libraries/main.php:5830
7216
  #, fuzzy
7217
  #| msgid "Sold out!"
7218
  msgid "Sold Out"
7219
  msgstr "¡Agotado!"
7220
 
7221
- #: app/libraries/main.php:5838
7222
  #, fuzzy
7223
  #| msgid "Ticket"
7224
  msgid "Last Few Tickets"
@@ -7228,58 +7332,60 @@ msgstr "Ticket"
7228
  msgid "Please verify your email."
7229
  msgstr "Por favor comprueba tu email"
7230
 
7231
- #: app/libraries/notifications.php:142
7232
  msgid "Your booking is received."
7233
  msgstr "Se ha recibido tu reserva."
7234
 
7235
- #: app/libraries/notifications.php:249
7236
  msgid "Your booking is confirmed."
7237
  msgstr "Tu reserva ha sido confirmada."
7238
 
7239
- #: app/libraries/notifications.php:391
7240
  #, fuzzy
7241
  #| msgid "Your booking cannot be canceled."
7242
  msgid "booking canceled."
7243
  msgstr "La reserva no puede cancelarse."
7244
 
7245
- #: app/libraries/notifications.php:466
7246
  msgid "A new booking is received."
7247
  msgstr "Nueva reserva recibida."
7248
 
7249
- #: app/libraries/notifications.php:657
7250
  msgid "A new event is added."
7251
  msgstr "Se ha añadido un nuevo evento."
7252
 
7253
- #: app/libraries/notifications.php:726
7254
  #, fuzzy
7255
  #| msgid "The event published."
7256
  msgid "Your event is published."
7257
  msgstr "El evento a sido publicado."
7258
 
7259
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7260
- #: app/libraries/notifications.php:964
7261
  msgid "to"
7262
  msgstr "a"
7263
 
7264
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7265
  msgid "+ Add to Google Calendar"
7266
  msgstr "+ Añadir Google Calendar"
7267
 
7268
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7269
  msgid "+ iCal export"
7270
  msgstr "Exportación + iCal"
7271
 
7272
- #: app/libraries/notifications.php:1043
7273
  msgid "Yes"
7274
  msgstr "Sí"
7275
 
7276
- #: app/libraries/notifications.php:1043
7277
  msgid "No"
7278
  msgstr "No"
7279
 
7280
- #: app/libraries/skins.php:1000
7281
- msgid "none"
7282
- msgstr ""
 
 
7283
 
7284
  #: app/modules/attendees-list/details.php:36
7285
  msgid "Event Attendees"
@@ -7316,6 +7422,12 @@ msgstr ""
7316
  msgid "Free Booking"
7317
  msgstr "Reserva gratuita"
7318
 
 
 
 
 
 
 
7319
  #: app/modules/booking/steps/form.php:165
7320
  msgid "Fill other attendees information like the first form."
7321
  msgstr ""
@@ -7323,7 +7435,7 @@ msgstr ""
7323
  "formulario."
7324
 
7325
  #: app/modules/booking/steps/form.php:179
7326
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7327
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7328
  msgid "Next"
7329
  msgstr "Siguiente"
@@ -7336,17 +7448,17 @@ msgstr "Gracias por tu reserva."
7336
  msgid "Book Event"
7337
  msgstr "Reservar evento"
7338
 
7339
- #: app/modules/booking/steps/tickets.php:44
7340
  #, php-format
7341
  msgid "Available %s: <span>%s</span>"
7342
  msgstr "%s disponibles: <span>%s</span>"
7343
 
7344
- #: app/modules/booking/steps/tickets.php:48
7345
  #, php-format
7346
- msgid "The %s ticket sales has stoped!"
7347
  msgstr ""
7348
 
7349
- #: app/modules/booking/steps/tickets.php:49
7350
  #, php-format
7351
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7352
  msgstr ""
@@ -7369,7 +7481,7 @@ msgstr "Dirección de…"
7369
  msgid "Get Directions"
7370
  msgstr "Cómo llegar"
7371
 
7372
- #: app/modules/links/details.php:17 app/skins/single.php:455
7373
  msgid "Share this event"
7374
  msgstr "Compartir este evento"
7375
 
@@ -7396,7 +7508,7 @@ msgstr "Siguiente repetición"
7396
  msgid "Go to occurrence page"
7397
  msgstr "Ir a la página de repetición"
7398
 
7399
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7400
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7401
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7402
  msgid "Time"
@@ -7526,27 +7638,27 @@ msgstr "Sin eventos"
7526
  msgid "Home"
7527
  msgstr ""
7528
 
7529
- #: app/skins/single.php:538 app/skins/single/default.php:51
7530
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7531
  #: app/skins/single/modern.php:265
7532
  msgid "Sold out!"
7533
  msgstr "¡Agotado!"
7534
 
7535
- #: app/skins/single.php:816 app/skins/single.php:871
7536
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7537
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7538
  #: app/skins/single/modern.php:44
7539
  msgid "Phone"
7540
  msgstr "Teléfono"
7541
 
7542
- #: app/skins/single.php:830 app/skins/single.php:885
7543
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7544
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7545
  #: app/skins/single/modern.php:58
7546
  msgid "Website"
7547
  msgstr "Web"
7548
 
7549
- #: app/skins/single.php:955
7550
  msgid "Speakers:"
7551
  msgstr ""
7552
 
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
8
+ "PO-Revision-Date: 2020-01-22 10:49+0330\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
290
  msgid "Add New Event"
291
  msgstr "Añadir nuevo evento"
292
 
293
+ #: app/features/events.php:161 app/features/ix.php:3889
294
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
295
  msgid "No events found!"
296
  msgstr "No hay eventos"
325
  #: app/features/mec/meta_boxes/search_form.php:575
326
  #: app/features/mec/meta_boxes/search_form.php:672
327
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
328
+ #: app/features/search.php:67 app/libraries/main.php:5278
329
+ #: app/libraries/skins.php:858 app/skins/single.php:566
330
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
331
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
332
  #: app/skins/single/modern.php:113
335
 
336
  #: app/features/events.php:183 app/features/events.php:3275
337
  #: app/features/fes/form.php:757 app/features/mec.php:402
338
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
339
  msgid "Categories"
340
  msgstr "Categorías"
341
 
424
  msgstr "Repetir el evento"
425
 
426
  #: app/features/events.php:333 app/features/events.php:1286
427
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
428
  msgid "Hourly Schedule"
429
  msgstr "Programación horaria"
430
 
442
 
443
  #: app/features/events.php:336 app/features/events.php:3322
444
  #: app/features/events.php:3513 app/features/events.php:3555
445
+ #: app/features/ix.php:3510 app/features/ix.php:3551
446
  #: app/features/mec/meta_boxes/display_options.php:960
447
  #: app/features/mec/meta_boxes/search_form.php:45
448
  #: app/features/mec/meta_boxes/search_form.php:107
459
  #: app/features/organizers.php:58 app/features/organizers.php:204
460
  #: app/features/organizers.php:260 app/features/organizers.php:262
461
  #: app/features/organizers.php:271 app/features/search.php:75
462
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
463
+ #: app/skins/single.php:812 app/skins/single/default.php:217
464
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
465
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
466
  msgid "Organizer"
467
  msgstr "Organizador"
468
 
469
  #: app/features/events.php:337 app/features/events.php:1172
470
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
471
+ #: app/skins/single.php:589 app/skins/single/default.php:126
472
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
473
  #: app/skins/single/modern.php:208
474
  msgid "Cost"
486
  #: app/features/events.php:3802 app/features/fes.php:223
487
  #: app/features/fes/form.php:689 app/features/labels.php:178
488
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
489
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
490
  #: app/modules/booking/steps/form.php:37
491
  msgid "Name"
492
  msgstr "Nombre"
496
  #: app/features/fes.php:223 app/features/fes/form.php:685
497
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
498
  #: app/features/organizers.php:111 app/features/organizers.php:152
499
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
500
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
501
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
502
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
503
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
504
+ #: app/skins/single.php:884 app/skins/single/default.php:234
505
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
506
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
507
  msgid "Email"
514
  #: app/features/events.php:491 app/features/events.php:497
515
  #: app/features/events.php:3323 app/features/events.php:3513
516
  #: app/features/events.php:3555 app/features/fes/form.php:247
517
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
518
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
519
  #: app/features/mec/dashboard.php:400
520
  #: app/features/mec/meta_boxes/display_options.php:48
521
  #: app/features/mec/meta_boxes/display_options.php:228
552
  #: app/features/events.php:583 app/features/events.php:588
553
  #: app/features/events.php:3324 app/features/events.php:3513
554
  #: app/features/events.php:3555 app/features/fes/form.php:287
555
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
556
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
557
  #: app/features/mec/dashboard.php:401
558
  msgid "End Date"
559
  msgstr "Día final"
637
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
638
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
639
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
640
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
641
+ #: app/features/mec/notifications.php:277
642
+ #: app/features/mec/notifications.php:380
643
+ #: app/features/mec/notifications.php:486
644
+ #: app/features/mec/notifications.php:587
645
+ #: app/features/mec/notifications.php:598
646
+ #: app/features/mec/notifications.php:704
647
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
648
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
649
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
650
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
660
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
661
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
662
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
663
+ #: app/skins/single.php:674 app/skins/single/default.php:141
664
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
665
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
666
  msgid "Read More"
843
 
844
  #: app/features/events.php:1168 app/features/events.php:3513
845
  #: app/features/events.php:3555 app/features/fes/form.php:727
846
+ #: app/features/ix.php:3510 app/features/ix.php:3551
847
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
848
  #: app/widgets/single.php:103
849
  msgid "Event Cost"
850
  msgstr "Coste del evento"
862
  #: app/features/events.php:1204 app/features/events.php:2541
863
  #: app/features/fes.php:223 app/features/mec/booking.php:491
864
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
865
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
866
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
867
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
868
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
869
  msgid "Date"
900
  #: app/features/events.php:1437 app/features/events.php:2322
901
  #: app/features/events.php:2369 app/features/events.php:3319
902
  #: app/features/events.php:3513 app/features/events.php:3555
903
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
904
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
905
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
906
  msgid "Title"
907
  msgstr "Titulo"
914
  #: app/features/events.php:2357 app/features/events.php:2399
915
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
916
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
917
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
918
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
919
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
920
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
921
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
922
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
923
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
924
  msgid "Remove"
925
  msgstr "Eliminar"
926
 
948
  #: app/features/events.php:1445 app/features/fes/form.php:851
949
  #: app/features/mec.php:410 app/features/mec/modules.php:52
950
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
951
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
952
  #: app/modules/speakers/details.php:18
953
  msgid "Speakers"
954
  msgstr ""
965
  msgstr "Enlaces de eventos"
966
 
967
  #: app/features/events.php:1479 app/features/events.php:1485
968
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
969
  msgid "Event Link"
970
  msgstr "Enlace del evento"
971
 
992
  msgstr ""
993
 
994
  #: app/features/events.php:1495 app/features/events.php:1508
995
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
996
+ #: app/skins/single.php:673 app/skins/single/default.php:140
997
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
998
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
999
  #: app/widgets/single.php:107
1026
 
1027
  #: app/features/events.php:1596 app/features/events.php:1849
1028
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1029
+ #: app/modules/booking/steps/tickets.php:40
1030
  #: app/skins/available_spot/tpl.php:160
1031
  msgid "Unlimited"
1032
  msgstr "Ilimitado"
1061
  msgstr ""
1062
 
1063
  #: app/features/events.php:1653 app/libraries/book.php:60
1064
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1065
  msgid "Tickets"
1066
  msgstr "Tickets"
1067
 
1088
 
1089
  #: app/features/events.php:1680 app/features/events.php:1955
1090
  #: app/features/events.php:3513 app/features/events.php:3555
1091
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1092
  msgid "Start Time"
1093
  msgstr "Hora de Inicio"
1094
 
1095
  #: app/features/events.php:1739 app/features/events.php:1985
1096
  #: app/features/events.php:3513 app/features/events.php:3555
1097
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1098
  msgid "End Time"
1099
  msgstr "Hora de finalización"
1100
 
1126
  msgid "Available Tickets"
1127
  msgstr "Tickets disponibles"
1128
 
1129
+ #: app/features/events.php:1853 app/features/events.php:2068
1130
  msgid "Minimum Ticket e.g. 3"
1131
  msgstr ""
1132
 
1133
+ #: app/features/events.php:1856 app/features/events.php:2071
1134
  #, fuzzy
1135
  #| msgid "Ticket"
1136
  msgid "MinimumTicket"
1137
  msgstr "Ticket"
1138
 
1139
+ #: app/features/events.php:1858 app/features/events.php:2073
1140
  msgid "Set a number for the minimum ticket reservation"
1141
  msgstr ""
1142
 
1143
+ #: app/features/events.php:1866 app/features/events.php:2081
1144
  msgid "e.g. 0"
1145
  msgstr ""
1146
 
1147
+ #: app/features/events.php:1868 app/features/events.php:2083
1148
  #, fuzzy
1149
  #| msgid "Days"
1150
  msgid "Day"
1151
  msgstr "Días"
1152
 
1153
+ #: app/features/events.php:1869 app/features/events.php:2084
1154
  msgid "Hour"
1155
  msgstr ""
1156
 
1157
+ #: app/features/events.php:1871 app/features/events.php:2086
1158
  #, php-format
1159
  msgid "Stop selling ticket %s before event start."
1160
  msgstr ""
1178
  #: app/features/mec/meta_boxes/search_form.php:610
1179
  #: app/features/mec/meta_boxes/search_form.php:707
1180
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1181
+ #: app/libraries/skins.php:988
1182
  msgid "Label"
1183
  msgstr "Etiqueta"
1184
 
1244
  msgstr ""
1245
 
1246
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1247
+ #: app/libraries/main.php:2767
1248
  #, fuzzy
1249
  #| msgid "Name"
1250
  msgid "MEC Name"
1251
  msgstr "Nombre"
1252
 
1253
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1254
+ #: app/libraries/main.php:2796
1255
  #, fuzzy
1256
  #| msgid "Email"
1257
  msgid "MEC Email"
1258
  msgstr "Correo electrónico"
1259
 
1260
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1261
+ #: app/libraries/main.php:2737
1262
  msgid "Text"
1263
  msgstr "Texto"
1264
 
1265
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1266
  #: app/features/organizers.php:103 app/features/organizers.php:148
1267
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1268
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1269
  msgid "Tel"
1270
  msgstr "Tel"
1271
 
1272
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1273
+ #: app/libraries/main.php:2855
1274
  msgid "File"
1275
  msgstr ""
1276
 
1277
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1278
+ #: app/libraries/main.php:2942
1279
  msgid "Textarea"
1280
  msgstr "Área de texto"
1281
 
1282
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1283
+ #: app/libraries/main.php:2995
1284
  msgid "Checkboxes"
1285
  msgstr "Checkboxes"
1286
 
1287
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1288
+ #: app/libraries/main.php:3039
1289
  msgid "Radio Buttons"
1290
  msgstr "Botón tipo radio"
1291
 
1365
  #: app/features/mec/meta_boxes/search_form.php:696
1366
  #: app/features/mec/meta_boxes/search_form.php:703
1367
  #: app/features/mec/meta_boxes/search_form.php:710
1368
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1369
  msgid "Dropdown"
1370
  msgstr "Desplegable"
1371
 
1372
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1373
+ #: app/libraries/main.php:3130
1374
  msgid "Agreement"
1375
  msgstr "Acuerdo"
1376
 
1377
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1378
+ #: app/libraries/main.php:2971
1379
  msgid "Paragraph"
1380
  msgstr "Párrafo"
1381
 
1404
  msgstr "Límite de asistentes"
1405
 
1406
  #: app/features/events.php:3321 app/features/events.php:3513
1407
+ #: app/features/events.php:3555 app/features/ix.php:3510
1408
+ #: app/features/ix.php:3551 app/features/locations.php:58
1409
  #: app/features/locations.php:230 app/features/locations.php:287
1410
  #: app/features/locations.php:289 app/features/locations.php:298
1411
  #: app/features/mec/meta_boxes/display_options.php:959
1422
  #: app/features/mec/meta_boxes/search_form.php:679
1423
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1424
  #: app/features/search.php:71 app/libraries/main.php:2236
1425
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1426
+ #: app/skins/single.php:493 app/skins/single.php:924
1427
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1428
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1429
  #: app/skins/single/modern.php:97
1464
  msgstr "Duplicar"
1465
 
1466
  #: app/features/events.php:3513 app/features/events.php:3555
1467
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1468
  #: app/features/labels.php:177 app/features/locations.php:229
1469
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1470
  msgid "ID"
1471
  msgstr "ID"
1472
 
1473
  #: app/features/events.php:3513 app/features/events.php:3555
1474
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1475
  msgid "Link"
1476
  msgstr "Enlace"
1477
 
1487
 
1488
  #: app/features/events.php:3808 app/features/fes.php:223
1489
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1490
+ #: app/libraries/main.php:5312
1491
  msgid "Ticket"
1492
  msgstr "Ticket"
1493
 
1669
 
1670
  #: app/features/fes/form.php:783 app/features/labels.php:61
1671
  #: app/features/labels.php:221 app/features/mec.php:403
1672
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1673
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1674
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1675
  #: app/skins/single/modern.php:223
1676
  msgid "Labels"
1749
  msgid "The events are imported successfully!"
1750
  msgstr "¡Los eventos se importaron correctamente!"
1751
 
1752
+ #: app/features/ix.php:943
1753
  msgid "Third Party plugin is not installed and activated!"
1754
  msgstr "¡Plugin de terceros no esta instalado ni activado!"
1755
 
1756
+ #: app/features/ix.php:966
1757
  msgid "Third Party plugin is invalid!"
1758
  msgstr "¡El Plugin de terceros no es válido!"
1759
 
1760
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1761
  msgid "Both of API key and Calendar ID are required!"
1762
  msgstr "¡Tanto la clave de API como la ID de Calendario son necesarias!"
1763
 
1764
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1765
  msgid "Please select some events to import!"
1766
  msgstr "Por favor, ¡selecciona algunos eventos para importar!"
1767
 
1768
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1769
  msgid "Both of API key and Group URL are required!"
1770
  msgstr ""
1771
 
1772
+ #: app/features/ix.php:3433
1773
  msgid "Check at Meetup"
1774
  msgstr ""
1775
 
1776
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1777
  msgid "Organizer Tel"
1778
  msgstr "Teléfono del Organizador"
1779
 
1780
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1781
  msgid "Organizer Email"
1782
  msgstr "Correo electrónico del organizador"
1783
 
1784
+ #: app/features/ix.php:3632
1785
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1786
  msgstr ""
1787
  "Todos los ID de cliente, secreto de cliente y ID de calendario son "
1788
  "necesarios."
1789
 
1790
+ #: app/features/ix.php:3655
1791
  #, php-format
1792
  msgid "All seems good! Please click %s for authenticating your app."
1793
  msgstr "¡Todo parece correcto! Haz clic en %s para autenticar su aplicación."
1794
 
1795
+ #: app/features/ix.php:3709
1796
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1797
  msgstr ""
1798
  "¡Todas las aplicaciones de cliente, secreto de cliente y ID de calendario "
1799
  "son obligatorios!"
1800
 
1801
+ #: app/features/ix.php:3825
1802
  #, php-format
1803
  msgid "%s events added to Google Calendar successfully."
1804
  msgstr "%s eventos añadidos con éxito a Google Calendar."
1805
 
1806
+ #: app/features/ix.php:3826
1807
  #, php-format
1808
  msgid "%s previously added events get updated."
1809
  msgstr "%s eventos añadidos previamente se actualizan."
1810
 
1811
+ #: app/features/ix.php:3827
1812
  #, php-format
1813
  msgid "%s events failed to add for following reasons: %s"
1814
  msgstr "%s Eventos fallaron al añadirse por los siguientes motivos: %s"
1815
 
1816
+ #: app/features/ix.php:3859
1817
  msgid "Please insert your Facebook page's link."
1818
  msgstr ""
1819
 
1820
+ #: app/features/ix.php:3868
1821
  msgid ""
1822
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1823
  "valid Facebook page link."
1824
  msgstr ""
1825
 
1826
+ #: app/features/ix.php:3900
1827
  msgid "Please insert your facebook page's link."
1828
  msgstr "Por favor, inserta el enlace de tu página de Facebook."
1829
 
1830
+ #: app/features/ix.php:3905
1831
  msgid ""
1832
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1833
  "valid facebook page link."
1997
  #: app/features/ix/export_g_calendar.php:72
1998
  #: app/features/ix/export_g_calendar.php:147
1999
  #: app/features/ix/export_g_calendar.php:164
2000
+ #: app/features/mec/notifications.php:131
2001
+ #: app/features/mec/notifications.php:223
2002
+ #: app/features/mec/notifications.php:320
2003
+ #: app/features/mec/notifications.php:635
2004
  msgid "Add to Google Calendar"
2005
  msgstr "Añadir a Google Calendar"
2006
 
2007
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2008
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2009
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2010
  msgid "Checking ..."
2011
  msgstr "Verificando…"
2262
 
2263
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2264
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2265
+ #: app/features/mec/notifications.php:540
2266
  msgid "Important Note"
2267
  msgstr "Nota importante"
2268
 
2443
  msgstr ""
2444
 
2445
  #: app/features/labels.php:118 app/features/labels.php:143
2446
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2447
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2448
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2449
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2462
  msgstr ""
2463
 
2464
  #: app/features/labels.php:180 app/features/locations.php:232
2465
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2466
  #: app/modules/booking/steps/tickets.php:38
2467
  msgid "Count"
2468
  msgstr "Contador"
2479
 
2480
  #: app/features/locations.php:59 app/features/mec.php:404
2481
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2482
+ #: app/libraries/main.php:5281
2483
  msgid "Locations"
2484
  msgstr "Lugar"
2485
 
2512
 
2513
  #: app/features/locations.php:138 app/features/locations.php:180
2514
  #: app/features/organizers.php:127 app/features/organizers.php:160
2515
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2516
  msgid "Thumbnail"
2517
  msgstr "Miniatura"
2518
 
2519
  #: app/features/locations.php:143 app/features/locations.php:183
2520
  #: app/features/organizers.php:132 app/features/organizers.php:163
2521
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2522
  msgid "Upload/Add image"
2523
  msgstr "Subir/Añadir imagen"
2524
 
2526
  #: app/features/locations.php:340 app/features/locations.php:347
2527
  #: app/features/organizers.php:133 app/features/organizers.php:164
2528
  #: app/features/organizers.php:299 app/features/organizers.php:306
2529
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2530
  msgid "Remove image"
2531
  msgstr "Eliminar imagen"
2532
 
2586
  msgid "Don't show map in single event page"
2587
  msgstr "No mostrar el mapa en la página del detalle del evento"
2588
 
2589
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2590
  #, fuzzy
2591
  #| msgid "Locations"
2592
  msgid "Other Locations"
2616
  msgid "Troubleshooting"
2617
  msgstr ""
2618
 
2619
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2620
  #, php-format
2621
  msgid "%s to %s"
2622
  msgstr ""
2648
 
2649
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2650
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2651
+ #: app/libraries/main.php:5283
2652
  msgid "Organizers"
2653
  msgstr "Organizadores"
2654
 
2770
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2771
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2772
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2773
+ #: app/features/mec/notifications.php:816
2774
+ #: app/features/mec/notifications.php:828
2775
+ #: app/features/mec/notifications.php:924
2776
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2777
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2778
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2779
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2894
  msgid "Enable Express Attendees Form"
2895
  msgstr "Habilitar formulario de asistentes exprés"
2896
 
2897
+ #: app/features/mec/booking.php:186
2898
  msgid "Attendees Form"
2899
  msgstr "Asistentes"
2900
 
2930
  msgid "Auto verification for paid bookings"
2931
  msgstr "Auto verificación para reservas de pago"
2932
 
2933
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2934
  #: app/libraries/main.php:579
2935
  msgid "Booking Confirmation"
2936
  msgstr "Confirmación de reserva"
2994
  msgstr ""
2995
 
2996
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2997
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2998
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2999
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3000
  msgid "Saved"
3001
  msgstr "Guardado"
3002
 
3003
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3004
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3005
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3006
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3007
  msgid "Settings Saved!"
3009
 
3010
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3011
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3012
+ #: app/features/mec/notifications.php:905
3013
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3014
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3015
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
3016
  msgid "Verified"
3017
  msgstr "Verificado"
3018
 
3019
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3020
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3021
  #: app/features/mec/single.php:291
3022
  msgid "Please Refresh Page"
3023
  msgstr "Por favor, actualiza la página"
4159
  #: app/features/mec/meta_boxes/search_form.php:693
4160
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4161
  #: app/features/search.php:79 app/features/speakers.php:61
4162
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4163
+ #: app/libraries/skins.php:936
4164
  msgid "Speaker"
4165
  msgstr ""
4166
 
4176
  #: app/features/mec/meta_boxes/search_form.php:603
4177
  #: app/features/mec/meta_boxes/search_form.php:700
4178
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4179
+ #: app/features/search.php:83 app/libraries/skins.php:962
4180
  #, fuzzy
4181
  #| msgid "Tags"
4182
  msgid "Tag"
4435
  msgid "It sends to attendee after booking for notifying him/her."
4436
  msgstr "Se envía a los asistentes después de la reserva."
4437
 
4438
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4439
+ #: app/features/mec/notifications.php:233
4440
+ #: app/features/mec/notifications.php:336
4441
+ #: app/features/mec/notifications.php:442
4442
+ #: app/features/mec/notifications.php:543
4443
+ #: app/features/mec/notifications.php:660
4444
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4445
  msgid "Email Subject"
4446
  msgstr "Asunto del correo electrónico"
4447
 
4448
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4449
+ #: app/features/mec/notifications.php:147
4450
+ #: app/features/mec/notifications.php:154
4451
+ #: app/features/mec/notifications.php:239
4452
+ #: app/features/mec/notifications.php:246
4453
+ #: app/features/mec/notifications.php:342
4454
+ #: app/features/mec/notifications.php:349
4455
+ #: app/features/mec/notifications.php:448
4456
+ #: app/features/mec/notifications.php:455
4457
+ #: app/features/mec/notifications.php:549
4458
+ #: app/features/mec/notifications.php:556
4459
+ #: app/features/mec/notifications.php:666
4460
+ #: app/features/mec/notifications.php:673
4461
+ #: app/features/mec/notifications.php:749
4462
+ #: app/features/mec/notifications.php:756
4463
+ msgid "Receiver Users"
4464
+ msgstr ""
4465
+
4466
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4467
+ #: app/features/mec/notifications.php:247
4468
+ #: app/features/mec/notifications.php:350
4469
+ #: app/features/mec/notifications.php:456
4470
+ #: app/features/mec/notifications.php:557
4471
+ #: app/features/mec/notifications.php:674
4472
+ #: app/features/mec/notifications.php:757
4473
+ msgid "Select your desired users to send a copy of email to them!"
4474
+ msgstr ""
4475
+
4476
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4477
+ #: app/features/mec/notifications.php:164
4478
+ #: app/features/mec/notifications.php:171
4479
+ #: app/features/mec/notifications.php:256
4480
+ #: app/features/mec/notifications.php:263
4481
+ #: app/features/mec/notifications.php:359
4482
+ #: app/features/mec/notifications.php:366
4483
+ #: app/features/mec/notifications.php:465
4484
+ #: app/features/mec/notifications.php:472
4485
+ #: app/features/mec/notifications.php:566
4486
+ #: app/features/mec/notifications.php:573
4487
+ #: app/features/mec/notifications.php:683
4488
+ #: app/features/mec/notifications.php:690
4489
+ #: app/features/mec/notifications.php:766
4490
+ #: app/features/mec/notifications.php:773
4491
+ msgid "Receiver Roles"
4492
+ msgstr ""
4493
+
4494
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4495
+ #: app/features/mec/notifications.php:264
4496
+ #: app/features/mec/notifications.php:367
4497
+ #: app/features/mec/notifications.php:473
4498
+ #: app/features/mec/notifications.php:574
4499
+ #: app/features/mec/notifications.php:691
4500
+ #: app/features/mec/notifications.php:774
4501
+ msgid "Select users a specific role."
4502
+ msgstr ""
4503
+
4504
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4505
+ #: app/features/mec/notifications.php:180
4506
+ #: app/features/mec/notifications.php:184
4507
+ #: app/features/mec/notifications.php:272
4508
+ #: app/features/mec/notifications.php:276
4509
+ #: app/features/mec/notifications.php:375
4510
+ #: app/features/mec/notifications.php:379
4511
+ #: app/features/mec/notifications.php:481
4512
+ #: app/features/mec/notifications.php:485
4513
+ #: app/features/mec/notifications.php:582
4514
+ #: app/features/mec/notifications.php:586
4515
+ #: app/features/mec/notifications.php:597
4516
+ #: app/features/mec/notifications.php:699
4517
+ #: app/features/mec/notifications.php:703
4518
+ #: app/features/mec/notifications.php:782
4519
+ #: app/features/mec/notifications.php:786
4520
  msgid "Custom Recipients"
4521
  msgstr "Destinatarios personalizados"
4522
 
4523
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4524
+ #: app/features/mec/notifications.php:277
4525
+ #: app/features/mec/notifications.php:380
4526
+ #: app/features/mec/notifications.php:486
4527
+ #: app/features/mec/notifications.php:587
4528
+ #: app/features/mec/notifications.php:598
4529
+ #: app/features/mec/notifications.php:704
4530
+ #: app/features/mec/notifications.php:787
4531
  msgid "Insert comma separated emails for multiple recipients."
4532
  msgstr "Inserta los correos separados por coma para múltiples destinatarios."
4533
 
4534
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4535
+ #: app/features/mec/notifications.php:493
4536
  msgid "Send the email to event organizer"
4537
  msgstr "Enviar correo al organizador del evento"
4538
 
4539
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4540
+ #: app/features/mec/notifications.php:287
4541
+ #: app/features/mec/notifications.php:398
4542
+ #: app/features/mec/notifications.php:496
4543
+ #: app/features/mec/notifications.php:604
4544
+ #: app/features/mec/notifications.php:710
4545
+ #: app/features/mec/notifications.php:793
4546
  msgid "Email Content"
4547
  msgstr "Contenido del correo"
4548
 
4549
+ #: app/features/mec/notifications.php:101
4550
+ #: app/features/mec/notifications.php:194
4551
+ #: app/features/mec/notifications.php:290
4552
+ #: app/features/mec/notifications.php:401
4553
+ #: app/features/mec/notifications.php:499
4554
+ #: app/features/mec/notifications.php:607
4555
+ #: app/features/mec/notifications.php:713
4556
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4557
  msgid "You can use following placeholders"
4558
  msgstr "Puedes utilizar los siguientes marcadores de posición"
4559
 
4560
+ #: app/features/mec/notifications.php:103
4561
+ #: app/features/mec/notifications.php:196
4562
+ #: app/features/mec/notifications.php:292
4563
+ #: app/features/mec/notifications.php:403
4564
+ #: app/features/mec/notifications.php:501
4565
+ #: app/features/mec/notifications.php:609
4566
  msgid "First name of attendee"
4567
  msgstr "Nombre del asistente"
4568
 
4569
+ #: app/features/mec/notifications.php:104
4570
+ #: app/features/mec/notifications.php:197
4571
+ #: app/features/mec/notifications.php:293
4572
+ #: app/features/mec/notifications.php:404
4573
+ #: app/features/mec/notifications.php:502
4574
+ #: app/features/mec/notifications.php:610
4575
  msgid "Last name of attendee"
4576
  msgstr "Apellidos del asistente"
4577
 
4578
+ #: app/features/mec/notifications.php:105
4579
+ #: app/features/mec/notifications.php:198
4580
+ #: app/features/mec/notifications.php:294
4581
+ #: app/features/mec/notifications.php:405
4582
+ #: app/features/mec/notifications.php:503
4583
+ #: app/features/mec/notifications.php:611
4584
  msgid "Email of attendee"
4585
  msgstr "Correo electrónico del asistente"
4586
 
4587
+ #: app/features/mec/notifications.php:106
4588
+ #: app/features/mec/notifications.php:199
4589
+ #: app/features/mec/notifications.php:295
4590
+ #: app/features/mec/notifications.php:406
4591
+ #: app/features/mec/notifications.php:504
4592
+ #: app/features/mec/notifications.php:612
4593
  msgid "Booked date of event"
4594
  msgstr "Fecha de reserva del evento"
4595
 
4596
+ #: app/features/mec/notifications.php:107
4597
+ #: app/features/mec/notifications.php:200
4598
+ #: app/features/mec/notifications.php:296
4599
+ #: app/features/mec/notifications.php:407
4600
+ #: app/features/mec/notifications.php:505
4601
+ #: app/features/mec/notifications.php:613
4602
  #, fuzzy
4603
  #| msgid "Booked date of event"
4604
  msgid "Booked time of event"
4605
  msgstr "Fecha de reserva del evento"
4606
 
4607
+ #: app/features/mec/notifications.php:108
4608
+ #: app/features/mec/notifications.php:201
4609
+ #: app/features/mec/notifications.php:297
4610
+ #: app/features/mec/notifications.php:408
4611
+ #: app/features/mec/notifications.php:506
4612
+ #: app/features/mec/notifications.php:614
4613
  msgid "Booking Price"
4614
  msgstr "Precio de la reserva"
4615
 
4616
+ #: app/features/mec/notifications.php:109
4617
+ #: app/features/mec/notifications.php:202
4618
+ #: app/features/mec/notifications.php:298
4619
+ #: app/features/mec/notifications.php:409
4620
+ #: app/features/mec/notifications.php:507
4621
+ #: app/features/mec/notifications.php:615
4622
  msgid "Date and time of placing booking"
4623
  msgstr ""
4624
 
4625
+ #: app/features/mec/notifications.php:110
4626
+ #: app/features/mec/notifications.php:203
4627
+ #: app/features/mec/notifications.php:299
4628
+ #: app/features/mec/notifications.php:410
4629
+ #: app/features/mec/notifications.php:508
4630
+ #: app/features/mec/notifications.php:616
4631
+ #: app/features/mec/notifications.php:721
4632
+ #: app/features/mec/notifications.php:804
4633
  msgid "Your website title"
4634
  msgstr "Título de tu web"
4635
 
4636
+ #: app/features/mec/notifications.php:111
4637
+ #: app/features/mec/notifications.php:204
4638
+ #: app/features/mec/notifications.php:300
4639
+ #: app/features/mec/notifications.php:411
4640
+ #: app/features/mec/notifications.php:509
4641
+ #: app/features/mec/notifications.php:617
4642
+ #: app/features/mec/notifications.php:722
4643
+ #: app/features/mec/notifications.php:805
4644
  msgid "Your website URL"
4645
  msgstr "URL de tu sitio web"
4646
 
4647
+ #: app/features/mec/notifications.php:112
4648
+ #: app/features/mec/notifications.php:205
4649
+ #: app/features/mec/notifications.php:301
4650
+ #: app/features/mec/notifications.php:412
4651
+ #: app/features/mec/notifications.php:510
4652
+ #: app/features/mec/notifications.php:618
4653
+ #: app/features/mec/notifications.php:723
4654
+ #: app/features/mec/notifications.php:806
4655
  msgid "Your website description"
4656
  msgstr "Descripción de tu web"
4657
 
4658
+ #: app/features/mec/notifications.php:113
4659
+ #: app/features/mec/notifications.php:206
4660
+ #: app/features/mec/notifications.php:302
4661
+ #: app/features/mec/notifications.php:413
4662
+ #: app/features/mec/notifications.php:511
4663
+ #: app/features/mec/notifications.php:619
4664
  msgid "Event title"
4665
  msgstr "Título del evento"
4666
 
4667
+ #: app/features/mec/notifications.php:114
4668
+ #: app/features/mec/notifications.php:207
4669
+ #: app/features/mec/notifications.php:303
4670
+ #: app/features/mec/notifications.php:414
4671
+ #: app/features/mec/notifications.php:512
4672
+ #: app/features/mec/notifications.php:620
4673
  #, fuzzy
4674
  #| msgid "Event Link"
4675
  msgid "Event link"
4676
  msgstr "Enlace del evento"
4677
 
4678
+ #: app/features/mec/notifications.php:115
4679
+ #: app/features/mec/notifications.php:208
4680
+ #: app/features/mec/notifications.php:304
4681
+ #: app/features/mec/notifications.php:717
4682
+ #: app/features/mec/notifications.php:800
4683
  #, fuzzy
4684
  #| msgid "Start Date"
4685
  msgid "Event Start Date"
4686
  msgstr "Día de inicio"
4687
 
4688
+ #: app/features/mec/notifications.php:116
4689
+ #: app/features/mec/notifications.php:209
4690
+ #: app/features/mec/notifications.php:305
4691
+ #: app/features/mec/notifications.php:718
4692
+ #: app/features/mec/notifications.php:801
4693
  #, fuzzy
4694
  #| msgid "End Date"
4695
  msgid "Event End Date"
4696
  msgstr "Día final"
4697
 
4698
+ #: app/features/mec/notifications.php:117
4699
+ #: app/features/mec/notifications.php:210
4700
+ #: app/features/mec/notifications.php:306
4701
+ #: app/features/mec/notifications.php:415
4702
+ #: app/features/mec/notifications.php:513
4703
+ #: app/features/mec/notifications.php:621
4704
  #, fuzzy
4705
  #| msgid "Organizer name of booked event"
4706
  msgid "Speaker name of booked event"
4707
  msgstr "Nombre del organizador del evento reservado"
4708
 
4709
+ #: app/features/mec/notifications.php:118
4710
+ #: app/features/mec/notifications.php:211
4711
+ #: app/features/mec/notifications.php:307
4712
+ #: app/features/mec/notifications.php:416
4713
+ #: app/features/mec/notifications.php:514
4714
+ #: app/features/mec/notifications.php:622
4715
  msgid "Organizer name of booked event"
4716
  msgstr "Nombre del organizador del evento reservado"
4717
 
4718
+ #: app/features/mec/notifications.php:119
4719
+ #: app/features/mec/notifications.php:212
4720
+ #: app/features/mec/notifications.php:308
4721
+ #: app/features/mec/notifications.php:417
4722
+ #: app/features/mec/notifications.php:515
4723
+ #: app/features/mec/notifications.php:623
4724
  msgid "Organizer tel of booked event"
4725
  msgstr "Teléfono del organizador del evento reservado"
4726
 
4727
+ #: app/features/mec/notifications.php:120
4728
+ #: app/features/mec/notifications.php:213
4729
+ #: app/features/mec/notifications.php:309
4730
+ #: app/features/mec/notifications.php:418
4731
+ #: app/features/mec/notifications.php:516
4732
+ #: app/features/mec/notifications.php:624
4733
  msgid "Organizer email of booked event"
4734
  msgstr "Correo electrónico del organizar de un evento reservado"
4735
 
4736
+ #: app/features/mec/notifications.php:121
4737
+ #: app/features/mec/notifications.php:214
4738
+ #: app/features/mec/notifications.php:310
4739
+ #: app/features/mec/notifications.php:419
4740
+ #: app/features/mec/notifications.php:517
4741
+ #: app/features/mec/notifications.php:625
4742
  msgid "Location name of booked event"
4743
  msgstr "Nombre del lugar del organizador del evento reservado"
4744
 
4745
+ #: app/features/mec/notifications.php:122
4746
+ #: app/features/mec/notifications.php:215
4747
+ #: app/features/mec/notifications.php:311
4748
+ #: app/features/mec/notifications.php:420
4749
+ #: app/features/mec/notifications.php:518
4750
+ #: app/features/mec/notifications.php:626
4751
  msgid "Location address of booked event"
4752
  msgstr "Dirección del organizador del evento reservado"
4753
 
4754
+ #: app/features/mec/notifications.php:123
4755
+ #: app/features/mec/notifications.php:216
4756
+ #: app/features/mec/notifications.php:312
4757
+ #: app/features/mec/notifications.php:421
4758
+ #: app/features/mec/notifications.php:519
4759
+ #: app/features/mec/notifications.php:627
4760
  #, fuzzy
4761
  #| msgid "Organizer name of booked event"
4762
  msgid "Featured image of booked event"
4763
  msgstr "Nombre del organizador del evento reservado"
4764
 
4765
+ #: app/features/mec/notifications.php:124
4766
+ #: app/features/mec/notifications.php:423
4767
+ #: app/features/mec/notifications.php:521
4768
  msgid "Full Attendee info such as booking form data, name, email etc."
4769
  msgstr ""
4770
  "Información completa del asistente, como datos de formulario de reserva, "
4771
  "nombre, correo electrónico, etc."
4772
 
4773
+ #: app/features/mec/notifications.php:125
4774
+ #: app/features/mec/notifications.php:314
4775
+ #: app/features/mec/notifications.php:629
4776
  msgid "Invoice Link"
4777
  msgstr "Enlace de factura"
4778
 
4779
+ #: app/features/mec/notifications.php:126
4780
+ #: app/features/mec/notifications.php:218
4781
+ #: app/features/mec/notifications.php:315
4782
+ #: app/features/mec/notifications.php:424
4783
+ #: app/features/mec/notifications.php:522
4784
+ #: app/features/mec/notifications.php:630
4785
  msgid "Total Attendees"
4786
  msgstr "Total asistentes"
4787
 
4788
+ #: app/features/mec/notifications.php:127
4789
+ #: app/features/mec/notifications.php:219
4790
+ #: app/features/mec/notifications.php:316
4791
+ #: app/features/mec/notifications.php:425
4792
+ #: app/features/mec/notifications.php:523
4793
+ #: app/features/mec/notifications.php:631
4794
+ #, fuzzy
4795
+ #| msgid "Amount (Per Ticket)"
4796
+ msgid "Amount of Booked Tickets"
4797
+ msgstr "Cantidad (Por ticket)"
4798
+
4799
+ #: app/features/mec/notifications.php:128
4800
+ #: app/features/mec/notifications.php:220
4801
+ #: app/features/mec/notifications.php:317
4802
+ #: app/features/mec/notifications.php:632
4803
  msgid "Ticket name"
4804
  msgstr "Nombre de la entrada"
4805
 
4806
+ #: app/features/mec/notifications.php:129
4807
+ #: app/features/mec/notifications.php:221
4808
+ #: app/features/mec/notifications.php:318
4809
+ #: app/features/mec/notifications.php:633
4810
  msgid "Ticket time"
4811
  msgstr "Hora de la entrada"
4812
 
4813
+ #: app/features/mec/notifications.php:130
4814
+ #: app/features/mec/notifications.php:222
4815
+ #: app/features/mec/notifications.php:319
4816
+ #: app/features/mec/notifications.php:634
4817
  msgid "Download ICS file"
4818
  msgstr "Descarga el archivo ICS"
4819
 
4820
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4821
  msgid "Booking Verification"
4822
  msgstr "Verificación de la reserva"
4823
 
4824
+ #: app/features/mec/notifications.php:139
4825
  msgid "It sends to attendee email for verifying their booking/email."
4826
  msgstr ""
4827
  "Se envía a los asistentes un correo electrónico para verificar su reserva."
4828
 
4829
+ #: app/features/mec/notifications.php:217
4830
  msgid "Email/Booking verification link."
4831
  msgstr "Enlace de verificación de correo electrónico/reserva."
4832
 
4833
+ #: app/features/mec/notifications.php:231
4834
  msgid "It sends to attendee after confirming the booking by admin."
4835
  msgstr ""
4836
  "Se envía a los asistentes después de confirmar la reserva por el "
4837
  "administrador."
4838
 
4839
+ #: app/features/mec/notifications.php:284
4840
  msgid "Send One Single Email Only To First Attendee"
4841
  msgstr ""
4842
 
4843
+ #: app/features/mec/notifications.php:313
4844
+ #: app/features/mec/notifications.php:628
4845
  msgid "Booking cancellation link."
4846
  msgstr "Enlace de cancelación de la reserva."
4847
 
4848
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4849
  #, fuzzy
4850
  #| msgid "Booking cancellation link."
4851
  msgid "Booking Cancellation"
4852
  msgstr "Enlace de cancelación de la reserva."
4853
 
4854
+ #: app/features/mec/notifications.php:330
4855
  #, fuzzy
4856
  #| msgid "Enable new event notification"
4857
  msgid "Enable cancellation notification"
4858
  msgstr "Activa los avisos de nuevos eventos"
4859
 
4860
+ #: app/features/mec/notifications.php:334
4861
  #, fuzzy
4862
  #| msgid "It sends to attendee after booking for notifying him/her."
4863
  msgid ""
4865
  "them."
4866
  msgstr "Se envía a los asistentes después de la reserva."
4867
 
4868
+ #: app/features/mec/notifications.php:387
4869
+ #: app/features/mec/notifications.php:654
4870
  #, fuzzy
4871
  #| msgid "Send the email to event organizer"
4872
  msgid "Send the email to admin"
4873
  msgstr "Enviar correo al organizador del evento"
4874
 
4875
+ #: app/features/mec/notifications.php:395
4876
  #, fuzzy
4877
  #| msgid "Send the email to event organizer"
4878
  msgid "Send the email to booking user"
4879
  msgstr "Enviar correo al organizador del evento"
4880
 
4881
+ #: app/features/mec/notifications.php:422
4882
+ #: app/features/mec/notifications.php:520
4883
  msgid "Admin booking management link."
4884
  msgstr "Enlace del administrador de reservas."
4885
 
4886
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4887
  msgid "Admin"
4888
  msgstr ""
4889
 
4890
+ #: app/features/mec/notifications.php:436
4891
  #, fuzzy
4892
  #| msgid "Enable booking notification"
4893
  msgid "Enable admin notification"
4894
  msgstr "Activar notificación de reservas"
4895
 
4896
+ #: app/features/mec/notifications.php:440
4897
  msgid "It sends to admin to notify him/her that a new booking received."
4898
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4899
 
4900
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4901
+ #: app/libraries/notifications.php:603
4902
  msgid "Booking Reminder"
4903
  msgstr "Recordatorio de reserva"
4904
 
4905
+ #: app/features/mec/notifications.php:534
4906
  msgid "Enable booking reminder notification"
4907
  msgstr "Activar recordatorio de reservas del evento."
4908
 
4909
+ #: app/features/mec/notifications.php:540
4910
  #, php-format
4911
  msgid ""
4912
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4918
  "este archivo %s, de lo contrario, puede enviar los recordatorios varias "
4919
  "veces."
4920
 
4921
+ #: app/features/mec/notifications.php:540
4922
  msgid "only once per day"
4923
  msgstr "una vez al día"
4924
 
4925
+ #: app/features/mec/notifications.php:593
4926
  msgid "Days"
4927
  msgstr "Días"
4928
 
4929
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4930
  #: app/libraries/main.php:583
4931
  msgid "New Event"
4932
  msgstr "Nuevo evento"
4933
 
4934
+ #: app/features/mec/notifications.php:648
4935
  msgid "Enable new event notification"
4936
  msgstr "Activa los avisos de nuevos eventos"
4937
 
4938
+ #: app/features/mec/notifications.php:658
4939
  msgid ""
4940
  "It sends after adding a new event from frontend event submission or from "
4941
  "website backend."
4943
  "Se envía después de agregar un nuevo evento de presentación de evento de "
4944
  "frontend o desde el sitio web backend."
4945
 
4946
+ #: app/features/mec/notifications.php:715
4947
+ #: app/features/mec/notifications.php:798
4948
  msgid "Title of event"
4949
  msgstr "Título del evento"
4950
 
4951
+ #: app/features/mec/notifications.php:716
4952
+ #: app/features/mec/notifications.php:799
4953
  #, fuzzy
4954
  #| msgid "Title of event"
4955
  msgid "Link of event"
4956
  msgstr "Título del evento"
4957
 
4958
+ #: app/features/mec/notifications.php:719
4959
+ #: app/features/mec/notifications.php:802
4960
  msgid "Status of event"
4961
  msgstr "Estado del evento"
4962
 
4963
+ #: app/features/mec/notifications.php:720
4964
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4965
  #: app/features/mec/settings.php:738
4966
  msgid "Event Note"
4967
  msgstr "Nota de evento"
4968
 
4969
+ #: app/features/mec/notifications.php:724
4970
+ #: app/features/mec/notifications.php:807
4971
  msgid "Admin events management link."
4972
  msgstr "Enlace del administrador de reservas."
4973
 
4974
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4975
  #, fuzzy
4976
  #| msgid "The event published."
4977
  msgid "User Event Publishing"
4978
  msgstr "El evento a sido publicado."
4979
 
4980
+ #: app/features/mec/notifications.php:737
4981
  #, fuzzy
4982
  #| msgid "Enable new event notification"
4983
  msgid "Enable user event publishing notification"
4984
  msgstr "Activa los avisos de nuevos eventos"
4985
 
4986
+ #: app/features/mec/notifications.php:741
4987
  #, fuzzy
4988
  #| msgid ""
4989
  #| "It sends after adding a new event from frontend event submission or from "
5161
  msgstr ""
5162
 
5163
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5164
+ #: app/libraries/main.php:5290
5165
  msgid "Weekdays"
5166
  msgstr "Días de la semana"
5167
 
6429
  msgid "eg. https://webnus.net"
6430
  msgstr "ej. https://webnus.net"
6431
 
6432
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6433
+ #: app/skins/single.php:862
6434
  msgid "Other Organizers"
6435
  msgstr "En común"
6436
 
6437
+ #: app/features/organizers.php:314
6438
  msgid ""
6439
  "You can select extra organizers in addition to main organizer if you like."
6440
  msgstr ""
6456
  msgid "#"
6457
  msgstr ""
6458
 
6459
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6460
  msgid "Status"
6461
  msgstr "Estado"
6462
 
6489
  msgid "No bookings found!"
6490
  msgstr ""
6491
 
6492
+ #: app/features/search.php:87 app/libraries/main.php:5280
6493
  msgid "label"
6494
  msgstr "etiqueta"
6495
 
6516
  msgstr ""
6517
 
6518
  #: app/features/search_bar/search_result.php:11
6519
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6520
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6521
+ #: app/skins/single.php:160 app/skins/single.php:753
6522
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6523
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6524
  msgid "All of the day"
6525
  msgstr "Todo el día"
6526
 
6527
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6528
+ #: app/features/speakers.php:270
6529
  msgid "Job Title"
6530
  msgstr ""
6531
 
6532
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6533
  msgid "Insert speaker job title."
6534
  msgstr ""
6535
 
6536
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6537
  msgid "Insert speaker phone number."
6538
  msgstr ""
6539
 
6540
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6541
  msgid "Insert speaker email address."
6542
  msgstr ""
6543
 
6544
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6545
  msgid "Facebook Page"
6546
  msgstr ""
6547
 
6548
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6549
  msgid "Insert URL of Facebook Page"
6550
  msgstr ""
6551
 
6552
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6553
  msgid "Instagram"
6554
  msgstr ""
6555
 
6556
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6557
  msgid "Insert URL of Instagram"
6558
  msgstr ""
6559
 
6560
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6561
+ #, fuzzy
6562
+ #| msgid "Linkedin"
6563
+ msgid "LinkedIn"
6564
+ msgstr "LinkedIn"
6565
+
6566
+ #: app/features/speakers.php:154
6567
+ msgid "Insert URL of LinkedIn"
6568
+ msgstr ""
6569
+
6570
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6571
  msgid "Twitter Page"
6572
  msgstr ""
6573
 
6574
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6575
  msgid "Insert URL of Twitter Page"
6576
  msgstr ""
6577
 
6578
+ #: app/features/speakers.php:209
6579
+ msgid "Insert URL of linkedin"
6580
+ msgstr ""
6581
+
6582
+ #: app/features/speakers.php:330
6583
  msgid "Sorry, You must insert speaker name!"
6584
  msgstr ""
6585
 
6586
+ #: app/features/speakers.php:379
6587
  msgid ""
6588
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6589
  "section and speaker widget section!"
6741
  msgid "Tile View"
6742
  msgstr "Vista de Horario"
6743
 
6744
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6745
  msgid "SU"
6746
  msgstr "DO"
6747
 
6748
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6749
  msgid "MO"
6750
  msgstr "LU"
6751
 
6752
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6753
  msgid "TU"
6754
  msgstr "MA"
6755
 
6756
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6757
  msgid "WE"
6758
  msgstr "MI"
6759
 
6760
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6761
  msgid "TH"
6762
  msgstr "JU"
6763
 
6764
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6765
  msgid "FR"
6766
  msgstr "VI"
6767
 
6768
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6769
  msgid "SA"
6770
  msgstr "SA"
6771
 
7036
  msgid "iCal export stopped!"
7037
  msgstr "¡La exportación de iCal se detuvo!"
7038
 
7039
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
7040
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
7041
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
7042
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
7043
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
7044
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
7045
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
7046
  msgid "Sort"
7047
  msgstr "Orden"
7048
 
7049
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
7050
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
7051
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
7052
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
7053
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
7054
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
7055
  msgid "Required Field"
7056
  msgstr "Campo obligatorio"
7057
 
7058
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
7059
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
7060
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
7061
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
7062
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
7063
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
7064
  msgid "Insert a label for this field"
7065
  msgstr "Introduce una etiqueta para este campo"
7066
 
7067
+ #: app/libraries/main.php:2976
7068
  msgid "HTML and shortcode are allowed."
7069
  msgstr "Se permite HTML"
7070
 
7071
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
7072
+ #: app/libraries/main.php:3107
7073
  msgid "Option"
7074
  msgstr "Opción"
7075
 
7076
+ #: app/libraries/main.php:3141
7077
  #, php-format
7078
  msgid "Instead of %s, the page title with a link will be show."
7079
  msgstr "En lugar de %s, se mostrará el título de la página con un enlace."
7080
 
7081
+ #: app/libraries/main.php:3143
7082
  msgid "Agreement Page"
7083
  msgstr "Página de Acuerdo"
7084
 
7085
+ #: app/libraries/main.php:3154
7086
  msgid "Checked by default"
7087
  msgstr "Marcado por defecto"
7088
 
7089
+ #: app/libraries/main.php:3155
7090
  msgid "Unchecked by default"
7091
  msgstr "Sin marcar por defecto"
7092
 
7093
+ #: app/libraries/main.php:3178
7094
  msgid "Insert a label for this option"
7095
  msgstr "Introduce una etiqueta para esta opción"
7096
 
7097
+ #: app/libraries/main.php:3193
7098
  msgid "Free"
7099
  msgstr "Gratis"
7100
 
7101
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7102
  #, fuzzy
7103
  #| msgid "M.E. Calendar"
7104
  msgid "M.E. Calender"
7105
  msgstr "M.E. Calendario"
7106
 
7107
+ #: app/libraries/main.php:3954
7108
  #, php-format
7109
  msgid "Copy of %s"
7110
  msgstr "Copia de %s"
7111
 
7112
+ #: app/libraries/main.php:4669
7113
  msgid "Booked an event."
7114
  msgstr "Has reservado para un evento."
7115
 
7116
+ #: app/libraries/main.php:4710
7117
  #, php-format
7118
  msgid "%s booked %s event."
7119
  msgstr "%s reservado %s evento."
7120
 
7121
+ #: app/libraries/main.php:5275
7122
  msgid "Taxonomies"
7123
  msgstr "Taxonomías"
7124
 
7125
+ #: app/libraries/main.php:5277
7126
  msgid "Category Plural Label"
7127
  msgstr "Categoría Etiqueta plural"
7128
 
7129
+ #: app/libraries/main.php:5278
7130
  msgid "Category Singular Label"
7131
  msgstr "Categoría Etiqueta Singular"
7132
 
7133
+ #: app/libraries/main.php:5279
7134
  msgid "Label Plural Label"
7135
  msgstr "Etiqueta plural"
7136
 
7137
+ #: app/libraries/main.php:5280
7138
  msgid "Label Singular Label"
7139
  msgstr "Etiqueta singular de la etiqueta"
7140
 
7141
+ #: app/libraries/main.php:5281
7142
  msgid "Location Plural Label"
7143
  msgstr "Ubicación Etiqueta plural"
7144
 
7145
+ #: app/libraries/main.php:5282
7146
  msgid "Location Singular Label"
7147
  msgstr "Etiqueta de ubicación en singular"
7148
 
7149
+ #: app/libraries/main.php:5283
7150
  msgid "Organizer Plural Label"
7151
  msgstr "Etiqueta del organizador en plural"
7152
 
7153
+ #: app/libraries/main.php:5284
7154
  msgid "Organizer Singular Label"
7155
  msgstr "Etiqueta Singular del Organizador"
7156
 
7157
+ #: app/libraries/main.php:5285
7158
  msgid "Speaker Plural Label"
7159
  msgstr ""
7160
 
7161
+ #: app/libraries/main.php:5286
7162
  msgid "Speaker Singular Label"
7163
  msgstr ""
7164
 
7165
+ #: app/libraries/main.php:5292
7166
  msgid "Sunday abbreviation"
7167
  msgstr "Abreviatura de Domingo"
7168
 
7169
+ #: app/libraries/main.php:5293
7170
  msgid "Monday abbreviation"
7171
  msgstr "Abreviatura de Lunes"
7172
 
7173
+ #: app/libraries/main.php:5294
7174
  msgid "Tuesday abbreviation"
7175
  msgstr "Abreviatura de Martes"
7176
 
7177
+ #: app/libraries/main.php:5295
7178
  msgid "Wednesday abbreviation"
7179
  msgstr "Abreviatura de Miércoles "
7180
 
7181
+ #: app/libraries/main.php:5296
7182
  msgid "Thursday abbreviation"
7183
  msgstr "Abreviatura de Jueves"
7184
 
7185
+ #: app/libraries/main.php:5297
7186
  msgid "Friday abbreviation"
7187
  msgstr "Abreviatura de Viernes"
7188
 
7189
+ #: app/libraries/main.php:5298
7190
  msgid "Saturday abbreviation"
7191
  msgstr "Abreviatura de Sábado "
7192
 
7193
+ #: app/libraries/main.php:5302
7194
  msgid "Others"
7195
  msgstr "Otros"
7196
 
7197
+ #: app/libraries/main.php:5304
7198
  msgid "Booking Success Message"
7199
  msgstr "Mensaje de reserva correcta"
7200
 
7201
+ #: app/libraries/main.php:5304
7202
  msgid ""
7203
  "Thanks for your booking. Your tickets booked, booking verification might be "
7204
  "needed, please check your email."
7206
  "Gracias por tu reserva. Tus entradas han sido reservadas, podrías necesitar "
7207
  "una verificación, por favor consulta tu correo."
7208
 
7209
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7210
  msgid "Register Button"
7211
  msgstr "Botón de registro"
7212
 
7213
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7214
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7215
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7216
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7217
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7218
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7219
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7220
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7221
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7222
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7227
  msgid "REGISTER"
7228
  msgstr "REGISTRO"
7229
 
7230
+ #: app/libraries/main.php:5306
7231
  msgid "View Detail Button"
7232
  msgstr "Ver detalle del botón"
7233
 
7234
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7235
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7236
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7237
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7242
  msgid "View Detail"
7243
  msgstr "Ver detalle"
7244
 
7245
+ #: app/libraries/main.php:5307
7246
  msgid "Event Detail Button"
7247
  msgstr "Botón de detalle del evento"
7248
 
7249
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7250
  msgid "Event Detail"
7251
  msgstr "Detalle del evento"
7252
 
7253
+ #: app/libraries/main.php:5309
7254
  msgid "More Info Link"
7255
  msgstr "Enlace a Más Información"
7256
 
7257
+ #: app/libraries/main.php:5312
7258
  msgid "Ticket (Singular)"
7259
  msgstr "Entrada (Singular)"
7260
 
7261
+ #: app/libraries/main.php:5313
7262
  msgid "Tickets (Plural)"
7263
  msgstr "Entradas (Plural)"
7264
 
7265
+ #: app/libraries/main.php:5399
7266
  msgid "EventON"
7267
  msgstr "EventON"
7268
 
7269
+ #: app/libraries/main.php:5400
7270
  msgid "The Events Calendar"
7271
  msgstr "The Events Calendar"
7272
 
7273
+ #: app/libraries/main.php:5401
7274
  msgid "Events Schedule WP Plugin"
7275
  msgstr "Events Schedule WP Plugin"
7276
 
7277
+ #: app/libraries/main.php:5402
7278
  msgid "Calendarize It"
7279
  msgstr "Ponlo al calendario"
7280
 
7281
+ #: app/libraries/main.php:5403
7282
  #, fuzzy
7283
  #| msgid "Event %s"
7284
  msgid "Event Espresso"
7285
  msgstr "Evento %s"
7286
 
7287
+ #: app/libraries/main.php:5404
7288
  #, fuzzy
7289
  #| msgid "Event Repeating"
7290
  msgid "Events Manager (Recurring)"
7291
  msgstr "Repetir el evento"
7292
 
7293
+ #: app/libraries/main.php:5405
7294
  #, fuzzy
7295
  #| msgid "Modern Events Calendar (Lite)"
7296
  msgid "Events Manager (Single)"
7297
  msgstr "Modern Events Calendar (Lite)"
7298
 
7299
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7300
  msgid "Confirmed"
7301
  msgstr ""
7302
 
7303
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7304
  msgid "Rejected"
7305
  msgstr ""
7306
 
7307
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7308
  msgid "Pending"
7309
  msgstr ""
7310
 
7311
+ #: app/libraries/main.php:5529
7312
  msgid "Waiting"
7313
  msgstr ""
7314
 
7315
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7316
  msgid "Skin controller does not exist."
7317
  msgstr "No existe skin controller."
7318
 
7319
+ #: app/libraries/main.php:5848
7320
  #, fuzzy
7321
  #| msgid "Sold out!"
7322
  msgid "Sold Out"
7323
  msgstr "¡Agotado!"
7324
 
7325
+ #: app/libraries/main.php:5856
7326
  #, fuzzy
7327
  #| msgid "Ticket"
7328
  msgid "Last Few Tickets"
7332
  msgid "Please verify your email."
7333
  msgstr "Por favor comprueba tu email"
7334
 
7335
+ #: app/libraries/notifications.php:153
7336
  msgid "Your booking is received."
7337
  msgstr "Se ha recibido tu reserva."
7338
 
7339
+ #: app/libraries/notifications.php:271
7340
  msgid "Your booking is confirmed."
7341
  msgstr "Tu reserva ha sido confirmada."
7342
 
7343
+ #: app/libraries/notifications.php:435
7344
  #, fuzzy
7345
  #| msgid "Your booking cannot be canceled."
7346
  msgid "booking canceled."
7347
  msgstr "La reserva no puede cancelarse."
7348
 
7349
+ #: app/libraries/notifications.php:510
7350
  msgid "A new booking is received."
7351
  msgstr "Nueva reserva recibida."
7352
 
7353
+ #: app/libraries/notifications.php:734
7354
  msgid "A new event is added."
7355
  msgstr "Se ha añadido un nuevo evento."
7356
 
7357
+ #: app/libraries/notifications.php:803
7358
  #, fuzzy
7359
  #| msgid "The event published."
7360
  msgid "Your event is published."
7361
  msgstr "El evento a sido publicado."
7362
 
7363
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7364
+ #: app/libraries/notifications.php:1052
7365
  msgid "to"
7366
  msgstr "a"
7367
 
7368
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7369
  msgid "+ Add to Google Calendar"
7370
  msgstr "+ Añadir Google Calendar"
7371
 
7372
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7373
  msgid "+ iCal export"
7374
  msgstr "Exportación + iCal"
7375
 
7376
+ #: app/libraries/notifications.php:1131
7377
  msgid "Yes"
7378
  msgstr "Sí"
7379
 
7380
+ #: app/libraries/notifications.php:1131
7381
  msgid "No"
7382
  msgstr "No"
7383
 
7384
+ #: app/libraries/skins.php:1008
7385
+ #, fuzzy
7386
+ #| msgid "Select All"
7387
+ msgid "Select"
7388
+ msgstr "Seleccionar todo"
7389
 
7390
  #: app/modules/attendees-list/details.php:36
7391
  msgid "Event Attendees"
7422
  msgid "Free Booking"
7423
  msgstr "Reserva gratuita"
7424
 
7425
+ #: app/modules/booking/steps/form.php:52
7426
+ #, fuzzy
7427
+ #| msgid "Attendees Form"
7428
+ msgid "Attendee's Form"
7429
+ msgstr "Asistentes"
7430
+
7431
  #: app/modules/booking/steps/form.php:165
7432
  msgid "Fill other attendees information like the first form."
7433
  msgstr ""
7435
  "formulario."
7436
 
7437
  #: app/modules/booking/steps/form.php:179
7438
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7439
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7440
  msgid "Next"
7441
  msgstr "Siguiente"
7448
  msgid "Book Event"
7449
  msgstr "Reservar evento"
7450
 
7451
+ #: app/modules/booking/steps/tickets.php:40
7452
  #, php-format
7453
  msgid "Available %s: <span>%s</span>"
7454
  msgstr "%s disponibles: <span>%s</span>"
7455
 
7456
+ #: app/modules/booking/steps/tickets.php:44
7457
  #, php-format
7458
+ msgid "The %s ticket sales has stopped!"
7459
  msgstr ""
7460
 
7461
+ #: app/modules/booking/steps/tickets.php:45
7462
  #, php-format
7463
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7464
  msgstr ""
7481
  msgid "Get Directions"
7482
  msgstr "Cómo llegar"
7483
 
7484
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7485
  msgid "Share this event"
7486
  msgstr "Compartir este evento"
7487
 
7508
  msgid "Go to occurrence page"
7509
  msgstr "Ir a la página de repetición"
7510
 
7511
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7512
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7513
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7514
  msgid "Time"
7638
  msgid "Home"
7639
  msgstr ""
7640
 
7641
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7642
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7643
  #: app/skins/single/modern.php:265
7644
  msgid "Sold out!"
7645
  msgstr "¡Agotado!"
7646
 
7647
+ #: app/skins/single.php:822 app/skins/single.php:877
7648
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7649
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7650
  #: app/skins/single/modern.php:44
7651
  msgid "Phone"
7652
  msgstr "Teléfono"
7653
 
7654
+ #: app/skins/single.php:836 app/skins/single.php:891
7655
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7656
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7657
  #: app/skins/single/modern.php:58
7658
  msgid "Website"
7659
  msgstr "Web"
7660
 
7661
+ #: app/skins/single.php:961
7662
  msgid "Speakers:"
7663
  msgstr ""
7664
 
languages/modern-events-calendar-lite-fr_FR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-fr_FR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:03+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -276,7 +276,7 @@ msgstr "Ajouter un événement"
276
  msgid "Add New Event"
277
  msgstr "Ajouter un nouvel événement"
278
 
279
- #: app/features/events.php:161 app/features/ix.php:3752
280
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
281
  msgid "No events found!"
282
  msgstr "Pas d'événement actuellement programmé."
@@ -311,8 +311,8 @@ msgstr "Aucun événement trouvé dans la corbeille !"
311
  #: app/features/mec/meta_boxes/search_form.php:575
312
  #: app/features/mec/meta_boxes/search_form.php:672
313
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
314
- #: app/features/search.php:67 app/libraries/main.php:5260
315
- #: app/libraries/skins.php:850 app/skins/single.php:560
316
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
317
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
318
  #: app/skins/single/modern.php:113
@@ -321,7 +321,7 @@ msgstr "Catégorie"
321
 
322
  #: app/features/events.php:183 app/features/events.php:3275
323
  #: app/features/fes/form.php:757 app/features/mec.php:402
324
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
325
  msgid "Categories"
326
  msgstr "Catégories"
327
 
@@ -410,7 +410,7 @@ msgid "Event Repeating"
410
  msgstr "Événement récurrent"
411
 
412
  #: app/features/events.php:333 app/features/events.php:1286
413
- #: app/features/mec/settings.php:710 app/skins/single.php:941
414
  msgid "Hourly Schedule"
415
  msgstr "Programme"
416
 
@@ -428,7 +428,7 @@ msgstr "Lien"
428
 
429
  #: app/features/events.php:336 app/features/events.php:3322
430
  #: app/features/events.php:3513 app/features/events.php:3555
431
- #: app/features/ix.php:3373 app/features/ix.php:3414
432
  #: app/features/mec/meta_boxes/display_options.php:960
433
  #: app/features/mec/meta_boxes/search_form.php:45
434
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -445,16 +445,16 @@ msgstr "Lien"
445
  #: app/features/organizers.php:58 app/features/organizers.php:204
446
  #: app/features/organizers.php:260 app/features/organizers.php:262
447
  #: app/features/organizers.php:271 app/features/search.php:75
448
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
449
- #: app/skins/single.php:806 app/skins/single/default.php:217
450
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
451
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
452
  msgid "Organizer"
453
  msgstr "Organisateur"
454
 
455
  #: app/features/events.php:337 app/features/events.php:1172
456
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
457
- #: app/skins/single.php:583 app/skins/single/default.php:126
458
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
459
  #: app/skins/single/modern.php:208
460
  msgid "Cost"
@@ -472,7 +472,7 @@ msgstr "Coordonnées de l'Invité"
472
  #: app/features/events.php:3802 app/features/fes.php:223
473
  #: app/features/fes/form.php:689 app/features/labels.php:178
474
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
475
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
476
  #: app/modules/booking/steps/form.php:37
477
  msgid "Name"
478
  msgstr "Nom"
@@ -482,12 +482,12 @@ msgstr "Nom"
482
  #: app/features/fes.php:223 app/features/fes/form.php:685
483
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
484
  #: app/features/organizers.php:111 app/features/organizers.php:152
485
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
486
- #: app/features/speakers.php:187 app/libraries/main.php:1539
487
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
488
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
489
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
490
- #: app/skins/single.php:878 app/skins/single/default.php:234
491
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
492
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
493
  msgid "Email"
@@ -500,8 +500,8 @@ msgstr "Date et heure"
500
  #: app/features/events.php:491 app/features/events.php:497
501
  #: app/features/events.php:3323 app/features/events.php:3513
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
503
- #: app/features/fes/form.php:251 app/features/ix.php:3373
504
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
505
  #: app/features/mec/dashboard.php:400
506
  #: app/features/mec/meta_boxes/display_options.php:48
507
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -538,8 +538,8 @@ msgstr "de l'après midi"
538
  #: app/features/events.php:583 app/features/events.php:588
539
  #: app/features/events.php:3324 app/features/events.php:3513
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
- #: app/features/fes/form.php:291 app/features/ix.php:3373
542
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
543
  #: app/features/mec/dashboard.php:401
544
  msgid "End Date"
545
  msgstr "Date de fin"
@@ -623,14 +623,14 @@ msgstr ""
623
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
624
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
625
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
626
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
627
- #: app/features/mec/notifications.php:170
628
- #: app/features/mec/notifications.php:238
629
- #: app/features/mec/notifications.php:308
630
- #: app/features/mec/notifications.php:373
631
- #: app/features/mec/notifications.php:384
632
- #: app/features/mec/notifications.php:454
633
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
634
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
635
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
636
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -646,7 +646,7 @@ msgstr ""
646
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
647
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
648
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
649
- #: app/skins/single.php:668 app/skins/single/default.php:141
650
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
651
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
652
  msgid "Read More"
@@ -830,8 +830,8 @@ msgstr "Prochaine Occurrence de l'événement à venir"
830
 
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
- #: app/features/ix.php:3373 app/features/ix.php:3414
834
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Tarif de l'événement"
@@ -849,8 +849,8 @@ msgstr "Exclure certains jours"
849
  #: app/features/events.php:1204 app/features/events.php:2541
850
  #: app/features/fes.php:223 app/features/mec/booking.php:491
851
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
852
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
853
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
854
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
855
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
856
  msgid "Date"
@@ -887,8 +887,8 @@ msgstr ""
887
  #: app/features/events.php:1437 app/features/events.php:2322
888
  #: app/features/events.php:2369 app/features/events.php:3319
889
  #: app/features/events.php:3513 app/features/events.php:3555
890
- #: app/features/fes/form.php:236 app/features/ix.php:3373
891
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
892
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
893
  msgid "Title"
894
  msgstr "Titre"
@@ -901,13 +901,13 @@ msgstr "Titre"
901
  #: app/features/events.php:2357 app/features/events.php:2399
902
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
903
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
904
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
905
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
906
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
907
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
908
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
909
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
910
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
911
  msgid "Remove"
912
  msgstr "Supprimer"
913
 
@@ -935,7 +935,7 @@ msgstr "Description"
935
  #: app/features/events.php:1445 app/features/fes/form.php:851
936
  #: app/features/mec.php:410 app/features/mec/modules.php:52
937
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
938
- #: app/libraries/main.php:565 app/libraries/main.php:5267
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
@@ -952,7 +952,7 @@ msgid "Event Links"
952
  msgstr "Liens de l'évenements"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
956
  msgid "Event Link"
957
  msgstr "Lien de l'événement"
958
 
@@ -977,8 +977,8 @@ msgid "URL Shortener"
977
  msgstr ""
978
 
979
  #: app/features/events.php:1495 app/features/events.php:1508
980
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
981
- #: app/skins/single.php:667 app/skins/single/default.php:140
982
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
983
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
984
  #: app/widgets/single.php:107
@@ -1009,7 +1009,7 @@ msgstr "Nombre limite de réservation"
1009
 
1010
  #: app/features/events.php:1596 app/features/events.php:1849
1011
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1012
- #: app/modules/booking/steps/tickets.php:44
1013
  #: app/skins/available_spot/tpl.php:160
1014
  msgid "Unlimited"
1015
  msgstr "Illimité"
@@ -1046,7 +1046,7 @@ msgid "12"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1050
  msgid "Tickets"
1051
  msgstr "Billets"
1052
 
@@ -1069,13 +1069,13 @@ msgstr "Nom du billet"
1069
 
1070
  #: app/features/events.php:1680 app/features/events.php:1955
1071
  #: app/features/events.php:3513 app/features/events.php:3555
1072
- #: app/features/ix.php:3373 app/features/ix.php:3414
1073
  msgid "Start Time"
1074
  msgstr "Début"
1075
 
1076
  #: app/features/events.php:1739 app/features/events.php:1985
1077
  #: app/features/events.php:3513 app/features/events.php:3555
1078
- #: app/features/ix.php:3373 app/features/ix.php:3414
1079
  msgid "End Time"
1080
  msgstr "Fin"
1081
 
@@ -1107,37 +1107,37 @@ msgstr "Pour affichage sur le site Web. Par exemple 15 €"
1107
  msgid "Available Tickets"
1108
  msgstr "Place(s) disponible(s)"
1109
 
1110
- #: app/features/events.php:1855 app/features/events.php:2070
1111
  #, fuzzy
1112
  #| msgid "Amount (Per Ticket)"
1113
  msgid "Minimum Ticket e.g. 3"
1114
  msgstr "Montant (par Billet)"
1115
 
1116
- #: app/features/events.php:1858 app/features/events.php:2073
1117
  #, fuzzy
1118
  #| msgid "Amount (Per Ticket)"
1119
  msgid "MinimumTicket"
1120
  msgstr "Montant (par Billet)"
1121
 
1122
- #: app/features/events.php:1860 app/features/events.php:2075
1123
  msgid "Set a number for the minimum ticket reservation"
1124
  msgstr ""
1125
 
1126
- #: app/features/events.php:1868 app/features/events.php:2083
1127
  msgid "e.g. 0"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:1870 app/features/events.php:2085
1131
  #, fuzzy
1132
  #| msgid "Daily"
1133
  msgid "Day"
1134
  msgstr "Quotidienne"
1135
 
1136
- #: app/features/events.php:1871 app/features/events.php:2086
1137
  msgid "Hour"
1138
  msgstr ""
1139
 
1140
- #: app/features/events.php:1873 app/features/events.php:2088
1141
  #, php-format
1142
  msgid "Stop selling ticket %s before event start."
1143
  msgstr ""
@@ -1163,7 +1163,7 @@ msgstr "Libellé du prix"
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
- #: app/libraries/skins.php:980
1167
  msgid "Label"
1168
  msgstr "Label"
1169
 
@@ -1233,48 +1233,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1233
  msgstr ""
1234
 
1235
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1236
- #: app/libraries/main.php:2749
1237
  #, fuzzy
1238
  #| msgid "Name"
1239
  msgid "MEC Name"
1240
  msgstr "Nom"
1241
 
1242
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1243
- #: app/libraries/main.php:2778
1244
  #, fuzzy
1245
  #| msgid "Email"
1246
  msgid "MEC Email"
1247
  msgstr "Email"
1248
 
1249
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1250
- #: app/libraries/main.php:2719
1251
  msgid "Text"
1252
  msgstr "Texte"
1253
 
1254
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1255
  #: app/features/organizers.php:103 app/features/organizers.php:148
1256
- #: app/features/speakers.php:118 app/features/speakers.php:183
1257
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1258
  msgid "Tel"
1259
  msgstr "Téléphone"
1260
 
1261
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1262
- #: app/libraries/main.php:2837
1263
  msgid "File"
1264
  msgstr ""
1265
 
1266
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1267
- #: app/libraries/main.php:2924
1268
  msgid "Textarea"
1269
  msgstr "Zone de texte"
1270
 
1271
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1272
- #: app/libraries/main.php:2977
1273
  msgid "Checkboxes"
1274
  msgstr "Boîtes à cocher"
1275
 
1276
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1277
- #: app/libraries/main.php:3021
1278
  msgid "Radio Buttons"
1279
  msgstr "Boutons Radio"
1280
 
@@ -1354,17 +1354,17 @@ msgstr "Boutons Radio"
1354
  #: app/features/mec/meta_boxes/search_form.php:696
1355
  #: app/features/mec/meta_boxes/search_form.php:703
1356
  #: app/features/mec/meta_boxes/search_form.php:710
1357
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1358
  msgid "Dropdown"
1359
  msgstr "Menu déroulant"
1360
 
1361
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1362
- #: app/libraries/main.php:3112
1363
  msgid "Agreement"
1364
  msgstr ""
1365
 
1366
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1367
- #: app/libraries/main.php:2953
1368
  msgid "Paragraph"
1369
  msgstr "Paragraphe"
1370
 
@@ -1393,8 +1393,8 @@ msgid "Attendees List"
1393
  msgstr "Limite de Participants"
1394
 
1395
  #: app/features/events.php:3321 app/features/events.php:3513
1396
- #: app/features/events.php:3555 app/features/ix.php:3373
1397
- #: app/features/ix.php:3414 app/features/locations.php:58
1398
  #: app/features/locations.php:230 app/features/locations.php:287
1399
  #: app/features/locations.php:289 app/features/locations.php:298
1400
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1411,8 +1411,8 @@ msgstr "Limite de Participants"
1411
  #: app/features/mec/meta_boxes/search_form.php:679
1412
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1413
  #: app/features/search.php:71 app/libraries/main.php:2236
1414
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1415
- #: app/skins/single.php:487 app/skins/single.php:918
1416
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1417
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1418
  #: app/skins/single/modern.php:97
@@ -1453,14 +1453,14 @@ msgid "Duplicate"
1453
  msgstr "Dupliquer"
1454
 
1455
  #: app/features/events.php:3513 app/features/events.php:3555
1456
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1457
  #: app/features/labels.php:177 app/features/locations.php:229
1458
- #: app/features/organizers.php:203 app/features/speakers.php:253
1459
  msgid "ID"
1460
  msgstr "ID"
1461
 
1462
  #: app/features/events.php:3513 app/features/events.php:3555
1463
- #: app/features/ix.php:3373 app/features/ix.php:3414
1464
  msgid "Link"
1465
  msgstr "Lien"
1466
 
@@ -1476,7 +1476,7 @@ msgstr "%s mail"
1476
 
1477
  #: app/features/events.php:3808 app/features/fes.php:223
1478
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1479
- #: app/libraries/main.php:5294
1480
  msgid "Ticket"
1481
  msgstr "Billets"
1482
 
@@ -1652,8 +1652,8 @@ msgstr "Supprimer l'image"
1652
 
1653
  #: app/features/fes/form.php:783 app/features/labels.php:61
1654
  #: app/features/labels.php:221 app/features/mec.php:403
1655
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1656
- #: app/skins/single.php:696 app/skins/single/default.php:155
1657
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1658
  #: app/skins/single/modern.php:223
1659
  msgid "Labels"
@@ -1732,75 +1732,75 @@ msgstr ""
1732
  msgid "The events are imported successfully!"
1733
  msgstr ""
1734
 
1735
- #: app/features/ix.php:806
1736
  msgid "Third Party plugin is not installed and activated!"
1737
  msgstr ""
1738
 
1739
- #: app/features/ix.php:829
1740
  msgid "Third Party plugin is invalid!"
1741
  msgstr ""
1742
 
1743
- #: app/features/ix.php:2580 app/features/ix.php:2638
1744
  msgid "Both of API key and Calendar ID are required!"
1745
  msgstr "La clé API et le Calendar ID sont requis !"
1746
 
1747
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1748
  msgid "Please select some events to import!"
1749
  msgstr "Merci de sélectionner les évènements à Importer !"
1750
 
1751
- #: app/features/ix.php:2994 app/features/ix.php:3057
1752
  #, fuzzy
1753
  #| msgid "Both of API key and Calendar ID are required!"
1754
  msgid "Both of API key and Group URL are required!"
1755
  msgstr "La clé API et le Calendar ID sont requis !"
1756
 
1757
- #: app/features/ix.php:3296
1758
  msgid "Check at Meetup"
1759
  msgstr ""
1760
 
1761
- #: app/features/ix.php:3373 app/features/ix.php:3414
1762
  msgid "Organizer Tel"
1763
  msgstr "Teléphone de l'organisateur"
1764
 
1765
- #: app/features/ix.php:3373 app/features/ix.php:3414
1766
  msgid "Organizer Email"
1767
  msgstr "Mail de l'organisateur"
1768
 
1769
- #: app/features/ix.php:3495
1770
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1771
  msgstr "Les Clients ID, Client Secret et Calendar ID sont requis !"
1772
 
1773
- #: app/features/ix.php:3518
1774
  #, php-format
1775
  msgid "All seems good! Please click %s for authenticating your app."
1776
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
1777
 
1778
- #: app/features/ix.php:3572
1779
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1780
  msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
1781
 
1782
- #: app/features/ix.php:3688
1783
  #, php-format
1784
  msgid "%s events added to Google Calendar successfully."
1785
  msgstr "%s évènements ajoutés à Google Agenda avec succès."
1786
 
1787
- #: app/features/ix.php:3689
1788
  #, php-format
1789
  msgid "%s previously added events get updated."
1790
  msgstr "%s évènements précédemment ajoutés ont été mis à jour."
1791
 
1792
- #: app/features/ix.php:3690
1793
  #, php-format
1794
  msgid "%s events failed to add for following reasons: %s"
1795
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
1796
 
1797
- #: app/features/ix.php:3722
1798
  #, fuzzy
1799
  #| msgid "Please insert your facebook page's link."
1800
  msgid "Please insert your Facebook page's link."
1801
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
1802
 
1803
- #: app/features/ix.php:3731
1804
  #, fuzzy
1805
  #| msgid ""
1806
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -1812,11 +1812,11 @@ msgstr ""
1812
  "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
1813
  "une adresse Facebook Page valide."
1814
 
1815
- #: app/features/ix.php:3763
1816
  msgid "Please insert your facebook page's link."
1817
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
1818
 
1819
- #: app/features/ix.php:3768
1820
  msgid ""
1821
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1822
  "valid facebook page link."
@@ -1989,14 +1989,15 @@ msgstr "Basculer"
1989
  #: app/features/ix/export_g_calendar.php:72
1990
  #: app/features/ix/export_g_calendar.php:147
1991
  #: app/features/ix/export_g_calendar.php:164
1992
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
1993
- #: app/features/mec/notifications.php:213
1994
- #: app/features/mec/notifications.php:420
 
1995
  msgid "Add to Google Calendar"
1996
  msgstr "Ajouter à Google Agenda"
1997
 
1998
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1999
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
2000
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2001
  msgid "Checking ..."
2002
  msgstr "Vérification..."
@@ -2271,7 +2272,7 @@ msgstr "Import auto depuis Google Agenda"
2271
 
2272
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2273
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2274
- #: app/features/mec/notifications.php:361
2275
  msgid "Important Note"
2276
  msgstr "Note Importante"
2277
 
@@ -2461,7 +2462,7 @@ msgid "Featured"
2461
  msgstr "Image Principale"
2462
 
2463
  #: app/features/labels.php:118 app/features/labels.php:143
2464
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2465
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2466
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2467
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2480,7 +2481,7 @@ msgid "You can show featured and canceled events by a different style!"
2480
  msgstr ""
2481
 
2482
  #: app/features/labels.php:180 app/features/locations.php:232
2483
- #: app/features/organizers.php:206 app/features/speakers.php:257
2484
  #: app/modules/booking/steps/tickets.php:38
2485
  msgid "Count"
2486
  msgstr "Apparition"
@@ -2497,7 +2498,7 @@ msgstr "%s événement"
2497
 
2498
  #: app/features/locations.php:59 app/features/mec.php:404
2499
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2500
- #: app/libraries/main.php:5263
2501
  msgid "Locations"
2502
  msgstr "Lieux"
2503
 
@@ -2530,13 +2531,13 @@ msgstr "longitude Geo (Facultatif)"
2530
 
2531
  #: app/features/locations.php:138 app/features/locations.php:180
2532
  #: app/features/organizers.php:127 app/features/organizers.php:160
2533
- #: app/features/speakers.php:158 app/features/speakers.php:203
2534
  msgid "Thumbnail"
2535
  msgstr "Miniature"
2536
 
2537
  #: app/features/locations.php:143 app/features/locations.php:183
2538
  #: app/features/organizers.php:132 app/features/organizers.php:163
2539
- #: app/features/speakers.php:163 app/features/speakers.php:206
2540
  msgid "Upload/Add image"
2541
  msgstr "Mettre en ligne une image"
2542
 
@@ -2544,7 +2545,7 @@ msgstr "Mettre en ligne une image"
2544
  #: app/features/locations.php:340 app/features/locations.php:347
2545
  #: app/features/organizers.php:133 app/features/organizers.php:164
2546
  #: app/features/organizers.php:299 app/features/organizers.php:306
2547
- #: app/features/speakers.php:164 app/features/speakers.php:207
2548
  msgid "Remove image"
2549
  msgstr "Supprimer l'image"
2550
 
@@ -2604,7 +2605,7 @@ msgstr "Choisir une image"
2604
  msgid "Don't show map in single event page"
2605
  msgstr "Ne pas afficher de carte pour cet événement"
2606
 
2607
- #: app/features/locations.php:356 app/libraries/main.php:5297
2608
  #, fuzzy
2609
  #| msgid "Search Locations"
2610
  msgid "Other Locations"
@@ -2634,7 +2635,7 @@ msgstr ""
2634
  msgid "Troubleshooting"
2635
  msgstr ""
2636
 
2637
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2638
  #, php-format
2639
  msgid "%s to %s"
2640
  msgstr "%s en %s"
@@ -2670,7 +2671,7 @@ msgstr "Aide"
2670
 
2671
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2672
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2673
- #: app/libraries/main.php:5265
2674
  msgid "Organizers"
2675
  msgstr "Organisateurs"
2676
 
@@ -2791,10 +2792,10 @@ msgstr "Rechercher %s"
2791
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2792
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2793
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2794
- #: app/features/mec/notifications.php:531
2795
- #: app/features/mec/notifications.php:543
2796
- #: app/features/mec/notifications.php:639
2797
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2798
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2799
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2800
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2915,7 +2916,7 @@ msgstr ""
2915
  msgid "Enable Express Attendees Form"
2916
  msgstr ""
2917
 
2918
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2919
  msgid "Attendees Form"
2920
  msgstr "Formulaire de réservation"
2921
 
@@ -2949,7 +2950,7 @@ msgstr "Vérification automatique pour les réservations gratuites"
2949
  msgid "Auto verification for paid bookings"
2950
  msgstr "Vérification automatique des réservations payées"
2951
 
2952
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2953
  #: app/libraries/main.php:579
2954
  msgid "Booking Confirmation"
2955
  msgstr "Confirmation de réservation"
@@ -3017,14 +3018,14 @@ msgid ""
3017
  msgstr ""
3018
 
3019
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3020
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
3021
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3022
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3023
  msgid "Saved"
3024
  msgstr "Sauvegardé"
3025
 
3026
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3027
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
3028
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3029
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3030
  msgid "Settings Saved!"
@@ -3032,15 +3033,15 @@ msgstr ""
3032
 
3033
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3034
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3035
- #: app/features/mec/notifications.php:620
3036
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
3037
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3038
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
3039
  msgid "Verified"
3040
  msgstr "Vérifié"
3041
 
3042
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3043
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
3044
  #: app/features/mec/single.php:291
3045
  msgid "Please Refresh Page"
3046
  msgstr "Merci de Rafraichir la Page"
@@ -4186,8 +4187,8 @@ msgstr "Désactivé"
4186
  #: app/features/mec/meta_boxes/search_form.php:693
4187
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4188
  #: app/features/search.php:79 app/features/speakers.php:61
4189
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4190
- #: app/libraries/skins.php:928
4191
  msgid "Speaker"
4192
  msgstr ""
4193
 
@@ -4203,7 +4204,7 @@ msgstr ""
4203
  #: app/features/mec/meta_boxes/search_form.php:603
4204
  #: app/features/mec/meta_boxes/search_form.php:700
4205
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4206
- #: app/features/search.php:83 app/libraries/skins.php:954
4207
  #, fuzzy
4208
  #| msgid "Tags"
4209
  msgid "Tag"
@@ -4465,344 +4466,433 @@ msgid "It sends to attendee after booking for notifying him/her."
4465
  msgstr ""
4466
  "Elle est envoyée aux participants après leur réservation pour les avertir."
4467
 
4468
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4469
- #: app/features/mec/notifications.php:161
4470
- #: app/features/mec/notifications.php:229
4471
- #: app/features/mec/notifications.php:299
4472
- #: app/features/mec/notifications.php:364
4473
- #: app/features/mec/notifications.php:445
4474
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4475
  msgid "Email Subject"
4476
  msgstr "Sujet"
4477
 
4478
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4479
- #: app/features/mec/notifications.php:109
4480
- #: app/features/mec/notifications.php:113
4481
- #: app/features/mec/notifications.php:165
4482
- #: app/features/mec/notifications.php:169
4483
- #: app/features/mec/notifications.php:233
4484
- #: app/features/mec/notifications.php:237
4485
- #: app/features/mec/notifications.php:303
4486
- #: app/features/mec/notifications.php:307
4487
- #: app/features/mec/notifications.php:368
4488
- #: app/features/mec/notifications.php:372
4489
- #: app/features/mec/notifications.php:383
4490
- #: app/features/mec/notifications.php:449
4491
- #: app/features/mec/notifications.php:453
4492
- #: app/features/mec/notifications.php:497
4493
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4494
  msgid "Custom Recipients"
4495
  msgstr "Destinataires personnalisés"
4496
 
4497
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4498
- #: app/features/mec/notifications.php:170
4499
- #: app/features/mec/notifications.php:238
4500
- #: app/features/mec/notifications.php:308
4501
- #: app/features/mec/notifications.php:373
4502
- #: app/features/mec/notifications.php:384
4503
- #: app/features/mec/notifications.php:454
4504
- #: app/features/mec/notifications.php:502
4505
  msgid "Insert comma separated emails for multiple recipients."
4506
  msgstr ""
4507
  "Insérez une virgule entre chaque emails pour séparés plusieurs destinataires."
4508
 
4509
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4510
- #: app/features/mec/notifications.php:315
4511
  msgid "Send the email to event organizer"
4512
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4513
 
4514
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4515
- #: app/features/mec/notifications.php:180
4516
- #: app/features/mec/notifications.php:256
4517
- #: app/features/mec/notifications.php:318
4518
- #: app/features/mec/notifications.php:390
4519
- #: app/features/mec/notifications.php:460
4520
- #: app/features/mec/notifications.php:508
4521
  msgid "Email Content"
4522
  msgstr "Contenu de l'email"
4523
 
4524
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4525
- #: app/features/mec/notifications.php:183
4526
- #: app/features/mec/notifications.php:259
4527
- #: app/features/mec/notifications.php:321
4528
- #: app/features/mec/notifications.php:393
4529
- #: app/features/mec/notifications.php:463
4530
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4531
  msgid "You can use following placeholders"
4532
  msgstr "Vous pouvez utiliser les variables suivantes"
4533
 
4534
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4535
- #: app/features/mec/notifications.php:185
4536
- #: app/features/mec/notifications.php:261
4537
- #: app/features/mec/notifications.php:323
4538
- #: app/features/mec/notifications.php:395
 
4539
  msgid "First name of attendee"
4540
  msgstr "Prénom du participant"
4541
 
4542
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4543
- #: app/features/mec/notifications.php:186
4544
- #: app/features/mec/notifications.php:262
4545
- #: app/features/mec/notifications.php:324
4546
- #: app/features/mec/notifications.php:396
 
4547
  msgid "Last name of attendee"
4548
  msgstr "Nom du participant"
4549
 
4550
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4551
- #: app/features/mec/notifications.php:187
4552
- #: app/features/mec/notifications.php:263
4553
- #: app/features/mec/notifications.php:325
4554
- #: app/features/mec/notifications.php:397
 
4555
  msgid "Email of attendee"
4556
  msgstr "Email du participant"
4557
 
4558
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4559
- #: app/features/mec/notifications.php:188
4560
- #: app/features/mec/notifications.php:264
4561
- #: app/features/mec/notifications.php:326
4562
- #: app/features/mec/notifications.php:398
 
4563
  msgid "Booked date of event"
4564
  msgstr "Date de réservation"
4565
 
4566
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4567
- #: app/features/mec/notifications.php:189
4568
- #: app/features/mec/notifications.php:265
4569
- #: app/features/mec/notifications.php:327
4570
- #: app/features/mec/notifications.php:399
 
4571
  #, fuzzy
4572
  #| msgid "Booked date of event"
4573
  msgid "Booked time of event"
4574
  msgstr "Date de réservation"
4575
 
4576
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4577
- #: app/features/mec/notifications.php:190
4578
- #: app/features/mec/notifications.php:266
4579
- #: app/features/mec/notifications.php:328
4580
- #: app/features/mec/notifications.php:400
 
4581
  msgid "Booking Price"
4582
  msgstr "Prix de la réservation"
4583
 
4584
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4585
- #: app/features/mec/notifications.php:191
4586
- #: app/features/mec/notifications.php:267
4587
- #: app/features/mec/notifications.php:329
4588
- #: app/features/mec/notifications.php:401
 
4589
  msgid "Date and time of placing booking"
4590
  msgstr ""
4591
 
4592
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4593
- #: app/features/mec/notifications.php:192
4594
- #: app/features/mec/notifications.php:268
4595
- #: app/features/mec/notifications.php:330
4596
- #: app/features/mec/notifications.php:402
4597
- #: app/features/mec/notifications.php:471
4598
- #: app/features/mec/notifications.php:519
 
4599
  msgid "Your website title"
4600
  msgstr "Titre de votre site"
4601
 
4602
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4603
- #: app/features/mec/notifications.php:193
4604
- #: app/features/mec/notifications.php:269
4605
- #: app/features/mec/notifications.php:331
4606
- #: app/features/mec/notifications.php:403
4607
- #: app/features/mec/notifications.php:472
4608
- #: app/features/mec/notifications.php:520
 
4609
  msgid "Your website URL"
4610
  msgstr "URL de votre site"
4611
 
4612
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4613
- #: app/features/mec/notifications.php:194
4614
- #: app/features/mec/notifications.php:270
4615
- #: app/features/mec/notifications.php:332
4616
- #: app/features/mec/notifications.php:404
4617
- #: app/features/mec/notifications.php:473
4618
- #: app/features/mec/notifications.php:521
 
4619
  msgid "Your website description"
4620
  msgstr "Description de votre site"
4621
 
4622
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4623
- #: app/features/mec/notifications.php:195
4624
- #: app/features/mec/notifications.php:271
4625
- #: app/features/mec/notifications.php:333
4626
- #: app/features/mec/notifications.php:405
 
4627
  msgid "Event title"
4628
  msgstr "Nom de l'événement"
4629
 
4630
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4631
- #: app/features/mec/notifications.php:196
4632
- #: app/features/mec/notifications.php:272
4633
- #: app/features/mec/notifications.php:334
4634
- #: app/features/mec/notifications.php:406
 
4635
  #, fuzzy
4636
  #| msgid "Event Link"
4637
  msgid "Event link"
4638
  msgstr "Lien de l'événement"
4639
 
4640
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4641
- #: app/features/mec/notifications.php:197
4642
- #: app/features/mec/notifications.php:467
4643
- #: app/features/mec/notifications.php:515
 
4644
  #, fuzzy
4645
  #| msgid "Start Date"
4646
  msgid "Event Start Date"
4647
  msgstr "Date de début"
4648
 
4649
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4650
- #: app/features/mec/notifications.php:198
4651
- #: app/features/mec/notifications.php:468
4652
- #: app/features/mec/notifications.php:516
 
4653
  #, fuzzy
4654
  #| msgid "End Date"
4655
  msgid "Event End Date"
4656
  msgstr "Date de fin"
4657
 
4658
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4659
- #: app/features/mec/notifications.php:199
4660
- #: app/features/mec/notifications.php:273
4661
- #: app/features/mec/notifications.php:335
4662
- #: app/features/mec/notifications.php:407
 
4663
  #, fuzzy
4664
  #| msgid "Organizer name of booked event"
4665
  msgid "Speaker name of booked event"
4666
  msgstr "Organisateur de l'événement réservé"
4667
 
4668
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4669
- #: app/features/mec/notifications.php:200
4670
- #: app/features/mec/notifications.php:274
4671
- #: app/features/mec/notifications.php:336
4672
- #: app/features/mec/notifications.php:408
 
4673
  msgid "Organizer name of booked event"
4674
  msgstr "Organisateur de l'événement réservé"
4675
 
4676
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4677
- #: app/features/mec/notifications.php:201
4678
- #: app/features/mec/notifications.php:275
4679
- #: app/features/mec/notifications.php:337
4680
- #: app/features/mec/notifications.php:409
 
4681
  msgid "Organizer tel of booked event"
4682
  msgstr "Tel de l'organisateur de l'événement réservé"
4683
 
4684
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4685
- #: app/features/mec/notifications.php:202
4686
- #: app/features/mec/notifications.php:276
4687
- #: app/features/mec/notifications.php:338
4688
- #: app/features/mec/notifications.php:410
 
4689
  msgid "Organizer email of booked event"
4690
  msgstr "Email de l'organisateur de l'événement réservé"
4691
 
4692
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4693
- #: app/features/mec/notifications.php:203
4694
- #: app/features/mec/notifications.php:277
4695
- #: app/features/mec/notifications.php:339
4696
- #: app/features/mec/notifications.php:411
 
4697
  msgid "Location name of booked event"
4698
  msgstr "Nom du lieu de l'événement réservé"
4699
 
4700
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4701
- #: app/features/mec/notifications.php:204
4702
- #: app/features/mec/notifications.php:278
4703
- #: app/features/mec/notifications.php:340
4704
- #: app/features/mec/notifications.php:412
 
4705
  msgid "Location address of booked event"
4706
  msgstr "Adresse lieu de l'événement réservé"
4707
 
4708
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4709
- #: app/features/mec/notifications.php:205
4710
- #: app/features/mec/notifications.php:279
4711
- #: app/features/mec/notifications.php:341
4712
- #: app/features/mec/notifications.php:413
 
4713
  #, fuzzy
4714
  #| msgid "Organizer name of booked event"
4715
  msgid "Featured image of booked event"
4716
  msgstr "Organisateur de l'événement réservé"
4717
 
4718
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4719
- #: app/features/mec/notifications.php:343
 
4720
  msgid "Full Attendee info such as booking form data, name, email etc."
4721
  msgstr ""
4722
  "Information complète des participants tels que les données de formulaire de "
4723
  "réservation, nom, email, etc."
4724
 
4725
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4726
- #: app/features/mec/notifications.php:415
 
4727
  msgid "Invoice Link"
4728
  msgstr ""
4729
 
4730
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4731
- #: app/features/mec/notifications.php:208
4732
- #: app/features/mec/notifications.php:282
4733
- #: app/features/mec/notifications.php:344
4734
- #: app/features/mec/notifications.php:416
 
4735
  msgid "Total Attendees"
4736
  msgstr "Nombre total de participants"
4737
 
4738
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4739
- #: app/features/mec/notifications.php:210
4740
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4741
  #, fuzzy
4742
  #| msgid "Ticket Name"
4743
  msgid "Ticket name"
4744
  msgstr "Nom du billet"
4745
 
4746
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4747
- #: app/features/mec/notifications.php:211
4748
- #: app/features/mec/notifications.php:418
 
4749
  #, fuzzy
4750
  #| msgid "Ticket Name"
4751
  msgid "Ticket time"
4752
  msgstr "Nom du billet"
4753
 
4754
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4755
- #: app/features/mec/notifications.php:212
4756
- #: app/features/mec/notifications.php:419
 
4757
  msgid "Download ICS file"
4758
  msgstr ""
4759
 
4760
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4761
  msgid "Booking Verification"
4762
  msgstr "Vérification de réservation"
4763
 
4764
- #: app/features/mec/notifications.php:103
4765
  msgid "It sends to attendee email for verifying their booking/email."
4766
  msgstr "Envoyé par mail au participant pour vérification de réservation/email."
4767
 
4768
- #: app/features/mec/notifications.php:146
4769
  msgid "Email/Booking verification link."
4770
  msgstr "Vérification des réservations."
4771
 
4772
- #: app/features/mec/notifications.php:159
4773
  msgid "It sends to attendee after confirming the booking by admin."
4774
  msgstr ""
4775
  "Vous envoie un mail vous avertissant lorsqu'un visiteur confirme sa demande "
4776
  "d'ajout d'événement."
4777
 
4778
- #: app/features/mec/notifications.php:177
4779
  msgid "Send One Single Email Only To First Attendee"
4780
  msgstr ""
4781
 
4782
- #: app/features/mec/notifications.php:206
4783
- #: app/features/mec/notifications.php:414
4784
  msgid "Booking cancellation link."
4785
  msgstr "Lien d'annulation de la réservation."
4786
 
4787
- #: app/features/mec/notifications.php:209
4788
- #, fuzzy
4789
- #| msgid "Amount (Per Ticket)"
4790
- msgid "Amount Tickets"
4791
- msgstr "Montant (par Billet)"
4792
-
4793
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4794
  #, fuzzy
4795
  #| msgid "Booking cancellation link."
4796
  msgid "Booking Cancellation"
4797
  msgstr "Lien d'annulation de la réservation."
4798
 
4799
- #: app/features/mec/notifications.php:223
4800
  #, fuzzy
4801
  #| msgid "Enable new event notification"
4802
  msgid "Enable cancellation notification"
4803
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4804
 
4805
- #: app/features/mec/notifications.php:227
4806
  #, fuzzy
4807
  #| msgid "It sends to attendee after booking for notifying him/her."
4808
  msgid ""
@@ -4811,50 +4901,50 @@ msgid ""
4811
  msgstr ""
4812
  "Elle est envoyée aux participants après leur réservation pour les avertir."
4813
 
4814
- #: app/features/mec/notifications.php:245
4815
- #: app/features/mec/notifications.php:439
4816
  #, fuzzy
4817
  #| msgid "Send the email to event organizer"
4818
  msgid "Send the email to admin"
4819
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4820
 
4821
- #: app/features/mec/notifications.php:253
4822
  #, fuzzy
4823
  #| msgid "Send the email to event organizer"
4824
  msgid "Send the email to booking user"
4825
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4826
 
4827
- #: app/features/mec/notifications.php:280
4828
- #: app/features/mec/notifications.php:342
4829
  msgid "Admin booking management link."
4830
  msgstr "Administrateur lien de gestion des réservations."
4831
 
4832
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4833
  msgid "Admin"
4834
  msgstr ""
4835
 
4836
- #: app/features/mec/notifications.php:293
4837
  #, fuzzy
4838
  #| msgid "Enable new event notification"
4839
  msgid "Enable admin notification"
4840
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4841
 
4842
- #: app/features/mec/notifications.php:297
4843
  msgid "It sends to admin to notify him/her that a new booking received."
4844
  msgstr ""
4845
  "Il est envoyé à admin pour l'informer qu'il y a une nouvelle réservation "
4846
  "reçue."
4847
 
4848
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4849
- #: app/libraries/notifications.php:548
4850
  msgid "Booking Reminder"
4851
  msgstr ""
4852
 
4853
- #: app/features/mec/notifications.php:355
4854
  msgid "Enable booking reminder notification"
4855
  msgstr ""
4856
 
4857
- #: app/features/mec/notifications.php:361
4858
  #, php-format
4859
  msgid ""
4860
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4862,24 +4952,24 @@ msgid ""
4862
  "send the reminders multiple times."
4863
  msgstr ""
4864
 
4865
- #: app/features/mec/notifications.php:361
4866
  msgid "only once per day"
4867
  msgstr ""
4868
 
4869
- #: app/features/mec/notifications.php:379
4870
  msgid "Days"
4871
  msgstr ""
4872
 
4873
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4874
  #: app/libraries/main.php:583
4875
  msgid "New Event"
4876
  msgstr "Nouvel événement"
4877
 
4878
- #: app/features/mec/notifications.php:433
4879
  msgid "Enable new event notification"
4880
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4881
 
4882
- #: app/features/mec/notifications.php:443
4883
  msgid ""
4884
  "It sends after adding a new event from frontend event submission or from "
4885
  "website backend."
@@ -4887,47 +4977,47 @@ msgstr ""
4887
  "S'envoie lorsqu'un nouvel événement est ajouté depuis le formulaire de "
4888
  "soumission ou depuis le tableau de bord du site."
4889
 
4890
- #: app/features/mec/notifications.php:465
4891
- #: app/features/mec/notifications.php:513
4892
  msgid "Title of event"
4893
  msgstr "Titre de l'événement"
4894
 
4895
- #: app/features/mec/notifications.php:466
4896
- #: app/features/mec/notifications.php:514
4897
  #, fuzzy
4898
  #| msgid "Title of event"
4899
  msgid "Link of event"
4900
  msgstr "Titre de l'événement"
4901
 
4902
- #: app/features/mec/notifications.php:469
4903
- #: app/features/mec/notifications.php:517
4904
  msgid "Status of event"
4905
  msgstr "Statut de l'événement"
4906
 
4907
- #: app/features/mec/notifications.php:470
4908
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4909
  #: app/features/mec/settings.php:738
4910
  msgid "Event Note"
4911
  msgstr "Note sur l'événement"
4912
 
4913
- #: app/features/mec/notifications.php:474
4914
- #: app/features/mec/notifications.php:522
4915
  msgid "Admin events management link."
4916
  msgstr "Lien d'administration d'événements."
4917
 
4918
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4919
  #, fuzzy
4920
  #| msgid "The event published."
4921
  msgid "User Event Publishing"
4922
  msgstr "Événement Publié."
4923
 
4924
- #: app/features/mec/notifications.php:487
4925
  #, fuzzy
4926
  #| msgid "Enable new event notification"
4927
  msgid "Enable user event publishing notification"
4928
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4929
 
4930
- #: app/features/mec/notifications.php:491
4931
  #, fuzzy
4932
  #| msgid ""
4933
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5110,7 +5200,7 @@ msgid "You can enable/disable Schema scripts"
5110
  msgstr ""
5111
 
5112
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5113
- #: app/libraries/main.php:5272
5114
  msgid "Weekdays"
5115
  msgstr "Jours de la Semaine"
5116
 
@@ -6395,12 +6485,12 @@ msgstr "ex : votre@surnom.com"
6395
  msgid "eg. https://webnus.net"
6396
  msgstr "eg. https://webnus.net"
6397
 
6398
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6399
- #: app/skins/single.php:856
6400
  msgid "Other Organizers"
6401
  msgstr "Autres organisateurs"
6402
 
6403
- #: app/features/organizers.php:313
6404
  msgid ""
6405
  "You can select extra organizers in addition to main organizer if you like."
6406
  msgstr ""
@@ -6423,7 +6513,7 @@ msgstr "Votre réservation ne peut être annulée."
6423
  msgid "#"
6424
  msgstr ""
6425
 
6426
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6427
  msgid "Status"
6428
  msgstr ""
6429
 
@@ -6460,7 +6550,7 @@ msgstr ""
6460
  msgid "No bookings found!"
6461
  msgstr "Aucune réservation trouvée !"
6462
 
6463
- #: app/features/search.php:87 app/libraries/main.php:5262
6464
  msgid "label"
6465
  msgstr "texte"
6466
 
@@ -6486,76 +6576,94 @@ msgid "No search result."
6486
  msgstr ""
6487
 
6488
  #: app/features/search_bar/search_result.php:11
6489
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6490
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6491
- #: app/skins/single.php:160 app/skins/single.php:747
6492
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6493
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6494
  msgid "All of the day"
6495
  msgstr "Toute la journée"
6496
 
6497
- #: app/features/speakers.php:110 app/features/speakers.php:179
6498
- #: app/features/speakers.php:255
6499
  #, fuzzy
6500
  #| msgid "Title"
6501
  msgid "Job Title"
6502
  msgstr "Titre"
6503
 
6504
- #: app/features/speakers.php:113 app/features/speakers.php:180
6505
  msgid "Insert speaker job title."
6506
  msgstr ""
6507
 
6508
- #: app/features/speakers.php:121 app/features/speakers.php:184
6509
  #, fuzzy
6510
  #| msgid "Insert organizer phone number."
6511
  msgid "Insert speaker phone number."
6512
  msgstr "Ajouter le numéro de téléphone de l'organisateur."
6513
 
6514
- #: app/features/speakers.php:129 app/features/speakers.php:188
6515
  #, fuzzy
6516
  #| msgid "Insert organizer email address."
6517
  msgid "Insert speaker email address."
6518
  msgstr "Ajouter l'email de l'organisateur."
6519
 
6520
- #: app/features/speakers.php:134 app/features/speakers.php:191
6521
  #, fuzzy
6522
  #| msgid "Facebook Page Link"
6523
  msgid "Facebook Page"
6524
  msgstr "URL Page Facebook"
6525
 
6526
- #: app/features/speakers.php:137 app/features/speakers.php:192
6527
  #, fuzzy
6528
  #| msgid "Import from Facebook Calendar"
6529
  msgid "Insert URL of Facebook Page"
6530
  msgstr "Importer depuis Calendrier Facebook"
6531
 
6532
- #: app/features/speakers.php:142 app/features/speakers.php:195
6533
  msgid "Instagram"
6534
  msgstr ""
6535
 
6536
- #: app/features/speakers.php:145 app/features/speakers.php:196
6537
  #, fuzzy
6538
  #| msgid "Insert -1 for unlimited usage"
6539
  msgid "Insert URL of Instagram"
6540
  msgstr "Entrez -1 pour un nombre illimité de participant"
6541
 
6542
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6543
  #, fuzzy
6544
  #| msgid "Twitter"
6545
  msgid "Twitter Page"
6546
  msgstr "Twitter"
6547
 
6548
- #: app/features/speakers.php:153 app/features/speakers.php:200
6549
  #, fuzzy
6550
  #| msgid "Insert -1 for unlimited usage"
6551
  msgid "Insert URL of Twitter Page"
6552
  msgstr "Entrez -1 pour un nombre illimité de participant"
6553
 
6554
- #: app/features/speakers.php:315
 
 
 
 
 
 
6555
  msgid "Sorry, You must insert speaker name!"
6556
  msgstr ""
6557
 
6558
- #: app/features/speakers.php:364
6559
  msgid ""
6560
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6561
  "section and speaker widget section!"
@@ -6715,31 +6823,31 @@ msgstr "Vue sur Slider"
6715
  msgid "Tile View"
6716
  msgstr "Vue sur Slider"
6717
 
6718
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6719
  msgid "SU"
6720
  msgstr "DIM."
6721
 
6722
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6723
  msgid "MO"
6724
  msgstr "LUN."
6725
 
6726
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6727
  msgid "TU"
6728
  msgstr "MAR."
6729
 
6730
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6731
  msgid "WE"
6732
  msgstr "MER."
6733
 
6734
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6735
  msgid "TH"
6736
  msgstr "JEU."
6737
 
6738
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6739
  msgid "FR"
6740
  msgstr "VEN."
6741
 
6742
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6743
  msgid "SA"
6744
  msgstr "SAM."
6745
 
@@ -7006,173 +7114,173 @@ msgstr "Requête invalide !"
7006
  msgid "iCal export stopped!"
7007
  msgstr "Export vers iCal arrêté !"
7008
 
7009
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
7010
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
7011
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
7012
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
7013
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
7014
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
7015
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
7016
  msgid "Sort"
7017
  msgstr "Trier"
7018
 
7019
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
7020
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
7021
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
7022
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
7023
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
7024
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
7025
  msgid "Required Field"
7026
  msgstr "Champ obligatoire"
7027
 
7028
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
7029
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
7030
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
7031
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
7032
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
7033
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
7034
  msgid "Insert a label for this field"
7035
  msgstr "Insérez une label pour ce champ"
7036
 
7037
- #: app/libraries/main.php:2958
7038
  msgid "HTML and shortcode are allowed."
7039
  msgstr "HTML et shortcode sont autorisés."
7040
 
7041
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
7042
- #: app/libraries/main.php:3089
7043
  msgid "Option"
7044
  msgstr "Option"
7045
 
7046
- #: app/libraries/main.php:3123
7047
  #, php-format
7048
  msgid "Instead of %s, the page title with a link will be show."
7049
  msgstr ""
7050
 
7051
- #: app/libraries/main.php:3125
7052
  msgid "Agreement Page"
7053
  msgstr ""
7054
 
7055
- #: app/libraries/main.php:3136
7056
  msgid "Checked by default"
7057
  msgstr ""
7058
 
7059
- #: app/libraries/main.php:3137
7060
  msgid "Unchecked by default"
7061
  msgstr ""
7062
 
7063
- #: app/libraries/main.php:3160
7064
  msgid "Insert a label for this option"
7065
  msgstr "Insérez une étiquette pour cette option"
7066
 
7067
- #: app/libraries/main.php:3175
7068
  msgid "Free"
7069
  msgstr "Gratuite"
7070
 
7071
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
7072
  #, fuzzy
7073
  #| msgid "M.E. Calendar"
7074
  msgid "M.E. Calender"
7075
  msgstr "M.E Calendrier"
7076
 
7077
- #: app/libraries/main.php:3936
7078
  #, php-format
7079
  msgid "Copy of %s"
7080
  msgstr "Copie de %s"
7081
 
7082
- #: app/libraries/main.php:4651
7083
  msgid "Booked an event."
7084
  msgstr "Réserver un événement"
7085
 
7086
- #: app/libraries/main.php:4692
7087
  #, php-format
7088
  msgid "%s booked %s event."
7089
  msgstr "%s réservé %s événement"
7090
 
7091
- #: app/libraries/main.php:5257
7092
  msgid "Taxonomies"
7093
  msgstr "Taxonomies"
7094
 
7095
- #: app/libraries/main.php:5259
7096
  msgid "Category Plural Label"
7097
  msgstr "Catégorie au pluriel"
7098
 
7099
- #: app/libraries/main.php:5260
7100
  msgid "Category Singular Label"
7101
  msgstr "Catégorie au singulier"
7102
 
7103
- #: app/libraries/main.php:5261
7104
  msgid "Label Plural Label"
7105
  msgstr "Étiquettes au pluriel"
7106
 
7107
- #: app/libraries/main.php:5262
7108
  msgid "Label Singular Label"
7109
  msgstr "Étiquettes au singulier"
7110
 
7111
- #: app/libraries/main.php:5263
7112
  msgid "Location Plural Label"
7113
  msgstr "Lieu au pluriel"
7114
 
7115
- #: app/libraries/main.php:5264
7116
  msgid "Location Singular Label"
7117
  msgstr "Lieu au singulier"
7118
 
7119
- #: app/libraries/main.php:5265
7120
  msgid "Organizer Plural Label"
7121
  msgstr "Organisateur au pluriel"
7122
 
7123
- #: app/libraries/main.php:5266
7124
  msgid "Organizer Singular Label"
7125
  msgstr "Organisateur au singulier"
7126
 
7127
- #: app/libraries/main.php:5267
7128
  #, fuzzy
7129
  #| msgid "Label Plural Label"
7130
  msgid "Speaker Plural Label"
7131
  msgstr "Étiquettes au pluriel"
7132
 
7133
- #: app/libraries/main.php:5268
7134
  #, fuzzy
7135
  #| msgid "Label Singular Label"
7136
  msgid "Speaker Singular Label"
7137
  msgstr "Étiquettes au singulier"
7138
 
7139
- #: app/libraries/main.php:5274
7140
  msgid "Sunday abbreviation"
7141
  msgstr "Abréviation de Dimanche"
7142
 
7143
- #: app/libraries/main.php:5275
7144
  msgid "Monday abbreviation"
7145
  msgstr "Abréviation de Lundi"
7146
 
7147
- #: app/libraries/main.php:5276
7148
  msgid "Tuesday abbreviation"
7149
  msgstr "Abréviation de Mardi"
7150
 
7151
- #: app/libraries/main.php:5277
7152
  msgid "Wednesday abbreviation"
7153
  msgstr "Abréviation de Mercredi"
7154
 
7155
- #: app/libraries/main.php:5278
7156
  msgid "Thursday abbreviation"
7157
  msgstr "Abréviation de Jeudi"
7158
 
7159
- #: app/libraries/main.php:5279
7160
  msgid "Friday abbreviation"
7161
  msgstr "Abréviation de Vendredi"
7162
 
7163
- #: app/libraries/main.php:5280
7164
  msgid "Saturday abbreviation"
7165
  msgstr "Abréviation de Samedi"
7166
 
7167
- #: app/libraries/main.php:5284
7168
  msgid "Others"
7169
  msgstr "Autres"
7170
 
7171
- #: app/libraries/main.php:5286
7172
  msgid "Booking Success Message"
7173
  msgstr "Message de succès de réservation"
7174
 
7175
- #: app/libraries/main.php:5286
7176
  msgid ""
7177
  "Thanks for your booking. Your tickets booked, booking verification might be "
7178
  "needed, please check your email."
@@ -7180,17 +7288,17 @@ msgstr ""
7180
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
7181
  "vérification peut être nécessaires, contrôlez votre boite mail."
7182
 
7183
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7184
  msgid "Register Button"
7185
  msgstr "Boutons d'inscription"
7186
 
7187
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7188
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7189
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7190
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7191
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7192
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7193
- #: app/skins/single.php:771 app/skins/single/default.php:255
7194
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7195
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7196
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7201,11 +7309,11 @@ msgstr "Boutons d'inscription"
7201
  msgid "REGISTER"
7202
  msgstr "S'INSCRIRE"
7203
 
7204
- #: app/libraries/main.php:5288
7205
  msgid "View Detail Button"
7206
  msgstr "Afficher le boutons de détail"
7207
 
7208
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7209
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7210
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7211
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7216,87 +7324,87 @@ msgstr "Afficher le boutons de détail"
7216
  msgid "View Detail"
7217
  msgstr "En savoir plus"
7218
 
7219
- #: app/libraries/main.php:5289
7220
  msgid "Event Detail Button"
7221
  msgstr "Bouton de détail de l'événement"
7222
 
7223
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7224
  msgid "Event Detail"
7225
  msgstr "Détails"
7226
 
7227
- #: app/libraries/main.php:5291
7228
  msgid "More Info Link"
7229
  msgstr "Plus de lien d'info"
7230
 
7231
- #: app/libraries/main.php:5294
7232
  msgid "Ticket (Singular)"
7233
  msgstr ""
7234
 
7235
- #: app/libraries/main.php:5295
7236
  msgid "Tickets (Plural)"
7237
  msgstr ""
7238
 
7239
- #: app/libraries/main.php:5381
7240
  msgid "EventON"
7241
  msgstr ""
7242
 
7243
- #: app/libraries/main.php:5382
7244
  msgid "The Events Calendar"
7245
  msgstr ""
7246
 
7247
- #: app/libraries/main.php:5383
7248
  msgid "Events Schedule WP Plugin"
7249
  msgstr ""
7250
 
7251
- #: app/libraries/main.php:5384
7252
  msgid "Calendarize It"
7253
  msgstr ""
7254
 
7255
- #: app/libraries/main.php:5385
7256
  #, fuzzy
7257
  #| msgid "Event Labels"
7258
  msgid "Event Espresso"
7259
  msgstr "Labels d'événement"
7260
 
7261
- #: app/libraries/main.php:5386
7262
  #, fuzzy
7263
  #| msgid "Event Repeating"
7264
  msgid "Events Manager (Recurring)"
7265
  msgstr "Événement récurrent"
7266
 
7267
- #: app/libraries/main.php:5387
7268
  #, fuzzy
7269
  #| msgid "Modern Events Calendar"
7270
  msgid "Events Manager (Single)"
7271
  msgstr "Modern Events Calendar"
7272
 
7273
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7274
  msgid "Confirmed"
7275
  msgstr "Confirmé"
7276
 
7277
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7278
  msgid "Rejected"
7279
  msgstr "Rejeté"
7280
 
7281
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7282
  msgid "Pending"
7283
  msgstr "En attente"
7284
 
7285
- #: app/libraries/main.php:5511
7286
  msgid "Waiting"
7287
  msgstr "En attente"
7288
 
7289
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7290
  msgid "Skin controller does not exist."
7291
  msgstr "Le contrôleur de Skin n'existe pas."
7292
 
7293
- #: app/libraries/main.php:5830
7294
  #, fuzzy
7295
  #| msgid "Sold out!"
7296
  msgid "Sold Out"
7297
  msgstr "Épuisé !"
7298
 
7299
- #: app/libraries/main.php:5838
7300
  #, fuzzy
7301
  #| msgid "Ticket"
7302
  msgid "Last Few Tickets"
@@ -7306,58 +7414,60 @@ msgstr "Billets"
7306
  msgid "Please verify your email."
7307
  msgstr "Merci de vérifier vos e-mails."
7308
 
7309
- #: app/libraries/notifications.php:142
7310
  msgid "Your booking is received."
7311
  msgstr "Votre réservation est reçue."
7312
 
7313
- #: app/libraries/notifications.php:249
7314
  msgid "Your booking is confirmed."
7315
  msgstr "Votre réservation est confirmée."
7316
 
7317
- #: app/libraries/notifications.php:391
7318
  #, fuzzy
7319
  #| msgid "Your booking cannot be canceled."
7320
  msgid "booking canceled."
7321
  msgstr "Votre réservation ne peut être annulée."
7322
 
7323
- #: app/libraries/notifications.php:466
7324
  msgid "A new booking is received."
7325
  msgstr "Une nouvelle réservation est enregistrée."
7326
 
7327
- #: app/libraries/notifications.php:657
7328
  msgid "A new event is added."
7329
  msgstr "Un nouvel événement est ajouté."
7330
 
7331
- #: app/libraries/notifications.php:726
7332
  #, fuzzy
7333
  #| msgid "The event published."
7334
  msgid "Your event is published."
7335
  msgstr "Événement Publié."
7336
 
7337
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7338
- #: app/libraries/notifications.php:964
7339
  msgid "to"
7340
  msgstr ""
7341
 
7342
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7343
  msgid "+ Add to Google Calendar"
7344
  msgstr "+ Ajouter à mon Agenda Google"
7345
 
7346
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7347
  msgid "+ iCal export"
7348
  msgstr "+ Exporter vers iCal"
7349
 
7350
- #: app/libraries/notifications.php:1043
7351
  msgid "Yes"
7352
  msgstr "Oui"
7353
 
7354
- #: app/libraries/notifications.php:1043
7355
  msgid "No"
7356
  msgstr "Non"
7357
 
7358
- #: app/libraries/skins.php:1000
7359
- msgid "none"
7360
- msgstr ""
 
 
7361
 
7362
  #: app/modules/attendees-list/details.php:36
7363
  msgid "Event Attendees"
@@ -7396,12 +7506,18 @@ msgstr ""
7396
  msgid "Free Booking"
7397
  msgstr ""
7398
 
 
 
 
 
 
 
7399
  #: app/modules/booking/steps/form.php:165
7400
  msgid "Fill other attendees information like the first form."
7401
  msgstr ""
7402
 
7403
  #: app/modules/booking/steps/form.php:179
7404
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7405
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7406
  msgid "Next"
7407
  msgstr "Prochain"
@@ -7414,17 +7530,17 @@ msgstr "Merci pour votre réservation."
7414
  msgid "Book Event"
7415
  msgstr "Réservez pour cet événement"
7416
 
7417
- #: app/modules/booking/steps/tickets.php:44
7418
  #, php-format
7419
  msgid "Available %s: <span>%s</span>"
7420
  msgstr ""
7421
 
7422
- #: app/modules/booking/steps/tickets.php:48
7423
  #, php-format
7424
- msgid "The %s ticket sales has stoped!"
7425
  msgstr ""
7426
 
7427
- #: app/modules/booking/steps/tickets.php:49
7428
  #, php-format
7429
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7430
  msgstr ""
@@ -7447,7 +7563,7 @@ msgstr "Entrez votre adresse ..."
7447
  msgid "Get Directions"
7448
  msgstr ""
7449
 
7450
- #: app/modules/links/details.php:17 app/skins/single.php:455
7451
  msgid "Share this event"
7452
  msgstr "Partagez cet événement"
7453
 
@@ -7474,7 +7590,7 @@ msgstr "Prochain déroulement"
7474
  msgid "Go to occurrence page"
7475
  msgstr "Aller à la Page"
7476
 
7477
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7478
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7479
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7480
  msgid "Time"
@@ -7602,27 +7718,27 @@ msgstr "Aucun événement"
7602
  msgid "Home"
7603
  msgstr ""
7604
 
7605
- #: app/skins/single.php:538 app/skins/single/default.php:51
7606
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7607
  #: app/skins/single/modern.php:265
7608
  msgid "Sold out!"
7609
  msgstr "Épuisé !"
7610
 
7611
- #: app/skins/single.php:816 app/skins/single.php:871
7612
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7613
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7614
  #: app/skins/single/modern.php:44
7615
  msgid "Phone"
7616
  msgstr "Téléphone"
7617
 
7618
- #: app/skins/single.php:830 app/skins/single.php:885
7619
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7620
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7621
  #: app/skins/single/modern.php:58
7622
  msgid "Website"
7623
  msgstr "Site Web"
7624
 
7625
- #: app/skins/single.php:955
7626
  msgid "Speakers:"
7627
  msgstr ""
7628
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
276
  msgid "Add New Event"
277
  msgstr "Ajouter un nouvel événement"
278
 
279
+ #: app/features/events.php:161 app/features/ix.php:3889
280
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
281
  msgid "No events found!"
282
  msgstr "Pas d'événement actuellement programmé."
311
  #: app/features/mec/meta_boxes/search_form.php:575
312
  #: app/features/mec/meta_boxes/search_form.php:672
313
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
314
+ #: app/features/search.php:67 app/libraries/main.php:5278
315
+ #: app/libraries/skins.php:858 app/skins/single.php:566
316
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
317
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
318
  #: app/skins/single/modern.php:113
321
 
322
  #: app/features/events.php:183 app/features/events.php:3275
323
  #: app/features/fes/form.php:757 app/features/mec.php:402
324
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
325
  msgid "Categories"
326
  msgstr "Catégories"
327
 
410
  msgstr "Événement récurrent"
411
 
412
  #: app/features/events.php:333 app/features/events.php:1286
413
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
414
  msgid "Hourly Schedule"
415
  msgstr "Programme"
416
 
428
 
429
  #: app/features/events.php:336 app/features/events.php:3322
430
  #: app/features/events.php:3513 app/features/events.php:3555
431
+ #: app/features/ix.php:3510 app/features/ix.php:3551
432
  #: app/features/mec/meta_boxes/display_options.php:960
433
  #: app/features/mec/meta_boxes/search_form.php:45
434
  #: app/features/mec/meta_boxes/search_form.php:107
445
  #: app/features/organizers.php:58 app/features/organizers.php:204
446
  #: app/features/organizers.php:260 app/features/organizers.php:262
447
  #: app/features/organizers.php:271 app/features/search.php:75
448
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
449
+ #: app/skins/single.php:812 app/skins/single/default.php:217
450
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
451
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
452
  msgid "Organizer"
453
  msgstr "Organisateur"
454
 
455
  #: app/features/events.php:337 app/features/events.php:1172
456
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
457
+ #: app/skins/single.php:589 app/skins/single/default.php:126
458
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
459
  #: app/skins/single/modern.php:208
460
  msgid "Cost"
472
  #: app/features/events.php:3802 app/features/fes.php:223
473
  #: app/features/fes/form.php:689 app/features/labels.php:178
474
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
475
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
476
  #: app/modules/booking/steps/form.php:37
477
  msgid "Name"
478
  msgstr "Nom"
482
  #: app/features/fes.php:223 app/features/fes/form.php:685
483
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
484
  #: app/features/organizers.php:111 app/features/organizers.php:152
485
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
486
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
487
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
488
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
489
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
490
+ #: app/skins/single.php:884 app/skins/single/default.php:234
491
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
492
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
493
  msgid "Email"
500
  #: app/features/events.php:491 app/features/events.php:497
501
  #: app/features/events.php:3323 app/features/events.php:3513
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
503
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
504
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
505
  #: app/features/mec/dashboard.php:400
506
  #: app/features/mec/meta_boxes/display_options.php:48
507
  #: app/features/mec/meta_boxes/display_options.php:228
538
  #: app/features/events.php:583 app/features/events.php:588
539
  #: app/features/events.php:3324 app/features/events.php:3513
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
542
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
  #: app/features/mec/dashboard.php:401
544
  msgid "End Date"
545
  msgstr "Date de fin"
623
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
624
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
625
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
626
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
627
+ #: app/features/mec/notifications.php:277
628
+ #: app/features/mec/notifications.php:380
629
+ #: app/features/mec/notifications.php:486
630
+ #: app/features/mec/notifications.php:587
631
+ #: app/features/mec/notifications.php:598
632
+ #: app/features/mec/notifications.php:704
633
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
634
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
635
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
636
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
646
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
647
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
648
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
649
+ #: app/skins/single.php:674 app/skins/single/default.php:141
650
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
651
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
652
  msgid "Read More"
830
 
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
+ #: app/features/ix.php:3510 app/features/ix.php:3551
834
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Tarif de l'événement"
849
  #: app/features/events.php:1204 app/features/events.php:2541
850
  #: app/features/fes.php:223 app/features/mec/booking.php:491
851
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
852
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
853
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
854
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
855
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
856
  msgid "Date"
887
  #: app/features/events.php:1437 app/features/events.php:2322
888
  #: app/features/events.php:2369 app/features/events.php:3319
889
  #: app/features/events.php:3513 app/features/events.php:3555
890
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
891
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
892
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
893
  msgid "Title"
894
  msgstr "Titre"
901
  #: app/features/events.php:2357 app/features/events.php:2399
902
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
903
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
904
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
905
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
906
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
907
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
908
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
909
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
910
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
911
  msgid "Remove"
912
  msgstr "Supprimer"
913
 
935
  #: app/features/events.php:1445 app/features/fes/form.php:851
936
  #: app/features/mec.php:410 app/features/mec/modules.php:52
937
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
938
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
952
  msgstr "Liens de l'évenements"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
956
  msgid "Event Link"
957
  msgstr "Lien de l'événement"
958
 
977
  msgstr ""
978
 
979
  #: app/features/events.php:1495 app/features/events.php:1508
980
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
981
+ #: app/skins/single.php:673 app/skins/single/default.php:140
982
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
983
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
984
  #: app/widgets/single.php:107
1009
 
1010
  #: app/features/events.php:1596 app/features/events.php:1849
1011
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1012
+ #: app/modules/booking/steps/tickets.php:40
1013
  #: app/skins/available_spot/tpl.php:160
1014
  msgid "Unlimited"
1015
  msgstr "Illimité"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1050
  msgid "Tickets"
1051
  msgstr "Billets"
1052
 
1069
 
1070
  #: app/features/events.php:1680 app/features/events.php:1955
1071
  #: app/features/events.php:3513 app/features/events.php:3555
1072
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1073
  msgid "Start Time"
1074
  msgstr "Début"
1075
 
1076
  #: app/features/events.php:1739 app/features/events.php:1985
1077
  #: app/features/events.php:3513 app/features/events.php:3555
1078
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1079
  msgid "End Time"
1080
  msgstr "Fin"
1081
 
1107
  msgid "Available Tickets"
1108
  msgstr "Place(s) disponible(s)"
1109
 
1110
+ #: app/features/events.php:1853 app/features/events.php:2068
1111
  #, fuzzy
1112
  #| msgid "Amount (Per Ticket)"
1113
  msgid "Minimum Ticket e.g. 3"
1114
  msgstr "Montant (par Billet)"
1115
 
1116
+ #: app/features/events.php:1856 app/features/events.php:2071
1117
  #, fuzzy
1118
  #| msgid "Amount (Per Ticket)"
1119
  msgid "MinimumTicket"
1120
  msgstr "Montant (par Billet)"
1121
 
1122
+ #: app/features/events.php:1858 app/features/events.php:2073
1123
  msgid "Set a number for the minimum ticket reservation"
1124
  msgstr ""
1125
 
1126
+ #: app/features/events.php:1866 app/features/events.php:2081
1127
  msgid "e.g. 0"
1128
  msgstr ""
1129
 
1130
+ #: app/features/events.php:1868 app/features/events.php:2083
1131
  #, fuzzy
1132
  #| msgid "Daily"
1133
  msgid "Day"
1134
  msgstr "Quotidienne"
1135
 
1136
+ #: app/features/events.php:1869 app/features/events.php:2084
1137
  msgid "Hour"
1138
  msgstr ""
1139
 
1140
+ #: app/features/events.php:1871 app/features/events.php:2086
1141
  #, php-format
1142
  msgid "Stop selling ticket %s before event start."
1143
  msgstr ""
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
+ #: app/libraries/skins.php:988
1167
  msgid "Label"
1168
  msgstr "Label"
1169
 
1233
  msgstr ""
1234
 
1235
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1236
+ #: app/libraries/main.php:2767
1237
  #, fuzzy
1238
  #| msgid "Name"
1239
  msgid "MEC Name"
1240
  msgstr "Nom"
1241
 
1242
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1243
+ #: app/libraries/main.php:2796
1244
  #, fuzzy
1245
  #| msgid "Email"
1246
  msgid "MEC Email"
1247
  msgstr "Email"
1248
 
1249
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1250
+ #: app/libraries/main.php:2737
1251
  msgid "Text"
1252
  msgstr "Texte"
1253
 
1254
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1255
  #: app/features/organizers.php:103 app/features/organizers.php:148
1256
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1257
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1258
  msgid "Tel"
1259
  msgstr "Téléphone"
1260
 
1261
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1262
+ #: app/libraries/main.php:2855
1263
  msgid "File"
1264
  msgstr ""
1265
 
1266
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1267
+ #: app/libraries/main.php:2942
1268
  msgid "Textarea"
1269
  msgstr "Zone de texte"
1270
 
1271
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1272
+ #: app/libraries/main.php:2995
1273
  msgid "Checkboxes"
1274
  msgstr "Boîtes à cocher"
1275
 
1276
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1277
+ #: app/libraries/main.php:3039
1278
  msgid "Radio Buttons"
1279
  msgstr "Boutons Radio"
1280
 
1354
  #: app/features/mec/meta_boxes/search_form.php:696
1355
  #: app/features/mec/meta_boxes/search_form.php:703
1356
  #: app/features/mec/meta_boxes/search_form.php:710
1357
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1358
  msgid "Dropdown"
1359
  msgstr "Menu déroulant"
1360
 
1361
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1362
+ #: app/libraries/main.php:3130
1363
  msgid "Agreement"
1364
  msgstr ""
1365
 
1366
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1367
+ #: app/libraries/main.php:2971
1368
  msgid "Paragraph"
1369
  msgstr "Paragraphe"
1370
 
1393
  msgstr "Limite de Participants"
1394
 
1395
  #: app/features/events.php:3321 app/features/events.php:3513
1396
+ #: app/features/events.php:3555 app/features/ix.php:3510
1397
+ #: app/features/ix.php:3551 app/features/locations.php:58
1398
  #: app/features/locations.php:230 app/features/locations.php:287
1399
  #: app/features/locations.php:289 app/features/locations.php:298
1400
  #: app/features/mec/meta_boxes/display_options.php:959
1411
  #: app/features/mec/meta_boxes/search_form.php:679
1412
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1413
  #: app/features/search.php:71 app/libraries/main.php:2236
1414
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1415
+ #: app/skins/single.php:493 app/skins/single.php:924
1416
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1417
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1418
  #: app/skins/single/modern.php:97
1453
  msgstr "Dupliquer"
1454
 
1455
  #: app/features/events.php:3513 app/features/events.php:3555
1456
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1457
  #: app/features/labels.php:177 app/features/locations.php:229
1458
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1459
  msgid "ID"
1460
  msgstr "ID"
1461
 
1462
  #: app/features/events.php:3513 app/features/events.php:3555
1463
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1464
  msgid "Link"
1465
  msgstr "Lien"
1466
 
1476
 
1477
  #: app/features/events.php:3808 app/features/fes.php:223
1478
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1479
+ #: app/libraries/main.php:5312
1480
  msgid "Ticket"
1481
  msgstr "Billets"
1482
 
1652
 
1653
  #: app/features/fes/form.php:783 app/features/labels.php:61
1654
  #: app/features/labels.php:221 app/features/mec.php:403
1655
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1656
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1657
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1658
  #: app/skins/single/modern.php:223
1659
  msgid "Labels"
1732
  msgid "The events are imported successfully!"
1733
  msgstr ""
1734
 
1735
+ #: app/features/ix.php:943
1736
  msgid "Third Party plugin is not installed and activated!"
1737
  msgstr ""
1738
 
1739
+ #: app/features/ix.php:966
1740
  msgid "Third Party plugin is invalid!"
1741
  msgstr ""
1742
 
1743
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1744
  msgid "Both of API key and Calendar ID are required!"
1745
  msgstr "La clé API et le Calendar ID sont requis !"
1746
 
1747
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1748
  msgid "Please select some events to import!"
1749
  msgstr "Merci de sélectionner les évènements à Importer !"
1750
 
1751
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1752
  #, fuzzy
1753
  #| msgid "Both of API key and Calendar ID are required!"
1754
  msgid "Both of API key and Group URL are required!"
1755
  msgstr "La clé API et le Calendar ID sont requis !"
1756
 
1757
+ #: app/features/ix.php:3433
1758
  msgid "Check at Meetup"
1759
  msgstr ""
1760
 
1761
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1762
  msgid "Organizer Tel"
1763
  msgstr "Teléphone de l'organisateur"
1764
 
1765
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1766
  msgid "Organizer Email"
1767
  msgstr "Mail de l'organisateur"
1768
 
1769
+ #: app/features/ix.php:3632
1770
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1771
  msgstr "Les Clients ID, Client Secret et Calendar ID sont requis !"
1772
 
1773
+ #: app/features/ix.php:3655
1774
  #, php-format
1775
  msgid "All seems good! Please click %s for authenticating your app."
1776
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
1777
 
1778
+ #: app/features/ix.php:3709
1779
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1780
  msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
1781
 
1782
+ #: app/features/ix.php:3825
1783
  #, php-format
1784
  msgid "%s events added to Google Calendar successfully."
1785
  msgstr "%s évènements ajoutés à Google Agenda avec succès."
1786
 
1787
+ #: app/features/ix.php:3826
1788
  #, php-format
1789
  msgid "%s previously added events get updated."
1790
  msgstr "%s évènements précédemment ajoutés ont été mis à jour."
1791
 
1792
+ #: app/features/ix.php:3827
1793
  #, php-format
1794
  msgid "%s events failed to add for following reasons: %s"
1795
  msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
1796
 
1797
+ #: app/features/ix.php:3859
1798
  #, fuzzy
1799
  #| msgid "Please insert your facebook page's link."
1800
  msgid "Please insert your Facebook page's link."
1801
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
1802
 
1803
+ #: app/features/ix.php:3868
1804
  #, fuzzy
1805
  #| msgid ""
1806
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
1812
  "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
1813
  "une adresse Facebook Page valide."
1814
 
1815
+ #: app/features/ix.php:3900
1816
  msgid "Please insert your facebook page's link."
1817
  msgstr "Merci d'insérer l'URL de votre Page Facebook."
1818
 
1819
+ #: app/features/ix.php:3905
1820
  msgid ""
1821
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1822
  "valid facebook page link."
1989
  #: app/features/ix/export_g_calendar.php:72
1990
  #: app/features/ix/export_g_calendar.php:147
1991
  #: app/features/ix/export_g_calendar.php:164
1992
+ #: app/features/mec/notifications.php:131
1993
+ #: app/features/mec/notifications.php:223
1994
+ #: app/features/mec/notifications.php:320
1995
+ #: app/features/mec/notifications.php:635
1996
  msgid "Add to Google Calendar"
1997
  msgstr "Ajouter à Google Agenda"
1998
 
1999
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2000
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2001
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2002
  msgid "Checking ..."
2003
  msgstr "Vérification..."
2272
 
2273
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2274
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2275
+ #: app/features/mec/notifications.php:540
2276
  msgid "Important Note"
2277
  msgstr "Note Importante"
2278
 
2462
  msgstr "Image Principale"
2463
 
2464
  #: app/features/labels.php:118 app/features/labels.php:143
2465
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2466
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2467
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2468
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2481
  msgstr ""
2482
 
2483
  #: app/features/labels.php:180 app/features/locations.php:232
2484
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2485
  #: app/modules/booking/steps/tickets.php:38
2486
  msgid "Count"
2487
  msgstr "Apparition"
2498
 
2499
  #: app/features/locations.php:59 app/features/mec.php:404
2500
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2501
+ #: app/libraries/main.php:5281
2502
  msgid "Locations"
2503
  msgstr "Lieux"
2504
 
2531
 
2532
  #: app/features/locations.php:138 app/features/locations.php:180
2533
  #: app/features/organizers.php:127 app/features/organizers.php:160
2534
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2535
  msgid "Thumbnail"
2536
  msgstr "Miniature"
2537
 
2538
  #: app/features/locations.php:143 app/features/locations.php:183
2539
  #: app/features/organizers.php:132 app/features/organizers.php:163
2540
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2541
  msgid "Upload/Add image"
2542
  msgstr "Mettre en ligne une image"
2543
 
2545
  #: app/features/locations.php:340 app/features/locations.php:347
2546
  #: app/features/organizers.php:133 app/features/organizers.php:164
2547
  #: app/features/organizers.php:299 app/features/organizers.php:306
2548
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2549
  msgid "Remove image"
2550
  msgstr "Supprimer l'image"
2551
 
2605
  msgid "Don't show map in single event page"
2606
  msgstr "Ne pas afficher de carte pour cet événement"
2607
 
2608
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2609
  #, fuzzy
2610
  #| msgid "Search Locations"
2611
  msgid "Other Locations"
2635
  msgid "Troubleshooting"
2636
  msgstr ""
2637
 
2638
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2639
  #, php-format
2640
  msgid "%s to %s"
2641
  msgstr "%s en %s"
2671
 
2672
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2673
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2674
+ #: app/libraries/main.php:5283
2675
  msgid "Organizers"
2676
  msgstr "Organisateurs"
2677
 
2792
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2793
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2794
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2795
+ #: app/features/mec/notifications.php:816
2796
+ #: app/features/mec/notifications.php:828
2797
+ #: app/features/mec/notifications.php:924
2798
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2799
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2800
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2801
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2916
  msgid "Enable Express Attendees Form"
2917
  msgstr ""
2918
 
2919
+ #: app/features/mec/booking.php:186
2920
  msgid "Attendees Form"
2921
  msgstr "Formulaire de réservation"
2922
 
2950
  msgid "Auto verification for paid bookings"
2951
  msgstr "Vérification automatique des réservations payées"
2952
 
2953
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2954
  #: app/libraries/main.php:579
2955
  msgid "Booking Confirmation"
2956
  msgstr "Confirmation de réservation"
3018
  msgstr ""
3019
 
3020
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3021
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3022
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3023
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3024
  msgid "Saved"
3025
  msgstr "Sauvegardé"
3026
 
3027
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3028
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3029
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3030
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3031
  msgid "Settings Saved!"
3033
 
3034
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3035
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3036
+ #: app/features/mec/notifications.php:905
3037
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3038
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3039
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
3040
  msgid "Verified"
3041
  msgstr "Vérifié"
3042
 
3043
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3044
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3045
  #: app/features/mec/single.php:291
3046
  msgid "Please Refresh Page"
3047
  msgstr "Merci de Rafraichir la Page"
4187
  #: app/features/mec/meta_boxes/search_form.php:693
4188
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4189
  #: app/features/search.php:79 app/features/speakers.php:61
4190
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4191
+ #: app/libraries/skins.php:936
4192
  msgid "Speaker"
4193
  msgstr ""
4194
 
4204
  #: app/features/mec/meta_boxes/search_form.php:603
4205
  #: app/features/mec/meta_boxes/search_form.php:700
4206
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4207
+ #: app/features/search.php:83 app/libraries/skins.php:962
4208
  #, fuzzy
4209
  #| msgid "Tags"
4210
  msgid "Tag"
4466
  msgstr ""
4467
  "Elle est envoyée aux participants après leur réservation pour les avertir."
4468
 
4469
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4470
+ #: app/features/mec/notifications.php:233
4471
+ #: app/features/mec/notifications.php:336
4472
+ #: app/features/mec/notifications.php:442
4473
+ #: app/features/mec/notifications.php:543
4474
+ #: app/features/mec/notifications.php:660
4475
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4476
  msgid "Email Subject"
4477
  msgstr "Sujet"
4478
 
4479
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4480
+ #: app/features/mec/notifications.php:147
4481
+ #: app/features/mec/notifications.php:154
4482
+ #: app/features/mec/notifications.php:239
4483
+ #: app/features/mec/notifications.php:246
4484
+ #: app/features/mec/notifications.php:342
4485
+ #: app/features/mec/notifications.php:349
4486
+ #: app/features/mec/notifications.php:448
4487
+ #: app/features/mec/notifications.php:455
4488
+ #: app/features/mec/notifications.php:549
4489
+ #: app/features/mec/notifications.php:556
4490
+ #: app/features/mec/notifications.php:666
4491
+ #: app/features/mec/notifications.php:673
4492
+ #: app/features/mec/notifications.php:749
4493
+ #: app/features/mec/notifications.php:756
4494
+ msgid "Receiver Users"
4495
+ msgstr ""
4496
+
4497
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4498
+ #: app/features/mec/notifications.php:247
4499
+ #: app/features/mec/notifications.php:350
4500
+ #: app/features/mec/notifications.php:456
4501
+ #: app/features/mec/notifications.php:557
4502
+ #: app/features/mec/notifications.php:674
4503
+ #: app/features/mec/notifications.php:757
4504
+ msgid "Select your desired users to send a copy of email to them!"
4505
+ msgstr ""
4506
+
4507
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4508
+ #: app/features/mec/notifications.php:164
4509
+ #: app/features/mec/notifications.php:171
4510
+ #: app/features/mec/notifications.php:256
4511
+ #: app/features/mec/notifications.php:263
4512
+ #: app/features/mec/notifications.php:359
4513
+ #: app/features/mec/notifications.php:366
4514
+ #: app/features/mec/notifications.php:465
4515
+ #: app/features/mec/notifications.php:472
4516
+ #: app/features/mec/notifications.php:566
4517
+ #: app/features/mec/notifications.php:573
4518
+ #: app/features/mec/notifications.php:683
4519
+ #: app/features/mec/notifications.php:690
4520
+ #: app/features/mec/notifications.php:766
4521
+ #: app/features/mec/notifications.php:773
4522
+ msgid "Receiver Roles"
4523
+ msgstr ""
4524
+
4525
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4526
+ #: app/features/mec/notifications.php:264
4527
+ #: app/features/mec/notifications.php:367
4528
+ #: app/features/mec/notifications.php:473
4529
+ #: app/features/mec/notifications.php:574
4530
+ #: app/features/mec/notifications.php:691
4531
+ #: app/features/mec/notifications.php:774
4532
+ msgid "Select users a specific role."
4533
+ msgstr ""
4534
+
4535
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4536
+ #: app/features/mec/notifications.php:180
4537
+ #: app/features/mec/notifications.php:184
4538
+ #: app/features/mec/notifications.php:272
4539
+ #: app/features/mec/notifications.php:276
4540
+ #: app/features/mec/notifications.php:375
4541
+ #: app/features/mec/notifications.php:379
4542
+ #: app/features/mec/notifications.php:481
4543
+ #: app/features/mec/notifications.php:485
4544
+ #: app/features/mec/notifications.php:582
4545
+ #: app/features/mec/notifications.php:586
4546
+ #: app/features/mec/notifications.php:597
4547
+ #: app/features/mec/notifications.php:699
4548
+ #: app/features/mec/notifications.php:703
4549
+ #: app/features/mec/notifications.php:782
4550
+ #: app/features/mec/notifications.php:786
4551
  msgid "Custom Recipients"
4552
  msgstr "Destinataires personnalisés"
4553
 
4554
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4555
+ #: app/features/mec/notifications.php:277
4556
+ #: app/features/mec/notifications.php:380
4557
+ #: app/features/mec/notifications.php:486
4558
+ #: app/features/mec/notifications.php:587
4559
+ #: app/features/mec/notifications.php:598
4560
+ #: app/features/mec/notifications.php:704
4561
+ #: app/features/mec/notifications.php:787
4562
  msgid "Insert comma separated emails for multiple recipients."
4563
  msgstr ""
4564
  "Insérez une virgule entre chaque emails pour séparés plusieurs destinataires."
4565
 
4566
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4567
+ #: app/features/mec/notifications.php:493
4568
  msgid "Send the email to event organizer"
4569
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4570
 
4571
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4572
+ #: app/features/mec/notifications.php:287
4573
+ #: app/features/mec/notifications.php:398
4574
+ #: app/features/mec/notifications.php:496
4575
+ #: app/features/mec/notifications.php:604
4576
+ #: app/features/mec/notifications.php:710
4577
+ #: app/features/mec/notifications.php:793
4578
  msgid "Email Content"
4579
  msgstr "Contenu de l'email"
4580
 
4581
+ #: app/features/mec/notifications.php:101
4582
+ #: app/features/mec/notifications.php:194
4583
+ #: app/features/mec/notifications.php:290
4584
+ #: app/features/mec/notifications.php:401
4585
+ #: app/features/mec/notifications.php:499
4586
+ #: app/features/mec/notifications.php:607
4587
+ #: app/features/mec/notifications.php:713
4588
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4589
  msgid "You can use following placeholders"
4590
  msgstr "Vous pouvez utiliser les variables suivantes"
4591
 
4592
+ #: app/features/mec/notifications.php:103
4593
+ #: app/features/mec/notifications.php:196
4594
+ #: app/features/mec/notifications.php:292
4595
+ #: app/features/mec/notifications.php:403
4596
+ #: app/features/mec/notifications.php:501
4597
+ #: app/features/mec/notifications.php:609
4598
  msgid "First name of attendee"
4599
  msgstr "Prénom du participant"
4600
 
4601
+ #: app/features/mec/notifications.php:104
4602
+ #: app/features/mec/notifications.php:197
4603
+ #: app/features/mec/notifications.php:293
4604
+ #: app/features/mec/notifications.php:404
4605
+ #: app/features/mec/notifications.php:502
4606
+ #: app/features/mec/notifications.php:610
4607
  msgid "Last name of attendee"
4608
  msgstr "Nom du participant"
4609
 
4610
+ #: app/features/mec/notifications.php:105
4611
+ #: app/features/mec/notifications.php:198
4612
+ #: app/features/mec/notifications.php:294
4613
+ #: app/features/mec/notifications.php:405
4614
+ #: app/features/mec/notifications.php:503
4615
+ #: app/features/mec/notifications.php:611
4616
  msgid "Email of attendee"
4617
  msgstr "Email du participant"
4618
 
4619
+ #: app/features/mec/notifications.php:106
4620
+ #: app/features/mec/notifications.php:199
4621
+ #: app/features/mec/notifications.php:295
4622
+ #: app/features/mec/notifications.php:406
4623
+ #: app/features/mec/notifications.php:504
4624
+ #: app/features/mec/notifications.php:612
4625
  msgid "Booked date of event"
4626
  msgstr "Date de réservation"
4627
 
4628
+ #: app/features/mec/notifications.php:107
4629
+ #: app/features/mec/notifications.php:200
4630
+ #: app/features/mec/notifications.php:296
4631
+ #: app/features/mec/notifications.php:407
4632
+ #: app/features/mec/notifications.php:505
4633
+ #: app/features/mec/notifications.php:613
4634
  #, fuzzy
4635
  #| msgid "Booked date of event"
4636
  msgid "Booked time of event"
4637
  msgstr "Date de réservation"
4638
 
4639
+ #: app/features/mec/notifications.php:108
4640
+ #: app/features/mec/notifications.php:201
4641
+ #: app/features/mec/notifications.php:297
4642
+ #: app/features/mec/notifications.php:408
4643
+ #: app/features/mec/notifications.php:506
4644
+ #: app/features/mec/notifications.php:614
4645
  msgid "Booking Price"
4646
  msgstr "Prix de la réservation"
4647
 
4648
+ #: app/features/mec/notifications.php:109
4649
+ #: app/features/mec/notifications.php:202
4650
+ #: app/features/mec/notifications.php:298
4651
+ #: app/features/mec/notifications.php:409
4652
+ #: app/features/mec/notifications.php:507
4653
+ #: app/features/mec/notifications.php:615
4654
  msgid "Date and time of placing booking"
4655
  msgstr ""
4656
 
4657
+ #: app/features/mec/notifications.php:110
4658
+ #: app/features/mec/notifications.php:203
4659
+ #: app/features/mec/notifications.php:299
4660
+ #: app/features/mec/notifications.php:410
4661
+ #: app/features/mec/notifications.php:508
4662
+ #: app/features/mec/notifications.php:616
4663
+ #: app/features/mec/notifications.php:721
4664
+ #: app/features/mec/notifications.php:804
4665
  msgid "Your website title"
4666
  msgstr "Titre de votre site"
4667
 
4668
+ #: app/features/mec/notifications.php:111
4669
+ #: app/features/mec/notifications.php:204
4670
+ #: app/features/mec/notifications.php:300
4671
+ #: app/features/mec/notifications.php:411
4672
+ #: app/features/mec/notifications.php:509
4673
+ #: app/features/mec/notifications.php:617
4674
+ #: app/features/mec/notifications.php:722
4675
+ #: app/features/mec/notifications.php:805
4676
  msgid "Your website URL"
4677
  msgstr "URL de votre site"
4678
 
4679
+ #: app/features/mec/notifications.php:112
4680
+ #: app/features/mec/notifications.php:205
4681
+ #: app/features/mec/notifications.php:301
4682
+ #: app/features/mec/notifications.php:412
4683
+ #: app/features/mec/notifications.php:510
4684
+ #: app/features/mec/notifications.php:618
4685
+ #: app/features/mec/notifications.php:723
4686
+ #: app/features/mec/notifications.php:806
4687
  msgid "Your website description"
4688
  msgstr "Description de votre site"
4689
 
4690
+ #: app/features/mec/notifications.php:113
4691
+ #: app/features/mec/notifications.php:206
4692
+ #: app/features/mec/notifications.php:302
4693
+ #: app/features/mec/notifications.php:413
4694
+ #: app/features/mec/notifications.php:511
4695
+ #: app/features/mec/notifications.php:619
4696
  msgid "Event title"
4697
  msgstr "Nom de l'événement"
4698
 
4699
+ #: app/features/mec/notifications.php:114
4700
+ #: app/features/mec/notifications.php:207
4701
+ #: app/features/mec/notifications.php:303
4702
+ #: app/features/mec/notifications.php:414
4703
+ #: app/features/mec/notifications.php:512
4704
+ #: app/features/mec/notifications.php:620
4705
  #, fuzzy
4706
  #| msgid "Event Link"
4707
  msgid "Event link"
4708
  msgstr "Lien de l'événement"
4709
 
4710
+ #: app/features/mec/notifications.php:115
4711
+ #: app/features/mec/notifications.php:208
4712
+ #: app/features/mec/notifications.php:304
4713
+ #: app/features/mec/notifications.php:717
4714
+ #: app/features/mec/notifications.php:800
4715
  #, fuzzy
4716
  #| msgid "Start Date"
4717
  msgid "Event Start Date"
4718
  msgstr "Date de début"
4719
 
4720
+ #: app/features/mec/notifications.php:116
4721
+ #: app/features/mec/notifications.php:209
4722
+ #: app/features/mec/notifications.php:305
4723
+ #: app/features/mec/notifications.php:718
4724
+ #: app/features/mec/notifications.php:801
4725
  #, fuzzy
4726
  #| msgid "End Date"
4727
  msgid "Event End Date"
4728
  msgstr "Date de fin"
4729
 
4730
+ #: app/features/mec/notifications.php:117
4731
+ #: app/features/mec/notifications.php:210
4732
+ #: app/features/mec/notifications.php:306
4733
+ #: app/features/mec/notifications.php:415
4734
+ #: app/features/mec/notifications.php:513
4735
+ #: app/features/mec/notifications.php:621
4736
  #, fuzzy
4737
  #| msgid "Organizer name of booked event"
4738
  msgid "Speaker name of booked event"
4739
  msgstr "Organisateur de l'événement réservé"
4740
 
4741
+ #: app/features/mec/notifications.php:118
4742
+ #: app/features/mec/notifications.php:211
4743
+ #: app/features/mec/notifications.php:307
4744
+ #: app/features/mec/notifications.php:416
4745
+ #: app/features/mec/notifications.php:514
4746
+ #: app/features/mec/notifications.php:622
4747
  msgid "Organizer name of booked event"
4748
  msgstr "Organisateur de l'événement réservé"
4749
 
4750
+ #: app/features/mec/notifications.php:119
4751
+ #: app/features/mec/notifications.php:212
4752
+ #: app/features/mec/notifications.php:308
4753
+ #: app/features/mec/notifications.php:417
4754
+ #: app/features/mec/notifications.php:515
4755
+ #: app/features/mec/notifications.php:623
4756
  msgid "Organizer tel of booked event"
4757
  msgstr "Tel de l'organisateur de l'événement réservé"
4758
 
4759
+ #: app/features/mec/notifications.php:120
4760
+ #: app/features/mec/notifications.php:213
4761
+ #: app/features/mec/notifications.php:309
4762
+ #: app/features/mec/notifications.php:418
4763
+ #: app/features/mec/notifications.php:516
4764
+ #: app/features/mec/notifications.php:624
4765
  msgid "Organizer email of booked event"
4766
  msgstr "Email de l'organisateur de l'événement réservé"
4767
 
4768
+ #: app/features/mec/notifications.php:121
4769
+ #: app/features/mec/notifications.php:214
4770
+ #: app/features/mec/notifications.php:310
4771
+ #: app/features/mec/notifications.php:419
4772
+ #: app/features/mec/notifications.php:517
4773
+ #: app/features/mec/notifications.php:625
4774
  msgid "Location name of booked event"
4775
  msgstr "Nom du lieu de l'événement réservé"
4776
 
4777
+ #: app/features/mec/notifications.php:122
4778
+ #: app/features/mec/notifications.php:215
4779
+ #: app/features/mec/notifications.php:311
4780
+ #: app/features/mec/notifications.php:420
4781
+ #: app/features/mec/notifications.php:518
4782
+ #: app/features/mec/notifications.php:626
4783
  msgid "Location address of booked event"
4784
  msgstr "Adresse lieu de l'événement réservé"
4785
 
4786
+ #: app/features/mec/notifications.php:123
4787
+ #: app/features/mec/notifications.php:216
4788
+ #: app/features/mec/notifications.php:312
4789
+ #: app/features/mec/notifications.php:421
4790
+ #: app/features/mec/notifications.php:519
4791
+ #: app/features/mec/notifications.php:627
4792
  #, fuzzy
4793
  #| msgid "Organizer name of booked event"
4794
  msgid "Featured image of booked event"
4795
  msgstr "Organisateur de l'événement réservé"
4796
 
4797
+ #: app/features/mec/notifications.php:124
4798
+ #: app/features/mec/notifications.php:423
4799
+ #: app/features/mec/notifications.php:521
4800
  msgid "Full Attendee info such as booking form data, name, email etc."
4801
  msgstr ""
4802
  "Information complète des participants tels que les données de formulaire de "
4803
  "réservation, nom, email, etc."
4804
 
4805
+ #: app/features/mec/notifications.php:125
4806
+ #: app/features/mec/notifications.php:314
4807
+ #: app/features/mec/notifications.php:629
4808
  msgid "Invoice Link"
4809
  msgstr ""
4810
 
4811
+ #: app/features/mec/notifications.php:126
4812
+ #: app/features/mec/notifications.php:218
4813
+ #: app/features/mec/notifications.php:315
4814
+ #: app/features/mec/notifications.php:424
4815
+ #: app/features/mec/notifications.php:522
4816
+ #: app/features/mec/notifications.php:630
4817
  msgid "Total Attendees"
4818
  msgstr "Nombre total de participants"
4819
 
4820
+ #: app/features/mec/notifications.php:127
4821
+ #: app/features/mec/notifications.php:219
4822
+ #: app/features/mec/notifications.php:316
4823
+ #: app/features/mec/notifications.php:425
4824
+ #: app/features/mec/notifications.php:523
4825
+ #: app/features/mec/notifications.php:631
4826
+ #, fuzzy
4827
+ #| msgid "Amount (Per Ticket)"
4828
+ msgid "Amount of Booked Tickets"
4829
+ msgstr "Montant (par Billet)"
4830
+
4831
+ #: app/features/mec/notifications.php:128
4832
+ #: app/features/mec/notifications.php:220
4833
+ #: app/features/mec/notifications.php:317
4834
+ #: app/features/mec/notifications.php:632
4835
  #, fuzzy
4836
  #| msgid "Ticket Name"
4837
  msgid "Ticket name"
4838
  msgstr "Nom du billet"
4839
 
4840
+ #: app/features/mec/notifications.php:129
4841
+ #: app/features/mec/notifications.php:221
4842
+ #: app/features/mec/notifications.php:318
4843
+ #: app/features/mec/notifications.php:633
4844
  #, fuzzy
4845
  #| msgid "Ticket Name"
4846
  msgid "Ticket time"
4847
  msgstr "Nom du billet"
4848
 
4849
+ #: app/features/mec/notifications.php:130
4850
+ #: app/features/mec/notifications.php:222
4851
+ #: app/features/mec/notifications.php:319
4852
+ #: app/features/mec/notifications.php:634
4853
  msgid "Download ICS file"
4854
  msgstr ""
4855
 
4856
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4857
  msgid "Booking Verification"
4858
  msgstr "Vérification de réservation"
4859
 
4860
+ #: app/features/mec/notifications.php:139
4861
  msgid "It sends to attendee email for verifying their booking/email."
4862
  msgstr "Envoyé par mail au participant pour vérification de réservation/email."
4863
 
4864
+ #: app/features/mec/notifications.php:217
4865
  msgid "Email/Booking verification link."
4866
  msgstr "Vérification des réservations."
4867
 
4868
+ #: app/features/mec/notifications.php:231
4869
  msgid "It sends to attendee after confirming the booking by admin."
4870
  msgstr ""
4871
  "Vous envoie un mail vous avertissant lorsqu'un visiteur confirme sa demande "
4872
  "d'ajout d'événement."
4873
 
4874
+ #: app/features/mec/notifications.php:284
4875
  msgid "Send One Single Email Only To First Attendee"
4876
  msgstr ""
4877
 
4878
+ #: app/features/mec/notifications.php:313
4879
+ #: app/features/mec/notifications.php:628
4880
  msgid "Booking cancellation link."
4881
  msgstr "Lien d'annulation de la réservation."
4882
 
4883
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4884
  #, fuzzy
4885
  #| msgid "Booking cancellation link."
4886
  msgid "Booking Cancellation"
4887
  msgstr "Lien d'annulation de la réservation."
4888
 
4889
+ #: app/features/mec/notifications.php:330
4890
  #, fuzzy
4891
  #| msgid "Enable new event notification"
4892
  msgid "Enable cancellation notification"
4893
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4894
 
4895
+ #: app/features/mec/notifications.php:334
4896
  #, fuzzy
4897
  #| msgid "It sends to attendee after booking for notifying him/her."
4898
  msgid ""
4901
  msgstr ""
4902
  "Elle est envoyée aux participants après leur réservation pour les avertir."
4903
 
4904
+ #: app/features/mec/notifications.php:387
4905
+ #: app/features/mec/notifications.php:654
4906
  #, fuzzy
4907
  #| msgid "Send the email to event organizer"
4908
  msgid "Send the email to admin"
4909
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4910
 
4911
+ #: app/features/mec/notifications.php:395
4912
  #, fuzzy
4913
  #| msgid "Send the email to event organizer"
4914
  msgid "Send the email to booking user"
4915
  msgstr "Envoyer l'email à l'organisateur de l'événement"
4916
 
4917
+ #: app/features/mec/notifications.php:422
4918
+ #: app/features/mec/notifications.php:520
4919
  msgid "Admin booking management link."
4920
  msgstr "Administrateur lien de gestion des réservations."
4921
 
4922
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4923
  msgid "Admin"
4924
  msgstr ""
4925
 
4926
+ #: app/features/mec/notifications.php:436
4927
  #, fuzzy
4928
  #| msgid "Enable new event notification"
4929
  msgid "Enable admin notification"
4930
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4931
 
4932
+ #: app/features/mec/notifications.php:440
4933
  msgid "It sends to admin to notify him/her that a new booking received."
4934
  msgstr ""
4935
  "Il est envoyé à admin pour l'informer qu'il y a une nouvelle réservation "
4936
  "reçue."
4937
 
4938
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4939
+ #: app/libraries/notifications.php:603
4940
  msgid "Booking Reminder"
4941
  msgstr ""
4942
 
4943
+ #: app/features/mec/notifications.php:534
4944
  msgid "Enable booking reminder notification"
4945
  msgstr ""
4946
 
4947
+ #: app/features/mec/notifications.php:540
4948
  #, php-format
4949
  msgid ""
4950
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4952
  "send the reminders multiple times."
4953
  msgstr ""
4954
 
4955
+ #: app/features/mec/notifications.php:540
4956
  msgid "only once per day"
4957
  msgstr ""
4958
 
4959
+ #: app/features/mec/notifications.php:593
4960
  msgid "Days"
4961
  msgstr ""
4962
 
4963
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4964
  #: app/libraries/main.php:583
4965
  msgid "New Event"
4966
  msgstr "Nouvel événement"
4967
 
4968
+ #: app/features/mec/notifications.php:648
4969
  msgid "Enable new event notification"
4970
  msgstr "Activer la notification d'ajout d'un nouvel événement"
4971
 
4972
+ #: app/features/mec/notifications.php:658
4973
  msgid ""
4974
  "It sends after adding a new event from frontend event submission or from "
4975
  "website backend."
4977
  "S'envoie lorsqu'un nouvel événement est ajouté depuis le formulaire de "
4978
  "soumission ou depuis le tableau de bord du site."
4979
 
4980
+ #: app/features/mec/notifications.php:715
4981
+ #: app/features/mec/notifications.php:798
4982
  msgid "Title of event"
4983
  msgstr "Titre de l'événement"
4984
 
4985
+ #: app/features/mec/notifications.php:716
4986
+ #: app/features/mec/notifications.php:799
4987
  #, fuzzy
4988
  #| msgid "Title of event"
4989
  msgid "Link of event"
4990
  msgstr "Titre de l'événement"
4991
 
4992
+ #: app/features/mec/notifications.php:719
4993
+ #: app/features/mec/notifications.php:802
4994
  msgid "Status of event"
4995
  msgstr "Statut de l'événement"
4996
 
4997
+ #: app/features/mec/notifications.php:720
4998
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4999
  #: app/features/mec/settings.php:738
5000
  msgid "Event Note"
5001
  msgstr "Note sur l'événement"
5002
 
5003
+ #: app/features/mec/notifications.php:724
5004
+ #: app/features/mec/notifications.php:807
5005
  msgid "Admin events management link."
5006
  msgstr "Lien d'administration d'événements."
5007
 
5008
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
5009
  #, fuzzy
5010
  #| msgid "The event published."
5011
  msgid "User Event Publishing"
5012
  msgstr "Événement Publié."
5013
 
5014
+ #: app/features/mec/notifications.php:737
5015
  #, fuzzy
5016
  #| msgid "Enable new event notification"
5017
  msgid "Enable user event publishing notification"
5018
  msgstr "Activer la notification d'ajout d'un nouvel événement"
5019
 
5020
+ #: app/features/mec/notifications.php:741
5021
  #, fuzzy
5022
  #| msgid ""
5023
  #| "It sends after adding a new event from frontend event submission or from "
5200
  msgstr ""
5201
 
5202
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5203
+ #: app/libraries/main.php:5290
5204
  msgid "Weekdays"
5205
  msgstr "Jours de la Semaine"
5206
 
6485
  msgid "eg. https://webnus.net"
6486
  msgstr "eg. https://webnus.net"
6487
 
6488
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6489
+ #: app/skins/single.php:862
6490
  msgid "Other Organizers"
6491
  msgstr "Autres organisateurs"
6492
 
6493
+ #: app/features/organizers.php:314
6494
  msgid ""
6495
  "You can select extra organizers in addition to main organizer if you like."
6496
  msgstr ""
6513
  msgid "#"
6514
  msgstr ""
6515
 
6516
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6517
  msgid "Status"
6518
  msgstr ""
6519
 
6550
  msgid "No bookings found!"
6551
  msgstr "Aucune réservation trouvée !"
6552
 
6553
+ #: app/features/search.php:87 app/libraries/main.php:5280
6554
  msgid "label"
6555
  msgstr "texte"
6556
 
6576
  msgstr ""
6577
 
6578
  #: app/features/search_bar/search_result.php:11
6579
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6580
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6581
+ #: app/skins/single.php:160 app/skins/single.php:753
6582
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6583
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6584
  msgid "All of the day"
6585
  msgstr "Toute la journée"
6586
 
6587
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6588
+ #: app/features/speakers.php:270
6589
  #, fuzzy
6590
  #| msgid "Title"
6591
  msgid "Job Title"
6592
  msgstr "Titre"
6593
 
6594
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6595
  msgid "Insert speaker job title."
6596
  msgstr ""
6597
 
6598
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6599
  #, fuzzy
6600
  #| msgid "Insert organizer phone number."
6601
  msgid "Insert speaker phone number."
6602
  msgstr "Ajouter le numéro de téléphone de l'organisateur."
6603
 
6604
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6605
  #, fuzzy
6606
  #| msgid "Insert organizer email address."
6607
  msgid "Insert speaker email address."
6608
  msgstr "Ajouter l'email de l'organisateur."
6609
 
6610
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6611
  #, fuzzy
6612
  #| msgid "Facebook Page Link"
6613
  msgid "Facebook Page"
6614
  msgstr "URL Page Facebook"
6615
 
6616
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6617
  #, fuzzy
6618
  #| msgid "Import from Facebook Calendar"
6619
  msgid "Insert URL of Facebook Page"
6620
  msgstr "Importer depuis Calendrier Facebook"
6621
 
6622
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6623
  msgid "Instagram"
6624
  msgstr ""
6625
 
6626
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6627
  #, fuzzy
6628
  #| msgid "Insert -1 for unlimited usage"
6629
  msgid "Insert URL of Instagram"
6630
  msgstr "Entrez -1 pour un nombre illimité de participant"
6631
 
6632
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6633
+ #, fuzzy
6634
+ #| msgid "Linkedin"
6635
+ msgid "LinkedIn"
6636
+ msgstr "Linkedin"
6637
+
6638
+ #: app/features/speakers.php:154
6639
+ #, fuzzy
6640
+ #| msgid "Insert -1 for unlimited usage"
6641
+ msgid "Insert URL of LinkedIn"
6642
+ msgstr "Entrez -1 pour un nombre illimité de participant"
6643
+
6644
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6645
  #, fuzzy
6646
  #| msgid "Twitter"
6647
  msgid "Twitter Page"
6648
  msgstr "Twitter"
6649
 
6650
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6651
  #, fuzzy
6652
  #| msgid "Insert -1 for unlimited usage"
6653
  msgid "Insert URL of Twitter Page"
6654
  msgstr "Entrez -1 pour un nombre illimité de participant"
6655
 
6656
+ #: app/features/speakers.php:209
6657
+ #, fuzzy
6658
+ #| msgid "Insert -1 for unlimited usage"
6659
+ msgid "Insert URL of linkedin"
6660
+ msgstr "Entrez -1 pour un nombre illimité de participant"
6661
+
6662
+ #: app/features/speakers.php:330
6663
  msgid "Sorry, You must insert speaker name!"
6664
  msgstr ""
6665
 
6666
+ #: app/features/speakers.php:379
6667
  msgid ""
6668
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6669
  "section and speaker widget section!"
6823
  msgid "Tile View"
6824
  msgstr "Vue sur Slider"
6825
 
6826
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6827
  msgid "SU"
6828
  msgstr "DIM."
6829
 
6830
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6831
  msgid "MO"
6832
  msgstr "LUN."
6833
 
6834
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6835
  msgid "TU"
6836
  msgstr "MAR."
6837
 
6838
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6839
  msgid "WE"
6840
  msgstr "MER."
6841
 
6842
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6843
  msgid "TH"
6844
  msgstr "JEU."
6845
 
6846
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6847
  msgid "FR"
6848
  msgstr "VEN."
6849
 
6850
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6851
  msgid "SA"
6852
  msgstr "SAM."
6853
 
7114
  msgid "iCal export stopped!"
7115
  msgstr "Export vers iCal arrêté !"
7116
 
7117
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
7118
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
7119
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
7120
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
7121
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
7122
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
7123
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
7124
  msgid "Sort"
7125
  msgstr "Trier"
7126
 
7127
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
7128
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
7129
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
7130
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
7131
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
7132
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
7133
  msgid "Required Field"
7134
  msgstr "Champ obligatoire"
7135
 
7136
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
7137
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
7138
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
7139
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
7140
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
7141
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
7142
  msgid "Insert a label for this field"
7143
  msgstr "Insérez une label pour ce champ"
7144
 
7145
+ #: app/libraries/main.php:2976
7146
  msgid "HTML and shortcode are allowed."
7147
  msgstr "HTML et shortcode sont autorisés."
7148
 
7149
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
7150
+ #: app/libraries/main.php:3107
7151
  msgid "Option"
7152
  msgstr "Option"
7153
 
7154
+ #: app/libraries/main.php:3141
7155
  #, php-format
7156
  msgid "Instead of %s, the page title with a link will be show."
7157
  msgstr ""
7158
 
7159
+ #: app/libraries/main.php:3143
7160
  msgid "Agreement Page"
7161
  msgstr ""
7162
 
7163
+ #: app/libraries/main.php:3154
7164
  msgid "Checked by default"
7165
  msgstr ""
7166
 
7167
+ #: app/libraries/main.php:3155
7168
  msgid "Unchecked by default"
7169
  msgstr ""
7170
 
7171
+ #: app/libraries/main.php:3178
7172
  msgid "Insert a label for this option"
7173
  msgstr "Insérez une étiquette pour cette option"
7174
 
7175
+ #: app/libraries/main.php:3193
7176
  msgid "Free"
7177
  msgstr "Gratuite"
7178
 
7179
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7180
  #, fuzzy
7181
  #| msgid "M.E. Calendar"
7182
  msgid "M.E. Calender"
7183
  msgstr "M.E Calendrier"
7184
 
7185
+ #: app/libraries/main.php:3954
7186
  #, php-format
7187
  msgid "Copy of %s"
7188
  msgstr "Copie de %s"
7189
 
7190
+ #: app/libraries/main.php:4669
7191
  msgid "Booked an event."
7192
  msgstr "Réserver un événement"
7193
 
7194
+ #: app/libraries/main.php:4710
7195
  #, php-format
7196
  msgid "%s booked %s event."
7197
  msgstr "%s réservé %s événement"
7198
 
7199
+ #: app/libraries/main.php:5275
7200
  msgid "Taxonomies"
7201
  msgstr "Taxonomies"
7202
 
7203
+ #: app/libraries/main.php:5277
7204
  msgid "Category Plural Label"
7205
  msgstr "Catégorie au pluriel"
7206
 
7207
+ #: app/libraries/main.php:5278
7208
  msgid "Category Singular Label"
7209
  msgstr "Catégorie au singulier"
7210
 
7211
+ #: app/libraries/main.php:5279
7212
  msgid "Label Plural Label"
7213
  msgstr "Étiquettes au pluriel"
7214
 
7215
+ #: app/libraries/main.php:5280
7216
  msgid "Label Singular Label"
7217
  msgstr "Étiquettes au singulier"
7218
 
7219
+ #: app/libraries/main.php:5281
7220
  msgid "Location Plural Label"
7221
  msgstr "Lieu au pluriel"
7222
 
7223
+ #: app/libraries/main.php:5282
7224
  msgid "Location Singular Label"
7225
  msgstr "Lieu au singulier"
7226
 
7227
+ #: app/libraries/main.php:5283
7228
  msgid "Organizer Plural Label"
7229
  msgstr "Organisateur au pluriel"
7230
 
7231
+ #: app/libraries/main.php:5284
7232
  msgid "Organizer Singular Label"
7233
  msgstr "Organisateur au singulier"
7234
 
7235
+ #: app/libraries/main.php:5285
7236
  #, fuzzy
7237
  #| msgid "Label Plural Label"
7238
  msgid "Speaker Plural Label"
7239
  msgstr "Étiquettes au pluriel"
7240
 
7241
+ #: app/libraries/main.php:5286
7242
  #, fuzzy
7243
  #| msgid "Label Singular Label"
7244
  msgid "Speaker Singular Label"
7245
  msgstr "Étiquettes au singulier"
7246
 
7247
+ #: app/libraries/main.php:5292
7248
  msgid "Sunday abbreviation"
7249
  msgstr "Abréviation de Dimanche"
7250
 
7251
+ #: app/libraries/main.php:5293
7252
  msgid "Monday abbreviation"
7253
  msgstr "Abréviation de Lundi"
7254
 
7255
+ #: app/libraries/main.php:5294
7256
  msgid "Tuesday abbreviation"
7257
  msgstr "Abréviation de Mardi"
7258
 
7259
+ #: app/libraries/main.php:5295
7260
  msgid "Wednesday abbreviation"
7261
  msgstr "Abréviation de Mercredi"
7262
 
7263
+ #: app/libraries/main.php:5296
7264
  msgid "Thursday abbreviation"
7265
  msgstr "Abréviation de Jeudi"
7266
 
7267
+ #: app/libraries/main.php:5297
7268
  msgid "Friday abbreviation"
7269
  msgstr "Abréviation de Vendredi"
7270
 
7271
+ #: app/libraries/main.php:5298
7272
  msgid "Saturday abbreviation"
7273
  msgstr "Abréviation de Samedi"
7274
 
7275
+ #: app/libraries/main.php:5302
7276
  msgid "Others"
7277
  msgstr "Autres"
7278
 
7279
+ #: app/libraries/main.php:5304
7280
  msgid "Booking Success Message"
7281
  msgstr "Message de succès de réservation"
7282
 
7283
+ #: app/libraries/main.php:5304
7284
  msgid ""
7285
  "Thanks for your booking. Your tickets booked, booking verification might be "
7286
  "needed, please check your email."
7288
  "Merci pour votre réservation. Vos billets sont réservés, cependant une "
7289
  "vérification peut être nécessaires, contrôlez votre boite mail."
7290
 
7291
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7292
  msgid "Register Button"
7293
  msgstr "Boutons d'inscription"
7294
 
7295
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7296
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7297
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7298
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7299
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7300
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7301
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7302
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7303
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7304
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7309
  msgid "REGISTER"
7310
  msgstr "S'INSCRIRE"
7311
 
7312
+ #: app/libraries/main.php:5306
7313
  msgid "View Detail Button"
7314
  msgstr "Afficher le boutons de détail"
7315
 
7316
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7317
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7318
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7319
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7324
  msgid "View Detail"
7325
  msgstr "En savoir plus"
7326
 
7327
+ #: app/libraries/main.php:5307
7328
  msgid "Event Detail Button"
7329
  msgstr "Bouton de détail de l'événement"
7330
 
7331
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7332
  msgid "Event Detail"
7333
  msgstr "Détails"
7334
 
7335
+ #: app/libraries/main.php:5309
7336
  msgid "More Info Link"
7337
  msgstr "Plus de lien d'info"
7338
 
7339
+ #: app/libraries/main.php:5312
7340
  msgid "Ticket (Singular)"
7341
  msgstr ""
7342
 
7343
+ #: app/libraries/main.php:5313
7344
  msgid "Tickets (Plural)"
7345
  msgstr ""
7346
 
7347
+ #: app/libraries/main.php:5399
7348
  msgid "EventON"
7349
  msgstr ""
7350
 
7351
+ #: app/libraries/main.php:5400
7352
  msgid "The Events Calendar"
7353
  msgstr ""
7354
 
7355
+ #: app/libraries/main.php:5401
7356
  msgid "Events Schedule WP Plugin"
7357
  msgstr ""
7358
 
7359
+ #: app/libraries/main.php:5402
7360
  msgid "Calendarize It"
7361
  msgstr ""
7362
 
7363
+ #: app/libraries/main.php:5403
7364
  #, fuzzy
7365
  #| msgid "Event Labels"
7366
  msgid "Event Espresso"
7367
  msgstr "Labels d'événement"
7368
 
7369
+ #: app/libraries/main.php:5404
7370
  #, fuzzy
7371
  #| msgid "Event Repeating"
7372
  msgid "Events Manager (Recurring)"
7373
  msgstr "Événement récurrent"
7374
 
7375
+ #: app/libraries/main.php:5405
7376
  #, fuzzy
7377
  #| msgid "Modern Events Calendar"
7378
  msgid "Events Manager (Single)"
7379
  msgstr "Modern Events Calendar"
7380
 
7381
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7382
  msgid "Confirmed"
7383
  msgstr "Confirmé"
7384
 
7385
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7386
  msgid "Rejected"
7387
  msgstr "Rejeté"
7388
 
7389
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7390
  msgid "Pending"
7391
  msgstr "En attente"
7392
 
7393
+ #: app/libraries/main.php:5529
7394
  msgid "Waiting"
7395
  msgstr "En attente"
7396
 
7397
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7398
  msgid "Skin controller does not exist."
7399
  msgstr "Le contrôleur de Skin n'existe pas."
7400
 
7401
+ #: app/libraries/main.php:5848
7402
  #, fuzzy
7403
  #| msgid "Sold out!"
7404
  msgid "Sold Out"
7405
  msgstr "Épuisé !"
7406
 
7407
+ #: app/libraries/main.php:5856
7408
  #, fuzzy
7409
  #| msgid "Ticket"
7410
  msgid "Last Few Tickets"
7414
  msgid "Please verify your email."
7415
  msgstr "Merci de vérifier vos e-mails."
7416
 
7417
+ #: app/libraries/notifications.php:153
7418
  msgid "Your booking is received."
7419
  msgstr "Votre réservation est reçue."
7420
 
7421
+ #: app/libraries/notifications.php:271
7422
  msgid "Your booking is confirmed."
7423
  msgstr "Votre réservation est confirmée."
7424
 
7425
+ #: app/libraries/notifications.php:435
7426
  #, fuzzy
7427
  #| msgid "Your booking cannot be canceled."
7428
  msgid "booking canceled."
7429
  msgstr "Votre réservation ne peut être annulée."
7430
 
7431
+ #: app/libraries/notifications.php:510
7432
  msgid "A new booking is received."
7433
  msgstr "Une nouvelle réservation est enregistrée."
7434
 
7435
+ #: app/libraries/notifications.php:734
7436
  msgid "A new event is added."
7437
  msgstr "Un nouvel événement est ajouté."
7438
 
7439
+ #: app/libraries/notifications.php:803
7440
  #, fuzzy
7441
  #| msgid "The event published."
7442
  msgid "Your event is published."
7443
  msgstr "Événement Publié."
7444
 
7445
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7446
+ #: app/libraries/notifications.php:1052
7447
  msgid "to"
7448
  msgstr ""
7449
 
7450
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7451
  msgid "+ Add to Google Calendar"
7452
  msgstr "+ Ajouter à mon Agenda Google"
7453
 
7454
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7455
  msgid "+ iCal export"
7456
  msgstr "+ Exporter vers iCal"
7457
 
7458
+ #: app/libraries/notifications.php:1131
7459
  msgid "Yes"
7460
  msgstr "Oui"
7461
 
7462
+ #: app/libraries/notifications.php:1131
7463
  msgid "No"
7464
  msgstr "Non"
7465
 
7466
+ #: app/libraries/skins.php:1008
7467
+ #, fuzzy
7468
+ #| msgid "Select All"
7469
+ msgid "Select"
7470
+ msgstr "Tout sélectionner"
7471
 
7472
  #: app/modules/attendees-list/details.php:36
7473
  msgid "Event Attendees"
7506
  msgid "Free Booking"
7507
  msgstr ""
7508
 
7509
+ #: app/modules/booking/steps/form.php:52
7510
+ #, fuzzy
7511
+ #| msgid "Attendees Form"
7512
+ msgid "Attendee's Form"
7513
+ msgstr "Formulaire de réservation"
7514
+
7515
  #: app/modules/booking/steps/form.php:165
7516
  msgid "Fill other attendees information like the first form."
7517
  msgstr ""
7518
 
7519
  #: app/modules/booking/steps/form.php:179
7520
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7521
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7522
  msgid "Next"
7523
  msgstr "Prochain"
7530
  msgid "Book Event"
7531
  msgstr "Réservez pour cet événement"
7532
 
7533
+ #: app/modules/booking/steps/tickets.php:40
7534
  #, php-format
7535
  msgid "Available %s: <span>%s</span>"
7536
  msgstr ""
7537
 
7538
+ #: app/modules/booking/steps/tickets.php:44
7539
  #, php-format
7540
+ msgid "The %s ticket sales has stopped!"
7541
  msgstr ""
7542
 
7543
+ #: app/modules/booking/steps/tickets.php:45
7544
  #, php-format
7545
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7546
  msgstr ""
7563
  msgid "Get Directions"
7564
  msgstr ""
7565
 
7566
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7567
  msgid "Share this event"
7568
  msgstr "Partagez cet événement"
7569
 
7590
  msgid "Go to occurrence page"
7591
  msgstr "Aller à la Page"
7592
 
7593
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7594
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7595
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7596
  msgid "Time"
7718
  msgid "Home"
7719
  msgstr ""
7720
 
7721
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7722
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7723
  #: app/skins/single/modern.php:265
7724
  msgid "Sold out!"
7725
  msgstr "Épuisé !"
7726
 
7727
+ #: app/skins/single.php:822 app/skins/single.php:877
7728
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7729
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7730
  #: app/skins/single/modern.php:44
7731
  msgid "Phone"
7732
  msgstr "Téléphone"
7733
 
7734
+ #: app/skins/single.php:836 app/skins/single.php:891
7735
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7736
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7737
  #: app/skins/single/modern.php:58
7738
  msgid "Website"
7739
  msgstr "Site Web"
7740
 
7741
+ #: app/skins/single.php:961
7742
  msgid "Speakers:"
7743
  msgstr ""
7744
 
languages/modern-events-calendar-lite-hu_HU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-hu_HU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:03+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
@@ -266,7 +266,7 @@ msgstr ""
266
  msgid "Add New Event"
267
  msgstr ""
268
 
269
- #: app/features/events.php:161 app/features/ix.php:3752
270
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
271
  msgid "No events found!"
272
  msgstr ""
@@ -301,8 +301,8 @@ msgstr ""
301
  #: app/features/mec/meta_boxes/search_form.php:575
302
  #: app/features/mec/meta_boxes/search_form.php:672
303
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
304
- #: app/features/search.php:67 app/libraries/main.php:5260
305
- #: app/libraries/skins.php:850 app/skins/single.php:560
306
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
307
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
308
  #: app/skins/single/modern.php:113
@@ -311,7 +311,7 @@ msgstr "kategória"
311
 
312
  #: app/features/events.php:183 app/features/events.php:3275
313
  #: app/features/fes/form.php:757 app/features/mec.php:402
314
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
315
  msgid "Categories"
316
  msgstr ""
317
 
@@ -396,7 +396,7 @@ msgid "Event Repeating"
396
  msgstr ""
397
 
398
  #: app/features/events.php:333 app/features/events.php:1286
399
- #: app/features/mec/settings.php:710 app/skins/single.php:941
400
  msgid "Hourly Schedule"
401
  msgstr "Programterv"
402
 
@@ -412,7 +412,7 @@ msgstr ""
412
 
413
  #: app/features/events.php:336 app/features/events.php:3322
414
  #: app/features/events.php:3513 app/features/events.php:3555
415
- #: app/features/ix.php:3373 app/features/ix.php:3414
416
  #: app/features/mec/meta_boxes/display_options.php:960
417
  #: app/features/mec/meta_boxes/search_form.php:45
418
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -429,16 +429,16 @@ msgstr ""
429
  #: app/features/organizers.php:58 app/features/organizers.php:204
430
  #: app/features/organizers.php:260 app/features/organizers.php:262
431
  #: app/features/organizers.php:271 app/features/search.php:75
432
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
433
- #: app/skins/single.php:806 app/skins/single/default.php:217
434
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
435
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
436
  msgid "Organizer"
437
  msgstr "Szervező"
438
 
439
  #: app/features/events.php:337 app/features/events.php:1172
440
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
441
- #: app/skins/single.php:583 app/skins/single/default.php:126
442
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
443
  #: app/skins/single/modern.php:208
444
  msgid "Cost"
@@ -456,7 +456,7 @@ msgstr ""
456
  #: app/features/events.php:3802 app/features/fes.php:223
457
  #: app/features/fes/form.php:689 app/features/labels.php:178
458
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
459
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
460
  #: app/modules/booking/steps/form.php:37
461
  msgid "Name"
462
  msgstr "Név"
@@ -466,12 +466,12 @@ msgstr "Név"
466
  #: app/features/fes.php:223 app/features/fes/form.php:685
467
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
468
  #: app/features/organizers.php:111 app/features/organizers.php:152
469
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
470
- #: app/features/speakers.php:187 app/libraries/main.php:1539
471
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
472
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
473
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
474
- #: app/skins/single.php:878 app/skins/single/default.php:234
475
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
476
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
477
  msgid "Email"
@@ -484,8 +484,8 @@ msgstr ""
484
  #: app/features/events.php:491 app/features/events.php:497
485
  #: app/features/events.php:3323 app/features/events.php:3513
486
  #: app/features/events.php:3555 app/features/fes/form.php:247
487
- #: app/features/fes/form.php:251 app/features/ix.php:3373
488
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
489
  #: app/features/mec/dashboard.php:400
490
  #: app/features/mec/meta_boxes/display_options.php:48
491
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -522,8 +522,8 @@ msgstr ""
522
  #: app/features/events.php:583 app/features/events.php:588
523
  #: app/features/events.php:3324 app/features/events.php:3513
524
  #: app/features/events.php:3555 app/features/fes/form.php:287
525
- #: app/features/fes/form.php:291 app/features/ix.php:3373
526
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
527
  #: app/features/mec/dashboard.php:401
528
  msgid "End Date"
529
  msgstr ""
@@ -601,14 +601,14 @@ msgstr ""
601
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
602
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
603
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
604
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
605
- #: app/features/mec/notifications.php:170
606
- #: app/features/mec/notifications.php:238
607
- #: app/features/mec/notifications.php:308
608
- #: app/features/mec/notifications.php:373
609
- #: app/features/mec/notifications.php:384
610
- #: app/features/mec/notifications.php:454
611
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
612
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
613
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
614
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -624,7 +624,7 @@ msgstr ""
624
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
625
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
626
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
627
- #: app/skins/single.php:668 app/skins/single/default.php:141
628
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
629
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
630
  msgid "Read More"
@@ -793,8 +793,8 @@ msgstr ""
793
 
794
  #: app/features/events.php:1168 app/features/events.php:3513
795
  #: app/features/events.php:3555 app/features/fes/form.php:727
796
- #: app/features/ix.php:3373 app/features/ix.php:3414
797
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
798
  #: app/widgets/single.php:103
799
  msgid "Event Cost"
800
  msgstr ""
@@ -810,8 +810,8 @@ msgstr ""
810
  #: app/features/events.php:1204 app/features/events.php:2541
811
  #: app/features/fes.php:223 app/features/mec/booking.php:491
812
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
813
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
814
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
815
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
816
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
817
  msgid "Date"
@@ -848,8 +848,8 @@ msgstr ""
848
  #: app/features/events.php:1437 app/features/events.php:2322
849
  #: app/features/events.php:2369 app/features/events.php:3319
850
  #: app/features/events.php:3513 app/features/events.php:3555
851
- #: app/features/fes/form.php:236 app/features/ix.php:3373
852
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
853
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
854
  msgid "Title"
855
  msgstr ""
@@ -862,13 +862,13 @@ msgstr ""
862
  #: app/features/events.php:2357 app/features/events.php:2399
863
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
864
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
865
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
866
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
867
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
868
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
869
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
870
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
871
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
872
  msgid "Remove"
873
  msgstr ""
874
 
@@ -896,7 +896,7 @@ msgstr ""
896
  #: app/features/events.php:1445 app/features/fes/form.php:851
897
  #: app/features/mec.php:410 app/features/mec/modules.php:52
898
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
899
- #: app/libraries/main.php:565 app/libraries/main.php:5267
900
  #: app/modules/speakers/details.php:18
901
  msgid "Speakers"
902
  msgstr ""
@@ -911,7 +911,7 @@ msgid "Event Links"
911
  msgstr ""
912
 
913
  #: app/features/events.php:1479 app/features/events.php:1485
914
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
915
  msgid "Event Link"
916
  msgstr ""
917
 
@@ -932,8 +932,8 @@ msgid "URL Shortener"
932
  msgstr ""
933
 
934
  #: app/features/events.php:1495 app/features/events.php:1508
935
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
936
- #: app/skins/single.php:667 app/skins/single/default.php:140
937
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
938
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
939
  #: app/widgets/single.php:107
@@ -964,7 +964,7 @@ msgstr ""
964
 
965
  #: app/features/events.php:1596 app/features/events.php:1849
966
  #: app/features/events.php:2064 app/modules/booking/default.php:85
967
- #: app/modules/booking/steps/tickets.php:44
968
  #: app/skins/available_spot/tpl.php:160
969
  msgid "Unlimited"
970
  msgstr ""
@@ -997,7 +997,7 @@ msgid "12"
997
  msgstr ""
998
 
999
  #: app/features/events.php:1653 app/libraries/book.php:60
1000
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1001
  msgid "Tickets"
1002
  msgstr ""
1003
 
@@ -1020,13 +1020,13 @@ msgstr ""
1020
 
1021
  #: app/features/events.php:1680 app/features/events.php:1955
1022
  #: app/features/events.php:3513 app/features/events.php:3555
1023
- #: app/features/ix.php:3373 app/features/ix.php:3414
1024
  msgid "Start Time"
1025
  msgstr ""
1026
 
1027
  #: app/features/events.php:1739 app/features/events.php:1985
1028
  #: app/features/events.php:3513 app/features/events.php:3555
1029
- #: app/features/ix.php:3373 app/features/ix.php:3414
1030
  msgid "End Time"
1031
  msgstr ""
1032
 
@@ -1058,31 +1058,31 @@ msgstr ""
1058
  msgid "Available Tickets"
1059
  msgstr "Szabad jegyek száma:"
1060
 
1061
- #: app/features/events.php:1855 app/features/events.php:2070
1062
  msgid "Minimum Ticket e.g. 3"
1063
  msgstr ""
1064
 
1065
- #: app/features/events.php:1858 app/features/events.php:2073
1066
  msgid "MinimumTicket"
1067
  msgstr ""
1068
 
1069
- #: app/features/events.php:1860 app/features/events.php:2075
1070
  msgid "Set a number for the minimum ticket reservation"
1071
  msgstr ""
1072
 
1073
- #: app/features/events.php:1868 app/features/events.php:2083
1074
  msgid "e.g. 0"
1075
  msgstr ""
1076
 
1077
- #: app/features/events.php:1870 app/features/events.php:2085
1078
  msgid "Day"
1079
  msgstr ""
1080
 
1081
- #: app/features/events.php:1871 app/features/events.php:2086
1082
  msgid "Hour"
1083
  msgstr ""
1084
 
1085
- #: app/features/events.php:1873 app/features/events.php:2088
1086
  #, php-format
1087
  msgid "Stop selling ticket %s before event start."
1088
  msgstr ""
@@ -1106,7 +1106,7 @@ msgstr ""
1106
  #: app/features/mec/meta_boxes/search_form.php:610
1107
  #: app/features/mec/meta_boxes/search_form.php:707
1108
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1109
- #: app/libraries/skins.php:980
1110
  msgid "Label"
1111
  msgstr ""
1112
 
@@ -1170,46 +1170,46 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1170
  msgstr ""
1171
 
1172
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1173
- #: app/libraries/main.php:2749
1174
  #, fuzzy
1175
  #| msgid "Name"
1176
  msgid "MEC Name"
1177
  msgstr "Név"
1178
 
1179
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1180
- #: app/libraries/main.php:2778
1181
  msgid "MEC Email"
1182
  msgstr ""
1183
 
1184
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1185
- #: app/libraries/main.php:2719
1186
  msgid "Text"
1187
  msgstr ""
1188
 
1189
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1190
  #: app/features/organizers.php:103 app/features/organizers.php:148
1191
- #: app/features/speakers.php:118 app/features/speakers.php:183
1192
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1193
  msgid "Tel"
1194
  msgstr ""
1195
 
1196
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1197
- #: app/libraries/main.php:2837
1198
  msgid "File"
1199
  msgstr ""
1200
 
1201
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1202
- #: app/libraries/main.php:2924
1203
  msgid "Textarea"
1204
  msgstr ""
1205
 
1206
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1207
- #: app/libraries/main.php:2977
1208
  msgid "Checkboxes"
1209
  msgstr ""
1210
 
1211
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1212
- #: app/libraries/main.php:3021
1213
  msgid "Radio Buttons"
1214
  msgstr ""
1215
 
@@ -1289,17 +1289,17 @@ msgstr ""
1289
  #: app/features/mec/meta_boxes/search_form.php:696
1290
  #: app/features/mec/meta_boxes/search_form.php:703
1291
  #: app/features/mec/meta_boxes/search_form.php:710
1292
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1293
  msgid "Dropdown"
1294
  msgstr ""
1295
 
1296
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1297
- #: app/libraries/main.php:3112
1298
  msgid "Agreement"
1299
  msgstr ""
1300
 
1301
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1302
- #: app/libraries/main.php:2953
1303
  msgid "Paragraph"
1304
  msgstr ""
1305
 
@@ -1328,8 +1328,8 @@ msgid "Attendees List"
1328
  msgstr "Jelentkezési lap"
1329
 
1330
  #: app/features/events.php:3321 app/features/events.php:3513
1331
- #: app/features/events.php:3555 app/features/ix.php:3373
1332
- #: app/features/ix.php:3414 app/features/locations.php:58
1333
  #: app/features/locations.php:230 app/features/locations.php:287
1334
  #: app/features/locations.php:289 app/features/locations.php:298
1335
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1346,8 +1346,8 @@ msgstr "Jelentkezési lap"
1346
  #: app/features/mec/meta_boxes/search_form.php:679
1347
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1348
  #: app/features/search.php:71 app/libraries/main.php:2236
1349
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1350
- #: app/skins/single.php:487 app/skins/single.php:918
1351
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1352
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1353
  #: app/skins/single/modern.php:97
@@ -1388,14 +1388,14 @@ msgid "Duplicate"
1388
  msgstr ""
1389
 
1390
  #: app/features/events.php:3513 app/features/events.php:3555
1391
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1392
  #: app/features/labels.php:177 app/features/locations.php:229
1393
- #: app/features/organizers.php:203 app/features/speakers.php:253
1394
  msgid "ID"
1395
  msgstr ""
1396
 
1397
  #: app/features/events.php:3513 app/features/events.php:3555
1398
- #: app/features/ix.php:3373 app/features/ix.php:3414
1399
  msgid "Link"
1400
  msgstr ""
1401
 
@@ -1411,7 +1411,7 @@ msgstr ""
1411
 
1412
  #: app/features/events.php:3808 app/features/fes.php:223
1413
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1414
- #: app/libraries/main.php:5294
1415
  msgid "Ticket"
1416
  msgstr ""
1417
 
@@ -1583,8 +1583,8 @@ msgstr ""
1583
 
1584
  #: app/features/fes/form.php:783 app/features/labels.php:61
1585
  #: app/features/labels.php:221 app/features/mec.php:403
1586
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1587
- #: app/skins/single.php:696 app/skins/single/default.php:155
1588
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1589
  #: app/skins/single/modern.php:223
1590
  msgid "Labels"
@@ -1659,81 +1659,81 @@ msgstr ""
1659
  msgid "The events are imported successfully!"
1660
  msgstr ""
1661
 
1662
- #: app/features/ix.php:806
1663
  msgid "Third Party plugin is not installed and activated!"
1664
  msgstr ""
1665
 
1666
- #: app/features/ix.php:829
1667
  msgid "Third Party plugin is invalid!"
1668
  msgstr ""
1669
 
1670
- #: app/features/ix.php:2580 app/features/ix.php:2638
1671
  msgid "Both of API key and Calendar ID are required!"
1672
  msgstr ""
1673
 
1674
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1675
  msgid "Please select some events to import!"
1676
  msgstr ""
1677
 
1678
- #: app/features/ix.php:2994 app/features/ix.php:3057
1679
  msgid "Both of API key and Group URL are required!"
1680
  msgstr ""
1681
 
1682
- #: app/features/ix.php:3296
1683
  msgid "Check at Meetup"
1684
  msgstr ""
1685
 
1686
- #: app/features/ix.php:3373 app/features/ix.php:3414
1687
  msgid "Organizer Tel"
1688
  msgstr ""
1689
 
1690
- #: app/features/ix.php:3373 app/features/ix.php:3414
1691
  msgid "Organizer Email"
1692
  msgstr ""
1693
 
1694
- #: app/features/ix.php:3495
1695
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1696
  msgstr ""
1697
 
1698
- #: app/features/ix.php:3518
1699
  #, php-format
1700
  msgid "All seems good! Please click %s for authenticating your app."
1701
  msgstr ""
1702
 
1703
- #: app/features/ix.php:3572
1704
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1705
  msgstr ""
1706
 
1707
- #: app/features/ix.php:3688
1708
  #, php-format
1709
  msgid "%s events added to Google Calendar successfully."
1710
  msgstr ""
1711
 
1712
- #: app/features/ix.php:3689
1713
  #, php-format
1714
  msgid "%s previously added events get updated."
1715
  msgstr ""
1716
 
1717
- #: app/features/ix.php:3690
1718
  #, php-format
1719
  msgid "%s events failed to add for following reasons: %s"
1720
  msgstr ""
1721
 
1722
- #: app/features/ix.php:3722
1723
  msgid "Please insert your Facebook page's link."
1724
  msgstr ""
1725
 
1726
- #: app/features/ix.php:3731
1727
  msgid ""
1728
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1729
  "valid Facebook page link."
1730
  msgstr ""
1731
 
1732
- #: app/features/ix.php:3763
1733
  msgid "Please insert your facebook page's link."
1734
  msgstr ""
1735
 
1736
- #: app/features/ix.php:3768
1737
  msgid ""
1738
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1739
  "valid facebook page link."
@@ -1896,14 +1896,15 @@ msgstr ""
1896
  #: app/features/ix/export_g_calendar.php:72
1897
  #: app/features/ix/export_g_calendar.php:147
1898
  #: app/features/ix/export_g_calendar.php:164
1899
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
1900
- #: app/features/mec/notifications.php:213
1901
- #: app/features/mec/notifications.php:420
 
1902
  msgid "Add to Google Calendar"
1903
  msgstr "Google Naptárba mentés"
1904
 
1905
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1906
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
1907
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1908
  msgid "Checking ..."
1909
  msgstr ""
@@ -2143,7 +2144,7 @@ msgstr ""
2143
 
2144
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2145
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2146
- #: app/features/mec/notifications.php:361
2147
  msgid "Important Note"
2148
  msgstr ""
2149
 
@@ -2314,7 +2315,7 @@ msgid "Featured"
2314
  msgstr ""
2315
 
2316
  #: app/features/labels.php:118 app/features/labels.php:143
2317
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2318
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2319
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2320
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2333,7 +2334,7 @@ msgid "You can show featured and canceled events by a different style!"
2333
  msgstr ""
2334
 
2335
  #: app/features/labels.php:180 app/features/locations.php:232
2336
- #: app/features/organizers.php:206 app/features/speakers.php:257
2337
  #: app/modules/booking/steps/tickets.php:38
2338
  msgid "Count"
2339
  msgstr ""
@@ -2350,7 +2351,7 @@ msgstr ""
2350
 
2351
  #: app/features/locations.php:59 app/features/mec.php:404
2352
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2353
- #: app/libraries/main.php:5263
2354
  msgid "Locations"
2355
  msgstr ""
2356
 
@@ -2383,13 +2384,13 @@ msgstr ""
2383
 
2384
  #: app/features/locations.php:138 app/features/locations.php:180
2385
  #: app/features/organizers.php:127 app/features/organizers.php:160
2386
- #: app/features/speakers.php:158 app/features/speakers.php:203
2387
  msgid "Thumbnail"
2388
  msgstr ""
2389
 
2390
  #: app/features/locations.php:143 app/features/locations.php:183
2391
  #: app/features/organizers.php:132 app/features/organizers.php:163
2392
- #: app/features/speakers.php:163 app/features/speakers.php:206
2393
  msgid "Upload/Add image"
2394
  msgstr ""
2395
 
@@ -2397,7 +2398,7 @@ msgstr ""
2397
  #: app/features/locations.php:340 app/features/locations.php:347
2398
  #: app/features/organizers.php:133 app/features/organizers.php:164
2399
  #: app/features/organizers.php:299 app/features/organizers.php:306
2400
- #: app/features/speakers.php:164 app/features/speakers.php:207
2401
  msgid "Remove image"
2402
  msgstr ""
2403
 
@@ -2455,7 +2456,7 @@ msgstr ""
2455
  msgid "Don't show map in single event page"
2456
  msgstr ""
2457
 
2458
- #: app/features/locations.php:356 app/libraries/main.php:5297
2459
  #, fuzzy
2460
  #| msgid "Location"
2461
  msgid "Other Locations"
@@ -2480,7 +2481,7 @@ msgstr ""
2480
  msgid "Troubleshooting"
2481
  msgstr ""
2482
 
2483
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2484
  #, php-format
2485
  msgid "%s to %s"
2486
  msgstr ""
@@ -2510,7 +2511,7 @@ msgstr ""
2510
 
2511
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2512
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2513
- #: app/libraries/main.php:5265
2514
  msgid "Organizers"
2515
  msgstr ""
2516
 
@@ -2624,10 +2625,10 @@ msgstr ""
2624
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2625
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2626
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2627
- #: app/features/mec/notifications.php:531
2628
- #: app/features/mec/notifications.php:543
2629
- #: app/features/mec/notifications.php:639
2630
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2631
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2632
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2633
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2740,7 +2741,7 @@ msgstr ""
2740
  msgid "Enable Express Attendees Form"
2741
  msgstr ""
2742
 
2743
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2744
  msgid "Attendees Form"
2745
  msgstr "Jelentkezési lap"
2746
 
@@ -2772,7 +2773,7 @@ msgstr ""
2772
  msgid "Auto verification for paid bookings"
2773
  msgstr ""
2774
 
2775
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2776
  #: app/libraries/main.php:579
2777
  msgid "Booking Confirmation"
2778
  msgstr ""
@@ -2836,14 +2837,14 @@ msgid ""
2836
  msgstr ""
2837
 
2838
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2839
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
2840
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2841
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2842
  msgid "Saved"
2843
  msgstr ""
2844
 
2845
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2846
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
2847
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2848
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2849
  msgid "Settings Saved!"
@@ -2851,15 +2852,15 @@ msgstr ""
2851
 
2852
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2853
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2854
- #: app/features/mec/notifications.php:620
2855
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
2856
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2857
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
2858
  msgid "Verified"
2859
  msgstr ""
2860
 
2861
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2862
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
2863
  #: app/features/mec/single.php:291
2864
  msgid "Please Refresh Page"
2865
  msgstr ""
@@ -3949,8 +3950,8 @@ msgstr ""
3949
  #: app/features/mec/meta_boxes/search_form.php:693
3950
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3951
  #: app/features/search.php:79 app/features/speakers.php:61
3952
- #: app/features/speakers.php:254 app/libraries/main.php:5268
3953
- #: app/libraries/skins.php:928
3954
  msgid "Speaker"
3955
  msgstr ""
3956
 
@@ -3966,7 +3967,7 @@ msgstr ""
3966
  #: app/features/mec/meta_boxes/search_form.php:603
3967
  #: app/features/mec/meta_boxes/search_form.php:700
3968
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
3969
- #: app/features/search.php:83 app/libraries/skins.php:954
3970
  msgid "Tag"
3971
  msgstr ""
3972
 
@@ -4212,368 +4213,457 @@ msgstr ""
4212
  msgid "It sends to attendee after booking for notifying him/her."
4213
  msgstr ""
4214
 
4215
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4216
- #: app/features/mec/notifications.php:161
4217
- #: app/features/mec/notifications.php:229
4218
- #: app/features/mec/notifications.php:299
4219
- #: app/features/mec/notifications.php:364
4220
- #: app/features/mec/notifications.php:445
4221
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4222
  msgid "Email Subject"
4223
  msgstr ""
4224
 
4225
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4226
- #: app/features/mec/notifications.php:109
4227
- #: app/features/mec/notifications.php:113
4228
- #: app/features/mec/notifications.php:165
4229
- #: app/features/mec/notifications.php:169
4230
- #: app/features/mec/notifications.php:233
4231
- #: app/features/mec/notifications.php:237
4232
- #: app/features/mec/notifications.php:303
4233
- #: app/features/mec/notifications.php:307
4234
- #: app/features/mec/notifications.php:368
4235
- #: app/features/mec/notifications.php:372
4236
- #: app/features/mec/notifications.php:383
4237
- #: app/features/mec/notifications.php:449
4238
- #: app/features/mec/notifications.php:453
4239
- #: app/features/mec/notifications.php:497
4240
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4241
  msgid "Custom Recipients"
4242
  msgstr ""
4243
 
4244
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4245
- #: app/features/mec/notifications.php:170
4246
- #: app/features/mec/notifications.php:238
4247
- #: app/features/mec/notifications.php:308
4248
- #: app/features/mec/notifications.php:373
4249
- #: app/features/mec/notifications.php:384
4250
- #: app/features/mec/notifications.php:454
4251
- #: app/features/mec/notifications.php:502
4252
  msgid "Insert comma separated emails for multiple recipients."
4253
  msgstr ""
4254
 
4255
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4256
- #: app/features/mec/notifications.php:315
4257
  msgid "Send the email to event organizer"
4258
  msgstr ""
4259
 
4260
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4261
- #: app/features/mec/notifications.php:180
4262
- #: app/features/mec/notifications.php:256
4263
- #: app/features/mec/notifications.php:318
4264
- #: app/features/mec/notifications.php:390
4265
- #: app/features/mec/notifications.php:460
4266
- #: app/features/mec/notifications.php:508
4267
  msgid "Email Content"
4268
  msgstr ""
4269
 
4270
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4271
- #: app/features/mec/notifications.php:183
4272
- #: app/features/mec/notifications.php:259
4273
- #: app/features/mec/notifications.php:321
4274
- #: app/features/mec/notifications.php:393
4275
- #: app/features/mec/notifications.php:463
4276
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4277
  msgid "You can use following placeholders"
4278
  msgstr ""
4279
 
4280
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4281
- #: app/features/mec/notifications.php:185
4282
- #: app/features/mec/notifications.php:261
4283
- #: app/features/mec/notifications.php:323
4284
- #: app/features/mec/notifications.php:395
 
4285
  msgid "First name of attendee"
4286
  msgstr ""
4287
 
4288
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4289
- #: app/features/mec/notifications.php:186
4290
- #: app/features/mec/notifications.php:262
4291
- #: app/features/mec/notifications.php:324
4292
- #: app/features/mec/notifications.php:396
 
4293
  msgid "Last name of attendee"
4294
  msgstr ""
4295
 
4296
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4297
- #: app/features/mec/notifications.php:187
4298
- #: app/features/mec/notifications.php:263
4299
- #: app/features/mec/notifications.php:325
4300
- #: app/features/mec/notifications.php:397
 
4301
  msgid "Email of attendee"
4302
  msgstr "A résztvevők email címe"
4303
 
4304
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4305
- #: app/features/mec/notifications.php:188
4306
- #: app/features/mec/notifications.php:264
4307
- #: app/features/mec/notifications.php:326
4308
- #: app/features/mec/notifications.php:398
 
4309
  msgid "Booked date of event"
4310
  msgstr ""
4311
 
4312
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4313
- #: app/features/mec/notifications.php:189
4314
- #: app/features/mec/notifications.php:265
4315
- #: app/features/mec/notifications.php:327
4316
- #: app/features/mec/notifications.php:399
 
4317
  #, fuzzy
4318
  #| msgid "Book Event"
4319
  msgid "Booked time of event"
4320
  msgstr "Foglalás az eseményre"
4321
 
4322
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4323
- #: app/features/mec/notifications.php:190
4324
- #: app/features/mec/notifications.php:266
4325
- #: app/features/mec/notifications.php:328
4326
- #: app/features/mec/notifications.php:400
 
4327
  msgid "Booking Price"
4328
  msgstr ""
4329
 
4330
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4331
- #: app/features/mec/notifications.php:191
4332
- #: app/features/mec/notifications.php:267
4333
- #: app/features/mec/notifications.php:329
4334
- #: app/features/mec/notifications.php:401
 
4335
  msgid "Date and time of placing booking"
4336
  msgstr ""
4337
 
4338
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4339
- #: app/features/mec/notifications.php:192
4340
- #: app/features/mec/notifications.php:268
4341
- #: app/features/mec/notifications.php:330
4342
- #: app/features/mec/notifications.php:402
4343
- #: app/features/mec/notifications.php:471
4344
- #: app/features/mec/notifications.php:519
 
4345
  msgid "Your website title"
4346
  msgstr ""
4347
 
4348
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4349
- #: app/features/mec/notifications.php:193
4350
- #: app/features/mec/notifications.php:269
4351
- #: app/features/mec/notifications.php:331
4352
- #: app/features/mec/notifications.php:403
4353
- #: app/features/mec/notifications.php:472
4354
- #: app/features/mec/notifications.php:520
 
4355
  msgid "Your website URL"
4356
  msgstr ""
4357
 
4358
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4359
- #: app/features/mec/notifications.php:194
4360
- #: app/features/mec/notifications.php:270
4361
- #: app/features/mec/notifications.php:332
4362
- #: app/features/mec/notifications.php:404
4363
- #: app/features/mec/notifications.php:473
4364
- #: app/features/mec/notifications.php:521
 
4365
  msgid "Your website description"
4366
  msgstr ""
4367
 
4368
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4369
- #: app/features/mec/notifications.php:195
4370
- #: app/features/mec/notifications.php:271
4371
- #: app/features/mec/notifications.php:333
4372
- #: app/features/mec/notifications.php:405
 
4373
  msgid "Event title"
4374
  msgstr ""
4375
 
4376
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4377
- #: app/features/mec/notifications.php:196
4378
- #: app/features/mec/notifications.php:272
4379
- #: app/features/mec/notifications.php:334
4380
- #: app/features/mec/notifications.php:406
 
4381
  msgid "Event link"
4382
  msgstr ""
4383
 
4384
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4385
- #: app/features/mec/notifications.php:197
4386
- #: app/features/mec/notifications.php:467
4387
- #: app/features/mec/notifications.php:515
 
4388
  msgid "Event Start Date"
4389
  msgstr ""
4390
 
4391
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4392
- #: app/features/mec/notifications.php:198
4393
- #: app/features/mec/notifications.php:468
4394
- #: app/features/mec/notifications.php:516
 
4395
  msgid "Event End Date"
4396
  msgstr ""
4397
 
4398
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4399
- #: app/features/mec/notifications.php:199
4400
- #: app/features/mec/notifications.php:273
4401
- #: app/features/mec/notifications.php:335
4402
- #: app/features/mec/notifications.php:407
 
4403
  msgid "Speaker name of booked event"
4404
  msgstr ""
4405
 
4406
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4407
- #: app/features/mec/notifications.php:200
4408
- #: app/features/mec/notifications.php:274
4409
- #: app/features/mec/notifications.php:336
4410
- #: app/features/mec/notifications.php:408
 
4411
  msgid "Organizer name of booked event"
4412
  msgstr ""
4413
 
4414
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4415
- #: app/features/mec/notifications.php:201
4416
- #: app/features/mec/notifications.php:275
4417
- #: app/features/mec/notifications.php:337
4418
- #: app/features/mec/notifications.php:409
 
4419
  msgid "Organizer tel of booked event"
4420
  msgstr ""
4421
 
4422
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4423
- #: app/features/mec/notifications.php:202
4424
- #: app/features/mec/notifications.php:276
4425
- #: app/features/mec/notifications.php:338
4426
- #: app/features/mec/notifications.php:410
 
4427
  msgid "Organizer email of booked event"
4428
  msgstr ""
4429
 
4430
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4431
- #: app/features/mec/notifications.php:203
4432
- #: app/features/mec/notifications.php:277
4433
- #: app/features/mec/notifications.php:339
4434
- #: app/features/mec/notifications.php:411
 
4435
  msgid "Location name of booked event"
4436
  msgstr ""
4437
 
4438
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4439
- #: app/features/mec/notifications.php:204
4440
- #: app/features/mec/notifications.php:278
4441
- #: app/features/mec/notifications.php:340
4442
- #: app/features/mec/notifications.php:412
 
4443
  msgid "Location address of booked event"
4444
  msgstr ""
4445
 
4446
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4447
- #: app/features/mec/notifications.php:205
4448
- #: app/features/mec/notifications.php:279
4449
- #: app/features/mec/notifications.php:341
4450
- #: app/features/mec/notifications.php:413
 
4451
  #, fuzzy
4452
  #| msgid "Book Event"
4453
  msgid "Featured image of booked event"
4454
  msgstr "Foglalás az eseményre"
4455
 
4456
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4457
- #: app/features/mec/notifications.php:343
 
4458
  msgid "Full Attendee info such as booking form data, name, email etc."
4459
  msgstr ""
4460
 
4461
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4462
- #: app/features/mec/notifications.php:415
 
4463
  msgid "Invoice Link"
4464
  msgstr ""
4465
 
4466
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4467
- #: app/features/mec/notifications.php:208
4468
- #: app/features/mec/notifications.php:282
4469
- #: app/features/mec/notifications.php:344
4470
- #: app/features/mec/notifications.php:416
 
4471
  msgid "Total Attendees"
4472
  msgstr ""
4473
 
4474
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4475
- #: app/features/mec/notifications.php:210
4476
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4477
  #, fuzzy
4478
  #| msgid "First name"
4479
  msgid "Ticket name"
4480
  msgstr "Keresztnév"
4481
 
4482
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4483
- #: app/features/mec/notifications.php:211
4484
- #: app/features/mec/notifications.php:418
 
4485
  #, fuzzy
4486
  #| msgid "Tickets Price"
4487
  msgid "Ticket time"
4488
  msgstr "Jegy(ek) ára"
4489
 
4490
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4491
- #: app/features/mec/notifications.php:212
4492
- #: app/features/mec/notifications.php:419
 
4493
  msgid "Download ICS file"
4494
  msgstr ""
4495
 
4496
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4497
  msgid "Booking Verification"
4498
  msgstr ""
4499
 
4500
- #: app/features/mec/notifications.php:103
4501
  msgid "It sends to attendee email for verifying their booking/email."
4502
  msgstr ""
4503
 
4504
- #: app/features/mec/notifications.php:146
4505
  msgid "Email/Booking verification link."
4506
  msgstr ""
4507
 
4508
- #: app/features/mec/notifications.php:159
4509
  msgid "It sends to attendee after confirming the booking by admin."
4510
  msgstr ""
4511
 
4512
- #: app/features/mec/notifications.php:177
4513
  msgid "Send One Single Email Only To First Attendee"
4514
  msgstr ""
4515
 
4516
- #: app/features/mec/notifications.php:206
4517
- #: app/features/mec/notifications.php:414
4518
  msgid "Booking cancellation link."
4519
  msgstr ""
4520
 
4521
- #: app/features/mec/notifications.php:209
4522
- #, fuzzy
4523
- #| msgid "First name"
4524
- msgid "Amount Tickets"
4525
- msgstr "Keresztnév"
4526
-
4527
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4528
  msgid "Booking Cancellation"
4529
  msgstr ""
4530
 
4531
- #: app/features/mec/notifications.php:223
4532
  msgid "Enable cancellation notification"
4533
  msgstr ""
4534
 
4535
- #: app/features/mec/notifications.php:227
4536
  msgid ""
4537
  "It sends to selected recipients after booking cancellation for notifying "
4538
  "them."
4539
  msgstr ""
4540
 
4541
- #: app/features/mec/notifications.php:245
4542
- #: app/features/mec/notifications.php:439
4543
  msgid "Send the email to admin"
4544
  msgstr ""
4545
 
4546
- #: app/features/mec/notifications.php:253
4547
  msgid "Send the email to booking user"
4548
  msgstr ""
4549
 
4550
- #: app/features/mec/notifications.php:280
4551
- #: app/features/mec/notifications.php:342
4552
  msgid "Admin booking management link."
4553
  msgstr ""
4554
 
4555
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4556
  msgid "Admin"
4557
  msgstr ""
4558
 
4559
- #: app/features/mec/notifications.php:293
4560
  msgid "Enable admin notification"
4561
  msgstr ""
4562
 
4563
- #: app/features/mec/notifications.php:297
4564
  msgid "It sends to admin to notify him/her that a new booking received."
4565
  msgstr ""
4566
 
4567
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4568
- #: app/libraries/notifications.php:548
4569
  msgid "Booking Reminder"
4570
  msgstr ""
4571
 
4572
- #: app/features/mec/notifications.php:355
4573
  msgid "Enable booking reminder notification"
4574
  msgstr ""
4575
 
4576
- #: app/features/mec/notifications.php:361
4577
  #, php-format
4578
  msgid ""
4579
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4581,64 +4671,64 @@ msgid ""
4581
  "send the reminders multiple times."
4582
  msgstr ""
4583
 
4584
- #: app/features/mec/notifications.php:361
4585
  msgid "only once per day"
4586
  msgstr ""
4587
 
4588
- #: app/features/mec/notifications.php:379
4589
  msgid "Days"
4590
  msgstr ""
4591
 
4592
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4593
  #: app/libraries/main.php:583
4594
  msgid "New Event"
4595
  msgstr ""
4596
 
4597
- #: app/features/mec/notifications.php:433
4598
  msgid "Enable new event notification"
4599
  msgstr ""
4600
 
4601
- #: app/features/mec/notifications.php:443
4602
  msgid ""
4603
  "It sends after adding a new event from frontend event submission or from "
4604
  "website backend."
4605
  msgstr ""
4606
 
4607
- #: app/features/mec/notifications.php:465
4608
- #: app/features/mec/notifications.php:513
4609
  msgid "Title of event"
4610
  msgstr ""
4611
 
4612
- #: app/features/mec/notifications.php:466
4613
- #: app/features/mec/notifications.php:514
4614
  msgid "Link of event"
4615
  msgstr ""
4616
 
4617
- #: app/features/mec/notifications.php:469
4618
- #: app/features/mec/notifications.php:517
4619
  msgid "Status of event"
4620
  msgstr ""
4621
 
4622
- #: app/features/mec/notifications.php:470
4623
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4624
  #: app/features/mec/settings.php:738
4625
  msgid "Event Note"
4626
  msgstr ""
4627
 
4628
- #: app/features/mec/notifications.php:474
4629
- #: app/features/mec/notifications.php:522
4630
  msgid "Admin events management link."
4631
  msgstr ""
4632
 
4633
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4634
  msgid "User Event Publishing"
4635
  msgstr ""
4636
 
4637
- #: app/features/mec/notifications.php:487
4638
  msgid "Enable user event publishing notification"
4639
  msgstr ""
4640
 
4641
- #: app/features/mec/notifications.php:491
4642
  msgid ""
4643
  "It sends after published a new event from frontend event submission or from "
4644
  "website backend."
@@ -4795,7 +4885,7 @@ msgid "You can enable/disable Schema scripts"
4795
  msgstr ""
4796
 
4797
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4798
- #: app/libraries/main.php:5272
4799
  msgid "Weekdays"
4800
  msgstr ""
4801
 
@@ -5905,12 +5995,12 @@ msgstr "például john@smith.com"
5905
  msgid "eg. https://webnus.net"
5906
  msgstr ""
5907
 
5908
- #: app/features/organizers.php:311 app/libraries/main.php:5296
5909
- #: app/skins/single.php:856
5910
  msgid "Other Organizers"
5911
  msgstr ""
5912
 
5913
- #: app/features/organizers.php:313
5914
  msgid ""
5915
  "You can select extra organizers in addition to main organizer if you like."
5916
  msgstr ""
@@ -5930,7 +6020,7 @@ msgstr "Foglalások"
5930
  msgid "#"
5931
  msgstr ""
5932
 
5933
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
5934
  msgid "Status"
5935
  msgstr ""
5936
 
@@ -5963,7 +6053,7 @@ msgstr ""
5963
  msgid "No bookings found!"
5964
  msgstr ""
5965
 
5966
- #: app/features/search.php:87 app/libraries/main.php:5262
5967
  msgid "label"
5968
  msgstr ""
5969
 
@@ -5988,62 +6078,74 @@ msgid "No search result."
5988
  msgstr ""
5989
 
5990
  #: app/features/search_bar/search_result.php:11
5991
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
5992
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
5993
- #: app/skins/single.php:160 app/skins/single.php:747
5994
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
5995
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
5996
  msgid "All of the day"
5997
  msgstr ""
5998
 
5999
- #: app/features/speakers.php:110 app/features/speakers.php:179
6000
- #: app/features/speakers.php:255
6001
  msgid "Job Title"
6002
  msgstr ""
6003
 
6004
- #: app/features/speakers.php:113 app/features/speakers.php:180
6005
  msgid "Insert speaker job title."
6006
  msgstr ""
6007
 
6008
- #: app/features/speakers.php:121 app/features/speakers.php:184
6009
  msgid "Insert speaker phone number."
6010
  msgstr ""
6011
 
6012
- #: app/features/speakers.php:129 app/features/speakers.php:188
6013
  msgid "Insert speaker email address."
6014
  msgstr ""
6015
 
6016
- #: app/features/speakers.php:134 app/features/speakers.php:191
6017
  #, fuzzy
6018
  #| msgid "Facebook Events"
6019
  msgid "Facebook Page"
6020
  msgstr "Facebook események"
6021
 
6022
- #: app/features/speakers.php:137 app/features/speakers.php:192
6023
  msgid "Insert URL of Facebook Page"
6024
  msgstr ""
6025
 
6026
- #: app/features/speakers.php:142 app/features/speakers.php:195
6027
  msgid "Instagram"
6028
  msgstr ""
6029
 
6030
- #: app/features/speakers.php:145 app/features/speakers.php:196
6031
  msgid "Insert URL of Instagram"
6032
  msgstr ""
6033
 
6034
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
6035
  msgid "Twitter Page"
6036
  msgstr ""
6037
 
6038
- #: app/features/speakers.php:153 app/features/speakers.php:200
6039
  msgid "Insert URL of Twitter Page"
6040
  msgstr ""
6041
 
6042
- #: app/features/speakers.php:315
 
 
 
 
6043
  msgid "Sorry, You must insert speaker name!"
6044
  msgstr ""
6045
 
6046
- #: app/features/speakers.php:364
6047
  msgid ""
6048
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6049
  "section and speaker widget section!"
@@ -6197,31 +6299,31 @@ msgstr ""
6197
  msgid "Tile View"
6198
  msgstr ""
6199
 
6200
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6201
  msgid "SU"
6202
  msgstr ""
6203
 
6204
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6205
  msgid "MO"
6206
  msgstr ""
6207
 
6208
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6209
  msgid "TU"
6210
  msgstr ""
6211
 
6212
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6213
  msgid "WE"
6214
  msgstr ""
6215
 
6216
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6217
  msgid "TH"
6218
  msgstr ""
6219
 
6220
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6221
  msgid "FR"
6222
  msgstr ""
6223
 
6224
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6225
  msgid "SA"
6226
  msgstr ""
6227
 
@@ -6464,167 +6566,167 @@ msgstr "Fizetés érvénytelen"
6464
  msgid "iCal export stopped!"
6465
  msgstr ""
6466
 
6467
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6468
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6469
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6470
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6471
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6472
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6473
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6474
  msgid "Sort"
6475
  msgstr ""
6476
 
6477
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6478
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6479
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6480
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6481
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6482
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6483
  msgid "Required Field"
6484
  msgstr "Töltse ki az adatokat!"
6485
 
6486
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6487
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6488
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6489
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6490
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6491
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6492
  msgid "Insert a label for this field"
6493
  msgstr ""
6494
 
6495
- #: app/libraries/main.php:2958
6496
  msgid "HTML and shortcode are allowed."
6497
  msgstr ""
6498
 
6499
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
6500
- #: app/libraries/main.php:3089
6501
  msgid "Option"
6502
  msgstr ""
6503
 
6504
- #: app/libraries/main.php:3123
6505
  #, php-format
6506
  msgid "Instead of %s, the page title with a link will be show."
6507
  msgstr ""
6508
 
6509
- #: app/libraries/main.php:3125
6510
  msgid "Agreement Page"
6511
  msgstr ""
6512
 
6513
- #: app/libraries/main.php:3136
6514
  msgid "Checked by default"
6515
  msgstr ""
6516
 
6517
- #: app/libraries/main.php:3137
6518
  msgid "Unchecked by default"
6519
  msgstr ""
6520
 
6521
- #: app/libraries/main.php:3160
6522
  msgid "Insert a label for this option"
6523
  msgstr ""
6524
 
6525
- #: app/libraries/main.php:3175
6526
  msgid "Free"
6527
  msgstr "Ingyenes"
6528
 
6529
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
6530
  msgid "M.E. Calender"
6531
  msgstr ""
6532
 
6533
- #: app/libraries/main.php:3936
6534
  #, php-format
6535
  msgid "Copy of %s"
6536
  msgstr ""
6537
 
6538
- #: app/libraries/main.php:4651
6539
  msgid "Booked an event."
6540
  msgstr ""
6541
 
6542
- #: app/libraries/main.php:4692
6543
  #, php-format
6544
  msgid "%s booked %s event."
6545
  msgstr ""
6546
 
6547
- #: app/libraries/main.php:5257
6548
  msgid "Taxonomies"
6549
  msgstr ""
6550
 
6551
- #: app/libraries/main.php:5259
6552
  msgid "Category Plural Label"
6553
  msgstr ""
6554
 
6555
- #: app/libraries/main.php:5260
6556
  msgid "Category Singular Label"
6557
  msgstr ""
6558
 
6559
- #: app/libraries/main.php:5261
6560
  msgid "Label Plural Label"
6561
  msgstr ""
6562
 
6563
- #: app/libraries/main.php:5262
6564
  msgid "Label Singular Label"
6565
  msgstr ""
6566
 
6567
- #: app/libraries/main.php:5263
6568
  msgid "Location Plural Label"
6569
  msgstr ""
6570
 
6571
- #: app/libraries/main.php:5264
6572
  msgid "Location Singular Label"
6573
  msgstr ""
6574
 
6575
- #: app/libraries/main.php:5265
6576
  msgid "Organizer Plural Label"
6577
  msgstr ""
6578
 
6579
- #: app/libraries/main.php:5266
6580
  msgid "Organizer Singular Label"
6581
  msgstr ""
6582
 
6583
- #: app/libraries/main.php:5267
6584
  msgid "Speaker Plural Label"
6585
  msgstr ""
6586
 
6587
- #: app/libraries/main.php:5268
6588
  msgid "Speaker Singular Label"
6589
  msgstr ""
6590
 
6591
- #: app/libraries/main.php:5274
6592
  msgid "Sunday abbreviation"
6593
  msgstr ""
6594
 
6595
- #: app/libraries/main.php:5275
6596
  msgid "Monday abbreviation"
6597
  msgstr ""
6598
 
6599
- #: app/libraries/main.php:5276
6600
  msgid "Tuesday abbreviation"
6601
  msgstr ""
6602
 
6603
- #: app/libraries/main.php:5277
6604
  msgid "Wednesday abbreviation"
6605
  msgstr ""
6606
 
6607
- #: app/libraries/main.php:5278
6608
  msgid "Thursday abbreviation"
6609
  msgstr ""
6610
 
6611
- #: app/libraries/main.php:5279
6612
  msgid "Friday abbreviation"
6613
  msgstr ""
6614
 
6615
- #: app/libraries/main.php:5280
6616
  msgid "Saturday abbreviation"
6617
  msgstr ""
6618
 
6619
- #: app/libraries/main.php:5284
6620
  msgid "Others"
6621
  msgstr ""
6622
 
6623
- #: app/libraries/main.php:5286
6624
  msgid "Booking Success Message"
6625
  msgstr ""
6626
 
6627
- #: app/libraries/main.php:5286
6628
  msgid ""
6629
  "Thanks for your booking. Your tickets booked, booking verification might be "
6630
  "needed, please check your email."
@@ -6632,17 +6734,17 @@ msgstr ""
6632
  "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
6633
  "jóváhagyásra lesz szükség!"
6634
 
6635
- #: app/libraries/main.php:5287 app/widgets/single.php:131
6636
  msgid "Register Button"
6637
  msgstr ""
6638
 
6639
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
6640
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6641
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6642
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6643
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
6644
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
6645
- #: app/skins/single.php:771 app/skins/single/default.php:255
6646
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
6647
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
6648
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -6653,11 +6755,11 @@ msgstr ""
6653
  msgid "REGISTER"
6654
  msgstr "REGISZTRÁCIÓ"
6655
 
6656
- #: app/libraries/main.php:5288
6657
  msgid "View Detail Button"
6658
  msgstr ""
6659
 
6660
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
6661
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6662
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6663
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -6668,79 +6770,79 @@ msgstr ""
6668
  msgid "View Detail"
6669
  msgstr ""
6670
 
6671
- #: app/libraries/main.php:5289
6672
  msgid "Event Detail Button"
6673
  msgstr ""
6674
 
6675
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
6676
  msgid "Event Detail"
6677
  msgstr ""
6678
 
6679
- #: app/libraries/main.php:5291
6680
  msgid "More Info Link"
6681
  msgstr ""
6682
 
6683
- #: app/libraries/main.php:5294
6684
  msgid "Ticket (Singular)"
6685
  msgstr ""
6686
 
6687
- #: app/libraries/main.php:5295
6688
  msgid "Tickets (Plural)"
6689
  msgstr ""
6690
 
6691
- #: app/libraries/main.php:5381
6692
  msgid "EventON"
6693
  msgstr ""
6694
 
6695
- #: app/libraries/main.php:5382
6696
  msgid "The Events Calendar"
6697
  msgstr ""
6698
 
6699
- #: app/libraries/main.php:5383
6700
  msgid "Events Schedule WP Plugin"
6701
  msgstr ""
6702
 
6703
- #: app/libraries/main.php:5384
6704
  msgid "Calendarize It"
6705
  msgstr ""
6706
 
6707
- #: app/libraries/main.php:5385
6708
  msgid "Event Espresso"
6709
  msgstr ""
6710
 
6711
- #: app/libraries/main.php:5386
6712
  msgid "Events Manager (Recurring)"
6713
  msgstr ""
6714
 
6715
- #: app/libraries/main.php:5387
6716
  msgid "Events Manager (Single)"
6717
  msgstr ""
6718
 
6719
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
6720
  msgid "Confirmed"
6721
  msgstr ""
6722
 
6723
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
6724
  msgid "Rejected"
6725
  msgstr ""
6726
 
6727
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
6728
  msgid "Pending"
6729
  msgstr ""
6730
 
6731
- #: app/libraries/main.php:5511
6732
  msgid "Waiting"
6733
  msgstr ""
6734
 
6735
- #: app/libraries/main.php:5716 app/libraries/render.php:378
6736
  msgid "Skin controller does not exist."
6737
  msgstr ""
6738
 
6739
- #: app/libraries/main.php:5830
6740
  msgid "Sold Out"
6741
  msgstr ""
6742
 
6743
- #: app/libraries/main.php:5838
6744
  #, fuzzy
6745
  #| msgid "First name"
6746
  msgid "Last Few Tickets"
@@ -6750,55 +6852,55 @@ msgstr "Keresztnév"
6750
  msgid "Please verify your email."
6751
  msgstr ""
6752
 
6753
- #: app/libraries/notifications.php:142
6754
  msgid "Your booking is received."
6755
  msgstr ""
6756
 
6757
- #: app/libraries/notifications.php:249
6758
  msgid "Your booking is confirmed."
6759
  msgstr ""
6760
 
6761
- #: app/libraries/notifications.php:391
6762
  #, fuzzy
6763
  #| msgid "Bookings"
6764
  msgid "booking canceled."
6765
  msgstr "Foglalások"
6766
 
6767
- #: app/libraries/notifications.php:466
6768
  msgid "A new booking is received."
6769
  msgstr ""
6770
 
6771
- #: app/libraries/notifications.php:657
6772
  msgid "A new event is added."
6773
  msgstr ""
6774
 
6775
- #: app/libraries/notifications.php:726
6776
  msgid "Your event is published."
6777
  msgstr ""
6778
 
6779
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
6780
- #: app/libraries/notifications.php:964
6781
  msgid "to"
6782
  msgstr ""
6783
 
6784
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
6785
  msgid "+ Add to Google Calendar"
6786
  msgstr "+ Google Naptárba mentés"
6787
 
6788
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
6789
  msgid "+ iCal export"
6790
  msgstr "+ iCal Exportálás"
6791
 
6792
- #: app/libraries/notifications.php:1043
6793
  msgid "Yes"
6794
  msgstr ""
6795
 
6796
- #: app/libraries/notifications.php:1043
6797
  msgid "No"
6798
  msgstr ""
6799
 
6800
- #: app/libraries/skins.php:1000
6801
- msgid "none"
6802
  msgstr ""
6803
 
6804
  #: app/modules/attendees-list/details.php:36
@@ -6836,12 +6938,18 @@ msgstr ""
6836
  msgid "Free Booking"
6837
  msgstr ""
6838
 
 
 
 
 
 
 
6839
  #: app/modules/booking/steps/form.php:165
6840
  msgid "Fill other attendees information like the first form."
6841
  msgstr ""
6842
 
6843
  #: app/modules/booking/steps/form.php:179
6844
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
6845
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6846
  msgid "Next"
6847
  msgstr "Tovább"
@@ -6854,17 +6962,17 @@ msgstr ""
6854
  msgid "Book Event"
6855
  msgstr "Foglalás az eseményre"
6856
 
6857
- #: app/modules/booking/steps/tickets.php:44
6858
  #, php-format
6859
  msgid "Available %s: <span>%s</span>"
6860
  msgstr ""
6861
 
6862
- #: app/modules/booking/steps/tickets.php:48
6863
  #, php-format
6864
- msgid "The %s ticket sales has stoped!"
6865
  msgstr ""
6866
 
6867
- #: app/modules/booking/steps/tickets.php:49
6868
  #, php-format
6869
  msgid "The %s ticket is sold out. You can try another ticket or another date."
6870
  msgstr ""
@@ -6885,7 +6993,7 @@ msgstr "Honnan"
6885
  msgid "Get Directions"
6886
  msgstr ""
6887
 
6888
- #: app/modules/links/details.php:17 app/skins/single.php:455
6889
  msgid "Share this event"
6890
  msgstr ""
6891
 
@@ -6912,7 +7020,7 @@ msgstr ""
6912
  msgid "Go to occurrence page"
6913
  msgstr ""
6914
 
6915
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
6916
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
6917
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
6918
  msgid "Time"
@@ -7038,27 +7146,27 @@ msgstr ""
7038
  msgid "Home"
7039
  msgstr ""
7040
 
7041
- #: app/skins/single.php:538 app/skins/single/default.php:51
7042
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7043
  #: app/skins/single/modern.php:265
7044
  msgid "Sold out!"
7045
  msgstr ""
7046
 
7047
- #: app/skins/single.php:816 app/skins/single.php:871
7048
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7049
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7050
  #: app/skins/single/modern.php:44
7051
  msgid "Phone"
7052
  msgstr ""
7053
 
7054
- #: app/skins/single.php:830 app/skins/single.php:885
7055
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7056
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7057
  #: app/skins/single/modern.php:58
7058
  msgid "Website"
7059
  msgstr "Honlap"
7060
 
7061
- #: app/skins/single.php:955
7062
  msgid "Speakers:"
7063
  msgstr ""
7064
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
266
  msgid "Add New Event"
267
  msgstr ""
268
 
269
+ #: app/features/events.php:161 app/features/ix.php:3889
270
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
271
  msgid "No events found!"
272
  msgstr ""
301
  #: app/features/mec/meta_boxes/search_form.php:575
302
  #: app/features/mec/meta_boxes/search_form.php:672
303
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
304
+ #: app/features/search.php:67 app/libraries/main.php:5278
305
+ #: app/libraries/skins.php:858 app/skins/single.php:566
306
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
307
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
308
  #: app/skins/single/modern.php:113
311
 
312
  #: app/features/events.php:183 app/features/events.php:3275
313
  #: app/features/fes/form.php:757 app/features/mec.php:402
314
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
315
  msgid "Categories"
316
  msgstr ""
317
 
396
  msgstr ""
397
 
398
  #: app/features/events.php:333 app/features/events.php:1286
399
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
400
  msgid "Hourly Schedule"
401
  msgstr "Programterv"
402
 
412
 
413
  #: app/features/events.php:336 app/features/events.php:3322
414
  #: app/features/events.php:3513 app/features/events.php:3555
415
+ #: app/features/ix.php:3510 app/features/ix.php:3551
416
  #: app/features/mec/meta_boxes/display_options.php:960
417
  #: app/features/mec/meta_boxes/search_form.php:45
418
  #: app/features/mec/meta_boxes/search_form.php:107
429
  #: app/features/organizers.php:58 app/features/organizers.php:204
430
  #: app/features/organizers.php:260 app/features/organizers.php:262
431
  #: app/features/organizers.php:271 app/features/search.php:75
432
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
433
+ #: app/skins/single.php:812 app/skins/single/default.php:217
434
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
435
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
436
  msgid "Organizer"
437
  msgstr "Szervező"
438
 
439
  #: app/features/events.php:337 app/features/events.php:1172
440
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
441
+ #: app/skins/single.php:589 app/skins/single/default.php:126
442
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
443
  #: app/skins/single/modern.php:208
444
  msgid "Cost"
456
  #: app/features/events.php:3802 app/features/fes.php:223
457
  #: app/features/fes/form.php:689 app/features/labels.php:178
458
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
459
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
460
  #: app/modules/booking/steps/form.php:37
461
  msgid "Name"
462
  msgstr "Név"
466
  #: app/features/fes.php:223 app/features/fes/form.php:685
467
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
468
  #: app/features/organizers.php:111 app/features/organizers.php:152
469
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
470
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
471
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
472
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
473
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
474
+ #: app/skins/single.php:884 app/skins/single/default.php:234
475
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
476
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
477
  msgid "Email"
484
  #: app/features/events.php:491 app/features/events.php:497
485
  #: app/features/events.php:3323 app/features/events.php:3513
486
  #: app/features/events.php:3555 app/features/fes/form.php:247
487
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
488
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
489
  #: app/features/mec/dashboard.php:400
490
  #: app/features/mec/meta_boxes/display_options.php:48
491
  #: app/features/mec/meta_boxes/display_options.php:228
522
  #: app/features/events.php:583 app/features/events.php:588
523
  #: app/features/events.php:3324 app/features/events.php:3513
524
  #: app/features/events.php:3555 app/features/fes/form.php:287
525
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
526
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
527
  #: app/features/mec/dashboard.php:401
528
  msgid "End Date"
529
  msgstr ""
601
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
602
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
603
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
604
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
605
+ #: app/features/mec/notifications.php:277
606
+ #: app/features/mec/notifications.php:380
607
+ #: app/features/mec/notifications.php:486
608
+ #: app/features/mec/notifications.php:587
609
+ #: app/features/mec/notifications.php:598
610
+ #: app/features/mec/notifications.php:704
611
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
612
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
613
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
614
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
624
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
625
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
626
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
627
+ #: app/skins/single.php:674 app/skins/single/default.php:141
628
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
629
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
630
  msgid "Read More"
793
 
794
  #: app/features/events.php:1168 app/features/events.php:3513
795
  #: app/features/events.php:3555 app/features/fes/form.php:727
796
+ #: app/features/ix.php:3510 app/features/ix.php:3551
797
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
798
  #: app/widgets/single.php:103
799
  msgid "Event Cost"
800
  msgstr ""
810
  #: app/features/events.php:1204 app/features/events.php:2541
811
  #: app/features/fes.php:223 app/features/mec/booking.php:491
812
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
813
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
814
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
815
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
816
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
817
  msgid "Date"
848
  #: app/features/events.php:1437 app/features/events.php:2322
849
  #: app/features/events.php:2369 app/features/events.php:3319
850
  #: app/features/events.php:3513 app/features/events.php:3555
851
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
852
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
853
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
854
  msgid "Title"
855
  msgstr ""
862
  #: app/features/events.php:2357 app/features/events.php:2399
863
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
864
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
865
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
866
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
867
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
868
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
869
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
870
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
871
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
872
  msgid "Remove"
873
  msgstr ""
874
 
896
  #: app/features/events.php:1445 app/features/fes/form.php:851
897
  #: app/features/mec.php:410 app/features/mec/modules.php:52
898
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
899
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
900
  #: app/modules/speakers/details.php:18
901
  msgid "Speakers"
902
  msgstr ""
911
  msgstr ""
912
 
913
  #: app/features/events.php:1479 app/features/events.php:1485
914
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
915
  msgid "Event Link"
916
  msgstr ""
917
 
932
  msgstr ""
933
 
934
  #: app/features/events.php:1495 app/features/events.php:1508
935
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
936
+ #: app/skins/single.php:673 app/skins/single/default.php:140
937
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
938
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
939
  #: app/widgets/single.php:107
964
 
965
  #: app/features/events.php:1596 app/features/events.php:1849
966
  #: app/features/events.php:2064 app/modules/booking/default.php:85
967
+ #: app/modules/booking/steps/tickets.php:40
968
  #: app/skins/available_spot/tpl.php:160
969
  msgid "Unlimited"
970
  msgstr ""
997
  msgstr ""
998
 
999
  #: app/features/events.php:1653 app/libraries/book.php:60
1000
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1001
  msgid "Tickets"
1002
  msgstr ""
1003
 
1020
 
1021
  #: app/features/events.php:1680 app/features/events.php:1955
1022
  #: app/features/events.php:3513 app/features/events.php:3555
1023
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1024
  msgid "Start Time"
1025
  msgstr ""
1026
 
1027
  #: app/features/events.php:1739 app/features/events.php:1985
1028
  #: app/features/events.php:3513 app/features/events.php:3555
1029
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1030
  msgid "End Time"
1031
  msgstr ""
1032
 
1058
  msgid "Available Tickets"
1059
  msgstr "Szabad jegyek száma:"
1060
 
1061
+ #: app/features/events.php:1853 app/features/events.php:2068
1062
  msgid "Minimum Ticket e.g. 3"
1063
  msgstr ""
1064
 
1065
+ #: app/features/events.php:1856 app/features/events.php:2071
1066
  msgid "MinimumTicket"
1067
  msgstr ""
1068
 
1069
+ #: app/features/events.php:1858 app/features/events.php:2073
1070
  msgid "Set a number for the minimum ticket reservation"
1071
  msgstr ""
1072
 
1073
+ #: app/features/events.php:1866 app/features/events.php:2081
1074
  msgid "e.g. 0"
1075
  msgstr ""
1076
 
1077
+ #: app/features/events.php:1868 app/features/events.php:2083
1078
  msgid "Day"
1079
  msgstr ""
1080
 
1081
+ #: app/features/events.php:1869 app/features/events.php:2084
1082
  msgid "Hour"
1083
  msgstr ""
1084
 
1085
+ #: app/features/events.php:1871 app/features/events.php:2086
1086
  #, php-format
1087
  msgid "Stop selling ticket %s before event start."
1088
  msgstr ""
1106
  #: app/features/mec/meta_boxes/search_form.php:610
1107
  #: app/features/mec/meta_boxes/search_form.php:707
1108
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1109
+ #: app/libraries/skins.php:988
1110
  msgid "Label"
1111
  msgstr ""
1112
 
1170
  msgstr ""
1171
 
1172
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1173
+ #: app/libraries/main.php:2767
1174
  #, fuzzy
1175
  #| msgid "Name"
1176
  msgid "MEC Name"
1177
  msgstr "Név"
1178
 
1179
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1180
+ #: app/libraries/main.php:2796
1181
  msgid "MEC Email"
1182
  msgstr ""
1183
 
1184
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1185
+ #: app/libraries/main.php:2737
1186
  msgid "Text"
1187
  msgstr ""
1188
 
1189
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1190
  #: app/features/organizers.php:103 app/features/organizers.php:148
1191
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1192
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1193
  msgid "Tel"
1194
  msgstr ""
1195
 
1196
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1197
+ #: app/libraries/main.php:2855
1198
  msgid "File"
1199
  msgstr ""
1200
 
1201
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1202
+ #: app/libraries/main.php:2942
1203
  msgid "Textarea"
1204
  msgstr ""
1205
 
1206
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1207
+ #: app/libraries/main.php:2995
1208
  msgid "Checkboxes"
1209
  msgstr ""
1210
 
1211
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1212
+ #: app/libraries/main.php:3039
1213
  msgid "Radio Buttons"
1214
  msgstr ""
1215
 
1289
  #: app/features/mec/meta_boxes/search_form.php:696
1290
  #: app/features/mec/meta_boxes/search_form.php:703
1291
  #: app/features/mec/meta_boxes/search_form.php:710
1292
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1293
  msgid "Dropdown"
1294
  msgstr ""
1295
 
1296
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1297
+ #: app/libraries/main.php:3130
1298
  msgid "Agreement"
1299
  msgstr ""
1300
 
1301
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1302
+ #: app/libraries/main.php:2971
1303
  msgid "Paragraph"
1304
  msgstr ""
1305
 
1328
  msgstr "Jelentkezési lap"
1329
 
1330
  #: app/features/events.php:3321 app/features/events.php:3513
1331
+ #: app/features/events.php:3555 app/features/ix.php:3510
1332
+ #: app/features/ix.php:3551 app/features/locations.php:58
1333
  #: app/features/locations.php:230 app/features/locations.php:287
1334
  #: app/features/locations.php:289 app/features/locations.php:298
1335
  #: app/features/mec/meta_boxes/display_options.php:959
1346
  #: app/features/mec/meta_boxes/search_form.php:679
1347
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1348
  #: app/features/search.php:71 app/libraries/main.php:2236
1349
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1350
+ #: app/skins/single.php:493 app/skins/single.php:924
1351
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1352
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1353
  #: app/skins/single/modern.php:97
1388
  msgstr ""
1389
 
1390
  #: app/features/events.php:3513 app/features/events.php:3555
1391
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1392
  #: app/features/labels.php:177 app/features/locations.php:229
1393
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1394
  msgid "ID"
1395
  msgstr ""
1396
 
1397
  #: app/features/events.php:3513 app/features/events.php:3555
1398
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1399
  msgid "Link"
1400
  msgstr ""
1401
 
1411
 
1412
  #: app/features/events.php:3808 app/features/fes.php:223
1413
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1414
+ #: app/libraries/main.php:5312
1415
  msgid "Ticket"
1416
  msgstr ""
1417
 
1583
 
1584
  #: app/features/fes/form.php:783 app/features/labels.php:61
1585
  #: app/features/labels.php:221 app/features/mec.php:403
1586
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1587
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1588
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1589
  #: app/skins/single/modern.php:223
1590
  msgid "Labels"
1659
  msgid "The events are imported successfully!"
1660
  msgstr ""
1661
 
1662
+ #: app/features/ix.php:943
1663
  msgid "Third Party plugin is not installed and activated!"
1664
  msgstr ""
1665
 
1666
+ #: app/features/ix.php:966
1667
  msgid "Third Party plugin is invalid!"
1668
  msgstr ""
1669
 
1670
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1671
  msgid "Both of API key and Calendar ID are required!"
1672
  msgstr ""
1673
 
1674
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1675
  msgid "Please select some events to import!"
1676
  msgstr ""
1677
 
1678
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1679
  msgid "Both of API key and Group URL are required!"
1680
  msgstr ""
1681
 
1682
+ #: app/features/ix.php:3433
1683
  msgid "Check at Meetup"
1684
  msgstr ""
1685
 
1686
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1687
  msgid "Organizer Tel"
1688
  msgstr ""
1689
 
1690
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1691
  msgid "Organizer Email"
1692
  msgstr ""
1693
 
1694
+ #: app/features/ix.php:3632
1695
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1696
  msgstr ""
1697
 
1698
+ #: app/features/ix.php:3655
1699
  #, php-format
1700
  msgid "All seems good! Please click %s for authenticating your app."
1701
  msgstr ""
1702
 
1703
+ #: app/features/ix.php:3709
1704
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1705
  msgstr ""
1706
 
1707
+ #: app/features/ix.php:3825
1708
  #, php-format
1709
  msgid "%s events added to Google Calendar successfully."
1710
  msgstr ""
1711
 
1712
+ #: app/features/ix.php:3826
1713
  #, php-format
1714
  msgid "%s previously added events get updated."
1715
  msgstr ""
1716
 
1717
+ #: app/features/ix.php:3827
1718
  #, php-format
1719
  msgid "%s events failed to add for following reasons: %s"
1720
  msgstr ""
1721
 
1722
+ #: app/features/ix.php:3859
1723
  msgid "Please insert your Facebook page's link."
1724
  msgstr ""
1725
 
1726
+ #: app/features/ix.php:3868
1727
  msgid ""
1728
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1729
  "valid Facebook page link."
1730
  msgstr ""
1731
 
1732
+ #: app/features/ix.php:3900
1733
  msgid "Please insert your facebook page's link."
1734
  msgstr ""
1735
 
1736
+ #: app/features/ix.php:3905
1737
  msgid ""
1738
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1739
  "valid facebook page link."
1896
  #: app/features/ix/export_g_calendar.php:72
1897
  #: app/features/ix/export_g_calendar.php:147
1898
  #: app/features/ix/export_g_calendar.php:164
1899
+ #: app/features/mec/notifications.php:131
1900
+ #: app/features/mec/notifications.php:223
1901
+ #: app/features/mec/notifications.php:320
1902
+ #: app/features/mec/notifications.php:635
1903
  msgid "Add to Google Calendar"
1904
  msgstr "Google Naptárba mentés"
1905
 
1906
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1907
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1908
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1909
  msgid "Checking ..."
1910
  msgstr ""
2144
 
2145
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2146
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2147
+ #: app/features/mec/notifications.php:540
2148
  msgid "Important Note"
2149
  msgstr ""
2150
 
2315
  msgstr ""
2316
 
2317
  #: app/features/labels.php:118 app/features/labels.php:143
2318
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2319
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2320
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2321
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2334
  msgstr ""
2335
 
2336
  #: app/features/labels.php:180 app/features/locations.php:232
2337
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2338
  #: app/modules/booking/steps/tickets.php:38
2339
  msgid "Count"
2340
  msgstr ""
2351
 
2352
  #: app/features/locations.php:59 app/features/mec.php:404
2353
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2354
+ #: app/libraries/main.php:5281
2355
  msgid "Locations"
2356
  msgstr ""
2357
 
2384
 
2385
  #: app/features/locations.php:138 app/features/locations.php:180
2386
  #: app/features/organizers.php:127 app/features/organizers.php:160
2387
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2388
  msgid "Thumbnail"
2389
  msgstr ""
2390
 
2391
  #: app/features/locations.php:143 app/features/locations.php:183
2392
  #: app/features/organizers.php:132 app/features/organizers.php:163
2393
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2394
  msgid "Upload/Add image"
2395
  msgstr ""
2396
 
2398
  #: app/features/locations.php:340 app/features/locations.php:347
2399
  #: app/features/organizers.php:133 app/features/organizers.php:164
2400
  #: app/features/organizers.php:299 app/features/organizers.php:306
2401
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2402
  msgid "Remove image"
2403
  msgstr ""
2404
 
2456
  msgid "Don't show map in single event page"
2457
  msgstr ""
2458
 
2459
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2460
  #, fuzzy
2461
  #| msgid "Location"
2462
  msgid "Other Locations"
2481
  msgid "Troubleshooting"
2482
  msgstr ""
2483
 
2484
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2485
  #, php-format
2486
  msgid "%s to %s"
2487
  msgstr ""
2511
 
2512
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2513
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2514
+ #: app/libraries/main.php:5283
2515
  msgid "Organizers"
2516
  msgstr ""
2517
 
2625
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2626
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2627
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2628
+ #: app/features/mec/notifications.php:816
2629
+ #: app/features/mec/notifications.php:828
2630
+ #: app/features/mec/notifications.php:924
2631
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2632
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2633
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2634
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2741
  msgid "Enable Express Attendees Form"
2742
  msgstr ""
2743
 
2744
+ #: app/features/mec/booking.php:186
2745
  msgid "Attendees Form"
2746
  msgstr "Jelentkezési lap"
2747
 
2773
  msgid "Auto verification for paid bookings"
2774
  msgstr ""
2775
 
2776
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2777
  #: app/libraries/main.php:579
2778
  msgid "Booking Confirmation"
2779
  msgstr ""
2837
  msgstr ""
2838
 
2839
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2840
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2841
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2842
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2843
  msgid "Saved"
2844
  msgstr ""
2845
 
2846
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2847
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2848
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2849
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2850
  msgid "Settings Saved!"
2852
 
2853
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2854
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2855
+ #: app/features/mec/notifications.php:905
2856
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2857
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2858
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
2859
  msgid "Verified"
2860
  msgstr ""
2861
 
2862
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2863
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
2864
  #: app/features/mec/single.php:291
2865
  msgid "Please Refresh Page"
2866
  msgstr ""
3950
  #: app/features/mec/meta_boxes/search_form.php:693
3951
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
3952
  #: app/features/search.php:79 app/features/speakers.php:61
3953
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
3954
+ #: app/libraries/skins.php:936
3955
  msgid "Speaker"
3956
  msgstr ""
3957
 
3967
  #: app/features/mec/meta_boxes/search_form.php:603
3968
  #: app/features/mec/meta_boxes/search_form.php:700
3969
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
3970
+ #: app/features/search.php:83 app/libraries/skins.php:962
3971
  msgid "Tag"
3972
  msgstr ""
3973
 
4213
  msgid "It sends to attendee after booking for notifying him/her."
4214
  msgstr ""
4215
 
4216
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4217
+ #: app/features/mec/notifications.php:233
4218
+ #: app/features/mec/notifications.php:336
4219
+ #: app/features/mec/notifications.php:442
4220
+ #: app/features/mec/notifications.php:543
4221
+ #: app/features/mec/notifications.php:660
4222
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4223
  msgid "Email Subject"
4224
  msgstr ""
4225
 
4226
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4227
+ #: app/features/mec/notifications.php:147
4228
+ #: app/features/mec/notifications.php:154
4229
+ #: app/features/mec/notifications.php:239
4230
+ #: app/features/mec/notifications.php:246
4231
+ #: app/features/mec/notifications.php:342
4232
+ #: app/features/mec/notifications.php:349
4233
+ #: app/features/mec/notifications.php:448
4234
+ #: app/features/mec/notifications.php:455
4235
+ #: app/features/mec/notifications.php:549
4236
+ #: app/features/mec/notifications.php:556
4237
+ #: app/features/mec/notifications.php:666
4238
+ #: app/features/mec/notifications.php:673
4239
+ #: app/features/mec/notifications.php:749
4240
+ #: app/features/mec/notifications.php:756
4241
+ msgid "Receiver Users"
4242
+ msgstr ""
4243
+
4244
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4245
+ #: app/features/mec/notifications.php:247
4246
+ #: app/features/mec/notifications.php:350
4247
+ #: app/features/mec/notifications.php:456
4248
+ #: app/features/mec/notifications.php:557
4249
+ #: app/features/mec/notifications.php:674
4250
+ #: app/features/mec/notifications.php:757
4251
+ msgid "Select your desired users to send a copy of email to them!"
4252
+ msgstr ""
4253
+
4254
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4255
+ #: app/features/mec/notifications.php:164
4256
+ #: app/features/mec/notifications.php:171
4257
+ #: app/features/mec/notifications.php:256
4258
+ #: app/features/mec/notifications.php:263
4259
+ #: app/features/mec/notifications.php:359
4260
+ #: app/features/mec/notifications.php:366
4261
+ #: app/features/mec/notifications.php:465
4262
+ #: app/features/mec/notifications.php:472
4263
+ #: app/features/mec/notifications.php:566
4264
+ #: app/features/mec/notifications.php:573
4265
+ #: app/features/mec/notifications.php:683
4266
+ #: app/features/mec/notifications.php:690
4267
+ #: app/features/mec/notifications.php:766
4268
+ #: app/features/mec/notifications.php:773
4269
+ msgid "Receiver Roles"
4270
+ msgstr ""
4271
+
4272
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4273
+ #: app/features/mec/notifications.php:264
4274
+ #: app/features/mec/notifications.php:367
4275
+ #: app/features/mec/notifications.php:473
4276
+ #: app/features/mec/notifications.php:574
4277
+ #: app/features/mec/notifications.php:691
4278
+ #: app/features/mec/notifications.php:774
4279
+ msgid "Select users a specific role."
4280
+ msgstr ""
4281
+
4282
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4283
+ #: app/features/mec/notifications.php:180
4284
+ #: app/features/mec/notifications.php:184
4285
+ #: app/features/mec/notifications.php:272
4286
+ #: app/features/mec/notifications.php:276
4287
+ #: app/features/mec/notifications.php:375
4288
+ #: app/features/mec/notifications.php:379
4289
+ #: app/features/mec/notifications.php:481
4290
+ #: app/features/mec/notifications.php:485
4291
+ #: app/features/mec/notifications.php:582
4292
+ #: app/features/mec/notifications.php:586
4293
+ #: app/features/mec/notifications.php:597
4294
+ #: app/features/mec/notifications.php:699
4295
+ #: app/features/mec/notifications.php:703
4296
+ #: app/features/mec/notifications.php:782
4297
+ #: app/features/mec/notifications.php:786
4298
  msgid "Custom Recipients"
4299
  msgstr ""
4300
 
4301
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4302
+ #: app/features/mec/notifications.php:277
4303
+ #: app/features/mec/notifications.php:380
4304
+ #: app/features/mec/notifications.php:486
4305
+ #: app/features/mec/notifications.php:587
4306
+ #: app/features/mec/notifications.php:598
4307
+ #: app/features/mec/notifications.php:704
4308
+ #: app/features/mec/notifications.php:787
4309
  msgid "Insert comma separated emails for multiple recipients."
4310
  msgstr ""
4311
 
4312
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4313
+ #: app/features/mec/notifications.php:493
4314
  msgid "Send the email to event organizer"
4315
  msgstr ""
4316
 
4317
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4318
+ #: app/features/mec/notifications.php:287
4319
+ #: app/features/mec/notifications.php:398
4320
+ #: app/features/mec/notifications.php:496
4321
+ #: app/features/mec/notifications.php:604
4322
+ #: app/features/mec/notifications.php:710
4323
+ #: app/features/mec/notifications.php:793
4324
  msgid "Email Content"
4325
  msgstr ""
4326
 
4327
+ #: app/features/mec/notifications.php:101
4328
+ #: app/features/mec/notifications.php:194
4329
+ #: app/features/mec/notifications.php:290
4330
+ #: app/features/mec/notifications.php:401
4331
+ #: app/features/mec/notifications.php:499
4332
+ #: app/features/mec/notifications.php:607
4333
+ #: app/features/mec/notifications.php:713
4334
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4335
  msgid "You can use following placeholders"
4336
  msgstr ""
4337
 
4338
+ #: app/features/mec/notifications.php:103
4339
+ #: app/features/mec/notifications.php:196
4340
+ #: app/features/mec/notifications.php:292
4341
+ #: app/features/mec/notifications.php:403
4342
+ #: app/features/mec/notifications.php:501
4343
+ #: app/features/mec/notifications.php:609
4344
  msgid "First name of attendee"
4345
  msgstr ""
4346
 
4347
+ #: app/features/mec/notifications.php:104
4348
+ #: app/features/mec/notifications.php:197
4349
+ #: app/features/mec/notifications.php:293
4350
+ #: app/features/mec/notifications.php:404
4351
+ #: app/features/mec/notifications.php:502
4352
+ #: app/features/mec/notifications.php:610
4353
  msgid "Last name of attendee"
4354
  msgstr ""
4355
 
4356
+ #: app/features/mec/notifications.php:105
4357
+ #: app/features/mec/notifications.php:198
4358
+ #: app/features/mec/notifications.php:294
4359
+ #: app/features/mec/notifications.php:405
4360
+ #: app/features/mec/notifications.php:503
4361
+ #: app/features/mec/notifications.php:611
4362
  msgid "Email of attendee"
4363
  msgstr "A résztvevők email címe"
4364
 
4365
+ #: app/features/mec/notifications.php:106
4366
+ #: app/features/mec/notifications.php:199
4367
+ #: app/features/mec/notifications.php:295
4368
+ #: app/features/mec/notifications.php:406
4369
+ #: app/features/mec/notifications.php:504
4370
+ #: app/features/mec/notifications.php:612
4371
  msgid "Booked date of event"
4372
  msgstr ""
4373
 
4374
+ #: app/features/mec/notifications.php:107
4375
+ #: app/features/mec/notifications.php:200
4376
+ #: app/features/mec/notifications.php:296
4377
+ #: app/features/mec/notifications.php:407
4378
+ #: app/features/mec/notifications.php:505
4379
+ #: app/features/mec/notifications.php:613
4380
  #, fuzzy
4381
  #| msgid "Book Event"
4382
  msgid "Booked time of event"
4383
  msgstr "Foglalás az eseményre"
4384
 
4385
+ #: app/features/mec/notifications.php:108
4386
+ #: app/features/mec/notifications.php:201
4387
+ #: app/features/mec/notifications.php:297
4388
+ #: app/features/mec/notifications.php:408
4389
+ #: app/features/mec/notifications.php:506
4390
+ #: app/features/mec/notifications.php:614
4391
  msgid "Booking Price"
4392
  msgstr ""
4393
 
4394
+ #: app/features/mec/notifications.php:109
4395
+ #: app/features/mec/notifications.php:202
4396
+ #: app/features/mec/notifications.php:298
4397
+ #: app/features/mec/notifications.php:409
4398
+ #: app/features/mec/notifications.php:507
4399
+ #: app/features/mec/notifications.php:615
4400
  msgid "Date and time of placing booking"
4401
  msgstr ""
4402
 
4403
+ #: app/features/mec/notifications.php:110
4404
+ #: app/features/mec/notifications.php:203
4405
+ #: app/features/mec/notifications.php:299
4406
+ #: app/features/mec/notifications.php:410
4407
+ #: app/features/mec/notifications.php:508
4408
+ #: app/features/mec/notifications.php:616
4409
+ #: app/features/mec/notifications.php:721
4410
+ #: app/features/mec/notifications.php:804
4411
  msgid "Your website title"
4412
  msgstr ""
4413
 
4414
+ #: app/features/mec/notifications.php:111
4415
+ #: app/features/mec/notifications.php:204
4416
+ #: app/features/mec/notifications.php:300
4417
+ #: app/features/mec/notifications.php:411
4418
+ #: app/features/mec/notifications.php:509
4419
+ #: app/features/mec/notifications.php:617
4420
+ #: app/features/mec/notifications.php:722
4421
+ #: app/features/mec/notifications.php:805
4422
  msgid "Your website URL"
4423
  msgstr ""
4424
 
4425
+ #: app/features/mec/notifications.php:112
4426
+ #: app/features/mec/notifications.php:205
4427
+ #: app/features/mec/notifications.php:301
4428
+ #: app/features/mec/notifications.php:412
4429
+ #: app/features/mec/notifications.php:510
4430
+ #: app/features/mec/notifications.php:618
4431
+ #: app/features/mec/notifications.php:723
4432
+ #: app/features/mec/notifications.php:806
4433
  msgid "Your website description"
4434
  msgstr ""
4435
 
4436
+ #: app/features/mec/notifications.php:113
4437
+ #: app/features/mec/notifications.php:206
4438
+ #: app/features/mec/notifications.php:302
4439
+ #: app/features/mec/notifications.php:413
4440
+ #: app/features/mec/notifications.php:511
4441
+ #: app/features/mec/notifications.php:619
4442
  msgid "Event title"
4443
  msgstr ""
4444
 
4445
+ #: app/features/mec/notifications.php:114
4446
+ #: app/features/mec/notifications.php:207
4447
+ #: app/features/mec/notifications.php:303
4448
+ #: app/features/mec/notifications.php:414
4449
+ #: app/features/mec/notifications.php:512
4450
+ #: app/features/mec/notifications.php:620
4451
  msgid "Event link"
4452
  msgstr ""
4453
 
4454
+ #: app/features/mec/notifications.php:115
4455
+ #: app/features/mec/notifications.php:208
4456
+ #: app/features/mec/notifications.php:304
4457
+ #: app/features/mec/notifications.php:717
4458
+ #: app/features/mec/notifications.php:800
4459
  msgid "Event Start Date"
4460
  msgstr ""
4461
 
4462
+ #: app/features/mec/notifications.php:116
4463
+ #: app/features/mec/notifications.php:209
4464
+ #: app/features/mec/notifications.php:305
4465
+ #: app/features/mec/notifications.php:718
4466
+ #: app/features/mec/notifications.php:801
4467
  msgid "Event End Date"
4468
  msgstr ""
4469
 
4470
+ #: app/features/mec/notifications.php:117
4471
+ #: app/features/mec/notifications.php:210
4472
+ #: app/features/mec/notifications.php:306
4473
+ #: app/features/mec/notifications.php:415
4474
+ #: app/features/mec/notifications.php:513
4475
+ #: app/features/mec/notifications.php:621
4476
  msgid "Speaker name of booked event"
4477
  msgstr ""
4478
 
4479
+ #: app/features/mec/notifications.php:118
4480
+ #: app/features/mec/notifications.php:211
4481
+ #: app/features/mec/notifications.php:307
4482
+ #: app/features/mec/notifications.php:416
4483
+ #: app/features/mec/notifications.php:514
4484
+ #: app/features/mec/notifications.php:622
4485
  msgid "Organizer name of booked event"
4486
  msgstr ""
4487
 
4488
+ #: app/features/mec/notifications.php:119
4489
+ #: app/features/mec/notifications.php:212
4490
+ #: app/features/mec/notifications.php:308
4491
+ #: app/features/mec/notifications.php:417
4492
+ #: app/features/mec/notifications.php:515
4493
+ #: app/features/mec/notifications.php:623
4494
  msgid "Organizer tel of booked event"
4495
  msgstr ""
4496
 
4497
+ #: app/features/mec/notifications.php:120
4498
+ #: app/features/mec/notifications.php:213
4499
+ #: app/features/mec/notifications.php:309
4500
+ #: app/features/mec/notifications.php:418
4501
+ #: app/features/mec/notifications.php:516
4502
+ #: app/features/mec/notifications.php:624
4503
  msgid "Organizer email of booked event"
4504
  msgstr ""
4505
 
4506
+ #: app/features/mec/notifications.php:121
4507
+ #: app/features/mec/notifications.php:214
4508
+ #: app/features/mec/notifications.php:310
4509
+ #: app/features/mec/notifications.php:419
4510
+ #: app/features/mec/notifications.php:517
4511
+ #: app/features/mec/notifications.php:625
4512
  msgid "Location name of booked event"
4513
  msgstr ""
4514
 
4515
+ #: app/features/mec/notifications.php:122
4516
+ #: app/features/mec/notifications.php:215
4517
+ #: app/features/mec/notifications.php:311
4518
+ #: app/features/mec/notifications.php:420
4519
+ #: app/features/mec/notifications.php:518
4520
+ #: app/features/mec/notifications.php:626
4521
  msgid "Location address of booked event"
4522
  msgstr ""
4523
 
4524
+ #: app/features/mec/notifications.php:123
4525
+ #: app/features/mec/notifications.php:216
4526
+ #: app/features/mec/notifications.php:312
4527
+ #: app/features/mec/notifications.php:421
4528
+ #: app/features/mec/notifications.php:519
4529
+ #: app/features/mec/notifications.php:627
4530
  #, fuzzy
4531
  #| msgid "Book Event"
4532
  msgid "Featured image of booked event"
4533
  msgstr "Foglalás az eseményre"
4534
 
4535
+ #: app/features/mec/notifications.php:124
4536
+ #: app/features/mec/notifications.php:423
4537
+ #: app/features/mec/notifications.php:521
4538
  msgid "Full Attendee info such as booking form data, name, email etc."
4539
  msgstr ""
4540
 
4541
+ #: app/features/mec/notifications.php:125
4542
+ #: app/features/mec/notifications.php:314
4543
+ #: app/features/mec/notifications.php:629
4544
  msgid "Invoice Link"
4545
  msgstr ""
4546
 
4547
+ #: app/features/mec/notifications.php:126
4548
+ #: app/features/mec/notifications.php:218
4549
+ #: app/features/mec/notifications.php:315
4550
+ #: app/features/mec/notifications.php:424
4551
+ #: app/features/mec/notifications.php:522
4552
+ #: app/features/mec/notifications.php:630
4553
  msgid "Total Attendees"
4554
  msgstr ""
4555
 
4556
+ #: app/features/mec/notifications.php:127
4557
+ #: app/features/mec/notifications.php:219
4558
+ #: app/features/mec/notifications.php:316
4559
+ #: app/features/mec/notifications.php:425
4560
+ #: app/features/mec/notifications.php:523
4561
+ #: app/features/mec/notifications.php:631
4562
+ #, fuzzy
4563
+ #| msgid "First name"
4564
+ msgid "Amount of Booked Tickets"
4565
+ msgstr "Keresztnév"
4566
+
4567
+ #: app/features/mec/notifications.php:128
4568
+ #: app/features/mec/notifications.php:220
4569
+ #: app/features/mec/notifications.php:317
4570
+ #: app/features/mec/notifications.php:632
4571
  #, fuzzy
4572
  #| msgid "First name"
4573
  msgid "Ticket name"
4574
  msgstr "Keresztnév"
4575
 
4576
+ #: app/features/mec/notifications.php:129
4577
+ #: app/features/mec/notifications.php:221
4578
+ #: app/features/mec/notifications.php:318
4579
+ #: app/features/mec/notifications.php:633
4580
  #, fuzzy
4581
  #| msgid "Tickets Price"
4582
  msgid "Ticket time"
4583
  msgstr "Jegy(ek) ára"
4584
 
4585
+ #: app/features/mec/notifications.php:130
4586
+ #: app/features/mec/notifications.php:222
4587
+ #: app/features/mec/notifications.php:319
4588
+ #: app/features/mec/notifications.php:634
4589
  msgid "Download ICS file"
4590
  msgstr ""
4591
 
4592
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4593
  msgid "Booking Verification"
4594
  msgstr ""
4595
 
4596
+ #: app/features/mec/notifications.php:139
4597
  msgid "It sends to attendee email for verifying their booking/email."
4598
  msgstr ""
4599
 
4600
+ #: app/features/mec/notifications.php:217
4601
  msgid "Email/Booking verification link."
4602
  msgstr ""
4603
 
4604
+ #: app/features/mec/notifications.php:231
4605
  msgid "It sends to attendee after confirming the booking by admin."
4606
  msgstr ""
4607
 
4608
+ #: app/features/mec/notifications.php:284
4609
  msgid "Send One Single Email Only To First Attendee"
4610
  msgstr ""
4611
 
4612
+ #: app/features/mec/notifications.php:313
4613
+ #: app/features/mec/notifications.php:628
4614
  msgid "Booking cancellation link."
4615
  msgstr ""
4616
 
4617
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4618
  msgid "Booking Cancellation"
4619
  msgstr ""
4620
 
4621
+ #: app/features/mec/notifications.php:330
4622
  msgid "Enable cancellation notification"
4623
  msgstr ""
4624
 
4625
+ #: app/features/mec/notifications.php:334
4626
  msgid ""
4627
  "It sends to selected recipients after booking cancellation for notifying "
4628
  "them."
4629
  msgstr ""
4630
 
4631
+ #: app/features/mec/notifications.php:387
4632
+ #: app/features/mec/notifications.php:654
4633
  msgid "Send the email to admin"
4634
  msgstr ""
4635
 
4636
+ #: app/features/mec/notifications.php:395
4637
  msgid "Send the email to booking user"
4638
  msgstr ""
4639
 
4640
+ #: app/features/mec/notifications.php:422
4641
+ #: app/features/mec/notifications.php:520
4642
  msgid "Admin booking management link."
4643
  msgstr ""
4644
 
4645
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4646
  msgid "Admin"
4647
  msgstr ""
4648
 
4649
+ #: app/features/mec/notifications.php:436
4650
  msgid "Enable admin notification"
4651
  msgstr ""
4652
 
4653
+ #: app/features/mec/notifications.php:440
4654
  msgid "It sends to admin to notify him/her that a new booking received."
4655
  msgstr ""
4656
 
4657
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4658
+ #: app/libraries/notifications.php:603
4659
  msgid "Booking Reminder"
4660
  msgstr ""
4661
 
4662
+ #: app/features/mec/notifications.php:534
4663
  msgid "Enable booking reminder notification"
4664
  msgstr ""
4665
 
4666
+ #: app/features/mec/notifications.php:540
4667
  #, php-format
4668
  msgid ""
4669
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4671
  "send the reminders multiple times."
4672
  msgstr ""
4673
 
4674
+ #: app/features/mec/notifications.php:540
4675
  msgid "only once per day"
4676
  msgstr ""
4677
 
4678
+ #: app/features/mec/notifications.php:593
4679
  msgid "Days"
4680
  msgstr ""
4681
 
4682
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4683
  #: app/libraries/main.php:583
4684
  msgid "New Event"
4685
  msgstr ""
4686
 
4687
+ #: app/features/mec/notifications.php:648
4688
  msgid "Enable new event notification"
4689
  msgstr ""
4690
 
4691
+ #: app/features/mec/notifications.php:658
4692
  msgid ""
4693
  "It sends after adding a new event from frontend event submission or from "
4694
  "website backend."
4695
  msgstr ""
4696
 
4697
+ #: app/features/mec/notifications.php:715
4698
+ #: app/features/mec/notifications.php:798
4699
  msgid "Title of event"
4700
  msgstr ""
4701
 
4702
+ #: app/features/mec/notifications.php:716
4703
+ #: app/features/mec/notifications.php:799
4704
  msgid "Link of event"
4705
  msgstr ""
4706
 
4707
+ #: app/features/mec/notifications.php:719
4708
+ #: app/features/mec/notifications.php:802
4709
  msgid "Status of event"
4710
  msgstr ""
4711
 
4712
+ #: app/features/mec/notifications.php:720
4713
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4714
  #: app/features/mec/settings.php:738
4715
  msgid "Event Note"
4716
  msgstr ""
4717
 
4718
+ #: app/features/mec/notifications.php:724
4719
+ #: app/features/mec/notifications.php:807
4720
  msgid "Admin events management link."
4721
  msgstr ""
4722
 
4723
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4724
  msgid "User Event Publishing"
4725
  msgstr ""
4726
 
4727
+ #: app/features/mec/notifications.php:737
4728
  msgid "Enable user event publishing notification"
4729
  msgstr ""
4730
 
4731
+ #: app/features/mec/notifications.php:741
4732
  msgid ""
4733
  "It sends after published a new event from frontend event submission or from "
4734
  "website backend."
4885
  msgstr ""
4886
 
4887
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
4888
+ #: app/libraries/main.php:5290
4889
  msgid "Weekdays"
4890
  msgstr ""
4891
 
5995
  msgid "eg. https://webnus.net"
5996
  msgstr ""
5997
 
5998
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
5999
+ #: app/skins/single.php:862
6000
  msgid "Other Organizers"
6001
  msgstr ""
6002
 
6003
+ #: app/features/organizers.php:314
6004
  msgid ""
6005
  "You can select extra organizers in addition to main organizer if you like."
6006
  msgstr ""
6020
  msgid "#"
6021
  msgstr ""
6022
 
6023
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6024
  msgid "Status"
6025
  msgstr ""
6026
 
6053
  msgid "No bookings found!"
6054
  msgstr ""
6055
 
6056
+ #: app/features/search.php:87 app/libraries/main.php:5280
6057
  msgid "label"
6058
  msgstr ""
6059
 
6078
  msgstr ""
6079
 
6080
  #: app/features/search_bar/search_result.php:11
6081
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6082
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6083
+ #: app/skins/single.php:160 app/skins/single.php:753
6084
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6085
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6086
  msgid "All of the day"
6087
  msgstr ""
6088
 
6089
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6090
+ #: app/features/speakers.php:270
6091
  msgid "Job Title"
6092
  msgstr ""
6093
 
6094
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6095
  msgid "Insert speaker job title."
6096
  msgstr ""
6097
 
6098
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6099
  msgid "Insert speaker phone number."
6100
  msgstr ""
6101
 
6102
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6103
  msgid "Insert speaker email address."
6104
  msgstr ""
6105
 
6106
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6107
  #, fuzzy
6108
  #| msgid "Facebook Events"
6109
  msgid "Facebook Page"
6110
  msgstr "Facebook események"
6111
 
6112
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6113
  msgid "Insert URL of Facebook Page"
6114
  msgstr ""
6115
 
6116
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6117
  msgid "Instagram"
6118
  msgstr ""
6119
 
6120
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6121
  msgid "Insert URL of Instagram"
6122
  msgstr ""
6123
 
6124
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6125
+ msgid "LinkedIn"
6126
+ msgstr ""
6127
+
6128
+ #: app/features/speakers.php:154
6129
+ msgid "Insert URL of LinkedIn"
6130
+ msgstr ""
6131
+
6132
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6133
  msgid "Twitter Page"
6134
  msgstr ""
6135
 
6136
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6137
  msgid "Insert URL of Twitter Page"
6138
  msgstr ""
6139
 
6140
+ #: app/features/speakers.php:209
6141
+ msgid "Insert URL of linkedin"
6142
+ msgstr ""
6143
+
6144
+ #: app/features/speakers.php:330
6145
  msgid "Sorry, You must insert speaker name!"
6146
  msgstr ""
6147
 
6148
+ #: app/features/speakers.php:379
6149
  msgid ""
6150
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6151
  "section and speaker widget section!"
6299
  msgid "Tile View"
6300
  msgstr ""
6301
 
6302
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6303
  msgid "SU"
6304
  msgstr ""
6305
 
6306
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6307
  msgid "MO"
6308
  msgstr ""
6309
 
6310
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6311
  msgid "TU"
6312
  msgstr ""
6313
 
6314
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6315
  msgid "WE"
6316
  msgstr ""
6317
 
6318
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6319
  msgid "TH"
6320
  msgstr ""
6321
 
6322
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6323
  msgid "FR"
6324
  msgstr ""
6325
 
6326
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6327
  msgid "SA"
6328
  msgstr ""
6329
 
6566
  msgid "iCal export stopped!"
6567
  msgstr ""
6568
 
6569
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
6570
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
6571
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
6572
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
6573
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
6574
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
6575
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
6576
  msgid "Sort"
6577
  msgstr ""
6578
 
6579
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
6580
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
6581
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
6582
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
6583
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
6584
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
6585
  msgid "Required Field"
6586
  msgstr "Töltse ki az adatokat!"
6587
 
6588
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
6589
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
6590
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
6591
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
6592
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
6593
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
6594
  msgid "Insert a label for this field"
6595
  msgstr ""
6596
 
6597
+ #: app/libraries/main.php:2976
6598
  msgid "HTML and shortcode are allowed."
6599
  msgstr ""
6600
 
6601
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
6602
+ #: app/libraries/main.php:3107
6603
  msgid "Option"
6604
  msgstr ""
6605
 
6606
+ #: app/libraries/main.php:3141
6607
  #, php-format
6608
  msgid "Instead of %s, the page title with a link will be show."
6609
  msgstr ""
6610
 
6611
+ #: app/libraries/main.php:3143
6612
  msgid "Agreement Page"
6613
  msgstr ""
6614
 
6615
+ #: app/libraries/main.php:3154
6616
  msgid "Checked by default"
6617
  msgstr ""
6618
 
6619
+ #: app/libraries/main.php:3155
6620
  msgid "Unchecked by default"
6621
  msgstr ""
6622
 
6623
+ #: app/libraries/main.php:3178
6624
  msgid "Insert a label for this option"
6625
  msgstr ""
6626
 
6627
+ #: app/libraries/main.php:3193
6628
  msgid "Free"
6629
  msgstr "Ingyenes"
6630
 
6631
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
6632
  msgid "M.E. Calender"
6633
  msgstr ""
6634
 
6635
+ #: app/libraries/main.php:3954
6636
  #, php-format
6637
  msgid "Copy of %s"
6638
  msgstr ""
6639
 
6640
+ #: app/libraries/main.php:4669
6641
  msgid "Booked an event."
6642
  msgstr ""
6643
 
6644
+ #: app/libraries/main.php:4710
6645
  #, php-format
6646
  msgid "%s booked %s event."
6647
  msgstr ""
6648
 
6649
+ #: app/libraries/main.php:5275
6650
  msgid "Taxonomies"
6651
  msgstr ""
6652
 
6653
+ #: app/libraries/main.php:5277
6654
  msgid "Category Plural Label"
6655
  msgstr ""
6656
 
6657
+ #: app/libraries/main.php:5278
6658
  msgid "Category Singular Label"
6659
  msgstr ""
6660
 
6661
+ #: app/libraries/main.php:5279
6662
  msgid "Label Plural Label"
6663
  msgstr ""
6664
 
6665
+ #: app/libraries/main.php:5280
6666
  msgid "Label Singular Label"
6667
  msgstr ""
6668
 
6669
+ #: app/libraries/main.php:5281
6670
  msgid "Location Plural Label"
6671
  msgstr ""
6672
 
6673
+ #: app/libraries/main.php:5282
6674
  msgid "Location Singular Label"
6675
  msgstr ""
6676
 
6677
+ #: app/libraries/main.php:5283
6678
  msgid "Organizer Plural Label"
6679
  msgstr ""
6680
 
6681
+ #: app/libraries/main.php:5284
6682
  msgid "Organizer Singular Label"
6683
  msgstr ""
6684
 
6685
+ #: app/libraries/main.php:5285
6686
  msgid "Speaker Plural Label"
6687
  msgstr ""
6688
 
6689
+ #: app/libraries/main.php:5286
6690
  msgid "Speaker Singular Label"
6691
  msgstr ""
6692
 
6693
+ #: app/libraries/main.php:5292
6694
  msgid "Sunday abbreviation"
6695
  msgstr ""
6696
 
6697
+ #: app/libraries/main.php:5293
6698
  msgid "Monday abbreviation"
6699
  msgstr ""
6700
 
6701
+ #: app/libraries/main.php:5294
6702
  msgid "Tuesday abbreviation"
6703
  msgstr ""
6704
 
6705
+ #: app/libraries/main.php:5295
6706
  msgid "Wednesday abbreviation"
6707
  msgstr ""
6708
 
6709
+ #: app/libraries/main.php:5296
6710
  msgid "Thursday abbreviation"
6711
  msgstr ""
6712
 
6713
+ #: app/libraries/main.php:5297
6714
  msgid "Friday abbreviation"
6715
  msgstr ""
6716
 
6717
+ #: app/libraries/main.php:5298
6718
  msgid "Saturday abbreviation"
6719
  msgstr ""
6720
 
6721
+ #: app/libraries/main.php:5302
6722
  msgid "Others"
6723
  msgstr ""
6724
 
6725
+ #: app/libraries/main.php:5304
6726
  msgid "Booking Success Message"
6727
  msgstr ""
6728
 
6729
+ #: app/libraries/main.php:5304
6730
  msgid ""
6731
  "Thanks for your booking. Your tickets booked, booking verification might be "
6732
  "needed, please check your email."
6734
  "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
6735
  "jóváhagyásra lesz szükség!"
6736
 
6737
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
6738
  msgid "Register Button"
6739
  msgstr ""
6740
 
6741
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
6742
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
6743
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
6744
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
6745
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
6746
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
6747
+ #: app/skins/single.php:777 app/skins/single/default.php:255
6748
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
6749
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
6750
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
6755
  msgid "REGISTER"
6756
  msgstr "REGISZTRÁCIÓ"
6757
 
6758
+ #: app/libraries/main.php:5306
6759
  msgid "View Detail Button"
6760
  msgstr ""
6761
 
6762
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
6763
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
6764
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
6765
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
6770
  msgid "View Detail"
6771
  msgstr ""
6772
 
6773
+ #: app/libraries/main.php:5307
6774
  msgid "Event Detail Button"
6775
  msgstr ""
6776
 
6777
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
6778
  msgid "Event Detail"
6779
  msgstr ""
6780
 
6781
+ #: app/libraries/main.php:5309
6782
  msgid "More Info Link"
6783
  msgstr ""
6784
 
6785
+ #: app/libraries/main.php:5312
6786
  msgid "Ticket (Singular)"
6787
  msgstr ""
6788
 
6789
+ #: app/libraries/main.php:5313
6790
  msgid "Tickets (Plural)"
6791
  msgstr ""
6792
 
6793
+ #: app/libraries/main.php:5399
6794
  msgid "EventON"
6795
  msgstr ""
6796
 
6797
+ #: app/libraries/main.php:5400
6798
  msgid "The Events Calendar"
6799
  msgstr ""
6800
 
6801
+ #: app/libraries/main.php:5401
6802
  msgid "Events Schedule WP Plugin"
6803
  msgstr ""
6804
 
6805
+ #: app/libraries/main.php:5402
6806
  msgid "Calendarize It"
6807
  msgstr ""
6808
 
6809
+ #: app/libraries/main.php:5403
6810
  msgid "Event Espresso"
6811
  msgstr ""
6812
 
6813
+ #: app/libraries/main.php:5404
6814
  msgid "Events Manager (Recurring)"
6815
  msgstr ""
6816
 
6817
+ #: app/libraries/main.php:5405
6818
  msgid "Events Manager (Single)"
6819
  msgstr ""
6820
 
6821
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
6822
  msgid "Confirmed"
6823
  msgstr ""
6824
 
6825
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
6826
  msgid "Rejected"
6827
  msgstr ""
6828
 
6829
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
6830
  msgid "Pending"
6831
  msgstr ""
6832
 
6833
+ #: app/libraries/main.php:5529
6834
  msgid "Waiting"
6835
  msgstr ""
6836
 
6837
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
6838
  msgid "Skin controller does not exist."
6839
  msgstr ""
6840
 
6841
+ #: app/libraries/main.php:5848
6842
  msgid "Sold Out"
6843
  msgstr ""
6844
 
6845
+ #: app/libraries/main.php:5856
6846
  #, fuzzy
6847
  #| msgid "First name"
6848
  msgid "Last Few Tickets"
6852
  msgid "Please verify your email."
6853
  msgstr ""
6854
 
6855
+ #: app/libraries/notifications.php:153
6856
  msgid "Your booking is received."
6857
  msgstr ""
6858
 
6859
+ #: app/libraries/notifications.php:271
6860
  msgid "Your booking is confirmed."
6861
  msgstr ""
6862
 
6863
+ #: app/libraries/notifications.php:435
6864
  #, fuzzy
6865
  #| msgid "Bookings"
6866
  msgid "booking canceled."
6867
  msgstr "Foglalások"
6868
 
6869
+ #: app/libraries/notifications.php:510
6870
  msgid "A new booking is received."
6871
  msgstr ""
6872
 
6873
+ #: app/libraries/notifications.php:734
6874
  msgid "A new event is added."
6875
  msgstr ""
6876
 
6877
+ #: app/libraries/notifications.php:803
6878
  msgid "Your event is published."
6879
  msgstr ""
6880
 
6881
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
6882
+ #: app/libraries/notifications.php:1052
6883
  msgid "to"
6884
  msgstr ""
6885
 
6886
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
6887
  msgid "+ Add to Google Calendar"
6888
  msgstr "+ Google Naptárba mentés"
6889
 
6890
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
6891
  msgid "+ iCal export"
6892
  msgstr "+ iCal Exportálás"
6893
 
6894
+ #: app/libraries/notifications.php:1131
6895
  msgid "Yes"
6896
  msgstr ""
6897
 
6898
+ #: app/libraries/notifications.php:1131
6899
  msgid "No"
6900
  msgstr ""
6901
 
6902
+ #: app/libraries/skins.php:1008
6903
+ msgid "Select"
6904
  msgstr ""
6905
 
6906
  #: app/modules/attendees-list/details.php:36
6938
  msgid "Free Booking"
6939
  msgstr ""
6940
 
6941
+ #: app/modules/booking/steps/form.php:52
6942
+ #, fuzzy
6943
+ #| msgid "Attendees Form"
6944
+ msgid "Attendee's Form"
6945
+ msgstr "Jelentkezési lap"
6946
+
6947
  #: app/modules/booking/steps/form.php:165
6948
  msgid "Fill other attendees information like the first form."
6949
  msgstr ""
6950
 
6951
  #: app/modules/booking/steps/form.php:179
6952
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
6953
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
6954
  msgid "Next"
6955
  msgstr "Tovább"
6962
  msgid "Book Event"
6963
  msgstr "Foglalás az eseményre"
6964
 
6965
+ #: app/modules/booking/steps/tickets.php:40
6966
  #, php-format
6967
  msgid "Available %s: <span>%s</span>"
6968
  msgstr ""
6969
 
6970
+ #: app/modules/booking/steps/tickets.php:44
6971
  #, php-format
6972
+ msgid "The %s ticket sales has stopped!"
6973
  msgstr ""
6974
 
6975
+ #: app/modules/booking/steps/tickets.php:45
6976
  #, php-format
6977
  msgid "The %s ticket is sold out. You can try another ticket or another date."
6978
  msgstr ""
6993
  msgid "Get Directions"
6994
  msgstr ""
6995
 
6996
+ #: app/modules/links/details.php:17 app/skins/single.php:461
6997
  msgid "Share this event"
6998
  msgstr ""
6999
 
7020
  msgid "Go to occurrence page"
7021
  msgstr ""
7022
 
7023
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7024
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7025
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7026
  msgid "Time"
7146
  msgid "Home"
7147
  msgstr ""
7148
 
7149
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7150
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7151
  #: app/skins/single/modern.php:265
7152
  msgid "Sold out!"
7153
  msgstr ""
7154
 
7155
+ #: app/skins/single.php:822 app/skins/single.php:877
7156
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7157
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7158
  #: app/skins/single/modern.php:44
7159
  msgid "Phone"
7160
  msgstr ""
7161
 
7162
+ #: app/skins/single.php:836 app/skins/single.php:891
7163
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7164
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7165
  #: app/skins/single/modern.php:58
7166
  msgid "Website"
7167
  msgstr "Honlap"
7168
 
7169
+ #: app/skins/single.php:961
7170
  msgid "Speakers:"
7171
  msgstr ""
7172
 
languages/modern-events-calendar-lite-it_IT.mo CHANGED
Binary file
languages/modern-events-calendar-lite-it_IT.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:03+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -276,7 +276,7 @@ msgstr "Aggiungi Evento"
276
  msgid "Add New Event"
277
  msgstr "Aggiungi nuovo Evento"
278
 
279
- #: app/features/events.php:161 app/features/ix.php:3752
280
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
281
  msgid "No events found!"
282
  msgstr "Nessun evento trovato!"
@@ -311,8 +311,8 @@ msgstr "Nessun evento trovato nel cestino!"
311
  #: app/features/mec/meta_boxes/search_form.php:575
312
  #: app/features/mec/meta_boxes/search_form.php:672
313
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
314
- #: app/features/search.php:67 app/libraries/main.php:5260
315
- #: app/libraries/skins.php:850 app/skins/single.php:560
316
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
317
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
318
  #: app/skins/single/modern.php:113
@@ -321,7 +321,7 @@ msgstr "Categoria"
321
 
322
  #: app/features/events.php:183 app/features/events.php:3275
323
  #: app/features/fes/form.php:757 app/features/mec.php:402
324
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
325
  msgid "Categories"
326
  msgstr "Categorie"
327
 
@@ -410,7 +410,7 @@ msgid "Event Repeating"
410
  msgstr "Ripetizione dell'evento"
411
 
412
  #: app/features/events.php:333 app/features/events.php:1286
413
- #: app/features/mec/settings.php:710 app/skins/single.php:941
414
  msgid "Hourly Schedule"
415
  msgstr "Schedula per Ore"
416
 
@@ -428,7 +428,7 @@ msgstr "Link"
428
 
429
  #: app/features/events.php:336 app/features/events.php:3322
430
  #: app/features/events.php:3513 app/features/events.php:3555
431
- #: app/features/ix.php:3373 app/features/ix.php:3414
432
  #: app/features/mec/meta_boxes/display_options.php:960
433
  #: app/features/mec/meta_boxes/search_form.php:45
434
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -445,16 +445,16 @@ msgstr "Link"
445
  #: app/features/organizers.php:58 app/features/organizers.php:204
446
  #: app/features/organizers.php:260 app/features/organizers.php:262
447
  #: app/features/organizers.php:271 app/features/search.php:75
448
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
449
- #: app/skins/single.php:806 app/skins/single/default.php:217
450
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
451
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
452
  msgid "Organizer"
453
  msgstr "Organizzatore"
454
 
455
  #: app/features/events.php:337 app/features/events.php:1172
456
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
457
- #: app/skins/single.php:583 app/skins/single/default.php:126
458
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
459
  #: app/skins/single/modern.php:208
460
  msgid "Cost"
@@ -472,7 +472,7 @@ msgstr "Dati dell'ospite"
472
  #: app/features/events.php:3802 app/features/fes.php:223
473
  #: app/features/fes/form.php:689 app/features/labels.php:178
474
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
475
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
476
  #: app/modules/booking/steps/form.php:37
477
  msgid "Name"
478
  msgstr "Nome"
@@ -482,12 +482,12 @@ msgstr "Nome"
482
  #: app/features/fes.php:223 app/features/fes/form.php:685
483
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
484
  #: app/features/organizers.php:111 app/features/organizers.php:152
485
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
486
- #: app/features/speakers.php:187 app/libraries/main.php:1539
487
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
488
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
489
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
490
- #: app/skins/single.php:878 app/skins/single/default.php:234
491
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
492
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
493
  msgid "Email"
@@ -500,8 +500,8 @@ msgstr "Data e Ora"
500
  #: app/features/events.php:491 app/features/events.php:497
501
  #: app/features/events.php:3323 app/features/events.php:3513
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
503
- #: app/features/fes/form.php:251 app/features/ix.php:3373
504
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
505
  #: app/features/mec/dashboard.php:400
506
  #: app/features/mec/meta_boxes/display_options.php:48
507
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -538,8 +538,8 @@ msgstr "PM"
538
  #: app/features/events.php:583 app/features/events.php:588
539
  #: app/features/events.php:3324 app/features/events.php:3513
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
- #: app/features/fes/form.php:291 app/features/ix.php:3373
542
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
543
  #: app/features/mec/dashboard.php:401
544
  msgid "End Date"
545
  msgstr "Data di fine"
@@ -623,14 +623,14 @@ msgstr ""
623
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
624
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
625
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
626
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
627
- #: app/features/mec/notifications.php:170
628
- #: app/features/mec/notifications.php:238
629
- #: app/features/mec/notifications.php:308
630
- #: app/features/mec/notifications.php:373
631
- #: app/features/mec/notifications.php:384
632
- #: app/features/mec/notifications.php:454
633
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
634
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
635
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
636
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -646,7 +646,7 @@ msgstr ""
646
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
647
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
648
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
649
- #: app/skins/single.php:668 app/skins/single/default.php:141
650
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
651
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
652
  msgid "Read More"
@@ -829,8 +829,8 @@ msgstr "Il prossimo evento degli altri eventi"
829
 
830
  #: app/features/events.php:1168 app/features/events.php:3513
831
  #: app/features/events.php:3555 app/features/fes/form.php:727
832
- #: app/features/ix.php:3373 app/features/ix.php:3414
833
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Costo Evento"
@@ -848,8 +848,8 @@ msgstr "Escludi certi giorni"
848
  #: app/features/events.php:1204 app/features/events.php:2541
849
  #: app/features/fes.php:223 app/features/mec/booking.php:491
850
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
851
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
852
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
853
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
854
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
855
  msgid "Date"
@@ -886,8 +886,8 @@ msgstr ""
886
  #: app/features/events.php:1437 app/features/events.php:2322
887
  #: app/features/events.php:2369 app/features/events.php:3319
888
  #: app/features/events.php:3513 app/features/events.php:3555
889
- #: app/features/fes/form.php:236 app/features/ix.php:3373
890
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
891
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
892
  msgid "Title"
893
  msgstr "Titolo"
@@ -900,13 +900,13 @@ msgstr "Titolo"
900
  #: app/features/events.php:2357 app/features/events.php:2399
901
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
902
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
903
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
904
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
905
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
906
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
907
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
908
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
909
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
910
  msgid "Remove"
911
  msgstr "Elimina"
912
 
@@ -934,7 +934,7 @@ msgstr "Descrizione"
934
  #: app/features/events.php:1445 app/features/fes/form.php:851
935
  #: app/features/mec.php:410 app/features/mec/modules.php:52
936
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
937
- #: app/libraries/main.php:565 app/libraries/main.php:5267
938
  #: app/modules/speakers/details.php:18
939
  msgid "Speakers"
940
  msgstr ""
@@ -951,7 +951,7 @@ msgid "Event Links"
951
  msgstr "Link dell'evento"
952
 
953
  #: app/features/events.php:1479 app/features/events.php:1485
954
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
955
  msgid "Event Link"
956
  msgstr "Link dell'evento"
957
 
@@ -978,8 +978,8 @@ msgid "URL Shortener"
978
  msgstr ""
979
 
980
  #: app/features/events.php:1495 app/features/events.php:1508
981
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
982
- #: app/skins/single.php:667 app/skins/single/default.php:140
983
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
984
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
985
  #: app/widgets/single.php:107
@@ -1013,7 +1013,7 @@ msgstr "Limite totale delle prenotazioni"
1013
 
1014
  #: app/features/events.php:1596 app/features/events.php:1849
1015
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1016
- #: app/modules/booking/steps/tickets.php:44
1017
  #: app/skins/available_spot/tpl.php:160
1018
  msgid "Unlimited"
1019
  msgstr "Illimitato"
@@ -1050,7 +1050,7 @@ msgid "12"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1054
  msgid "Tickets"
1055
  msgstr "Biglietto/ticket"
1056
 
@@ -1073,13 +1073,13 @@ msgstr "Nome biglietto/ticket"
1073
 
1074
  #: app/features/events.php:1680 app/features/events.php:1955
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
- #: app/features/ix.php:3373 app/features/ix.php:3414
1077
  msgid "Start Time"
1078
  msgstr "Ora di inizio"
1079
 
1080
  #: app/features/events.php:1739 app/features/events.php:1985
1081
  #: app/features/events.php:3513 app/features/events.php:3555
1082
- #: app/features/ix.php:3373 app/features/ix.php:3414
1083
  msgid "End Time"
1084
  msgstr "Ora di fine"
1085
 
@@ -1111,37 +1111,37 @@ msgstr "Da mostrare sul sito. es. €15"
1111
  msgid "Available Tickets"
1112
  msgstr "Biglietti/Ticket disponibili"
1113
 
1114
- #: app/features/events.php:1855 app/features/events.php:2070
1115
  #, fuzzy
1116
  #| msgid "Maximum events"
1117
  msgid "Minimum Ticket e.g. 3"
1118
  msgstr "Massimo numero di eventi"
1119
 
1120
- #: app/features/events.php:1858 app/features/events.php:2073
1121
  #, fuzzy
1122
  #| msgid "Maximum events"
1123
  msgid "MinimumTicket"
1124
  msgstr "Massimo numero di eventi"
1125
 
1126
- #: app/features/events.php:1860 app/features/events.php:2075
1127
  msgid "Set a number for the minimum ticket reservation"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:1868 app/features/events.php:2083
1131
  msgid "e.g. 0"
1132
  msgstr ""
1133
 
1134
- #: app/features/events.php:1870 app/features/events.php:2085
1135
  #, fuzzy
1136
  #| msgid "Daily"
1137
  msgid "Day"
1138
  msgstr "Giornaliero"
1139
 
1140
- #: app/features/events.php:1871 app/features/events.php:2086
1141
  msgid "Hour"
1142
  msgstr ""
1143
 
1144
- #: app/features/events.php:1873 app/features/events.php:2088
1145
  #, php-format
1146
  msgid "Stop selling ticket %s before event start."
1147
  msgstr ""
@@ -1167,7 +1167,7 @@ msgstr "Etichetta prezzo"
1167
  #: app/features/mec/meta_boxes/search_form.php:610
1168
  #: app/features/mec/meta_boxes/search_form.php:707
1169
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1170
- #: app/libraries/skins.php:980
1171
  msgid "Label"
1172
  msgstr "Etichetta"
1173
 
@@ -1237,48 +1237,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1237
  msgstr ""
1238
 
1239
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1240
- #: app/libraries/main.php:2749
1241
  #, fuzzy
1242
  #| msgid "Name"
1243
  msgid "MEC Name"
1244
  msgstr "Nome"
1245
 
1246
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1247
- #: app/libraries/main.php:2778
1248
  #, fuzzy
1249
  #| msgid "Email"
1250
  msgid "MEC Email"
1251
  msgstr "Email"
1252
 
1253
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1254
- #: app/libraries/main.php:2719
1255
  msgid "Text"
1256
  msgstr "Testo"
1257
 
1258
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1259
  #: app/features/organizers.php:103 app/features/organizers.php:148
1260
- #: app/features/speakers.php:118 app/features/speakers.php:183
1261
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1262
  msgid "Tel"
1263
  msgstr "Tel"
1264
 
1265
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1266
- #: app/libraries/main.php:2837
1267
  msgid "File"
1268
  msgstr ""
1269
 
1270
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1271
- #: app/libraries/main.php:2924
1272
  msgid "Textarea"
1273
  msgstr "Area di testo"
1274
 
1275
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1276
- #: app/libraries/main.php:2977
1277
  msgid "Checkboxes"
1278
  msgstr "Caselle di selezione"
1279
 
1280
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1281
- #: app/libraries/main.php:3021
1282
  msgid "Radio Buttons"
1283
  msgstr "Opzioni di selezione"
1284
 
@@ -1358,17 +1358,17 @@ msgstr "Opzioni di selezione"
1358
  #: app/features/mec/meta_boxes/search_form.php:696
1359
  #: app/features/mec/meta_boxes/search_form.php:703
1360
  #: app/features/mec/meta_boxes/search_form.php:710
1361
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1362
  msgid "Dropdown"
1363
  msgstr "Casella di selezione"
1364
 
1365
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1366
- #: app/libraries/main.php:3112
1367
  msgid "Agreement"
1368
  msgstr ""
1369
 
1370
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1371
- #: app/libraries/main.php:2953
1372
  msgid "Paragraph"
1373
  msgstr "Paragrafo"
1374
 
@@ -1397,8 +1397,8 @@ msgid "Attendees List"
1397
  msgstr "Limite partecipanti"
1398
 
1399
  #: app/features/events.php:3321 app/features/events.php:3513
1400
- #: app/features/events.php:3555 app/features/ix.php:3373
1401
- #: app/features/ix.php:3414 app/features/locations.php:58
1402
  #: app/features/locations.php:230 app/features/locations.php:287
1403
  #: app/features/locations.php:289 app/features/locations.php:298
1404
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1415,8 +1415,8 @@ msgstr "Limite partecipanti"
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1419
- #: app/skins/single.php:487 app/skins/single.php:918
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1422
  #: app/skins/single/modern.php:97
@@ -1457,14 +1457,14 @@ msgid "Duplicate"
1457
  msgstr "Duplica"
1458
 
1459
  #: app/features/events.php:3513 app/features/events.php:3555
1460
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1461
  #: app/features/labels.php:177 app/features/locations.php:229
1462
- #: app/features/organizers.php:203 app/features/speakers.php:253
1463
  msgid "ID"
1464
  msgstr "ID"
1465
 
1466
  #: app/features/events.php:3513 app/features/events.php:3555
1467
- #: app/features/ix.php:3373 app/features/ix.php:3414
1468
  msgid "Link"
1469
  msgstr "Link"
1470
 
@@ -1480,7 +1480,7 @@ msgstr ""
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
- #: app/libraries/main.php:5294
1484
  msgid "Ticket"
1485
  msgstr "Ticket"
1486
 
@@ -1658,8 +1658,8 @@ msgstr "Rimuovi immagine"
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1662
- #: app/skins/single.php:696 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
1665
  msgid "Labels"
@@ -1738,78 +1738,78 @@ msgstr ""
1738
  msgid "The events are imported successfully!"
1739
  msgstr ""
1740
 
1741
- #: app/features/ix.php:806
1742
  msgid "Third Party plugin is not installed and activated!"
1743
  msgstr ""
1744
 
1745
- #: app/features/ix.php:829
1746
  msgid "Third Party plugin is invalid!"
1747
  msgstr ""
1748
 
1749
- #: app/features/ix.php:2580 app/features/ix.php:2638
1750
  msgid "Both of API key and Calendar ID are required!"
1751
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
1752
 
1753
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1754
  msgid "Please select some events to import!"
1755
  msgstr "Si prega di selezionare degli eventi da importare!"
1756
 
1757
- #: app/features/ix.php:2994 app/features/ix.php:3057
1758
  #, fuzzy
1759
  #| msgid "Both of API key and Calendar ID are required!"
1760
  msgid "Both of API key and Group URL are required!"
1761
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
1762
 
1763
- #: app/features/ix.php:3296
1764
  msgid "Check at Meetup"
1765
  msgstr ""
1766
 
1767
- #: app/features/ix.php:3373 app/features/ix.php:3414
1768
  msgid "Organizer Tel"
1769
  msgstr "Telefono organizzatore"
1770
 
1771
- #: app/features/ix.php:3373 app/features/ix.php:3414
1772
  msgid "Organizer Email"
1773
  msgstr "Email organizzatore"
1774
 
1775
- #: app/features/ix.php:3495
1776
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1777
  msgstr "Tutti gli ID Clienti, Client Secret e ID Calendario sono obbligatori!"
1778
 
1779
- #: app/features/ix.php:3518
1780
  #, php-format
1781
  msgid "All seems good! Please click %s for authenticating your app."
1782
  msgstr "Sembra tutto ok! Fai clic su% s per autenticare l'applicazione."
1783
 
1784
- #: app/features/ix.php:3572
1785
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1786
  msgstr ""
1787
  "Tutte le applicazioni Client, Client Secret e ID Calendario sono obbligatori!"
1788
 
1789
- #: app/features/ix.php:3688
1790
  #, php-format
1791
  msgid "%s events added to Google Calendar successfully."
1792
  msgstr "%s eventi aggiunti con successo dal calendario di Google."
1793
 
1794
- #: app/features/ix.php:3689
1795
  #, php-format
1796
  msgid "%s previously added events get updated."
1797
  msgstr "%s eventi precedentemente aggiunti vengono aggiornati."
1798
 
1799
- #: app/features/ix.php:3690
1800
  #, php-format
1801
  msgid "%s events failed to add for following reasons: %s"
1802
  msgstr ""
1803
  "%s eventi non sono stati aggiornati, è fallita l'importazione per diverse "
1804
  "ragioni: %s"
1805
 
1806
- #: app/features/ix.php:3722
1807
  #, fuzzy
1808
  #| msgid "Please insert your facebook page's link."
1809
  msgid "Please insert your Facebook page's link."
1810
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
1811
 
1812
- #: app/features/ix.php:3731
1813
  #, fuzzy
1814
  #| msgid ""
1815
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -1821,11 +1821,11 @@ msgstr ""
1821
  "Non riusciamo ad accedere alla vostra pagina Facebook. Si prega di "
1822
  "verificare e inserire una pagina valida."
1823
 
1824
- #: app/features/ix.php:3763
1825
  msgid "Please insert your facebook page's link."
1826
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
1827
 
1828
- #: app/features/ix.php:3768
1829
  msgid ""
1830
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1831
  "valid facebook page link."
@@ -1999,14 +1999,15 @@ msgstr "Attiva / Disattiva"
1999
  #: app/features/ix/export_g_calendar.php:72
2000
  #: app/features/ix/export_g_calendar.php:147
2001
  #: app/features/ix/export_g_calendar.php:164
2002
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
2003
- #: app/features/mec/notifications.php:213
2004
- #: app/features/mec/notifications.php:420
 
2005
  msgid "Add to Google Calendar"
2006
  msgstr "Aggiungi al calendario Google"
2007
 
2008
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2009
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
2010
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2011
  msgid "Checking ..."
2012
  msgstr "Sto controllando..."
@@ -2275,7 +2276,7 @@ msgstr "Importa automaticamente da Google"
2275
 
2276
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2277
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2278
- #: app/features/mec/notifications.php:361
2279
  msgid "Important Note"
2280
  msgstr "Nota importante"
2281
 
@@ -2465,7 +2466,7 @@ msgid "Featured"
2465
  msgstr "Immagine in evidenza"
2466
 
2467
  #: app/features/labels.php:118 app/features/labels.php:143
2468
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2469
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2470
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2471
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2484,7 +2485,7 @@ msgid "You can show featured and canceled events by a different style!"
2484
  msgstr ""
2485
 
2486
  #: app/features/labels.php:180 app/features/locations.php:232
2487
- #: app/features/organizers.php:206 app/features/speakers.php:257
2488
  #: app/modules/booking/steps/tickets.php:38
2489
  msgid "Count"
2490
  msgstr "Numero"
@@ -2501,7 +2502,7 @@ msgstr ""
2501
 
2502
  #: app/features/locations.php:59 app/features/mec.php:404
2503
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2504
- #: app/libraries/main.php:5263
2505
  msgid "Locations"
2506
  msgstr "Luoghi"
2507
 
@@ -2534,13 +2535,13 @@ msgstr "Longitudine geografica (opzionale)"
2534
 
2535
  #: app/features/locations.php:138 app/features/locations.php:180
2536
  #: app/features/organizers.php:127 app/features/organizers.php:160
2537
- #: app/features/speakers.php:158 app/features/speakers.php:203
2538
  msgid "Thumbnail"
2539
  msgstr "Anteprima"
2540
 
2541
  #: app/features/locations.php:143 app/features/locations.php:183
2542
  #: app/features/organizers.php:132 app/features/organizers.php:163
2543
- #: app/features/speakers.php:163 app/features/speakers.php:206
2544
  msgid "Upload/Add image"
2545
  msgstr "Carica/Aggiungi immagine"
2546
 
@@ -2548,7 +2549,7 @@ msgstr "Carica/Aggiungi immagine"
2548
  #: app/features/locations.php:340 app/features/locations.php:347
2549
  #: app/features/organizers.php:133 app/features/organizers.php:164
2550
  #: app/features/organizers.php:299 app/features/organizers.php:306
2551
- #: app/features/speakers.php:164 app/features/speakers.php:207
2552
  msgid "Remove image"
2553
  msgstr "Rimuovi immagine"
2554
 
@@ -2608,7 +2609,7 @@ msgstr "Seleziona immagine"
2608
  msgid "Don't show map in single event page"
2609
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
2610
 
2611
- #: app/features/locations.php:356 app/libraries/main.php:5297
2612
  #, fuzzy
2613
  #| msgid "Search Locations"
2614
  msgid "Other Locations"
@@ -2633,7 +2634,7 @@ msgstr ""
2633
  msgid "Troubleshooting"
2634
  msgstr ""
2635
 
2636
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2637
  #, php-format
2638
  msgid "%s to %s"
2639
  msgstr "%s al %s"
@@ -2669,7 +2670,7 @@ msgstr "Supporto"
2669
 
2670
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2671
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2672
- #: app/libraries/main.php:5265
2673
  msgid "Organizers"
2674
  msgstr "Organizzatori"
2675
 
@@ -2791,10 +2792,10 @@ msgstr "Casella di ricerca"
2791
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2792
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2793
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2794
- #: app/features/mec/notifications.php:531
2795
- #: app/features/mec/notifications.php:543
2796
- #: app/features/mec/notifications.php:639
2797
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2798
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2799
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2800
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2915,7 +2916,7 @@ msgstr ""
2915
  msgid "Enable Express Attendees Form"
2916
  msgstr ""
2917
 
2918
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2919
  msgid "Attendees Form"
2920
  msgstr "Form partecipanti"
2921
 
@@ -2949,7 +2950,7 @@ msgstr "Verifica automatica per prenotazioni gratuite"
2949
  msgid "Auto verification for paid bookings"
2950
  msgstr "Verifica automatica per prenotazioni a pagamento"
2951
 
2952
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2953
  #: app/libraries/main.php:579
2954
  msgid "Booking Confirmation"
2955
  msgstr "Conferma Prenotazione"
@@ -3017,14 +3018,14 @@ msgid ""
3017
  msgstr ""
3018
 
3019
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3020
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
3021
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3022
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3023
  msgid "Saved"
3024
  msgstr "Salvato"
3025
 
3026
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3027
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
3028
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3029
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3030
  msgid "Settings Saved!"
@@ -3032,15 +3033,15 @@ msgstr ""
3032
 
3033
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3034
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3035
- #: app/features/mec/notifications.php:620
3036
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
3037
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3038
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
3039
  msgid "Verified"
3040
  msgstr "Verificato"
3041
 
3042
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3043
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
3044
  #: app/features/mec/single.php:291
3045
  msgid "Please Refresh Page"
3046
  msgstr "Si prega di ricaricare la pagina"
@@ -4174,8 +4175,8 @@ msgstr "Disattivato"
4174
  #: app/features/mec/meta_boxes/search_form.php:693
4175
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4176
  #: app/features/search.php:79 app/features/speakers.php:61
4177
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4178
- #: app/libraries/skins.php:928
4179
  msgid "Speaker"
4180
  msgstr ""
4181
 
@@ -4191,7 +4192,7 @@ msgstr ""
4191
  #: app/features/mec/meta_boxes/search_form.php:603
4192
  #: app/features/mec/meta_boxes/search_form.php:700
4193
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4194
- #: app/features/search.php:83 app/libraries/skins.php:954
4195
  #, fuzzy
4196
  #| msgid "Tags"
4197
  msgid "Tag"
@@ -4448,342 +4449,431 @@ msgstr ""
4448
  msgid "It sends to attendee after booking for notifying him/her."
4449
  msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
4450
 
4451
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4452
- #: app/features/mec/notifications.php:161
4453
- #: app/features/mec/notifications.php:229
4454
- #: app/features/mec/notifications.php:299
4455
- #: app/features/mec/notifications.php:364
4456
- #: app/features/mec/notifications.php:445
4457
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4458
  msgid "Email Subject"
4459
  msgstr "Oggetto Email"
4460
 
4461
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4462
- #: app/features/mec/notifications.php:109
4463
- #: app/features/mec/notifications.php:113
4464
- #: app/features/mec/notifications.php:165
4465
- #: app/features/mec/notifications.php:169
4466
- #: app/features/mec/notifications.php:233
4467
- #: app/features/mec/notifications.php:237
4468
- #: app/features/mec/notifications.php:303
4469
- #: app/features/mec/notifications.php:307
4470
- #: app/features/mec/notifications.php:368
4471
- #: app/features/mec/notifications.php:372
4472
- #: app/features/mec/notifications.php:383
4473
- #: app/features/mec/notifications.php:449
4474
- #: app/features/mec/notifications.php:453
4475
- #: app/features/mec/notifications.php:497
4476
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4477
  msgid "Custom Recipients"
4478
  msgstr "Altri destinatari"
4479
 
4480
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4481
- #: app/features/mec/notifications.php:170
4482
- #: app/features/mec/notifications.php:238
4483
- #: app/features/mec/notifications.php:308
4484
- #: app/features/mec/notifications.php:373
4485
- #: app/features/mec/notifications.php:384
4486
- #: app/features/mec/notifications.php:454
4487
- #: app/features/mec/notifications.php:502
4488
  msgid "Insert comma separated emails for multiple recipients."
4489
  msgstr "Puoi inserire più destinatari email separati da virgola."
4490
 
4491
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4492
- #: app/features/mec/notifications.php:315
4493
  msgid "Send the email to event organizer"
4494
  msgstr "Invia l'email all'organizzatore dell'evento"
4495
 
4496
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4497
- #: app/features/mec/notifications.php:180
4498
- #: app/features/mec/notifications.php:256
4499
- #: app/features/mec/notifications.php:318
4500
- #: app/features/mec/notifications.php:390
4501
- #: app/features/mec/notifications.php:460
4502
- #: app/features/mec/notifications.php:508
4503
  msgid "Email Content"
4504
  msgstr "Contenuto Email"
4505
 
4506
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4507
- #: app/features/mec/notifications.php:183
4508
- #: app/features/mec/notifications.php:259
4509
- #: app/features/mec/notifications.php:321
4510
- #: app/features/mec/notifications.php:393
4511
- #: app/features/mec/notifications.php:463
4512
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4513
  msgid "You can use following placeholders"
4514
  msgstr "Puoi usare i seguenti placeholder"
4515
 
4516
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4517
- #: app/features/mec/notifications.php:185
4518
- #: app/features/mec/notifications.php:261
4519
- #: app/features/mec/notifications.php:323
4520
- #: app/features/mec/notifications.php:395
 
4521
  msgid "First name of attendee"
4522
  msgstr "Nome partecipante"
4523
 
4524
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4525
- #: app/features/mec/notifications.php:186
4526
- #: app/features/mec/notifications.php:262
4527
- #: app/features/mec/notifications.php:324
4528
- #: app/features/mec/notifications.php:396
 
4529
  msgid "Last name of attendee"
4530
  msgstr "Cognome partecipante"
4531
 
4532
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4533
- #: app/features/mec/notifications.php:187
4534
- #: app/features/mec/notifications.php:263
4535
- #: app/features/mec/notifications.php:325
4536
- #: app/features/mec/notifications.php:397
 
4537
  msgid "Email of attendee"
4538
  msgstr "Email partecipante"
4539
 
4540
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4541
- #: app/features/mec/notifications.php:188
4542
- #: app/features/mec/notifications.php:264
4543
- #: app/features/mec/notifications.php:326
4544
- #: app/features/mec/notifications.php:398
 
4545
  msgid "Booked date of event"
4546
  msgstr "Data prenotata per l'evento"
4547
 
4548
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4549
- #: app/features/mec/notifications.php:189
4550
- #: app/features/mec/notifications.php:265
4551
- #: app/features/mec/notifications.php:327
4552
- #: app/features/mec/notifications.php:399
 
4553
  #, fuzzy
4554
  #| msgid "Booked date of event"
4555
  msgid "Booked time of event"
4556
  msgstr "Data prenotata per l'evento"
4557
 
4558
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4559
- #: app/features/mec/notifications.php:190
4560
- #: app/features/mec/notifications.php:266
4561
- #: app/features/mec/notifications.php:328
4562
- #: app/features/mec/notifications.php:400
 
4563
  msgid "Booking Price"
4564
  msgstr ""
4565
 
4566
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4567
- #: app/features/mec/notifications.php:191
4568
- #: app/features/mec/notifications.php:267
4569
- #: app/features/mec/notifications.php:329
4570
- #: app/features/mec/notifications.php:401
 
4571
  msgid "Date and time of placing booking"
4572
  msgstr ""
4573
 
4574
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4575
- #: app/features/mec/notifications.php:192
4576
- #: app/features/mec/notifications.php:268
4577
- #: app/features/mec/notifications.php:330
4578
- #: app/features/mec/notifications.php:402
4579
- #: app/features/mec/notifications.php:471
4580
- #: app/features/mec/notifications.php:519
 
4581
  msgid "Your website title"
4582
  msgstr "Titolo del tuo sito web"
4583
 
4584
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4585
- #: app/features/mec/notifications.php:193
4586
- #: app/features/mec/notifications.php:269
4587
- #: app/features/mec/notifications.php:331
4588
- #: app/features/mec/notifications.php:403
4589
- #: app/features/mec/notifications.php:472
4590
- #: app/features/mec/notifications.php:520
 
4591
  msgid "Your website URL"
4592
  msgstr "URL del tuo sito web"
4593
 
4594
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4595
- #: app/features/mec/notifications.php:194
4596
- #: app/features/mec/notifications.php:270
4597
- #: app/features/mec/notifications.php:332
4598
- #: app/features/mec/notifications.php:404
4599
- #: app/features/mec/notifications.php:473
4600
- #: app/features/mec/notifications.php:521
 
4601
  msgid "Your website description"
4602
  msgstr "Descrizione del tuo sito web"
4603
 
4604
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4605
- #: app/features/mec/notifications.php:195
4606
- #: app/features/mec/notifications.php:271
4607
- #: app/features/mec/notifications.php:333
4608
- #: app/features/mec/notifications.php:405
 
4609
  msgid "Event title"
4610
  msgstr "Titolo evento"
4611
 
4612
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4613
- #: app/features/mec/notifications.php:196
4614
- #: app/features/mec/notifications.php:272
4615
- #: app/features/mec/notifications.php:334
4616
- #: app/features/mec/notifications.php:406
 
4617
  #, fuzzy
4618
  #| msgid "Event Link"
4619
  msgid "Event link"
4620
  msgstr "Link dell'evento"
4621
 
4622
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4623
- #: app/features/mec/notifications.php:197
4624
- #: app/features/mec/notifications.php:467
4625
- #: app/features/mec/notifications.php:515
 
4626
  #, fuzzy
4627
  #| msgid "Start Date"
4628
  msgid "Event Start Date"
4629
  msgstr "Data di inizio"
4630
 
4631
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4632
- #: app/features/mec/notifications.php:198
4633
- #: app/features/mec/notifications.php:468
4634
- #: app/features/mec/notifications.php:516
 
4635
  #, fuzzy
4636
  #| msgid "End Date"
4637
  msgid "Event End Date"
4638
  msgstr "Data di fine"
4639
 
4640
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4641
- #: app/features/mec/notifications.php:199
4642
- #: app/features/mec/notifications.php:273
4643
- #: app/features/mec/notifications.php:335
4644
- #: app/features/mec/notifications.php:407
 
4645
  #, fuzzy
4646
  #| msgid "Organizer name of booked event"
4647
  msgid "Speaker name of booked event"
4648
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4649
 
4650
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4651
- #: app/features/mec/notifications.php:200
4652
- #: app/features/mec/notifications.php:274
4653
- #: app/features/mec/notifications.php:336
4654
- #: app/features/mec/notifications.php:408
 
4655
  msgid "Organizer name of booked event"
4656
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4657
 
4658
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4659
- #: app/features/mec/notifications.php:201
4660
- #: app/features/mec/notifications.php:275
4661
- #: app/features/mec/notifications.php:337
4662
- #: app/features/mec/notifications.php:409
 
4663
  msgid "Organizer tel of booked event"
4664
  msgstr "Telefono dell'organizzatore che ha prenotato l'evento"
4665
 
4666
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4667
- #: app/features/mec/notifications.php:202
4668
- #: app/features/mec/notifications.php:276
4669
- #: app/features/mec/notifications.php:338
4670
- #: app/features/mec/notifications.php:410
 
4671
  msgid "Organizer email of booked event"
4672
  msgstr "Email dell'organizzatore che ha prenotato l'evento"
4673
 
4674
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4675
- #: app/features/mec/notifications.php:203
4676
- #: app/features/mec/notifications.php:277
4677
- #: app/features/mec/notifications.php:339
4678
- #: app/features/mec/notifications.php:411
 
4679
  msgid "Location name of booked event"
4680
  msgstr "Nome del luogo dell'evento prenotato"
4681
 
4682
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4683
- #: app/features/mec/notifications.php:204
4684
- #: app/features/mec/notifications.php:278
4685
- #: app/features/mec/notifications.php:340
4686
- #: app/features/mec/notifications.php:412
 
4687
  msgid "Location address of booked event"
4688
  msgstr "Indirizzo del luogo dell'evento prenotato"
4689
 
4690
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4691
- #: app/features/mec/notifications.php:205
4692
- #: app/features/mec/notifications.php:279
4693
- #: app/features/mec/notifications.php:341
4694
- #: app/features/mec/notifications.php:413
 
4695
  #, fuzzy
4696
  #| msgid "Organizer name of booked event"
4697
  msgid "Featured image of booked event"
4698
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4699
 
4700
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4701
- #: app/features/mec/notifications.php:343
 
4702
  msgid "Full Attendee info such as booking form data, name, email etc."
4703
  msgstr ""
4704
  "Informazioni complete partecipanti (dati di prenotazione, nome, email, etc.)."
4705
 
4706
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4707
- #: app/features/mec/notifications.php:415
 
4708
  msgid "Invoice Link"
4709
  msgstr ""
4710
 
4711
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4712
- #: app/features/mec/notifications.php:208
4713
- #: app/features/mec/notifications.php:282
4714
- #: app/features/mec/notifications.php:344
4715
- #: app/features/mec/notifications.php:416
 
4716
  msgid "Total Attendees"
4717
  msgstr ""
4718
 
4719
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4720
- #: app/features/mec/notifications.php:210
4721
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4722
  #, fuzzy
4723
  #| msgid "Ticket Name"
4724
  msgid "Ticket name"
4725
  msgstr "Nome biglietto/ticket"
4726
 
4727
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4728
- #: app/features/mec/notifications.php:211
4729
- #: app/features/mec/notifications.php:418
 
4730
  #, fuzzy
4731
  #| msgid "Ticket Name"
4732
  msgid "Ticket time"
4733
  msgstr "Nome biglietto/ticket"
4734
 
4735
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4736
- #: app/features/mec/notifications.php:212
4737
- #: app/features/mec/notifications.php:419
 
4738
  msgid "Download ICS file"
4739
  msgstr ""
4740
 
4741
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4742
  msgid "Booking Verification"
4743
  msgstr "Verifica prenotazione"
4744
 
4745
- #: app/features/mec/notifications.php:103
4746
  msgid "It sends to attendee email for verifying their booking/email."
4747
  msgstr "Invia email ai partecipanti per verificare le loro prenotazioni/email."
4748
 
4749
- #: app/features/mec/notifications.php:146
4750
  msgid "Email/Booking verification link."
4751
  msgstr "Link di verifica Email/Prenotazione."
4752
 
4753
- #: app/features/mec/notifications.php:159
4754
  msgid "It sends to attendee after confirming the booking by admin."
4755
  msgstr ""
4756
  "Invia ai partecipanti dopo conferma della prenotazione da parte "
4757
  "dell'amministratore."
4758
 
4759
- #: app/features/mec/notifications.php:177
4760
  msgid "Send One Single Email Only To First Attendee"
4761
  msgstr ""
4762
 
4763
- #: app/features/mec/notifications.php:206
4764
- #: app/features/mec/notifications.php:414
4765
  msgid "Booking cancellation link."
4766
  msgstr "Link per la cancellazione della prenotazione."
4767
 
4768
- #: app/features/mec/notifications.php:209
4769
- #, fuzzy
4770
- #| msgid "Tickets"
4771
- msgid "Amount Tickets"
4772
- msgstr "Biglietto/ticket"
4773
-
4774
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4775
  #, fuzzy
4776
  #| msgid "Booking cancellation link."
4777
  msgid "Booking Cancellation"
4778
  msgstr "Link per la cancellazione della prenotazione."
4779
 
4780
- #: app/features/mec/notifications.php:223
4781
  #, fuzzy
4782
  #| msgid "Enable new event notification"
4783
  msgid "Enable cancellation notification"
4784
  msgstr "Attiva notifica nuovo evento"
4785
 
4786
- #: app/features/mec/notifications.php:227
4787
  #, fuzzy
4788
  #| msgid "It sends to attendee after booking for notifying him/her."
4789
  msgid ""
@@ -4791,48 +4881,48 @@ msgid ""
4791
  "them."
4792
  msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
4793
 
4794
- #: app/features/mec/notifications.php:245
4795
- #: app/features/mec/notifications.php:439
4796
  #, fuzzy
4797
  #| msgid "Send the email to event organizer"
4798
  msgid "Send the email to admin"
4799
  msgstr "Invia l'email all'organizzatore dell'evento"
4800
 
4801
- #: app/features/mec/notifications.php:253
4802
  #, fuzzy
4803
  #| msgid "Send the email to event organizer"
4804
  msgid "Send the email to booking user"
4805
  msgstr "Invia l'email all'organizzatore dell'evento"
4806
 
4807
- #: app/features/mec/notifications.php:280
4808
- #: app/features/mec/notifications.php:342
4809
  msgid "Admin booking management link."
4810
  msgstr "Link amministratore gestione prenotazioni."
4811
 
4812
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4813
  msgid "Admin"
4814
  msgstr ""
4815
 
4816
- #: app/features/mec/notifications.php:293
4817
  #, fuzzy
4818
  #| msgid "Enable new event notification"
4819
  msgid "Enable admin notification"
4820
  msgstr "Attiva notifica nuovo evento"
4821
 
4822
- #: app/features/mec/notifications.php:297
4823
  msgid "It sends to admin to notify him/her that a new booking received."
4824
  msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
4825
 
4826
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4827
- #: app/libraries/notifications.php:548
4828
  msgid "Booking Reminder"
4829
  msgstr ""
4830
 
4831
- #: app/features/mec/notifications.php:355
4832
  msgid "Enable booking reminder notification"
4833
  msgstr ""
4834
 
4835
- #: app/features/mec/notifications.php:361
4836
  #, php-format
4837
  msgid ""
4838
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4840,70 +4930,70 @@ msgid ""
4840
  "send the reminders multiple times."
4841
  msgstr ""
4842
 
4843
- #: app/features/mec/notifications.php:361
4844
  msgid "only once per day"
4845
  msgstr ""
4846
 
4847
- #: app/features/mec/notifications.php:379
4848
  msgid "Days"
4849
  msgstr ""
4850
 
4851
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4852
  #: app/libraries/main.php:583
4853
  msgid "New Event"
4854
  msgstr "Nuovo Evento"
4855
 
4856
- #: app/features/mec/notifications.php:433
4857
  msgid "Enable new event notification"
4858
  msgstr "Attiva notifica nuovo evento"
4859
 
4860
- #: app/features/mec/notifications.php:443
4861
  msgid ""
4862
  "It sends after adding a new event from frontend event submission or from "
4863
  "website backend."
4864
  msgstr "Invia dopo l'inserimento di un nuovo evento da frontend o da backend."
4865
 
4866
- #: app/features/mec/notifications.php:465
4867
- #: app/features/mec/notifications.php:513
4868
  msgid "Title of event"
4869
  msgstr "Titolo dell'evento"
4870
 
4871
- #: app/features/mec/notifications.php:466
4872
- #: app/features/mec/notifications.php:514
4873
  #, fuzzy
4874
  #| msgid "Title of event"
4875
  msgid "Link of event"
4876
  msgstr "Titolo dell'evento"
4877
 
4878
- #: app/features/mec/notifications.php:469
4879
- #: app/features/mec/notifications.php:517
4880
  msgid "Status of event"
4881
  msgstr "Stato dell'evento"
4882
 
4883
- #: app/features/mec/notifications.php:470
4884
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4885
  #: app/features/mec/settings.php:738
4886
  msgid "Event Note"
4887
  msgstr "Note dell'evento"
4888
 
4889
- #: app/features/mec/notifications.php:474
4890
- #: app/features/mec/notifications.php:522
4891
  msgid "Admin events management link."
4892
  msgstr "Link amministratore gestione eventi."
4893
 
4894
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4895
  #, fuzzy
4896
  #| msgid "The event published."
4897
  msgid "User Event Publishing"
4898
  msgstr "L'evento è stato pubblicato."
4899
 
4900
- #: app/features/mec/notifications.php:487
4901
  #, fuzzy
4902
  #| msgid "Enable new event notification"
4903
  msgid "Enable user event publishing notification"
4904
  msgstr "Attiva notifica nuovo evento"
4905
 
4906
- #: app/features/mec/notifications.php:491
4907
  #, fuzzy
4908
  #| msgid ""
4909
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5083,7 +5173,7 @@ msgid "You can enable/disable Schema scripts"
5083
  msgstr ""
5084
 
5085
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5086
- #: app/libraries/main.php:5272
5087
  msgid "Weekdays"
5088
  msgstr "Settimanali"
5089
 
@@ -6354,12 +6444,12 @@ msgstr "es. mario@rossi.it"
6354
  msgid "eg. https://webnus.net"
6355
  msgstr "http://webnus.biz"
6356
 
6357
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6358
- #: app/skins/single.php:856
6359
  msgid "Other Organizers"
6360
  msgstr ""
6361
 
6362
- #: app/features/organizers.php:313
6363
  msgid ""
6364
  "You can select extra organizers in addition to main organizer if you like."
6365
  msgstr ""
@@ -6380,7 +6470,7 @@ msgstr "La tua prenotazione non può essere cancellata."
6380
  msgid "#"
6381
  msgstr ""
6382
 
6383
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6384
  msgid "Status"
6385
  msgstr ""
6386
 
@@ -6415,7 +6505,7 @@ msgstr ""
6415
  msgid "No bookings found!"
6416
  msgstr "Nessuna prenotazione trovata!"
6417
 
6418
- #: app/features/search.php:87 app/libraries/main.php:5262
6419
  msgid "label"
6420
  msgstr ""
6421
 
@@ -6442,76 +6532,94 @@ msgid "No search result."
6442
  msgstr ""
6443
 
6444
  #: app/features/search_bar/search_result.php:11
6445
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6446
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6447
- #: app/skins/single.php:160 app/skins/single.php:747
6448
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6449
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6450
  msgid "All of the day"
6451
  msgstr "Tutti del giorno"
6452
 
6453
- #: app/features/speakers.php:110 app/features/speakers.php:179
6454
- #: app/features/speakers.php:255
6455
  #, fuzzy
6456
  #| msgid "Title"
6457
  msgid "Job Title"
6458
  msgstr "Titolo"
6459
 
6460
- #: app/features/speakers.php:113 app/features/speakers.php:180
6461
  msgid "Insert speaker job title."
6462
  msgstr ""
6463
 
6464
- #: app/features/speakers.php:121 app/features/speakers.php:184
6465
  #, fuzzy
6466
  #| msgid "Insert organizer phone number."
6467
  msgid "Insert speaker phone number."
6468
  msgstr "Inserisci il numero di telefono dell'organizzatore."
6469
 
6470
- #: app/features/speakers.php:129 app/features/speakers.php:188
6471
  #, fuzzy
6472
  #| msgid "Insert organizer email address."
6473
  msgid "Insert speaker email address."
6474
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
6475
 
6476
- #: app/features/speakers.php:134 app/features/speakers.php:191
6477
  #, fuzzy
6478
  #| msgid "Facebook Page Link"
6479
  msgid "Facebook Page"
6480
  msgstr "Link della pagina Facebook"
6481
 
6482
- #: app/features/speakers.php:137 app/features/speakers.php:192
6483
  #, fuzzy
6484
  #| msgid "Import from Facebook Calendar"
6485
  msgid "Insert URL of Facebook Page"
6486
  msgstr "Importa dal calendario Facebook"
6487
 
6488
- #: app/features/speakers.php:142 app/features/speakers.php:195
6489
  msgid "Instagram"
6490
  msgstr ""
6491
 
6492
- #: app/features/speakers.php:145 app/features/speakers.php:196
6493
  #, fuzzy
6494
  #| msgid "Insert -1 for unlimited usage"
6495
  msgid "Insert URL of Instagram"
6496
  msgstr "Inserire -1 per utilizzo illimitato"
6497
 
6498
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6499
  #, fuzzy
6500
  #| msgid "Twitter"
6501
  msgid "Twitter Page"
6502
  msgstr "Twitter"
6503
 
6504
- #: app/features/speakers.php:153 app/features/speakers.php:200
6505
  #, fuzzy
6506
  #| msgid "Insert -1 for unlimited usage"
6507
  msgid "Insert URL of Twitter Page"
6508
  msgstr "Inserire -1 per utilizzo illimitato"
6509
 
6510
- #: app/features/speakers.php:315
 
 
 
 
 
 
6511
  msgid "Sorry, You must insert speaker name!"
6512
  msgstr ""
6513
 
6514
- #: app/features/speakers.php:364
6515
  msgid ""
6516
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6517
  "section and speaker widget section!"
@@ -6669,31 +6777,31 @@ msgstr "Visualizza slider"
6669
  msgid "Tile View"
6670
  msgstr "Visualizza slider"
6671
 
6672
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6673
  msgid "SU"
6674
  msgstr "D"
6675
 
6676
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6677
  msgid "MO"
6678
  msgstr "L"
6679
 
6680
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6681
  msgid "TU"
6682
  msgstr "M"
6683
 
6684
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6685
  msgid "WE"
6686
  msgstr "M"
6687
 
6688
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6689
  msgid "TH"
6690
  msgstr "G"
6691
 
6692
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6693
  msgid "FR"
6694
  msgstr "V"
6695
 
6696
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6697
  msgid "SA"
6698
  msgstr "S"
6699
 
@@ -6960,173 +7068,173 @@ msgstr "Richiesta non valida!"
6960
  msgid "iCal export stopped!"
6961
  msgstr "esportazione iCal annullata!"
6962
 
6963
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6964
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6965
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6966
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6967
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6968
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6969
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6970
  msgid "Sort"
6971
  msgstr "Ordina"
6972
 
6973
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6974
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6975
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6976
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6977
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6978
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6979
  msgid "Required Field"
6980
  msgstr "Campo obbligatorio"
6981
 
6982
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6983
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6984
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6985
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6986
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6987
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6988
  msgid "Insert a label for this field"
6989
  msgstr "Inserisci una etichetta per questo campo"
6990
 
6991
- #: app/libraries/main.php:2958
6992
  msgid "HTML and shortcode are allowed."
6993
  msgstr "HTML e shortcode sono ammessi."
6994
 
6995
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
6996
- #: app/libraries/main.php:3089
6997
  msgid "Option"
6998
  msgstr "Opzione"
6999
 
7000
- #: app/libraries/main.php:3123
7001
  #, php-format
7002
  msgid "Instead of %s, the page title with a link will be show."
7003
  msgstr ""
7004
 
7005
- #: app/libraries/main.php:3125
7006
  msgid "Agreement Page"
7007
  msgstr ""
7008
 
7009
- #: app/libraries/main.php:3136
7010
  msgid "Checked by default"
7011
  msgstr ""
7012
 
7013
- #: app/libraries/main.php:3137
7014
  msgid "Unchecked by default"
7015
  msgstr ""
7016
 
7017
- #: app/libraries/main.php:3160
7018
  msgid "Insert a label for this option"
7019
  msgstr "Inserisci una etichetta per questa opzione"
7020
 
7021
- #: app/libraries/main.php:3175
7022
  msgid "Free"
7023
  msgstr "Gratuito"
7024
 
7025
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
7026
  #, fuzzy
7027
  #| msgid "M.E. Calendar"
7028
  msgid "M.E. Calender"
7029
  msgstr "Calendario"
7030
 
7031
- #: app/libraries/main.php:3936
7032
  #, php-format
7033
  msgid "Copy of %s"
7034
  msgstr "Copia di %s"
7035
 
7036
- #: app/libraries/main.php:4651
7037
  msgid "Booked an event."
7038
  msgstr "Prenotato un evento."
7039
 
7040
- #: app/libraries/main.php:4692
7041
  #, php-format
7042
  msgid "%s booked %s event."
7043
  msgstr "%s ha prenotato l'evento %s."
7044
 
7045
- #: app/libraries/main.php:5257
7046
  msgid "Taxonomies"
7047
  msgstr ""
7048
 
7049
- #: app/libraries/main.php:5259
7050
  msgid "Category Plural Label"
7051
  msgstr ""
7052
 
7053
- #: app/libraries/main.php:5260
7054
  msgid "Category Singular Label"
7055
  msgstr ""
7056
 
7057
- #: app/libraries/main.php:5261
7058
  msgid "Label Plural Label"
7059
  msgstr ""
7060
 
7061
- #: app/libraries/main.php:5262
7062
  msgid "Label Singular Label"
7063
  msgstr ""
7064
 
7065
- #: app/libraries/main.php:5263
7066
  msgid "Location Plural Label"
7067
  msgstr ""
7068
 
7069
- #: app/libraries/main.php:5264
7070
  msgid "Location Singular Label"
7071
  msgstr ""
7072
 
7073
- #: app/libraries/main.php:5265
7074
  msgid "Organizer Plural Label"
7075
  msgstr ""
7076
 
7077
- #: app/libraries/main.php:5266
7078
  msgid "Organizer Singular Label"
7079
  msgstr ""
7080
 
7081
- #: app/libraries/main.php:5267
7082
  #, fuzzy
7083
  #| msgid "Search Labels"
7084
  msgid "Speaker Plural Label"
7085
  msgstr "Cerca etichette"
7086
 
7087
- #: app/libraries/main.php:5268
7088
  #, fuzzy
7089
  #| msgid "Popular Labels"
7090
  msgid "Speaker Singular Label"
7091
  msgstr "Etichette frequenti"
7092
 
7093
- #: app/libraries/main.php:5274
7094
  msgid "Sunday abbreviation"
7095
  msgstr ""
7096
 
7097
- #: app/libraries/main.php:5275
7098
  msgid "Monday abbreviation"
7099
  msgstr ""
7100
 
7101
- #: app/libraries/main.php:5276
7102
  msgid "Tuesday abbreviation"
7103
  msgstr ""
7104
 
7105
- #: app/libraries/main.php:5277
7106
  msgid "Wednesday abbreviation"
7107
  msgstr ""
7108
 
7109
- #: app/libraries/main.php:5278
7110
  msgid "Thursday abbreviation"
7111
  msgstr ""
7112
 
7113
- #: app/libraries/main.php:5279
7114
  msgid "Friday abbreviation"
7115
  msgstr ""
7116
 
7117
- #: app/libraries/main.php:5280
7118
  msgid "Saturday abbreviation"
7119
  msgstr ""
7120
 
7121
- #: app/libraries/main.php:5284
7122
  msgid "Others"
7123
  msgstr ""
7124
 
7125
- #: app/libraries/main.php:5286
7126
  msgid "Booking Success Message"
7127
  msgstr ""
7128
 
7129
- #: app/libraries/main.php:5286
7130
  msgid ""
7131
  "Thanks for your booking. Your tickets booked, booking verification might be "
7132
  "needed, please check your email."
@@ -7135,17 +7243,17 @@ msgstr ""
7135
  "essere necessario la verifica della prenotazione, si prega di controllare la "
7136
  "posta elettronica."
7137
 
7138
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7139
  msgid "Register Button"
7140
  msgstr ""
7141
 
7142
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7143
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7144
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7145
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7146
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7147
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7148
- #: app/skins/single.php:771 app/skins/single/default.php:255
7149
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7150
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7151
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7156,11 +7264,11 @@ msgstr ""
7156
  msgid "REGISTER"
7157
  msgstr "REGISTRA"
7158
 
7159
- #: app/libraries/main.php:5288
7160
  msgid "View Detail Button"
7161
  msgstr ""
7162
 
7163
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7164
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7165
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7166
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7171,85 +7279,85 @@ msgstr ""
7171
  msgid "View Detail"
7172
  msgstr "Visualizza dettaglio"
7173
 
7174
- #: app/libraries/main.php:5289
7175
  msgid "Event Detail Button"
7176
  msgstr ""
7177
 
7178
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7179
  msgid "Event Detail"
7180
  msgstr "Dettaglio evento"
7181
 
7182
- #: app/libraries/main.php:5291
7183
  msgid "More Info Link"
7184
  msgstr ""
7185
 
7186
- #: app/libraries/main.php:5294
7187
  msgid "Ticket (Singular)"
7188
  msgstr ""
7189
 
7190
- #: app/libraries/main.php:5295
7191
  msgid "Tickets (Plural)"
7192
  msgstr ""
7193
 
7194
- #: app/libraries/main.php:5381
7195
  msgid "EventON"
7196
  msgstr ""
7197
 
7198
- #: app/libraries/main.php:5382
7199
  msgid "The Events Calendar"
7200
  msgstr ""
7201
 
7202
- #: app/libraries/main.php:5383
7203
  msgid "Events Schedule WP Plugin"
7204
  msgstr ""
7205
 
7206
- #: app/libraries/main.php:5384
7207
  msgid "Calendarize It"
7208
  msgstr ""
7209
 
7210
- #: app/libraries/main.php:5385
7211
  #, fuzzy
7212
  #| msgid "No Search Options"
7213
  msgid "Event Espresso"
7214
  msgstr "Nessuna opzione di ricerca"
7215
 
7216
- #: app/libraries/main.php:5386
7217
  #, fuzzy
7218
  #| msgid "Event Repeating"
7219
  msgid "Events Manager (Recurring)"
7220
  msgstr "Ripetizione dell'evento"
7221
 
7222
- #: app/libraries/main.php:5387
7223
  #, fuzzy
7224
  #| msgid "Modern Events Calendar"
7225
  msgid "Events Manager (Single)"
7226
  msgstr "Calendario moderno degli eventi"
7227
 
7228
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7229
  msgid "Confirmed"
7230
  msgstr "Confermato"
7231
 
7232
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7233
  msgid "Rejected"
7234
  msgstr "Rifiutato"
7235
 
7236
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7237
  msgid "Pending"
7238
  msgstr "In attesa"
7239
 
7240
- #: app/libraries/main.php:5511
7241
  msgid "Waiting"
7242
  msgstr "In attesa"
7243
 
7244
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7245
  msgid "Skin controller does not exist."
7246
  msgstr "Non esiste il controllo dello stile."
7247
 
7248
- #: app/libraries/main.php:5830
7249
  msgid "Sold Out"
7250
  msgstr ""
7251
 
7252
- #: app/libraries/main.php:5838
7253
  #, fuzzy
7254
  #| msgid "Ticket"
7255
  msgid "Last Few Tickets"
@@ -7259,58 +7367,60 @@ msgstr "Ticket"
7259
  msgid "Please verify your email."
7260
  msgstr "Si prega di verificare la propria email."
7261
 
7262
- #: app/libraries/notifications.php:142
7263
  msgid "Your booking is received."
7264
  msgstr ""
7265
 
7266
- #: app/libraries/notifications.php:249
7267
  msgid "Your booking is confirmed."
7268
  msgstr "La tua prenotazione è confermata."
7269
 
7270
- #: app/libraries/notifications.php:391
7271
  #, fuzzy
7272
  #| msgid "Your booking cannot be canceled."
7273
  msgid "booking canceled."
7274
  msgstr "La tua prenotazione non può essere cancellata."
7275
 
7276
- #: app/libraries/notifications.php:466
7277
  msgid "A new booking is received."
7278
  msgstr "Una nuova prenotazione è stata ricevuta."
7279
 
7280
- #: app/libraries/notifications.php:657
7281
  msgid "A new event is added."
7282
  msgstr "Un nuovo evento è stato aggiunto."
7283
 
7284
- #: app/libraries/notifications.php:726
7285
  #, fuzzy
7286
  #| msgid "The event published."
7287
  msgid "Your event is published."
7288
  msgstr "L'evento è stato pubblicato."
7289
 
7290
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7291
- #: app/libraries/notifications.php:964
7292
  msgid "to"
7293
  msgstr ""
7294
 
7295
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7296
  msgid "+ Add to Google Calendar"
7297
  msgstr "+ Aggiungi a Google Calendar"
7298
 
7299
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7300
  msgid "+ iCal export"
7301
  msgstr "+ Esporta iCal"
7302
 
7303
- #: app/libraries/notifications.php:1043
7304
  msgid "Yes"
7305
  msgstr ""
7306
 
7307
- #: app/libraries/notifications.php:1043
7308
  msgid "No"
7309
  msgstr ""
7310
 
7311
- #: app/libraries/skins.php:1000
7312
- msgid "none"
7313
- msgstr ""
 
 
7314
 
7315
  #: app/modules/attendees-list/details.php:36
7316
  msgid "Event Attendees"
@@ -7347,12 +7457,18 @@ msgstr ""
7347
  msgid "Free Booking"
7348
  msgstr ""
7349
 
 
 
 
 
 
 
7350
  #: app/modules/booking/steps/form.php:165
7351
  msgid "Fill other attendees information like the first form."
7352
  msgstr ""
7353
 
7354
  #: app/modules/booking/steps/form.php:179
7355
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7356
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7357
  msgid "Next"
7358
  msgstr "Avanti"
@@ -7365,17 +7481,17 @@ msgstr "Grazie per aver prenotato."
7365
  msgid "Book Event"
7366
  msgstr "Evento prenotazione"
7367
 
7368
- #: app/modules/booking/steps/tickets.php:44
7369
  #, php-format
7370
  msgid "Available %s: <span>%s</span>"
7371
  msgstr ""
7372
 
7373
- #: app/modules/booking/steps/tickets.php:48
7374
  #, php-format
7375
- msgid "The %s ticket sales has stoped!"
7376
  msgstr ""
7377
 
7378
- #: app/modules/booking/steps/tickets.php:49
7379
  #, php-format
7380
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7381
  msgstr ""
@@ -7396,7 +7512,7 @@ msgstr "Indirizzo da ..."
7396
  msgid "Get Directions"
7397
  msgstr ""
7398
 
7399
- #: app/modules/links/details.php:17 app/skins/single.php:455
7400
  msgid "Share this event"
7401
  msgstr "Condividi questo evento"
7402
 
@@ -7423,7 +7539,7 @@ msgstr "Prossimo avvenimento"
7423
  msgid "Go to occurrence page"
7424
  msgstr "Vai alla pagina necessaria"
7425
 
7426
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7427
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7428
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7429
  msgid "Time"
@@ -7551,27 +7667,27 @@ msgstr "Nessun evento"
7551
  msgid "Home"
7552
  msgstr ""
7553
 
7554
- #: app/skins/single.php:538 app/skins/single/default.php:51
7555
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7556
  #: app/skins/single/modern.php:265
7557
  msgid "Sold out!"
7558
  msgstr ""
7559
 
7560
- #: app/skins/single.php:816 app/skins/single.php:871
7561
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7562
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7563
  #: app/skins/single/modern.php:44
7564
  msgid "Phone"
7565
  msgstr "Telefono"
7566
 
7567
- #: app/skins/single.php:830 app/skins/single.php:885
7568
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7569
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7570
  #: app/skins/single/modern.php:58
7571
  msgid "Website"
7572
  msgstr "Sito web"
7573
 
7574
- #: app/skins/single.php:955
7575
  #, fuzzy
7576
  #| msgid "No Search Options"
7577
  msgid "Speakers:"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
276
  msgid "Add New Event"
277
  msgstr "Aggiungi nuovo Evento"
278
 
279
+ #: app/features/events.php:161 app/features/ix.php:3889
280
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
281
  msgid "No events found!"
282
  msgstr "Nessun evento trovato!"
311
  #: app/features/mec/meta_boxes/search_form.php:575
312
  #: app/features/mec/meta_boxes/search_form.php:672
313
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
314
+ #: app/features/search.php:67 app/libraries/main.php:5278
315
+ #: app/libraries/skins.php:858 app/skins/single.php:566
316
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
317
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
318
  #: app/skins/single/modern.php:113
321
 
322
  #: app/features/events.php:183 app/features/events.php:3275
323
  #: app/features/fes/form.php:757 app/features/mec.php:402
324
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
325
  msgid "Categories"
326
  msgstr "Categorie"
327
 
410
  msgstr "Ripetizione dell'evento"
411
 
412
  #: app/features/events.php:333 app/features/events.php:1286
413
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
414
  msgid "Hourly Schedule"
415
  msgstr "Schedula per Ore"
416
 
428
 
429
  #: app/features/events.php:336 app/features/events.php:3322
430
  #: app/features/events.php:3513 app/features/events.php:3555
431
+ #: app/features/ix.php:3510 app/features/ix.php:3551
432
  #: app/features/mec/meta_boxes/display_options.php:960
433
  #: app/features/mec/meta_boxes/search_form.php:45
434
  #: app/features/mec/meta_boxes/search_form.php:107
445
  #: app/features/organizers.php:58 app/features/organizers.php:204
446
  #: app/features/organizers.php:260 app/features/organizers.php:262
447
  #: app/features/organizers.php:271 app/features/search.php:75
448
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
449
+ #: app/skins/single.php:812 app/skins/single/default.php:217
450
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
451
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
452
  msgid "Organizer"
453
  msgstr "Organizzatore"
454
 
455
  #: app/features/events.php:337 app/features/events.php:1172
456
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
457
+ #: app/skins/single.php:589 app/skins/single/default.php:126
458
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
459
  #: app/skins/single/modern.php:208
460
  msgid "Cost"
472
  #: app/features/events.php:3802 app/features/fes.php:223
473
  #: app/features/fes/form.php:689 app/features/labels.php:178
474
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
475
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
476
  #: app/modules/booking/steps/form.php:37
477
  msgid "Name"
478
  msgstr "Nome"
482
  #: app/features/fes.php:223 app/features/fes/form.php:685
483
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
484
  #: app/features/organizers.php:111 app/features/organizers.php:152
485
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
486
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
487
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
488
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
489
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
490
+ #: app/skins/single.php:884 app/skins/single/default.php:234
491
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
492
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
493
  msgid "Email"
500
  #: app/features/events.php:491 app/features/events.php:497
501
  #: app/features/events.php:3323 app/features/events.php:3513
502
  #: app/features/events.php:3555 app/features/fes/form.php:247
503
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
504
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
505
  #: app/features/mec/dashboard.php:400
506
  #: app/features/mec/meta_boxes/display_options.php:48
507
  #: app/features/mec/meta_boxes/display_options.php:228
538
  #: app/features/events.php:583 app/features/events.php:588
539
  #: app/features/events.php:3324 app/features/events.php:3513
540
  #: app/features/events.php:3555 app/features/fes/form.php:287
541
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
542
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
543
  #: app/features/mec/dashboard.php:401
544
  msgid "End Date"
545
  msgstr "Data di fine"
623
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
624
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
625
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
626
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
627
+ #: app/features/mec/notifications.php:277
628
+ #: app/features/mec/notifications.php:380
629
+ #: app/features/mec/notifications.php:486
630
+ #: app/features/mec/notifications.php:587
631
+ #: app/features/mec/notifications.php:598
632
+ #: app/features/mec/notifications.php:704
633
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
634
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
635
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
636
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
646
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
647
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
648
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
649
+ #: app/skins/single.php:674 app/skins/single/default.php:141
650
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
651
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
652
  msgid "Read More"
829
 
830
  #: app/features/events.php:1168 app/features/events.php:3513
831
  #: app/features/events.php:3555 app/features/fes/form.php:727
832
+ #: app/features/ix.php:3510 app/features/ix.php:3551
833
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
834
  #: app/widgets/single.php:103
835
  msgid "Event Cost"
836
  msgstr "Costo Evento"
848
  #: app/features/events.php:1204 app/features/events.php:2541
849
  #: app/features/fes.php:223 app/features/mec/booking.php:491
850
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
851
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
852
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
853
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
854
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
855
  msgid "Date"
886
  #: app/features/events.php:1437 app/features/events.php:2322
887
  #: app/features/events.php:2369 app/features/events.php:3319
888
  #: app/features/events.php:3513 app/features/events.php:3555
889
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
890
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
891
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
892
  msgid "Title"
893
  msgstr "Titolo"
900
  #: app/features/events.php:2357 app/features/events.php:2399
901
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
902
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
903
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
904
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
905
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
906
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
907
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
908
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
909
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
910
  msgid "Remove"
911
  msgstr "Elimina"
912
 
934
  #: app/features/events.php:1445 app/features/fes/form.php:851
935
  #: app/features/mec.php:410 app/features/mec/modules.php:52
936
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
937
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
938
  #: app/modules/speakers/details.php:18
939
  msgid "Speakers"
940
  msgstr ""
951
  msgstr "Link dell'evento"
952
 
953
  #: app/features/events.php:1479 app/features/events.php:1485
954
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
955
  msgid "Event Link"
956
  msgstr "Link dell'evento"
957
 
978
  msgstr ""
979
 
980
  #: app/features/events.php:1495 app/features/events.php:1508
981
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
982
+ #: app/skins/single.php:673 app/skins/single/default.php:140
983
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
984
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
985
  #: app/widgets/single.php:107
1013
 
1014
  #: app/features/events.php:1596 app/features/events.php:1849
1015
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1016
+ #: app/modules/booking/steps/tickets.php:40
1017
  #: app/skins/available_spot/tpl.php:160
1018
  msgid "Unlimited"
1019
  msgstr "Illimitato"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Biglietto/ticket"
1056
 
1073
 
1074
  #: app/features/events.php:1680 app/features/events.php:1955
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1077
  msgid "Start Time"
1078
  msgstr "Ora di inizio"
1079
 
1080
  #: app/features/events.php:1739 app/features/events.php:1985
1081
  #: app/features/events.php:3513 app/features/events.php:3555
1082
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1083
  msgid "End Time"
1084
  msgstr "Ora di fine"
1085
 
1111
  msgid "Available Tickets"
1112
  msgstr "Biglietti/Ticket disponibili"
1113
 
1114
+ #: app/features/events.php:1853 app/features/events.php:2068
1115
  #, fuzzy
1116
  #| msgid "Maximum events"
1117
  msgid "Minimum Ticket e.g. 3"
1118
  msgstr "Massimo numero di eventi"
1119
 
1120
+ #: app/features/events.php:1856 app/features/events.php:2071
1121
  #, fuzzy
1122
  #| msgid "Maximum events"
1123
  msgid "MinimumTicket"
1124
  msgstr "Massimo numero di eventi"
1125
 
1126
+ #: app/features/events.php:1858 app/features/events.php:2073
1127
  msgid "Set a number for the minimum ticket reservation"
1128
  msgstr ""
1129
 
1130
+ #: app/features/events.php:1866 app/features/events.php:2081
1131
  msgid "e.g. 0"
1132
  msgstr ""
1133
 
1134
+ #: app/features/events.php:1868 app/features/events.php:2083
1135
  #, fuzzy
1136
  #| msgid "Daily"
1137
  msgid "Day"
1138
  msgstr "Giornaliero"
1139
 
1140
+ #: app/features/events.php:1869 app/features/events.php:2084
1141
  msgid "Hour"
1142
  msgstr ""
1143
 
1144
+ #: app/features/events.php:1871 app/features/events.php:2086
1145
  #, php-format
1146
  msgid "Stop selling ticket %s before event start."
1147
  msgstr ""
1167
  #: app/features/mec/meta_boxes/search_form.php:610
1168
  #: app/features/mec/meta_boxes/search_form.php:707
1169
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1170
+ #: app/libraries/skins.php:988
1171
  msgid "Label"
1172
  msgstr "Etichetta"
1173
 
1237
  msgstr ""
1238
 
1239
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1240
+ #: app/libraries/main.php:2767
1241
  #, fuzzy
1242
  #| msgid "Name"
1243
  msgid "MEC Name"
1244
  msgstr "Nome"
1245
 
1246
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1247
+ #: app/libraries/main.php:2796
1248
  #, fuzzy
1249
  #| msgid "Email"
1250
  msgid "MEC Email"
1251
  msgstr "Email"
1252
 
1253
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1254
+ #: app/libraries/main.php:2737
1255
  msgid "Text"
1256
  msgstr "Testo"
1257
 
1258
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1259
  #: app/features/organizers.php:103 app/features/organizers.php:148
1260
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1261
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1262
  msgid "Tel"
1263
  msgstr "Tel"
1264
 
1265
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1266
+ #: app/libraries/main.php:2855
1267
  msgid "File"
1268
  msgstr ""
1269
 
1270
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1271
+ #: app/libraries/main.php:2942
1272
  msgid "Textarea"
1273
  msgstr "Area di testo"
1274
 
1275
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1276
+ #: app/libraries/main.php:2995
1277
  msgid "Checkboxes"
1278
  msgstr "Caselle di selezione"
1279
 
1280
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1281
+ #: app/libraries/main.php:3039
1282
  msgid "Radio Buttons"
1283
  msgstr "Opzioni di selezione"
1284
 
1358
  #: app/features/mec/meta_boxes/search_form.php:696
1359
  #: app/features/mec/meta_boxes/search_form.php:703
1360
  #: app/features/mec/meta_boxes/search_form.php:710
1361
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1362
  msgid "Dropdown"
1363
  msgstr "Casella di selezione"
1364
 
1365
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1366
+ #: app/libraries/main.php:3130
1367
  msgid "Agreement"
1368
  msgstr ""
1369
 
1370
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1371
+ #: app/libraries/main.php:2971
1372
  msgid "Paragraph"
1373
  msgstr "Paragrafo"
1374
 
1397
  msgstr "Limite partecipanti"
1398
 
1399
  #: app/features/events.php:3321 app/features/events.php:3513
1400
+ #: app/features/events.php:3555 app/features/ix.php:3510
1401
+ #: app/features/ix.php:3551 app/features/locations.php:58
1402
  #: app/features/locations.php:230 app/features/locations.php:287
1403
  #: app/features/locations.php:289 app/features/locations.php:298
1404
  #: app/features/mec/meta_boxes/display_options.php:959
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1419
+ #: app/skins/single.php:493 app/skins/single.php:924
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1422
  #: app/skins/single/modern.php:97
1457
  msgstr "Duplica"
1458
 
1459
  #: app/features/events.php:3513 app/features/events.php:3555
1460
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1461
  #: app/features/labels.php:177 app/features/locations.php:229
1462
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1463
  msgid "ID"
1464
  msgstr "ID"
1465
 
1466
  #: app/features/events.php:3513 app/features/events.php:3555
1467
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1468
  msgid "Link"
1469
  msgstr "Link"
1470
 
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
+ #: app/libraries/main.php:5312
1484
  msgid "Ticket"
1485
  msgstr "Ticket"
1486
 
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1662
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
1665
  msgid "Labels"
1738
  msgid "The events are imported successfully!"
1739
  msgstr ""
1740
 
1741
+ #: app/features/ix.php:943
1742
  msgid "Third Party plugin is not installed and activated!"
1743
  msgstr ""
1744
 
1745
+ #: app/features/ix.php:966
1746
  msgid "Third Party plugin is invalid!"
1747
  msgstr ""
1748
 
1749
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1750
  msgid "Both of API key and Calendar ID are required!"
1751
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
1752
 
1753
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1754
  msgid "Please select some events to import!"
1755
  msgstr "Si prega di selezionare degli eventi da importare!"
1756
 
1757
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1758
  #, fuzzy
1759
  #| msgid "Both of API key and Calendar ID are required!"
1760
  msgid "Both of API key and Group URL are required!"
1761
  msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
1762
 
1763
+ #: app/features/ix.php:3433
1764
  msgid "Check at Meetup"
1765
  msgstr ""
1766
 
1767
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1768
  msgid "Organizer Tel"
1769
  msgstr "Telefono organizzatore"
1770
 
1771
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1772
  msgid "Organizer Email"
1773
  msgstr "Email organizzatore"
1774
 
1775
+ #: app/features/ix.php:3632
1776
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1777
  msgstr "Tutti gli ID Clienti, Client Secret e ID Calendario sono obbligatori!"
1778
 
1779
+ #: app/features/ix.php:3655
1780
  #, php-format
1781
  msgid "All seems good! Please click %s for authenticating your app."
1782
  msgstr "Sembra tutto ok! Fai clic su% s per autenticare l'applicazione."
1783
 
1784
+ #: app/features/ix.php:3709
1785
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1786
  msgstr ""
1787
  "Tutte le applicazioni Client, Client Secret e ID Calendario sono obbligatori!"
1788
 
1789
+ #: app/features/ix.php:3825
1790
  #, php-format
1791
  msgid "%s events added to Google Calendar successfully."
1792
  msgstr "%s eventi aggiunti con successo dal calendario di Google."
1793
 
1794
+ #: app/features/ix.php:3826
1795
  #, php-format
1796
  msgid "%s previously added events get updated."
1797
  msgstr "%s eventi precedentemente aggiunti vengono aggiornati."
1798
 
1799
+ #: app/features/ix.php:3827
1800
  #, php-format
1801
  msgid "%s events failed to add for following reasons: %s"
1802
  msgstr ""
1803
  "%s eventi non sono stati aggiornati, è fallita l'importazione per diverse "
1804
  "ragioni: %s"
1805
 
1806
+ #: app/features/ix.php:3859
1807
  #, fuzzy
1808
  #| msgid "Please insert your facebook page's link."
1809
  msgid "Please insert your Facebook page's link."
1810
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
1811
 
1812
+ #: app/features/ix.php:3868
1813
  #, fuzzy
1814
  #| msgid ""
1815
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
1821
  "Non riusciamo ad accedere alla vostra pagina Facebook. Si prega di "
1822
  "verificare e inserire una pagina valida."
1823
 
1824
+ #: app/features/ix.php:3900
1825
  msgid "Please insert your facebook page's link."
1826
  msgstr "Si prega di inserire il link della vostra pagina Facebook."
1827
 
1828
+ #: app/features/ix.php:3905
1829
  msgid ""
1830
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1831
  "valid facebook page link."
1999
  #: app/features/ix/export_g_calendar.php:72
2000
  #: app/features/ix/export_g_calendar.php:147
2001
  #: app/features/ix/export_g_calendar.php:164
2002
+ #: app/features/mec/notifications.php:131
2003
+ #: app/features/mec/notifications.php:223
2004
+ #: app/features/mec/notifications.php:320
2005
+ #: app/features/mec/notifications.php:635
2006
  msgid "Add to Google Calendar"
2007
  msgstr "Aggiungi al calendario Google"
2008
 
2009
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2010
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2011
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2012
  msgid "Checking ..."
2013
  msgstr "Sto controllando..."
2276
 
2277
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2278
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2279
+ #: app/features/mec/notifications.php:540
2280
  msgid "Important Note"
2281
  msgstr "Nota importante"
2282
 
2466
  msgstr "Immagine in evidenza"
2467
 
2468
  #: app/features/labels.php:118 app/features/labels.php:143
2469
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2470
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2471
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2472
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2485
  msgstr ""
2486
 
2487
  #: app/features/labels.php:180 app/features/locations.php:232
2488
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2489
  #: app/modules/booking/steps/tickets.php:38
2490
  msgid "Count"
2491
  msgstr "Numero"
2502
 
2503
  #: app/features/locations.php:59 app/features/mec.php:404
2504
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2505
+ #: app/libraries/main.php:5281
2506
  msgid "Locations"
2507
  msgstr "Luoghi"
2508
 
2535
 
2536
  #: app/features/locations.php:138 app/features/locations.php:180
2537
  #: app/features/organizers.php:127 app/features/organizers.php:160
2538
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2539
  msgid "Thumbnail"
2540
  msgstr "Anteprima"
2541
 
2542
  #: app/features/locations.php:143 app/features/locations.php:183
2543
  #: app/features/organizers.php:132 app/features/organizers.php:163
2544
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2545
  msgid "Upload/Add image"
2546
  msgstr "Carica/Aggiungi immagine"
2547
 
2549
  #: app/features/locations.php:340 app/features/locations.php:347
2550
  #: app/features/organizers.php:133 app/features/organizers.php:164
2551
  #: app/features/organizers.php:299 app/features/organizers.php:306
2552
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2553
  msgid "Remove image"
2554
  msgstr "Rimuovi immagine"
2555
 
2609
  msgid "Don't show map in single event page"
2610
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
2611
 
2612
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2613
  #, fuzzy
2614
  #| msgid "Search Locations"
2615
  msgid "Other Locations"
2634
  msgid "Troubleshooting"
2635
  msgstr ""
2636
 
2637
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2638
  #, php-format
2639
  msgid "%s to %s"
2640
  msgstr "%s al %s"
2670
 
2671
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2672
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2673
+ #: app/libraries/main.php:5283
2674
  msgid "Organizers"
2675
  msgstr "Organizzatori"
2676
 
2792
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2793
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2794
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2795
+ #: app/features/mec/notifications.php:816
2796
+ #: app/features/mec/notifications.php:828
2797
+ #: app/features/mec/notifications.php:924
2798
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2799
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2800
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2801
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2916
  msgid "Enable Express Attendees Form"
2917
  msgstr ""
2918
 
2919
+ #: app/features/mec/booking.php:186
2920
  msgid "Attendees Form"
2921
  msgstr "Form partecipanti"
2922
 
2950
  msgid "Auto verification for paid bookings"
2951
  msgstr "Verifica automatica per prenotazioni a pagamento"
2952
 
2953
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2954
  #: app/libraries/main.php:579
2955
  msgid "Booking Confirmation"
2956
  msgstr "Conferma Prenotazione"
3018
  msgstr ""
3019
 
3020
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3021
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3022
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3023
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3024
  msgid "Saved"
3025
  msgstr "Salvato"
3026
 
3027
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3028
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3029
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3030
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3031
  msgid "Settings Saved!"
3033
 
3034
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3035
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3036
+ #: app/features/mec/notifications.php:905
3037
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3038
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3039
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
3040
  msgid "Verified"
3041
  msgstr "Verificato"
3042
 
3043
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3044
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3045
  #: app/features/mec/single.php:291
3046
  msgid "Please Refresh Page"
3047
  msgstr "Si prega di ricaricare la pagina"
4175
  #: app/features/mec/meta_boxes/search_form.php:693
4176
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4177
  #: app/features/search.php:79 app/features/speakers.php:61
4178
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4179
+ #: app/libraries/skins.php:936
4180
  msgid "Speaker"
4181
  msgstr ""
4182
 
4192
  #: app/features/mec/meta_boxes/search_form.php:603
4193
  #: app/features/mec/meta_boxes/search_form.php:700
4194
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4195
+ #: app/features/search.php:83 app/libraries/skins.php:962
4196
  #, fuzzy
4197
  #| msgid "Tags"
4198
  msgid "Tag"
4449
  msgid "It sends to attendee after booking for notifying him/her."
4450
  msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
4451
 
4452
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4453
+ #: app/features/mec/notifications.php:233
4454
+ #: app/features/mec/notifications.php:336
4455
+ #: app/features/mec/notifications.php:442
4456
+ #: app/features/mec/notifications.php:543
4457
+ #: app/features/mec/notifications.php:660
4458
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4459
  msgid "Email Subject"
4460
  msgstr "Oggetto Email"
4461
 
4462
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4463
+ #: app/features/mec/notifications.php:147
4464
+ #: app/features/mec/notifications.php:154
4465
+ #: app/features/mec/notifications.php:239
4466
+ #: app/features/mec/notifications.php:246
4467
+ #: app/features/mec/notifications.php:342
4468
+ #: app/features/mec/notifications.php:349
4469
+ #: app/features/mec/notifications.php:448
4470
+ #: app/features/mec/notifications.php:455
4471
+ #: app/features/mec/notifications.php:549
4472
+ #: app/features/mec/notifications.php:556
4473
+ #: app/features/mec/notifications.php:666
4474
+ #: app/features/mec/notifications.php:673
4475
+ #: app/features/mec/notifications.php:749
4476
+ #: app/features/mec/notifications.php:756
4477
+ msgid "Receiver Users"
4478
+ msgstr ""
4479
+
4480
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4481
+ #: app/features/mec/notifications.php:247
4482
+ #: app/features/mec/notifications.php:350
4483
+ #: app/features/mec/notifications.php:456
4484
+ #: app/features/mec/notifications.php:557
4485
+ #: app/features/mec/notifications.php:674
4486
+ #: app/features/mec/notifications.php:757
4487
+ msgid "Select your desired users to send a copy of email to them!"
4488
+ msgstr ""
4489
+
4490
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4491
+ #: app/features/mec/notifications.php:164
4492
+ #: app/features/mec/notifications.php:171
4493
+ #: app/features/mec/notifications.php:256
4494
+ #: app/features/mec/notifications.php:263
4495
+ #: app/features/mec/notifications.php:359
4496
+ #: app/features/mec/notifications.php:366
4497
+ #: app/features/mec/notifications.php:465
4498
+ #: app/features/mec/notifications.php:472
4499
+ #: app/features/mec/notifications.php:566
4500
+ #: app/features/mec/notifications.php:573
4501
+ #: app/features/mec/notifications.php:683
4502
+ #: app/features/mec/notifications.php:690
4503
+ #: app/features/mec/notifications.php:766
4504
+ #: app/features/mec/notifications.php:773
4505
+ msgid "Receiver Roles"
4506
+ msgstr ""
4507
+
4508
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4509
+ #: app/features/mec/notifications.php:264
4510
+ #: app/features/mec/notifications.php:367
4511
+ #: app/features/mec/notifications.php:473
4512
+ #: app/features/mec/notifications.php:574
4513
+ #: app/features/mec/notifications.php:691
4514
+ #: app/features/mec/notifications.php:774
4515
+ msgid "Select users a specific role."
4516
+ msgstr ""
4517
+
4518
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4519
+ #: app/features/mec/notifications.php:180
4520
+ #: app/features/mec/notifications.php:184
4521
+ #: app/features/mec/notifications.php:272
4522
+ #: app/features/mec/notifications.php:276
4523
+ #: app/features/mec/notifications.php:375
4524
+ #: app/features/mec/notifications.php:379
4525
+ #: app/features/mec/notifications.php:481
4526
+ #: app/features/mec/notifications.php:485
4527
+ #: app/features/mec/notifications.php:582
4528
+ #: app/features/mec/notifications.php:586
4529
+ #: app/features/mec/notifications.php:597
4530
+ #: app/features/mec/notifications.php:699
4531
+ #: app/features/mec/notifications.php:703
4532
+ #: app/features/mec/notifications.php:782
4533
+ #: app/features/mec/notifications.php:786
4534
  msgid "Custom Recipients"
4535
  msgstr "Altri destinatari"
4536
 
4537
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4538
+ #: app/features/mec/notifications.php:277
4539
+ #: app/features/mec/notifications.php:380
4540
+ #: app/features/mec/notifications.php:486
4541
+ #: app/features/mec/notifications.php:587
4542
+ #: app/features/mec/notifications.php:598
4543
+ #: app/features/mec/notifications.php:704
4544
+ #: app/features/mec/notifications.php:787
4545
  msgid "Insert comma separated emails for multiple recipients."
4546
  msgstr "Puoi inserire più destinatari email separati da virgola."
4547
 
4548
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4549
+ #: app/features/mec/notifications.php:493
4550
  msgid "Send the email to event organizer"
4551
  msgstr "Invia l'email all'organizzatore dell'evento"
4552
 
4553
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4554
+ #: app/features/mec/notifications.php:287
4555
+ #: app/features/mec/notifications.php:398
4556
+ #: app/features/mec/notifications.php:496
4557
+ #: app/features/mec/notifications.php:604
4558
+ #: app/features/mec/notifications.php:710
4559
+ #: app/features/mec/notifications.php:793
4560
  msgid "Email Content"
4561
  msgstr "Contenuto Email"
4562
 
4563
+ #: app/features/mec/notifications.php:101
4564
+ #: app/features/mec/notifications.php:194
4565
+ #: app/features/mec/notifications.php:290
4566
+ #: app/features/mec/notifications.php:401
4567
+ #: app/features/mec/notifications.php:499
4568
+ #: app/features/mec/notifications.php:607
4569
+ #: app/features/mec/notifications.php:713
4570
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4571
  msgid "You can use following placeholders"
4572
  msgstr "Puoi usare i seguenti placeholder"
4573
 
4574
+ #: app/features/mec/notifications.php:103
4575
+ #: app/features/mec/notifications.php:196
4576
+ #: app/features/mec/notifications.php:292
4577
+ #: app/features/mec/notifications.php:403
4578
+ #: app/features/mec/notifications.php:501
4579
+ #: app/features/mec/notifications.php:609
4580
  msgid "First name of attendee"
4581
  msgstr "Nome partecipante"
4582
 
4583
+ #: app/features/mec/notifications.php:104
4584
+ #: app/features/mec/notifications.php:197
4585
+ #: app/features/mec/notifications.php:293
4586
+ #: app/features/mec/notifications.php:404
4587
+ #: app/features/mec/notifications.php:502
4588
+ #: app/features/mec/notifications.php:610
4589
  msgid "Last name of attendee"
4590
  msgstr "Cognome partecipante"
4591
 
4592
+ #: app/features/mec/notifications.php:105
4593
+ #: app/features/mec/notifications.php:198
4594
+ #: app/features/mec/notifications.php:294
4595
+ #: app/features/mec/notifications.php:405
4596
+ #: app/features/mec/notifications.php:503
4597
+ #: app/features/mec/notifications.php:611
4598
  msgid "Email of attendee"
4599
  msgstr "Email partecipante"
4600
 
4601
+ #: app/features/mec/notifications.php:106
4602
+ #: app/features/mec/notifications.php:199
4603
+ #: app/features/mec/notifications.php:295
4604
+ #: app/features/mec/notifications.php:406
4605
+ #: app/features/mec/notifications.php:504
4606
+ #: app/features/mec/notifications.php:612
4607
  msgid "Booked date of event"
4608
  msgstr "Data prenotata per l'evento"
4609
 
4610
+ #: app/features/mec/notifications.php:107
4611
+ #: app/features/mec/notifications.php:200
4612
+ #: app/features/mec/notifications.php:296
4613
+ #: app/features/mec/notifications.php:407
4614
+ #: app/features/mec/notifications.php:505
4615
+ #: app/features/mec/notifications.php:613
4616
  #, fuzzy
4617
  #| msgid "Booked date of event"
4618
  msgid "Booked time of event"
4619
  msgstr "Data prenotata per l'evento"
4620
 
4621
+ #: app/features/mec/notifications.php:108
4622
+ #: app/features/mec/notifications.php:201
4623
+ #: app/features/mec/notifications.php:297
4624
+ #: app/features/mec/notifications.php:408
4625
+ #: app/features/mec/notifications.php:506
4626
+ #: app/features/mec/notifications.php:614
4627
  msgid "Booking Price"
4628
  msgstr ""
4629
 
4630
+ #: app/features/mec/notifications.php:109
4631
+ #: app/features/mec/notifications.php:202
4632
+ #: app/features/mec/notifications.php:298
4633
+ #: app/features/mec/notifications.php:409
4634
+ #: app/features/mec/notifications.php:507
4635
+ #: app/features/mec/notifications.php:615
4636
  msgid "Date and time of placing booking"
4637
  msgstr ""
4638
 
4639
+ #: app/features/mec/notifications.php:110
4640
+ #: app/features/mec/notifications.php:203
4641
+ #: app/features/mec/notifications.php:299
4642
+ #: app/features/mec/notifications.php:410
4643
+ #: app/features/mec/notifications.php:508
4644
+ #: app/features/mec/notifications.php:616
4645
+ #: app/features/mec/notifications.php:721
4646
+ #: app/features/mec/notifications.php:804
4647
  msgid "Your website title"
4648
  msgstr "Titolo del tuo sito web"
4649
 
4650
+ #: app/features/mec/notifications.php:111
4651
+ #: app/features/mec/notifications.php:204
4652
+ #: app/features/mec/notifications.php:300
4653
+ #: app/features/mec/notifications.php:411
4654
+ #: app/features/mec/notifications.php:509
4655
+ #: app/features/mec/notifications.php:617
4656
+ #: app/features/mec/notifications.php:722
4657
+ #: app/features/mec/notifications.php:805
4658
  msgid "Your website URL"
4659
  msgstr "URL del tuo sito web"
4660
 
4661
+ #: app/features/mec/notifications.php:112
4662
+ #: app/features/mec/notifications.php:205
4663
+ #: app/features/mec/notifications.php:301
4664
+ #: app/features/mec/notifications.php:412
4665
+ #: app/features/mec/notifications.php:510
4666
+ #: app/features/mec/notifications.php:618
4667
+ #: app/features/mec/notifications.php:723
4668
+ #: app/features/mec/notifications.php:806
4669
  msgid "Your website description"
4670
  msgstr "Descrizione del tuo sito web"
4671
 
4672
+ #: app/features/mec/notifications.php:113
4673
+ #: app/features/mec/notifications.php:206
4674
+ #: app/features/mec/notifications.php:302
4675
+ #: app/features/mec/notifications.php:413
4676
+ #: app/features/mec/notifications.php:511
4677
+ #: app/features/mec/notifications.php:619
4678
  msgid "Event title"
4679
  msgstr "Titolo evento"
4680
 
4681
+ #: app/features/mec/notifications.php:114
4682
+ #: app/features/mec/notifications.php:207
4683
+ #: app/features/mec/notifications.php:303
4684
+ #: app/features/mec/notifications.php:414
4685
+ #: app/features/mec/notifications.php:512
4686
+ #: app/features/mec/notifications.php:620
4687
  #, fuzzy
4688
  #| msgid "Event Link"
4689
  msgid "Event link"
4690
  msgstr "Link dell'evento"
4691
 
4692
+ #: app/features/mec/notifications.php:115
4693
+ #: app/features/mec/notifications.php:208
4694
+ #: app/features/mec/notifications.php:304
4695
+ #: app/features/mec/notifications.php:717
4696
+ #: app/features/mec/notifications.php:800
4697
  #, fuzzy
4698
  #| msgid "Start Date"
4699
  msgid "Event Start Date"
4700
  msgstr "Data di inizio"
4701
 
4702
+ #: app/features/mec/notifications.php:116
4703
+ #: app/features/mec/notifications.php:209
4704
+ #: app/features/mec/notifications.php:305
4705
+ #: app/features/mec/notifications.php:718
4706
+ #: app/features/mec/notifications.php:801
4707
  #, fuzzy
4708
  #| msgid "End Date"
4709
  msgid "Event End Date"
4710
  msgstr "Data di fine"
4711
 
4712
+ #: app/features/mec/notifications.php:117
4713
+ #: app/features/mec/notifications.php:210
4714
+ #: app/features/mec/notifications.php:306
4715
+ #: app/features/mec/notifications.php:415
4716
+ #: app/features/mec/notifications.php:513
4717
+ #: app/features/mec/notifications.php:621
4718
  #, fuzzy
4719
  #| msgid "Organizer name of booked event"
4720
  msgid "Speaker name of booked event"
4721
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4722
 
4723
+ #: app/features/mec/notifications.php:118
4724
+ #: app/features/mec/notifications.php:211
4725
+ #: app/features/mec/notifications.php:307
4726
+ #: app/features/mec/notifications.php:416
4727
+ #: app/features/mec/notifications.php:514
4728
+ #: app/features/mec/notifications.php:622
4729
  msgid "Organizer name of booked event"
4730
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4731
 
4732
+ #: app/features/mec/notifications.php:119
4733
+ #: app/features/mec/notifications.php:212
4734
+ #: app/features/mec/notifications.php:308
4735
+ #: app/features/mec/notifications.php:417
4736
+ #: app/features/mec/notifications.php:515
4737
+ #: app/features/mec/notifications.php:623
4738
  msgid "Organizer tel of booked event"
4739
  msgstr "Telefono dell'organizzatore che ha prenotato l'evento"
4740
 
4741
+ #: app/features/mec/notifications.php:120
4742
+ #: app/features/mec/notifications.php:213
4743
+ #: app/features/mec/notifications.php:309
4744
+ #: app/features/mec/notifications.php:418
4745
+ #: app/features/mec/notifications.php:516
4746
+ #: app/features/mec/notifications.php:624
4747
  msgid "Organizer email of booked event"
4748
  msgstr "Email dell'organizzatore che ha prenotato l'evento"
4749
 
4750
+ #: app/features/mec/notifications.php:121
4751
+ #: app/features/mec/notifications.php:214
4752
+ #: app/features/mec/notifications.php:310
4753
+ #: app/features/mec/notifications.php:419
4754
+ #: app/features/mec/notifications.php:517
4755
+ #: app/features/mec/notifications.php:625
4756
  msgid "Location name of booked event"
4757
  msgstr "Nome del luogo dell'evento prenotato"
4758
 
4759
+ #: app/features/mec/notifications.php:122
4760
+ #: app/features/mec/notifications.php:215
4761
+ #: app/features/mec/notifications.php:311
4762
+ #: app/features/mec/notifications.php:420
4763
+ #: app/features/mec/notifications.php:518
4764
+ #: app/features/mec/notifications.php:626
4765
  msgid "Location address of booked event"
4766
  msgstr "Indirizzo del luogo dell'evento prenotato"
4767
 
4768
+ #: app/features/mec/notifications.php:123
4769
+ #: app/features/mec/notifications.php:216
4770
+ #: app/features/mec/notifications.php:312
4771
+ #: app/features/mec/notifications.php:421
4772
+ #: app/features/mec/notifications.php:519
4773
+ #: app/features/mec/notifications.php:627
4774
  #, fuzzy
4775
  #| msgid "Organizer name of booked event"
4776
  msgid "Featured image of booked event"
4777
  msgstr "Nome dell'organizzatore che ha prenotato l'evento"
4778
 
4779
+ #: app/features/mec/notifications.php:124
4780
+ #: app/features/mec/notifications.php:423
4781
+ #: app/features/mec/notifications.php:521
4782
  msgid "Full Attendee info such as booking form data, name, email etc."
4783
  msgstr ""
4784
  "Informazioni complete partecipanti (dati di prenotazione, nome, email, etc.)."
4785
 
4786
+ #: app/features/mec/notifications.php:125
4787
+ #: app/features/mec/notifications.php:314
4788
+ #: app/features/mec/notifications.php:629
4789
  msgid "Invoice Link"
4790
  msgstr ""
4791
 
4792
+ #: app/features/mec/notifications.php:126
4793
+ #: app/features/mec/notifications.php:218
4794
+ #: app/features/mec/notifications.php:315
4795
+ #: app/features/mec/notifications.php:424
4796
+ #: app/features/mec/notifications.php:522
4797
+ #: app/features/mec/notifications.php:630
4798
  msgid "Total Attendees"
4799
  msgstr ""
4800
 
4801
+ #: app/features/mec/notifications.php:127
4802
+ #: app/features/mec/notifications.php:219
4803
+ #: app/features/mec/notifications.php:316
4804
+ #: app/features/mec/notifications.php:425
4805
+ #: app/features/mec/notifications.php:523
4806
+ #: app/features/mec/notifications.php:631
4807
+ #, fuzzy
4808
+ #| msgid "Tickets"
4809
+ msgid "Amount of Booked Tickets"
4810
+ msgstr "Biglietto/ticket"
4811
+
4812
+ #: app/features/mec/notifications.php:128
4813
+ #: app/features/mec/notifications.php:220
4814
+ #: app/features/mec/notifications.php:317
4815
+ #: app/features/mec/notifications.php:632
4816
  #, fuzzy
4817
  #| msgid "Ticket Name"
4818
  msgid "Ticket name"
4819
  msgstr "Nome biglietto/ticket"
4820
 
4821
+ #: app/features/mec/notifications.php:129
4822
+ #: app/features/mec/notifications.php:221
4823
+ #: app/features/mec/notifications.php:318
4824
+ #: app/features/mec/notifications.php:633
4825
  #, fuzzy
4826
  #| msgid "Ticket Name"
4827
  msgid "Ticket time"
4828
  msgstr "Nome biglietto/ticket"
4829
 
4830
+ #: app/features/mec/notifications.php:130
4831
+ #: app/features/mec/notifications.php:222
4832
+ #: app/features/mec/notifications.php:319
4833
+ #: app/features/mec/notifications.php:634
4834
  msgid "Download ICS file"
4835
  msgstr ""
4836
 
4837
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4838
  msgid "Booking Verification"
4839
  msgstr "Verifica prenotazione"
4840
 
4841
+ #: app/features/mec/notifications.php:139
4842
  msgid "It sends to attendee email for verifying their booking/email."
4843
  msgstr "Invia email ai partecipanti per verificare le loro prenotazioni/email."
4844
 
4845
+ #: app/features/mec/notifications.php:217
4846
  msgid "Email/Booking verification link."
4847
  msgstr "Link di verifica Email/Prenotazione."
4848
 
4849
+ #: app/features/mec/notifications.php:231
4850
  msgid "It sends to attendee after confirming the booking by admin."
4851
  msgstr ""
4852
  "Invia ai partecipanti dopo conferma della prenotazione da parte "
4853
  "dell'amministratore."
4854
 
4855
+ #: app/features/mec/notifications.php:284
4856
  msgid "Send One Single Email Only To First Attendee"
4857
  msgstr ""
4858
 
4859
+ #: app/features/mec/notifications.php:313
4860
+ #: app/features/mec/notifications.php:628
4861
  msgid "Booking cancellation link."
4862
  msgstr "Link per la cancellazione della prenotazione."
4863
 
4864
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4865
  #, fuzzy
4866
  #| msgid "Booking cancellation link."
4867
  msgid "Booking Cancellation"
4868
  msgstr "Link per la cancellazione della prenotazione."
4869
 
4870
+ #: app/features/mec/notifications.php:330
4871
  #, fuzzy
4872
  #| msgid "Enable new event notification"
4873
  msgid "Enable cancellation notification"
4874
  msgstr "Attiva notifica nuovo evento"
4875
 
4876
+ #: app/features/mec/notifications.php:334
4877
  #, fuzzy
4878
  #| msgid "It sends to attendee after booking for notifying him/her."
4879
  msgid ""
4881
  "them."
4882
  msgstr "Invia una notifica ai partecipanti dell'avvenuta prenotazione."
4883
 
4884
+ #: app/features/mec/notifications.php:387
4885
+ #: app/features/mec/notifications.php:654
4886
  #, fuzzy
4887
  #| msgid "Send the email to event organizer"
4888
  msgid "Send the email to admin"
4889
  msgstr "Invia l'email all'organizzatore dell'evento"
4890
 
4891
+ #: app/features/mec/notifications.php:395
4892
  #, fuzzy
4893
  #| msgid "Send the email to event organizer"
4894
  msgid "Send the email to booking user"
4895
  msgstr "Invia l'email all'organizzatore dell'evento"
4896
 
4897
+ #: app/features/mec/notifications.php:422
4898
+ #: app/features/mec/notifications.php:520
4899
  msgid "Admin booking management link."
4900
  msgstr "Link amministratore gestione prenotazioni."
4901
 
4902
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4903
  msgid "Admin"
4904
  msgstr ""
4905
 
4906
+ #: app/features/mec/notifications.php:436
4907
  #, fuzzy
4908
  #| msgid "Enable new event notification"
4909
  msgid "Enable admin notification"
4910
  msgstr "Attiva notifica nuovo evento"
4911
 
4912
+ #: app/features/mec/notifications.php:440
4913
  msgid "It sends to admin to notify him/her that a new booking received."
4914
  msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
4915
 
4916
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4917
+ #: app/libraries/notifications.php:603
4918
  msgid "Booking Reminder"
4919
  msgstr ""
4920
 
4921
+ #: app/features/mec/notifications.php:534
4922
  msgid "Enable booking reminder notification"
4923
  msgstr ""
4924
 
4925
+ #: app/features/mec/notifications.php:540
4926
  #, php-format
4927
  msgid ""
4928
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4930
  "send the reminders multiple times."
4931
  msgstr ""
4932
 
4933
+ #: app/features/mec/notifications.php:540
4934
  msgid "only once per day"
4935
  msgstr ""
4936
 
4937
+ #: app/features/mec/notifications.php:593
4938
  msgid "Days"
4939
  msgstr ""
4940
 
4941
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4942
  #: app/libraries/main.php:583
4943
  msgid "New Event"
4944
  msgstr "Nuovo Evento"
4945
 
4946
+ #: app/features/mec/notifications.php:648
4947
  msgid "Enable new event notification"
4948
  msgstr "Attiva notifica nuovo evento"
4949
 
4950
+ #: app/features/mec/notifications.php:658
4951
  msgid ""
4952
  "It sends after adding a new event from frontend event submission or from "
4953
  "website backend."
4954
  msgstr "Invia dopo l'inserimento di un nuovo evento da frontend o da backend."
4955
 
4956
+ #: app/features/mec/notifications.php:715
4957
+ #: app/features/mec/notifications.php:798
4958
  msgid "Title of event"
4959
  msgstr "Titolo dell'evento"
4960
 
4961
+ #: app/features/mec/notifications.php:716
4962
+ #: app/features/mec/notifications.php:799
4963
  #, fuzzy
4964
  #| msgid "Title of event"
4965
  msgid "Link of event"
4966
  msgstr "Titolo dell'evento"
4967
 
4968
+ #: app/features/mec/notifications.php:719
4969
+ #: app/features/mec/notifications.php:802
4970
  msgid "Status of event"
4971
  msgstr "Stato dell'evento"
4972
 
4973
+ #: app/features/mec/notifications.php:720
4974
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4975
  #: app/features/mec/settings.php:738
4976
  msgid "Event Note"
4977
  msgstr "Note dell'evento"
4978
 
4979
+ #: app/features/mec/notifications.php:724
4980
+ #: app/features/mec/notifications.php:807
4981
  msgid "Admin events management link."
4982
  msgstr "Link amministratore gestione eventi."
4983
 
4984
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4985
  #, fuzzy
4986
  #| msgid "The event published."
4987
  msgid "User Event Publishing"
4988
  msgstr "L'evento è stato pubblicato."
4989
 
4990
+ #: app/features/mec/notifications.php:737
4991
  #, fuzzy
4992
  #| msgid "Enable new event notification"
4993
  msgid "Enable user event publishing notification"
4994
  msgstr "Attiva notifica nuovo evento"
4995
 
4996
+ #: app/features/mec/notifications.php:741
4997
  #, fuzzy
4998
  #| msgid ""
4999
  #| "It sends after adding a new event from frontend event submission or from "
5173
  msgstr ""
5174
 
5175
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5176
+ #: app/libraries/main.php:5290
5177
  msgid "Weekdays"
5178
  msgstr "Settimanali"
5179
 
6444
  msgid "eg. https://webnus.net"
6445
  msgstr "http://webnus.biz"
6446
 
6447
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6448
+ #: app/skins/single.php:862
6449
  msgid "Other Organizers"
6450
  msgstr ""
6451
 
6452
+ #: app/features/organizers.php:314
6453
  msgid ""
6454
  "You can select extra organizers in addition to main organizer if you like."
6455
  msgstr ""
6470
  msgid "#"
6471
  msgstr ""
6472
 
6473
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6474
  msgid "Status"
6475
  msgstr ""
6476
 
6505
  msgid "No bookings found!"
6506
  msgstr "Nessuna prenotazione trovata!"
6507
 
6508
+ #: app/features/search.php:87 app/libraries/main.php:5280
6509
  msgid "label"
6510
  msgstr ""
6511
 
6532
  msgstr ""
6533
 
6534
  #: app/features/search_bar/search_result.php:11
6535
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6536
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6537
+ #: app/skins/single.php:160 app/skins/single.php:753
6538
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6539
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6540
  msgid "All of the day"
6541
  msgstr "Tutti del giorno"
6542
 
6543
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6544
+ #: app/features/speakers.php:270
6545
  #, fuzzy
6546
  #| msgid "Title"
6547
  msgid "Job Title"
6548
  msgstr "Titolo"
6549
 
6550
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6551
  msgid "Insert speaker job title."
6552
  msgstr ""
6553
 
6554
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6555
  #, fuzzy
6556
  #| msgid "Insert organizer phone number."
6557
  msgid "Insert speaker phone number."
6558
  msgstr "Inserisci il numero di telefono dell'organizzatore."
6559
 
6560
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6561
  #, fuzzy
6562
  #| msgid "Insert organizer email address."
6563
  msgid "Insert speaker email address."
6564
  msgstr "Inserisci l'indirizzo email dell'organizzatore."
6565
 
6566
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6567
  #, fuzzy
6568
  #| msgid "Facebook Page Link"
6569
  msgid "Facebook Page"
6570
  msgstr "Link della pagina Facebook"
6571
 
6572
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6573
  #, fuzzy
6574
  #| msgid "Import from Facebook Calendar"
6575
  msgid "Insert URL of Facebook Page"
6576
  msgstr "Importa dal calendario Facebook"
6577
 
6578
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6579
  msgid "Instagram"
6580
  msgstr ""
6581
 
6582
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6583
  #, fuzzy
6584
  #| msgid "Insert -1 for unlimited usage"
6585
  msgid "Insert URL of Instagram"
6586
  msgstr "Inserire -1 per utilizzo illimitato"
6587
 
6588
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6589
+ #, fuzzy
6590
+ #| msgid "Linkedin"
6591
+ msgid "LinkedIn"
6592
+ msgstr "Linkedin"
6593
+
6594
+ #: app/features/speakers.php:154
6595
+ #, fuzzy
6596
+ #| msgid "Insert -1 for unlimited usage"
6597
+ msgid "Insert URL of LinkedIn"
6598
+ msgstr "Inserire -1 per utilizzo illimitato"
6599
+
6600
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6601
  #, fuzzy
6602
  #| msgid "Twitter"
6603
  msgid "Twitter Page"
6604
  msgstr "Twitter"
6605
 
6606
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6607
  #, fuzzy
6608
  #| msgid "Insert -1 for unlimited usage"
6609
  msgid "Insert URL of Twitter Page"
6610
  msgstr "Inserire -1 per utilizzo illimitato"
6611
 
6612
+ #: app/features/speakers.php:209
6613
+ #, fuzzy
6614
+ #| msgid "Insert -1 for unlimited usage"
6615
+ msgid "Insert URL of linkedin"
6616
+ msgstr "Inserire -1 per utilizzo illimitato"
6617
+
6618
+ #: app/features/speakers.php:330
6619
  msgid "Sorry, You must insert speaker name!"
6620
  msgstr ""
6621
 
6622
+ #: app/features/speakers.php:379
6623
  msgid ""
6624
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6625
  "section and speaker widget section!"
6777
  msgid "Tile View"
6778
  msgstr "Visualizza slider"
6779
 
6780
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6781
  msgid "SU"
6782
  msgstr "D"
6783
 
6784
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6785
  msgid "MO"
6786
  msgstr "L"
6787
 
6788
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6789
  msgid "TU"
6790
  msgstr "M"
6791
 
6792
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6793
  msgid "WE"
6794
  msgstr "M"
6795
 
6796
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6797
  msgid "TH"
6798
  msgstr "G"
6799
 
6800
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6801
  msgid "FR"
6802
  msgstr "V"
6803
 
6804
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6805
  msgid "SA"
6806
  msgstr "S"
6807
 
7068
  msgid "iCal export stopped!"
7069
  msgstr "esportazione iCal annullata!"
7070
 
7071
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
7072
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
7073
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
7074
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
7075
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
7076
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
7077
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
7078
  msgid "Sort"
7079
  msgstr "Ordina"
7080
 
7081
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
7082
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
7083
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
7084
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
7085
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
7086
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
7087
  msgid "Required Field"
7088
  msgstr "Campo obbligatorio"
7089
 
7090
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
7091
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
7092
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
7093
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
7094
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
7095
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
7096
  msgid "Insert a label for this field"
7097
  msgstr "Inserisci una etichetta per questo campo"
7098
 
7099
+ #: app/libraries/main.php:2976
7100
  msgid "HTML and shortcode are allowed."
7101
  msgstr "HTML e shortcode sono ammessi."
7102
 
7103
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
7104
+ #: app/libraries/main.php:3107
7105
  msgid "Option"
7106
  msgstr "Opzione"
7107
 
7108
+ #: app/libraries/main.php:3141
7109
  #, php-format
7110
  msgid "Instead of %s, the page title with a link will be show."
7111
  msgstr ""
7112
 
7113
+ #: app/libraries/main.php:3143
7114
  msgid "Agreement Page"
7115
  msgstr ""
7116
 
7117
+ #: app/libraries/main.php:3154
7118
  msgid "Checked by default"
7119
  msgstr ""
7120
 
7121
+ #: app/libraries/main.php:3155
7122
  msgid "Unchecked by default"
7123
  msgstr ""
7124
 
7125
+ #: app/libraries/main.php:3178
7126
  msgid "Insert a label for this option"
7127
  msgstr "Inserisci una etichetta per questa opzione"
7128
 
7129
+ #: app/libraries/main.php:3193
7130
  msgid "Free"
7131
  msgstr "Gratuito"
7132
 
7133
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7134
  #, fuzzy
7135
  #| msgid "M.E. Calendar"
7136
  msgid "M.E. Calender"
7137
  msgstr "Calendario"
7138
 
7139
+ #: app/libraries/main.php:3954
7140
  #, php-format
7141
  msgid "Copy of %s"
7142
  msgstr "Copia di %s"
7143
 
7144
+ #: app/libraries/main.php:4669
7145
  msgid "Booked an event."
7146
  msgstr "Prenotato un evento."
7147
 
7148
+ #: app/libraries/main.php:4710
7149
  #, php-format
7150
  msgid "%s booked %s event."
7151
  msgstr "%s ha prenotato l'evento %s."
7152
 
7153
+ #: app/libraries/main.php:5275
7154
  msgid "Taxonomies"
7155
  msgstr ""
7156
 
7157
+ #: app/libraries/main.php:5277
7158
  msgid "Category Plural Label"
7159
  msgstr ""
7160
 
7161
+ #: app/libraries/main.php:5278
7162
  msgid "Category Singular Label"
7163
  msgstr ""
7164
 
7165
+ #: app/libraries/main.php:5279
7166
  msgid "Label Plural Label"
7167
  msgstr ""
7168
 
7169
+ #: app/libraries/main.php:5280
7170
  msgid "Label Singular Label"
7171
  msgstr ""
7172
 
7173
+ #: app/libraries/main.php:5281
7174
  msgid "Location Plural Label"
7175
  msgstr ""
7176
 
7177
+ #: app/libraries/main.php:5282
7178
  msgid "Location Singular Label"
7179
  msgstr ""
7180
 
7181
+ #: app/libraries/main.php:5283
7182
  msgid "Organizer Plural Label"
7183
  msgstr ""
7184
 
7185
+ #: app/libraries/main.php:5284
7186
  msgid "Organizer Singular Label"
7187
  msgstr ""
7188
 
7189
+ #: app/libraries/main.php:5285
7190
  #, fuzzy
7191
  #| msgid "Search Labels"
7192
  msgid "Speaker Plural Label"
7193
  msgstr "Cerca etichette"
7194
 
7195
+ #: app/libraries/main.php:5286
7196
  #, fuzzy
7197
  #| msgid "Popular Labels"
7198
  msgid "Speaker Singular Label"
7199
  msgstr "Etichette frequenti"
7200
 
7201
+ #: app/libraries/main.php:5292
7202
  msgid "Sunday abbreviation"
7203
  msgstr ""
7204
 
7205
+ #: app/libraries/main.php:5293
7206
  msgid "Monday abbreviation"
7207
  msgstr ""
7208
 
7209
+ #: app/libraries/main.php:5294
7210
  msgid "Tuesday abbreviation"
7211
  msgstr ""
7212
 
7213
+ #: app/libraries/main.php:5295
7214
  msgid "Wednesday abbreviation"
7215
  msgstr ""
7216
 
7217
+ #: app/libraries/main.php:5296
7218
  msgid "Thursday abbreviation"
7219
  msgstr ""
7220
 
7221
+ #: app/libraries/main.php:5297
7222
  msgid "Friday abbreviation"
7223
  msgstr ""
7224
 
7225
+ #: app/libraries/main.php:5298
7226
  msgid "Saturday abbreviation"
7227
  msgstr ""
7228
 
7229
+ #: app/libraries/main.php:5302
7230
  msgid "Others"
7231
  msgstr ""
7232
 
7233
+ #: app/libraries/main.php:5304
7234
  msgid "Booking Success Message"
7235
  msgstr ""
7236
 
7237
+ #: app/libraries/main.php:5304
7238
  msgid ""
7239
  "Thanks for your booking. Your tickets booked, booking verification might be "
7240
  "needed, please check your email."
7243
  "essere necessario la verifica della prenotazione, si prega di controllare la "
7244
  "posta elettronica."
7245
 
7246
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7247
  msgid "Register Button"
7248
  msgstr ""
7249
 
7250
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7251
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7252
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7253
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7254
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7255
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7256
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7257
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7258
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7259
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7264
  msgid "REGISTER"
7265
  msgstr "REGISTRA"
7266
 
7267
+ #: app/libraries/main.php:5306
7268
  msgid "View Detail Button"
7269
  msgstr ""
7270
 
7271
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7272
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7273
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7274
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7279
  msgid "View Detail"
7280
  msgstr "Visualizza dettaglio"
7281
 
7282
+ #: app/libraries/main.php:5307
7283
  msgid "Event Detail Button"
7284
  msgstr ""
7285
 
7286
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7287
  msgid "Event Detail"
7288
  msgstr "Dettaglio evento"
7289
 
7290
+ #: app/libraries/main.php:5309
7291
  msgid "More Info Link"
7292
  msgstr ""
7293
 
7294
+ #: app/libraries/main.php:5312
7295
  msgid "Ticket (Singular)"
7296
  msgstr ""
7297
 
7298
+ #: app/libraries/main.php:5313
7299
  msgid "Tickets (Plural)"
7300
  msgstr ""
7301
 
7302
+ #: app/libraries/main.php:5399
7303
  msgid "EventON"
7304
  msgstr ""
7305
 
7306
+ #: app/libraries/main.php:5400
7307
  msgid "The Events Calendar"
7308
  msgstr ""
7309
 
7310
+ #: app/libraries/main.php:5401
7311
  msgid "Events Schedule WP Plugin"
7312
  msgstr ""
7313
 
7314
+ #: app/libraries/main.php:5402
7315
  msgid "Calendarize It"
7316
  msgstr ""
7317
 
7318
+ #: app/libraries/main.php:5403
7319
  #, fuzzy
7320
  #| msgid "No Search Options"
7321
  msgid "Event Espresso"
7322
  msgstr "Nessuna opzione di ricerca"
7323
 
7324
+ #: app/libraries/main.php:5404
7325
  #, fuzzy
7326
  #| msgid "Event Repeating"
7327
  msgid "Events Manager (Recurring)"
7328
  msgstr "Ripetizione dell'evento"
7329
 
7330
+ #: app/libraries/main.php:5405
7331
  #, fuzzy
7332
  #| msgid "Modern Events Calendar"
7333
  msgid "Events Manager (Single)"
7334
  msgstr "Calendario moderno degli eventi"
7335
 
7336
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7337
  msgid "Confirmed"
7338
  msgstr "Confermato"
7339
 
7340
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7341
  msgid "Rejected"
7342
  msgstr "Rifiutato"
7343
 
7344
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7345
  msgid "Pending"
7346
  msgstr "In attesa"
7347
 
7348
+ #: app/libraries/main.php:5529
7349
  msgid "Waiting"
7350
  msgstr "In attesa"
7351
 
7352
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7353
  msgid "Skin controller does not exist."
7354
  msgstr "Non esiste il controllo dello stile."
7355
 
7356
+ #: app/libraries/main.php:5848
7357
  msgid "Sold Out"
7358
  msgstr ""
7359
 
7360
+ #: app/libraries/main.php:5856
7361
  #, fuzzy
7362
  #| msgid "Ticket"
7363
  msgid "Last Few Tickets"
7367
  msgid "Please verify your email."
7368
  msgstr "Si prega di verificare la propria email."
7369
 
7370
+ #: app/libraries/notifications.php:153
7371
  msgid "Your booking is received."
7372
  msgstr ""
7373
 
7374
+ #: app/libraries/notifications.php:271
7375
  msgid "Your booking is confirmed."
7376
  msgstr "La tua prenotazione è confermata."
7377
 
7378
+ #: app/libraries/notifications.php:435
7379
  #, fuzzy
7380
  #| msgid "Your booking cannot be canceled."
7381
  msgid "booking canceled."
7382
  msgstr "La tua prenotazione non può essere cancellata."
7383
 
7384
+ #: app/libraries/notifications.php:510
7385
  msgid "A new booking is received."
7386
  msgstr "Una nuova prenotazione è stata ricevuta."
7387
 
7388
+ #: app/libraries/notifications.php:734
7389
  msgid "A new event is added."
7390
  msgstr "Un nuovo evento è stato aggiunto."
7391
 
7392
+ #: app/libraries/notifications.php:803
7393
  #, fuzzy
7394
  #| msgid "The event published."
7395
  msgid "Your event is published."
7396
  msgstr "L'evento è stato pubblicato."
7397
 
7398
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7399
+ #: app/libraries/notifications.php:1052
7400
  msgid "to"
7401
  msgstr ""
7402
 
7403
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7404
  msgid "+ Add to Google Calendar"
7405
  msgstr "+ Aggiungi a Google Calendar"
7406
 
7407
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7408
  msgid "+ iCal export"
7409
  msgstr "+ Esporta iCal"
7410
 
7411
+ #: app/libraries/notifications.php:1131
7412
  msgid "Yes"
7413
  msgstr ""
7414
 
7415
+ #: app/libraries/notifications.php:1131
7416
  msgid "No"
7417
  msgstr ""
7418
 
7419
+ #: app/libraries/skins.php:1008
7420
+ #, fuzzy
7421
+ #| msgid "Select All"
7422
+ msgid "Select"
7423
+ msgstr "Seleziona tutto"
7424
 
7425
  #: app/modules/attendees-list/details.php:36
7426
  msgid "Event Attendees"
7457
  msgid "Free Booking"
7458
  msgstr ""
7459
 
7460
+ #: app/modules/booking/steps/form.php:52
7461
+ #, fuzzy
7462
+ #| msgid "Attendees Form"
7463
+ msgid "Attendee's Form"
7464
+ msgstr "Form partecipanti"
7465
+
7466
  #: app/modules/booking/steps/form.php:165
7467
  msgid "Fill other attendees information like the first form."
7468
  msgstr ""
7469
 
7470
  #: app/modules/booking/steps/form.php:179
7471
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7472
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7473
  msgid "Next"
7474
  msgstr "Avanti"
7481
  msgid "Book Event"
7482
  msgstr "Evento prenotazione"
7483
 
7484
+ #: app/modules/booking/steps/tickets.php:40
7485
  #, php-format
7486
  msgid "Available %s: <span>%s</span>"
7487
  msgstr ""
7488
 
7489
+ #: app/modules/booking/steps/tickets.php:44
7490
  #, php-format
7491
+ msgid "The %s ticket sales has stopped!"
7492
  msgstr ""
7493
 
7494
+ #: app/modules/booking/steps/tickets.php:45
7495
  #, php-format
7496
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7497
  msgstr ""
7512
  msgid "Get Directions"
7513
  msgstr ""
7514
 
7515
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7516
  msgid "Share this event"
7517
  msgstr "Condividi questo evento"
7518
 
7539
  msgid "Go to occurrence page"
7540
  msgstr "Vai alla pagina necessaria"
7541
 
7542
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7543
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7544
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7545
  msgid "Time"
7667
  msgid "Home"
7668
  msgstr ""
7669
 
7670
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7671
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7672
  #: app/skins/single/modern.php:265
7673
  msgid "Sold out!"
7674
  msgstr ""
7675
 
7676
+ #: app/skins/single.php:822 app/skins/single.php:877
7677
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7678
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7679
  #: app/skins/single/modern.php:44
7680
  msgid "Phone"
7681
  msgstr "Telefono"
7682
 
7683
+ #: app/skins/single.php:836 app/skins/single.php:891
7684
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7685
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7686
  #: app/skins/single/modern.php:58
7687
  msgid "Website"
7688
  msgstr "Sito web"
7689
 
7690
+ #: app/skins/single.php:961
7691
  #, fuzzy
7692
  #| msgid "No Search Options"
7693
  msgid "Speakers:"
languages/modern-events-calendar-lite-nb_NO.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nb_NO.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:03+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
@@ -294,7 +294,7 @@ msgstr "Legg til Arrangement"
294
  msgid "Add New Event"
295
  msgstr "Legg til nytt arrangement"
296
 
297
- #: app/features/events.php:161 app/features/ix.php:3752
298
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
299
  msgid "No events found!"
300
  msgstr "Ingen hendelser funnet!"
@@ -329,8 +329,8 @@ msgstr "Ingen arrangement funnet i søppelbøtta!"
329
  #: app/features/mec/meta_boxes/search_form.php:575
330
  #: app/features/mec/meta_boxes/search_form.php:672
331
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
332
- #: app/features/search.php:67 app/libraries/main.php:5260
333
- #: app/libraries/skins.php:850 app/skins/single.php:560
334
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
335
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
336
  #: app/skins/single/modern.php:113
@@ -339,7 +339,7 @@ msgstr "Kategori"
339
 
340
  #: app/features/events.php:183 app/features/events.php:3275
341
  #: app/features/fes/form.php:757 app/features/mec.php:402
342
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
343
  msgid "Categories"
344
  msgstr "Kategorier"
345
 
@@ -428,7 +428,7 @@ msgid "Event Repeating"
428
  msgstr "Gjentakende arrangement"
429
 
430
  #: app/features/events.php:333 app/features/events.php:1286
431
- #: app/features/mec/settings.php:710 app/skins/single.php:941
432
  msgid "Hourly Schedule"
433
  msgstr "Timeplan"
434
 
@@ -446,7 +446,7 @@ msgstr "Lenke"
446
 
447
  #: app/features/events.php:336 app/features/events.php:3322
448
  #: app/features/events.php:3513 app/features/events.php:3555
449
- #: app/features/ix.php:3373 app/features/ix.php:3414
450
  #: app/features/mec/meta_boxes/display_options.php:960
451
  #: app/features/mec/meta_boxes/search_form.php:45
452
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -463,16 +463,16 @@ msgstr "Lenke"
463
  #: app/features/organizers.php:58 app/features/organizers.php:204
464
  #: app/features/organizers.php:260 app/features/organizers.php:262
465
  #: app/features/organizers.php:271 app/features/search.php:75
466
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
467
- #: app/skins/single.php:806 app/skins/single/default.php:217
468
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
469
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
470
  msgid "Organizer"
471
  msgstr "Arrangør"
472
 
473
  #: app/features/events.php:337 app/features/events.php:1172
474
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
475
- #: app/skins/single.php:583 app/skins/single/default.php:126
476
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
477
  #: app/skins/single/modern.php:208
478
  msgid "Cost"
@@ -490,7 +490,7 @@ msgstr "Gjestedata"
490
  #: app/features/events.php:3802 app/features/fes.php:223
491
  #: app/features/fes/form.php:689 app/features/labels.php:178
492
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
493
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
494
  #: app/modules/booking/steps/form.php:37
495
  msgid "Name"
496
  msgstr "Navn"
@@ -500,12 +500,12 @@ msgstr "Navn"
500
  #: app/features/fes.php:223 app/features/fes/form.php:685
501
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
502
  #: app/features/organizers.php:111 app/features/organizers.php:152
503
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
504
- #: app/features/speakers.php:187 app/libraries/main.php:1539
505
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
506
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
507
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
508
- #: app/skins/single.php:878 app/skins/single/default.php:234
509
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
510
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
511
  msgid "Email"
@@ -518,8 +518,8 @@ msgstr "Dato og klokkeslett"
518
  #: app/features/events.php:491 app/features/events.php:497
519
  #: app/features/events.php:3323 app/features/events.php:3513
520
  #: app/features/events.php:3555 app/features/fes/form.php:247
521
- #: app/features/fes/form.php:251 app/features/ix.php:3373
522
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
523
  #: app/features/mec/dashboard.php:400
524
  #: app/features/mec/meta_boxes/display_options.php:48
525
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -556,8 +556,8 @@ msgstr "PM"
556
  #: app/features/events.php:583 app/features/events.php:588
557
  #: app/features/events.php:3324 app/features/events.php:3513
558
  #: app/features/events.php:3555 app/features/fes/form.php:287
559
- #: app/features/fes/form.php:291 app/features/ix.php:3373
560
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
561
  #: app/features/mec/dashboard.php:401
562
  msgid "End Date"
563
  msgstr "Sluttdato"
@@ -641,14 +641,14 @@ msgstr ""
641
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
642
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
643
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
644
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
645
- #: app/features/mec/notifications.php:170
646
- #: app/features/mec/notifications.php:238
647
- #: app/features/mec/notifications.php:308
648
- #: app/features/mec/notifications.php:373
649
- #: app/features/mec/notifications.php:384
650
- #: app/features/mec/notifications.php:454
651
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
652
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
653
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
654
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -664,7 +664,7 @@ msgstr ""
664
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
665
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
666
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
667
- #: app/skins/single.php:668 app/skins/single/default.php:141
668
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
669
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
670
  msgid "Read More"
@@ -847,8 +847,8 @@ msgstr "Neste forekomst av Andre Arrangement"
847
 
848
  #: app/features/events.php:1168 app/features/events.php:3513
849
  #: app/features/events.php:3555 app/features/fes/form.php:727
850
- #: app/features/ix.php:3373 app/features/ix.php:3414
851
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
852
  #: app/widgets/single.php:103
853
  msgid "Event Cost"
854
  msgstr "Kostnad for arrangementet"
@@ -866,8 +866,8 @@ msgstr "Ekskluder bestemte dager"
866
  #: app/features/events.php:1204 app/features/events.php:2541
867
  #: app/features/fes.php:223 app/features/mec/booking.php:491
868
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
869
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
870
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
871
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
872
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
873
  msgid "Date"
@@ -906,8 +906,8 @@ msgstr "Dag %s"
906
  #: app/features/events.php:1437 app/features/events.php:2322
907
  #: app/features/events.php:2369 app/features/events.php:3319
908
  #: app/features/events.php:3513 app/features/events.php:3555
909
- #: app/features/fes/form.php:236 app/features/ix.php:3373
910
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
911
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
912
  msgid "Title"
913
  msgstr "Tittel"
@@ -920,13 +920,13 @@ msgstr "Tittel"
920
  #: app/features/events.php:2357 app/features/events.php:2399
921
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
922
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
923
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
924
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
925
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
926
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
927
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
928
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
929
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
930
  msgid "Remove"
931
  msgstr "Fjern"
932
 
@@ -954,7 +954,7 @@ msgstr "Beskrivelse"
954
  #: app/features/events.php:1445 app/features/fes/form.php:851
955
  #: app/features/mec.php:410 app/features/mec/modules.php:52
956
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
957
- #: app/libraries/main.php:565 app/libraries/main.php:5267
958
  #: app/modules/speakers/details.php:18
959
  msgid "Speakers"
960
  msgstr "Foredragsholdere"
@@ -971,7 +971,7 @@ msgid "Event Links"
971
  msgstr "Arrangemenslenker"
972
 
973
  #: app/features/events.php:1479 app/features/events.php:1485
974
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
975
  msgid "Event Link"
976
  msgstr "Arrangemenslenke"
977
 
@@ -998,8 +998,8 @@ msgid "URL Shortener"
998
  msgstr ""
999
 
1000
  #: app/features/events.php:1495 app/features/events.php:1508
1001
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
1002
- #: app/skins/single.php:667 app/skins/single/default.php:140
1003
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1004
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1005
  #: app/widgets/single.php:107
@@ -1032,7 +1032,7 @@ msgstr "Totalt antall bestillingsgrenser"
1032
 
1033
  #: app/features/events.php:1596 app/features/events.php:1849
1034
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1035
- #: app/modules/booking/steps/tickets.php:44
1036
  #: app/skins/available_spot/tpl.php:160
1037
  msgid "Unlimited"
1038
  msgstr "Ubegrenset"
@@ -1069,7 +1069,7 @@ msgid "12"
1069
  msgstr ""
1070
 
1071
  #: app/features/events.php:1653 app/libraries/book.php:60
1072
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1073
  msgid "Tickets"
1074
  msgstr "Billetter"
1075
 
@@ -1096,13 +1096,13 @@ msgstr "Billettnavn"
1096
 
1097
  #: app/features/events.php:1680 app/features/events.php:1955
1098
  #: app/features/events.php:3513 app/features/events.php:3555
1099
- #: app/features/ix.php:3373 app/features/ix.php:3414
1100
  msgid "Start Time"
1101
  msgstr "Starttid"
1102
 
1103
  #: app/features/events.php:1739 app/features/events.php:1985
1104
  #: app/features/events.php:3513 app/features/events.php:3555
1105
- #: app/features/ix.php:3373 app/features/ix.php:3414
1106
  msgid "End Time"
1107
  msgstr "Sluttidspunkt"
1108
 
@@ -1134,37 +1134,37 @@ msgstr "For visning på nettside f.eks $15"
1134
  msgid "Available Tickets"
1135
  msgstr "Tilgjengelige Billetter"
1136
 
1137
- #: app/features/events.php:1855 app/features/events.php:2070
1138
  #, fuzzy
1139
  #| msgid "Maximum Per Ticket"
1140
  msgid "Minimum Ticket e.g. 3"
1141
  msgstr "Maks Per billett"
1142
 
1143
- #: app/features/events.php:1858 app/features/events.php:2073
1144
  #, fuzzy
1145
  #| msgid "Maximum Per Ticket"
1146
  msgid "MinimumTicket"
1147
  msgstr "Maks Per billett"
1148
 
1149
- #: app/features/events.php:1860 app/features/events.php:2075
1150
  msgid "Set a number for the minimum ticket reservation"
1151
  msgstr ""
1152
 
1153
- #: app/features/events.php:1868 app/features/events.php:2083
1154
  msgid "e.g. 0"
1155
  msgstr ""
1156
 
1157
- #: app/features/events.php:1870 app/features/events.php:2085
1158
  #, fuzzy
1159
  #| msgid "Days"
1160
  msgid "Day"
1161
  msgstr "Dager"
1162
 
1163
- #: app/features/events.php:1871 app/features/events.php:2086
1164
  msgid "Hour"
1165
  msgstr ""
1166
 
1167
- #: app/features/events.php:1873 app/features/events.php:2088
1168
  #, php-format
1169
  msgid "Stop selling ticket %s before event start."
1170
  msgstr ""
@@ -1188,7 +1188,7 @@ msgstr "Pris pr. dato"
1188
  #: app/features/mec/meta_boxes/search_form.php:610
1189
  #: app/features/mec/meta_boxes/search_form.php:707
1190
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1191
- #: app/libraries/skins.php:980
1192
  msgid "Label"
1193
  msgstr "Etikett"
1194
 
@@ -1254,48 +1254,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1254
  msgstr "Maks per billett. La det stå tomt for ubegrenset."
1255
 
1256
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1257
- #: app/libraries/main.php:2749
1258
  #, fuzzy
1259
  #| msgid "Name"
1260
  msgid "MEC Name"
1261
  msgstr "Navn"
1262
 
1263
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1264
- #: app/libraries/main.php:2778
1265
  #, fuzzy
1266
  #| msgid "Email"
1267
  msgid "MEC Email"
1268
  msgstr "E-post"
1269
 
1270
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1271
- #: app/libraries/main.php:2719
1272
  msgid "Text"
1273
  msgstr "Tekst"
1274
 
1275
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1276
  #: app/features/organizers.php:103 app/features/organizers.php:148
1277
- #: app/features/speakers.php:118 app/features/speakers.php:183
1278
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1279
  msgid "Tel"
1280
  msgstr "Tlf"
1281
 
1282
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1283
- #: app/libraries/main.php:2837
1284
  msgid "File"
1285
  msgstr ""
1286
 
1287
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1288
- #: app/libraries/main.php:2924
1289
  msgid "Textarea"
1290
  msgstr "Tekstområde"
1291
 
1292
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1293
- #: app/libraries/main.php:2977
1294
  msgid "Checkboxes"
1295
  msgstr "Avmerkingsbokser"
1296
 
1297
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1298
- #: app/libraries/main.php:3021
1299
  msgid "Radio Buttons"
1300
  msgstr "Radioknapper"
1301
 
@@ -1375,17 +1375,17 @@ msgstr "Radioknapper"
1375
  #: app/features/mec/meta_boxes/search_form.php:696
1376
  #: app/features/mec/meta_boxes/search_form.php:703
1377
  #: app/features/mec/meta_boxes/search_form.php:710
1378
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1379
  msgid "Dropdown"
1380
  msgstr "Nedtrekksmeny"
1381
 
1382
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1383
- #: app/libraries/main.php:3112
1384
  msgid "Agreement"
1385
  msgstr "Avtalen"
1386
 
1387
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1388
- #: app/libraries/main.php:2953
1389
  msgid "Paragraph"
1390
  msgstr "Avsnitt"
1391
 
@@ -1414,8 +1414,8 @@ msgid "Attendees List"
1414
  msgstr "Deltagerbegrensning"
1415
 
1416
  #: app/features/events.php:3321 app/features/events.php:3513
1417
- #: app/features/events.php:3555 app/features/ix.php:3373
1418
- #: app/features/ix.php:3414 app/features/locations.php:58
1419
  #: app/features/locations.php:230 app/features/locations.php:287
1420
  #: app/features/locations.php:289 app/features/locations.php:298
1421
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1432,8 +1432,8 @@ msgstr "Deltagerbegrensning"
1432
  #: app/features/mec/meta_boxes/search_form.php:679
1433
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1434
  #: app/features/search.php:71 app/libraries/main.php:2236
1435
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1436
- #: app/skins/single.php:487 app/skins/single.php:918
1437
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1438
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1439
  #: app/skins/single/modern.php:97
@@ -1474,14 +1474,14 @@ msgid "Duplicate"
1474
  msgstr "Dupliser"
1475
 
1476
  #: app/features/events.php:3513 app/features/events.php:3555
1477
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1478
  #: app/features/labels.php:177 app/features/locations.php:229
1479
- #: app/features/organizers.php:203 app/features/speakers.php:253
1480
  msgid "ID"
1481
  msgstr "ID"
1482
 
1483
  #: app/features/events.php:3513 app/features/events.php:3555
1484
- #: app/features/ix.php:3373 app/features/ix.php:3414
1485
  msgid "Link"
1486
  msgstr "Lenke"
1487
 
@@ -1497,7 +1497,7 @@ msgstr "%s E-post"
1497
 
1498
  #: app/features/events.php:3808 app/features/fes.php:223
1499
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1500
- #: app/libraries/main.php:5294
1501
  msgid "Ticket"
1502
  msgstr "Billett"
1503
 
@@ -1673,8 +1673,8 @@ msgstr "Fjern bilde"
1673
 
1674
  #: app/features/fes/form.php:783 app/features/labels.php:61
1675
  #: app/features/labels.php:221 app/features/mec.php:403
1676
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1677
- #: app/skins/single.php:696 app/skins/single/default.php:155
1678
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1679
  #: app/skins/single/modern.php:223
1680
  msgid "Labels"
@@ -1754,71 +1754,71 @@ msgstr ""
1754
  msgid "The events are imported successfully!"
1755
  msgstr "Hendelser er vellykket importert!"
1756
 
1757
- #: app/features/ix.php:806
1758
  msgid "Third Party plugin is not installed and activated!"
1759
  msgstr "Tredjeparts plugin er ikke installert og aktivert!"
1760
 
1761
- #: app/features/ix.php:829
1762
  msgid "Third Party plugin is invalid!"
1763
  msgstr "Tredjeparts plugin er ugyldig!"
1764
 
1765
- #: app/features/ix.php:2580 app/features/ix.php:2638
1766
  msgid "Both of API key and Calendar ID are required!"
1767
  msgstr "Både API nøkkel og Kalender ID er påkrevd!"
1768
 
1769
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1770
  msgid "Please select some events to import!"
1771
  msgstr "Vennligst velg data som skal importeres!"
1772
 
1773
- #: app/features/ix.php:2994 app/features/ix.php:3057
1774
  msgid "Both of API key and Group URL are required!"
1775
  msgstr "Både API-nøkkel og gruppe-URL kreves!"
1776
 
1777
- #: app/features/ix.php:3296
1778
  msgid "Check at Meetup"
1779
  msgstr "Sjekk på Meetup"
1780
 
1781
- #: app/features/ix.php:3373 app/features/ix.php:3414
1782
  msgid "Organizer Tel"
1783
  msgstr "Tlf til arrangør"
1784
 
1785
- #: app/features/ix.php:3373 app/features/ix.php:3414
1786
  msgid "Organizer Email"
1787
  msgstr "Arrangør e-post"
1788
 
1789
- #: app/features/ix.php:3495
1790
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1791
  msgstr "Alle Klient ID, Klient Hemmelig Kode og Kalender-ID er påkrevd!"
1792
 
1793
- #: app/features/ix.php:3518
1794
  #, php-format
1795
  msgid "All seems good! Please click %s for authenticating your app."
1796
  msgstr "Alt ser bra ut! Klikk %s for å godkjenne din app."
1797
 
1798
- #: app/features/ix.php:3572
1799
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1800
  msgstr "Alle felt, klientapp, klienthemmelig og kalender-ID er påkrevd!"
1801
 
1802
- #: app/features/ix.php:3688
1803
  #, php-format
1804
  msgid "%s events added to Google Calendar successfully."
1805
  msgstr "%s hendelser lagt til i Google Kalender vellykket."
1806
 
1807
- #: app/features/ix.php:3689
1808
  #, php-format
1809
  msgid "%s previously added events get updated."
1810
  msgstr "%s tidligere hendelser lagt til blir oppdatert."
1811
 
1812
- #: app/features/ix.php:3690
1813
  #, php-format
1814
  msgid "%s events failed to add for following reasons: %s"
1815
  msgstr "%s hendelser kunne ikke tilføyes av følgende grunner: %s"
1816
 
1817
- #: app/features/ix.php:3722
1818
  msgid "Please insert your Facebook page's link."
1819
  msgstr "Vennligst sett inn lenken til Facebook-siden din."
1820
 
1821
- #: app/features/ix.php:3731
1822
  msgid ""
1823
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1824
  "valid Facebook page link."
@@ -1826,11 +1826,11 @@ msgstr ""
1826
  "Vi kunne ikke gjenkjenne din Facebook-side. Vennligst sjekk den og gi oss en "
1827
  "gyldig Facebook side link."
1828
 
1829
- #: app/features/ix.php:3763
1830
  msgid "Please insert your facebook page's link."
1831
  msgstr "Vennligst sett inn linken til din Facebook-side."
1832
 
1833
- #: app/features/ix.php:3768
1834
  msgid ""
1835
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1836
  "valid facebook page link."
@@ -1999,14 +1999,15 @@ msgstr "Toggle"
1999
  #: app/features/ix/export_g_calendar.php:72
2000
  #: app/features/ix/export_g_calendar.php:147
2001
  #: app/features/ix/export_g_calendar.php:164
2002
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
2003
- #: app/features/mec/notifications.php:213
2004
- #: app/features/mec/notifications.php:420
 
2005
  msgid "Add to Google Calendar"
2006
  msgstr "Legg til i Google Kalender"
2007
 
2008
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2009
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
2010
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2011
  msgid "Checking ..."
2012
  msgstr "Sjekker ..."
@@ -2260,7 +2261,7 @@ msgstr "Automatisk Google Import"
2260
 
2261
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2262
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2263
- #: app/features/mec/notifications.php:361
2264
  msgid "Important Note"
2265
  msgstr "Viktig merknad"
2266
 
@@ -2449,7 +2450,7 @@ msgid "Featured"
2449
  msgstr "Fremhevet"
2450
 
2451
  #: app/features/labels.php:118 app/features/labels.php:143
2452
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2453
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2454
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2455
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2468,7 +2469,7 @@ msgid "You can show featured and canceled events by a different style!"
2468
  msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
2469
 
2470
  #: app/features/labels.php:180 app/features/locations.php:232
2471
- #: app/features/organizers.php:206 app/features/speakers.php:257
2472
  #: app/modules/booking/steps/tickets.php:38
2473
  msgid "Count"
2474
  msgstr "Antall"
@@ -2485,7 +2486,7 @@ msgstr "Arrangement %s"
2485
 
2486
  #: app/features/locations.php:59 app/features/mec.php:404
2487
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2488
- #: app/libraries/main.php:5263
2489
  msgid "Locations"
2490
  msgstr "Steder"
2491
 
@@ -2518,13 +2519,13 @@ msgstr "Geo lengdegrad (Valgfritt)"
2518
 
2519
  #: app/features/locations.php:138 app/features/locations.php:180
2520
  #: app/features/organizers.php:127 app/features/organizers.php:160
2521
- #: app/features/speakers.php:158 app/features/speakers.php:203
2522
  msgid "Thumbnail"
2523
  msgstr "Miniatyrbilde"
2524
 
2525
  #: app/features/locations.php:143 app/features/locations.php:183
2526
  #: app/features/organizers.php:132 app/features/organizers.php:163
2527
- #: app/features/speakers.php:163 app/features/speakers.php:206
2528
  msgid "Upload/Add image"
2529
  msgstr "Last opp/Legg til bilde"
2530
 
@@ -2532,7 +2533,7 @@ msgstr "Last opp/Legg til bilde"
2532
  #: app/features/locations.php:340 app/features/locations.php:347
2533
  #: app/features/organizers.php:133 app/features/organizers.php:164
2534
  #: app/features/organizers.php:299 app/features/organizers.php:306
2535
- #: app/features/speakers.php:164 app/features/speakers.php:207
2536
  msgid "Remove image"
2537
  msgstr "Fjern bilde"
2538
 
@@ -2592,7 +2593,7 @@ msgstr "Velg bilde"
2592
  msgid "Don't show map in single event page"
2593
  msgstr "Ikke vis kart i enkelt arrangement visning"
2594
 
2595
- #: app/features/locations.php:356 app/libraries/main.php:5297
2596
  #, fuzzy
2597
  #| msgid "Locations"
2598
  msgid "Other Locations"
@@ -2623,7 +2624,7 @@ msgstr ""
2623
  msgid "Troubleshooting"
2624
  msgstr "Feilsøking"
2625
 
2626
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2627
  #, php-format
2628
  msgid "%s to %s"
2629
  msgstr "%s til %s"
@@ -2655,7 +2656,7 @@ msgstr "Support"
2655
 
2656
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2657
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2658
- #: app/libraries/main.php:5265
2659
  msgid "Organizers"
2660
  msgstr "Arrangører"
2661
 
@@ -2775,10 +2776,10 @@ msgstr "Søk..."
2775
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2776
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2777
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2778
- #: app/features/mec/notifications.php:531
2779
- #: app/features/mec/notifications.php:543
2780
- #: app/features/mec/notifications.php:639
2781
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2782
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2783
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2784
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2899,7 +2900,7 @@ msgstr ""
2899
  msgid "Enable Express Attendees Form"
2900
  msgstr "Aktiver Ekspress Deltagere Skjema"
2901
 
2902
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2903
  msgid "Attendees Form"
2904
  msgstr "Deltagerskjema"
2905
 
@@ -2935,7 +2936,7 @@ msgstr "Automatisk godkjenning for gratis reservasjoner"
2935
  msgid "Auto verification for paid bookings"
2936
  msgstr "Auto godkjenning for betalte bookinger"
2937
 
2938
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2939
  #: app/libraries/main.php:579
2940
  msgid "Booking Confirmation"
2941
  msgstr "Bestillingsbekreftelsen"
@@ -2999,14 +3000,14 @@ msgid ""
2999
  msgstr ""
3000
 
3001
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3002
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
3003
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3004
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3005
  msgid "Saved"
3006
  msgstr "Lagret"
3007
 
3008
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3009
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
3010
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3011
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3012
  msgid "Settings Saved!"
@@ -3014,15 +3015,15 @@ msgstr "Innstillinger Lagret!"
3014
 
3015
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3016
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3017
- #: app/features/mec/notifications.php:620
3018
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
3019
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3020
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
3021
  msgid "Verified"
3022
  msgstr "Verifisert"
3023
 
3024
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3025
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
3026
  #: app/features/mec/single.php:291
3027
  msgid "Please Refresh Page"
3028
  msgstr "Vennligst Oppdater Side"
@@ -4160,8 +4161,8 @@ msgstr "Deaktivert"
4160
  #: app/features/mec/meta_boxes/search_form.php:693
4161
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4162
  #: app/features/search.php:79 app/features/speakers.php:61
4163
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4164
- #: app/libraries/skins.php:928
4165
  msgid "Speaker"
4166
  msgstr "Foredragsholder"
4167
 
@@ -4177,7 +4178,7 @@ msgstr "Foredragsholder"
4177
  #: app/features/mec/meta_boxes/search_form.php:603
4178
  #: app/features/mec/meta_boxes/search_form.php:700
4179
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4180
- #: app/features/search.php:83 app/libraries/skins.php:954
4181
  #, fuzzy
4182
  #| msgid "Tags"
4183
  msgid "Tag"
@@ -4434,335 +4435,424 @@ msgstr "Tillatt bestillingsvarsel"
4434
  msgid "It sends to attendee after booking for notifying him/her."
4435
  msgstr "Sendes til deltager etter booking for å opplyse han/henne."
4436
 
4437
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4438
- #: app/features/mec/notifications.php:161
4439
- #: app/features/mec/notifications.php:229
4440
- #: app/features/mec/notifications.php:299
4441
- #: app/features/mec/notifications.php:364
4442
- #: app/features/mec/notifications.php:445
4443
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4444
  msgid "Email Subject"
4445
  msgstr "E-postemne"
4446
 
4447
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4448
- #: app/features/mec/notifications.php:109
4449
- #: app/features/mec/notifications.php:113
4450
- #: app/features/mec/notifications.php:165
4451
- #: app/features/mec/notifications.php:169
4452
- #: app/features/mec/notifications.php:233
4453
- #: app/features/mec/notifications.php:237
4454
- #: app/features/mec/notifications.php:303
4455
- #: app/features/mec/notifications.php:307
4456
- #: app/features/mec/notifications.php:368
4457
- #: app/features/mec/notifications.php:372
4458
- #: app/features/mec/notifications.php:383
4459
- #: app/features/mec/notifications.php:449
4460
- #: app/features/mec/notifications.php:453
4461
- #: app/features/mec/notifications.php:497
4462
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4463
  msgid "Custom Recipients"
4464
  msgstr "Tilpassede Mottagere"
4465
 
4466
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4467
- #: app/features/mec/notifications.php:170
4468
- #: app/features/mec/notifications.php:238
4469
- #: app/features/mec/notifications.php:308
4470
- #: app/features/mec/notifications.php:373
4471
- #: app/features/mec/notifications.php:384
4472
- #: app/features/mec/notifications.php:454
4473
- #: app/features/mec/notifications.php:502
4474
  msgid "Insert comma separated emails for multiple recipients."
4475
  msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
4476
 
4477
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4478
- #: app/features/mec/notifications.php:315
4479
  msgid "Send the email to event organizer"
4480
  msgstr "Send epost til arrangøren"
4481
 
4482
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4483
- #: app/features/mec/notifications.php:180
4484
- #: app/features/mec/notifications.php:256
4485
- #: app/features/mec/notifications.php:318
4486
- #: app/features/mec/notifications.php:390
4487
- #: app/features/mec/notifications.php:460
4488
- #: app/features/mec/notifications.php:508
4489
  msgid "Email Content"
4490
  msgstr "E-postinnhold"
4491
 
4492
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4493
- #: app/features/mec/notifications.php:183
4494
- #: app/features/mec/notifications.php:259
4495
- #: app/features/mec/notifications.php:321
4496
- #: app/features/mec/notifications.php:393
4497
- #: app/features/mec/notifications.php:463
4498
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4499
  msgid "You can use following placeholders"
4500
  msgstr "Du kan bruke følgende plassholdere"
4501
 
4502
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4503
- #: app/features/mec/notifications.php:185
4504
- #: app/features/mec/notifications.php:261
4505
- #: app/features/mec/notifications.php:323
4506
- #: app/features/mec/notifications.php:395
 
4507
  msgid "First name of attendee"
4508
  msgstr "Fornavn til deltaker"
4509
 
4510
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4511
- #: app/features/mec/notifications.php:186
4512
- #: app/features/mec/notifications.php:262
4513
- #: app/features/mec/notifications.php:324
4514
- #: app/features/mec/notifications.php:396
 
4515
  msgid "Last name of attendee"
4516
  msgstr "Etternavn på deltaker"
4517
 
4518
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4519
- #: app/features/mec/notifications.php:187
4520
- #: app/features/mec/notifications.php:263
4521
- #: app/features/mec/notifications.php:325
4522
- #: app/features/mec/notifications.php:397
 
4523
  msgid "Email of attendee"
4524
  msgstr "E-post til deltaker"
4525
 
4526
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4527
- #: app/features/mec/notifications.php:188
4528
- #: app/features/mec/notifications.php:264
4529
- #: app/features/mec/notifications.php:326
4530
- #: app/features/mec/notifications.php:398
 
4531
  msgid "Booked date of event"
4532
  msgstr "Booket dato for arrangement"
4533
 
4534
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4535
- #: app/features/mec/notifications.php:189
4536
- #: app/features/mec/notifications.php:265
4537
- #: app/features/mec/notifications.php:327
4538
- #: app/features/mec/notifications.php:399
 
4539
  #, fuzzy
4540
  #| msgid "Booked date of event"
4541
  msgid "Booked time of event"
4542
  msgstr "Booket dato for arrangement"
4543
 
4544
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4545
- #: app/features/mec/notifications.php:190
4546
- #: app/features/mec/notifications.php:266
4547
- #: app/features/mec/notifications.php:328
4548
- #: app/features/mec/notifications.php:400
 
4549
  msgid "Booking Price"
4550
  msgstr "Booking Pris"
4551
 
4552
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4553
- #: app/features/mec/notifications.php:191
4554
- #: app/features/mec/notifications.php:267
4555
- #: app/features/mec/notifications.php:329
4556
- #: app/features/mec/notifications.php:401
 
4557
  msgid "Date and time of placing booking"
4558
  msgstr ""
4559
 
4560
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4561
- #: app/features/mec/notifications.php:192
4562
- #: app/features/mec/notifications.php:268
4563
- #: app/features/mec/notifications.php:330
4564
- #: app/features/mec/notifications.php:402
4565
- #: app/features/mec/notifications.php:471
4566
- #: app/features/mec/notifications.php:519
 
4567
  msgid "Your website title"
4568
  msgstr "Ditt nettstedstittel"
4569
 
4570
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4571
- #: app/features/mec/notifications.php:193
4572
- #: app/features/mec/notifications.php:269
4573
- #: app/features/mec/notifications.php:331
4574
- #: app/features/mec/notifications.php:403
4575
- #: app/features/mec/notifications.php:472
4576
- #: app/features/mec/notifications.php:520
 
4577
  msgid "Your website URL"
4578
  msgstr "Din nettstedsadresse (URL)"
4579
 
4580
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4581
- #: app/features/mec/notifications.php:194
4582
- #: app/features/mec/notifications.php:270
4583
- #: app/features/mec/notifications.php:332
4584
- #: app/features/mec/notifications.php:404
4585
- #: app/features/mec/notifications.php:473
4586
- #: app/features/mec/notifications.php:521
 
4587
  msgid "Your website description"
4588
  msgstr "Din nettstedsbeskrivelse"
4589
 
4590
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4591
- #: app/features/mec/notifications.php:195
4592
- #: app/features/mec/notifications.php:271
4593
- #: app/features/mec/notifications.php:333
4594
- #: app/features/mec/notifications.php:405
 
4595
  msgid "Event title"
4596
  msgstr "Arrangementtittel"
4597
 
4598
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4599
- #: app/features/mec/notifications.php:196
4600
- #: app/features/mec/notifications.php:272
4601
- #: app/features/mec/notifications.php:334
4602
- #: app/features/mec/notifications.php:406
 
4603
  #, fuzzy
4604
  #| msgid "Event Link"
4605
  msgid "Event link"
4606
  msgstr "Arrangemenslenke"
4607
 
4608
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4609
- #: app/features/mec/notifications.php:197
4610
- #: app/features/mec/notifications.php:467
4611
- #: app/features/mec/notifications.php:515
 
4612
  #, fuzzy
4613
  #| msgid "Start Date"
4614
  msgid "Event Start Date"
4615
  msgstr "Startdato"
4616
 
4617
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4618
- #: app/features/mec/notifications.php:198
4619
- #: app/features/mec/notifications.php:468
4620
- #: app/features/mec/notifications.php:516
 
4621
  #, fuzzy
4622
  #| msgid "End Date"
4623
  msgid "Event End Date"
4624
  msgstr "Sluttdato"
4625
 
4626
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4627
- #: app/features/mec/notifications.php:199
4628
- #: app/features/mec/notifications.php:273
4629
- #: app/features/mec/notifications.php:335
4630
- #: app/features/mec/notifications.php:407
 
4631
  #, fuzzy
4632
  #| msgid "Organizer name of booked event"
4633
  msgid "Speaker name of booked event"
4634
  msgstr "Arrangørnavnet av booket arrangement"
4635
 
4636
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4637
- #: app/features/mec/notifications.php:200
4638
- #: app/features/mec/notifications.php:274
4639
- #: app/features/mec/notifications.php:336
4640
- #: app/features/mec/notifications.php:408
 
4641
  msgid "Organizer name of booked event"
4642
  msgstr "Arrangørnavnet av booket arrangement"
4643
 
4644
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4645
- #: app/features/mec/notifications.php:201
4646
- #: app/features/mec/notifications.php:275
4647
- #: app/features/mec/notifications.php:337
4648
- #: app/features/mec/notifications.php:409
 
4649
  msgid "Organizer tel of booked event"
4650
  msgstr "Tlf til arrangør av booket arrangement"
4651
 
4652
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4653
- #: app/features/mec/notifications.php:202
4654
- #: app/features/mec/notifications.php:276
4655
- #: app/features/mec/notifications.php:338
4656
- #: app/features/mec/notifications.php:410
 
4657
  msgid "Organizer email of booked event"
4658
  msgstr "E-post til arrangør av booket arrangement"
4659
 
4660
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4661
- #: app/features/mec/notifications.php:203
4662
- #: app/features/mec/notifications.php:277
4663
- #: app/features/mec/notifications.php:339
4664
- #: app/features/mec/notifications.php:411
 
4665
  msgid "Location name of booked event"
4666
  msgstr "Stedsnavn til booket arrangement"
4667
 
4668
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4669
- #: app/features/mec/notifications.php:204
4670
- #: app/features/mec/notifications.php:278
4671
- #: app/features/mec/notifications.php:340
4672
- #: app/features/mec/notifications.php:412
 
4673
  msgid "Location address of booked event"
4674
  msgstr "Adresse til bestilt arrangement"
4675
 
4676
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4677
- #: app/features/mec/notifications.php:205
4678
- #: app/features/mec/notifications.php:279
4679
- #: app/features/mec/notifications.php:341
4680
- #: app/features/mec/notifications.php:413
 
4681
  #, fuzzy
4682
  #| msgid "Organizer name of booked event"
4683
  msgid "Featured image of booked event"
4684
  msgstr "Arrangørnavnet av booket arrangement"
4685
 
4686
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4687
- #: app/features/mec/notifications.php:343
 
4688
  msgid "Full Attendee info such as booking form data, name, email etc."
4689
  msgstr "Full deltager info som booking skjema data, navn, epost osv."
4690
 
4691
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4692
- #: app/features/mec/notifications.php:415
 
4693
  msgid "Invoice Link"
4694
  msgstr "Fakturalenke"
4695
 
4696
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4697
- #: app/features/mec/notifications.php:208
4698
- #: app/features/mec/notifications.php:282
4699
- #: app/features/mec/notifications.php:344
4700
- #: app/features/mec/notifications.php:416
 
4701
  msgid "Total Attendees"
4702
  msgstr "Antall deltakere"
4703
 
4704
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4705
- #: app/features/mec/notifications.php:210
4706
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4707
  msgid "Ticket name"
4708
  msgstr "Navn på billett"
4709
 
4710
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4711
- #: app/features/mec/notifications.php:211
4712
- #: app/features/mec/notifications.php:418
 
4713
  msgid "Ticket time"
4714
  msgstr "Billettidspunkt"
4715
 
4716
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4717
- #: app/features/mec/notifications.php:212
4718
- #: app/features/mec/notifications.php:419
 
4719
  msgid "Download ICS file"
4720
  msgstr "Last ned ICS-fil"
4721
 
4722
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4723
  msgid "Booking Verification"
4724
  msgstr "Bestillingsbekreftelse"
4725
 
4726
- #: app/features/mec/notifications.php:103
4727
  msgid "It sends to attendee email for verifying their booking/email."
4728
  msgstr "Send epost til deltagere for å verifisere deres booking/epost."
4729
 
4730
- #: app/features/mec/notifications.php:146
4731
  msgid "Email/Booking verification link."
4732
  msgstr "Epost/Booking bekreftelseslenke"
4733
 
4734
- #: app/features/mec/notifications.php:159
4735
  msgid "It sends to attendee after confirming the booking by admin."
4736
  msgstr "Den sender til deltagere etter bekreftelse bookingen av administrator."
4737
 
4738
- #: app/features/mec/notifications.php:177
4739
  msgid "Send One Single Email Only To First Attendee"
4740
  msgstr ""
4741
 
4742
- #: app/features/mec/notifications.php:206
4743
- #: app/features/mec/notifications.php:414
4744
  msgid "Booking cancellation link."
4745
  msgstr "Booking avbestillingskobling."
4746
 
4747
- #: app/features/mec/notifications.php:209
4748
- #, fuzzy
4749
- #| msgid "Amount (Per Ticket)"
4750
- msgid "Amount Tickets"
4751
- msgstr "Beløp (Per Billett)"
4752
-
4753
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4754
  #, fuzzy
4755
  #| msgid "Booking cancellation link."
4756
  msgid "Booking Cancellation"
4757
  msgstr "Booking avbestillingskobling."
4758
 
4759
- #: app/features/mec/notifications.php:223
4760
  #, fuzzy
4761
  #| msgid "Enable new event notification"
4762
  msgid "Enable cancellation notification"
4763
  msgstr "Aktiver nytt arrangement-varsel"
4764
 
4765
- #: app/features/mec/notifications.php:227
4766
  #, fuzzy
4767
  #| msgid "It sends to attendee after booking for notifying him/her."
4768
  msgid ""
@@ -4770,49 +4860,49 @@ msgid ""
4770
  "them."
4771
  msgstr "Sendes til deltager etter booking for å opplyse han/henne."
4772
 
4773
- #: app/features/mec/notifications.php:245
4774
- #: app/features/mec/notifications.php:439
4775
  #, fuzzy
4776
  #| msgid "Send the email to event organizer"
4777
  msgid "Send the email to admin"
4778
  msgstr "Send epost til arrangøren"
4779
 
4780
- #: app/features/mec/notifications.php:253
4781
  #, fuzzy
4782
  #| msgid "Send the email to event organizer"
4783
  msgid "Send the email to booking user"
4784
  msgstr "Send epost til arrangøren"
4785
 
4786
- #: app/features/mec/notifications.php:280
4787
- #: app/features/mec/notifications.php:342
4788
  msgid "Admin booking management link."
4789
  msgstr "Lenke til å Administrere booking."
4790
 
4791
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4792
  msgid "Admin"
4793
  msgstr ""
4794
 
4795
- #: app/features/mec/notifications.php:293
4796
  #, fuzzy
4797
  #| msgid "Enable booking notification"
4798
  msgid "Enable admin notification"
4799
  msgstr "Tillatt bestillingsvarsel"
4800
 
4801
- #: app/features/mec/notifications.php:297
4802
  msgid "It sends to admin to notify him/her that a new booking received."
4803
  msgstr ""
4804
  "Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
4805
 
4806
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4807
- #: app/libraries/notifications.php:548
4808
  msgid "Booking Reminder"
4809
  msgstr "Påminnelse angående din bestilling"
4810
 
4811
- #: app/features/mec/notifications.php:355
4812
  msgid "Enable booking reminder notification"
4813
  msgstr "Aktiver booking påminnelse"
4814
 
4815
- #: app/features/mec/notifications.php:361
4816
  #, php-format
4817
  msgid ""
4818
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4823,24 +4913,24 @@ msgstr ""
4823
  "sende påmindelser. Vennligst noter at du burde kalle på denne filen %s eller "
4824
  "vill den sende påmindelser flere ganger."
4825
 
4826
- #: app/features/mec/notifications.php:361
4827
  msgid "only once per day"
4828
  msgstr "bare en gang per dag"
4829
 
4830
- #: app/features/mec/notifications.php:379
4831
  msgid "Days"
4832
  msgstr "Dager"
4833
 
4834
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4835
  #: app/libraries/main.php:583
4836
  msgid "New Event"
4837
  msgstr "Nytt Arrangement"
4838
 
4839
- #: app/features/mec/notifications.php:433
4840
  msgid "Enable new event notification"
4841
  msgstr "Aktiver nytt arrangement-varsel"
4842
 
4843
- #: app/features/mec/notifications.php:443
4844
  msgid ""
4845
  "It sends after adding a new event from frontend event submission or from "
4846
  "website backend."
@@ -4848,47 +4938,47 @@ msgstr ""
4848
  "Sender etter ett nytt arrangement fra event registrering eller fra "
4849
  "nettsidens bakside."
4850
 
4851
- #: app/features/mec/notifications.php:465
4852
- #: app/features/mec/notifications.php:513
4853
  msgid "Title of event"
4854
  msgstr "Tittel på arrangement"
4855
 
4856
- #: app/features/mec/notifications.php:466
4857
- #: app/features/mec/notifications.php:514
4858
  #, fuzzy
4859
  #| msgid "Title of event"
4860
  msgid "Link of event"
4861
  msgstr "Tittel på arrangement"
4862
 
4863
- #: app/features/mec/notifications.php:469
4864
- #: app/features/mec/notifications.php:517
4865
  msgid "Status of event"
4866
  msgstr "Status på arrangement"
4867
 
4868
- #: app/features/mec/notifications.php:470
4869
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4870
  #: app/features/mec/settings.php:738
4871
  msgid "Event Note"
4872
  msgstr "Arrangementsnotat"
4873
 
4874
- #: app/features/mec/notifications.php:474
4875
- #: app/features/mec/notifications.php:522
4876
  msgid "Admin events management link."
4877
  msgstr "Lenge til arrangementsadministrasjon"
4878
 
4879
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4880
  #, fuzzy
4881
  #| msgid "The event published."
4882
  msgid "User Event Publishing"
4883
  msgstr "Arrangement er publisert."
4884
 
4885
- #: app/features/mec/notifications.php:487
4886
  #, fuzzy
4887
  #| msgid "Enable new event notification"
4888
  msgid "Enable user event publishing notification"
4889
  msgstr "Aktiver nytt arrangement-varsel"
4890
 
4891
- #: app/features/mec/notifications.php:491
4892
  #, fuzzy
4893
  #| msgid ""
4894
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5071,7 +5161,7 @@ msgid "You can enable/disable Schema scripts"
5071
  msgstr ""
5072
 
5073
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5074
- #: app/libraries/main.php:5272
5075
  msgid "Weekdays"
5076
  msgstr "Ukedager"
5077
 
@@ -6328,12 +6418,12 @@ msgstr "f.eks. Ola Nordmann"
6328
  msgid "eg. https://webnus.net"
6329
  msgstr "F.eks. https://webnus.net"
6330
 
6331
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6332
- #: app/skins/single.php:856
6333
  msgid "Other Organizers"
6334
  msgstr "Andre Arrangører"
6335
 
6336
- #: app/features/organizers.php:313
6337
  msgid ""
6338
  "You can select extra organizers in addition to main organizer if you like."
6339
  msgstr ""
@@ -6354,7 +6444,7 @@ msgstr "Din booking ble ikke kansellert."
6354
  msgid "#"
6355
  msgstr "#"
6356
 
6357
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6358
  msgid "Status"
6359
  msgstr "Status"
6360
 
@@ -6389,7 +6479,7 @@ msgstr "<i class=\"mec-sl-eye\"></i> %s"
6389
  msgid "No bookings found!"
6390
  msgstr "Ingen bestillinger funnet!"
6391
 
6392
- #: app/features/search.php:87 app/libraries/main.php:5262
6393
  msgid "label"
6394
  msgstr "etikett"
6395
 
@@ -6416,62 +6506,80 @@ msgid "No search result."
6416
  msgstr ""
6417
 
6418
  #: app/features/search_bar/search_result.php:11
6419
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6420
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6421
- #: app/skins/single.php:160 app/skins/single.php:747
6422
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6423
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6424
  msgid "All of the day"
6425
  msgstr "Hele dagen"
6426
 
6427
- #: app/features/speakers.php:110 app/features/speakers.php:179
6428
- #: app/features/speakers.php:255
6429
  msgid "Job Title"
6430
  msgstr "Yrkestittel"
6431
 
6432
- #: app/features/speakers.php:113 app/features/speakers.php:180
6433
  msgid "Insert speaker job title."
6434
  msgstr "Sette inn instruktørstilling."
6435
 
6436
- #: app/features/speakers.php:121 app/features/speakers.php:184
6437
  msgid "Insert speaker phone number."
6438
  msgstr "Sette inn instruktørens telefonnummer."
6439
 
6440
- #: app/features/speakers.php:129 app/features/speakers.php:188
6441
  msgid "Insert speaker email address."
6442
  msgstr "Sette inn instruktørens epost."
6443
 
6444
- #: app/features/speakers.php:134 app/features/speakers.php:191
6445
  msgid "Facebook Page"
6446
  msgstr "Facebook-side"
6447
 
6448
- #: app/features/speakers.php:137 app/features/speakers.php:192
6449
  msgid "Insert URL of Facebook Page"
6450
  msgstr "Sett inn nettadressen til Facebook-siden"
6451
 
6452
- #: app/features/speakers.php:142 app/features/speakers.php:195
6453
  msgid "Instagram"
6454
  msgstr ""
6455
 
6456
- #: app/features/speakers.php:145 app/features/speakers.php:196
6457
  #, fuzzy
6458
  #| msgid "Insert URL of Twitter Page"
6459
  msgid "Insert URL of Instagram"
6460
  msgstr "Sett inn nettadressen til Twitter-siden"
6461
 
6462
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6463
  msgid "Twitter Page"
6464
  msgstr "Twitter-side"
6465
 
6466
- #: app/features/speakers.php:153 app/features/speakers.php:200
6467
  msgid "Insert URL of Twitter Page"
6468
  msgstr "Sett inn nettadressen til Twitter-siden"
6469
 
6470
- #: app/features/speakers.php:315
 
 
 
 
 
 
6471
  msgid "Sorry, You must insert speaker name!"
6472
  msgstr ""
6473
 
6474
- #: app/features/speakers.php:364
6475
  msgid ""
6476
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6477
  "section and speaker widget section!"
@@ -6629,31 +6737,31 @@ msgstr "Tidstabell Visning"
6629
  msgid "Tile View"
6630
  msgstr "Tidstabell Visning"
6631
 
6632
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6633
  msgid "SU"
6634
  msgstr "SØN"
6635
 
6636
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6637
  msgid "MO"
6638
  msgstr "MAN"
6639
 
6640
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6641
  msgid "TU"
6642
  msgstr "TIRS"
6643
 
6644
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6645
  msgid "WE"
6646
  msgstr "ONS"
6647
 
6648
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6649
  msgid "TH"
6650
  msgstr "TORS"
6651
 
6652
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6653
  msgid "FR"
6654
  msgstr "FRE"
6655
 
6656
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6657
  msgid "SA"
6658
  msgstr "LØR"
6659
 
@@ -6918,169 +7026,169 @@ msgstr "Forespørselen er ugyldig."
6918
  msgid "iCal export stopped!"
6919
  msgstr "iCal eksport stoppet!"
6920
 
6921
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6922
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6923
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6924
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6925
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6926
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6927
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6928
  msgid "Sort"
6929
  msgstr "Sortere"
6930
 
6931
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6932
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6933
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6934
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6935
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6936
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6937
  msgid "Required Field"
6938
  msgstr "Obligatorisk skjemafelt"
6939
 
6940
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6941
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6942
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6943
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6944
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6945
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6946
  msgid "Insert a label for this field"
6947
  msgstr "Sett inn en tittel for dette feltet"
6948
 
6949
- #: app/libraries/main.php:2958
6950
  msgid "HTML and shortcode are allowed."
6951
  msgstr "HTML og kortkoder er tillatt."
6952
 
6953
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
6954
- #: app/libraries/main.php:3089
6955
  msgid "Option"
6956
  msgstr "Alternativ"
6957
 
6958
- #: app/libraries/main.php:3123
6959
  #, php-format
6960
  msgid "Instead of %s, the page title with a link will be show."
6961
  msgstr "Istedenfor %s, vil sidetittelen med en lenke bli vist."
6962
 
6963
- #: app/libraries/main.php:3125
6964
  msgid "Agreement Page"
6965
  msgstr "Avtale Side"
6966
 
6967
- #: app/libraries/main.php:3136
6968
  msgid "Checked by default"
6969
  msgstr "Avmerket som standard"
6970
 
6971
- #: app/libraries/main.php:3137
6972
  msgid "Unchecked by default"
6973
  msgstr "Ikke avkrysset somstandard"
6974
 
6975
- #: app/libraries/main.php:3160
6976
  msgid "Insert a label for this option"
6977
  msgstr "Sett inn en etikett for dette alternativet"
6978
 
6979
- #: app/libraries/main.php:3175
6980
  msgid "Free"
6981
  msgstr "Gratis"
6982
 
6983
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
6984
  #, fuzzy
6985
  #| msgid "M.E. Calendar"
6986
  msgid "M.E. Calender"
6987
  msgstr "ME Kalender"
6988
 
6989
- #: app/libraries/main.php:3936
6990
  #, php-format
6991
  msgid "Copy of %s"
6992
  msgstr "Kopi av %s"
6993
 
6994
- #: app/libraries/main.php:4651
6995
  msgid "Booked an event."
6996
  msgstr "Bestilte ett arrangement."
6997
 
6998
- #: app/libraries/main.php:4692
6999
  #, php-format
7000
  msgid "%s booked %s event."
7001
  msgstr "%s bestilt %s arrangement."
7002
 
7003
- #: app/libraries/main.php:5257
7004
  msgid "Taxonomies"
7005
  msgstr "Taxonomies"
7006
 
7007
- #: app/libraries/main.php:5259
7008
  msgid "Category Plural Label"
7009
  msgstr "Kategori Fler Etikett"
7010
 
7011
- #: app/libraries/main.php:5260
7012
  msgid "Category Singular Label"
7013
  msgstr "Kategori Singel Tittel"
7014
 
7015
- #: app/libraries/main.php:5261
7016
  msgid "Label Plural Label"
7017
  msgstr "Etiketter Flertall"
7018
 
7019
- #: app/libraries/main.php:5262
7020
  msgid "Label Singular Label"
7021
  msgstr "Etiketter Entall"
7022
 
7023
- #: app/libraries/main.php:5263
7024
  msgid "Location Plural Label"
7025
  msgstr "Lokasjon Flertall Etiketter"
7026
 
7027
- #: app/libraries/main.php:5264
7028
  msgid "Location Singular Label"
7029
  msgstr "Plasseringen Entall Etikett"
7030
 
7031
- #: app/libraries/main.php:5265
7032
  msgid "Organizer Plural Label"
7033
  msgstr "Arrangør Flertall etikett"
7034
 
7035
- #: app/libraries/main.php:5266
7036
  msgid "Organizer Singular Label"
7037
  msgstr "Arrangør Enkel Etikett"
7038
 
7039
- #: app/libraries/main.php:5267
7040
  msgid "Speaker Plural Label"
7041
  msgstr "Instruktør/Foredragsholder flere etiketter"
7042
 
7043
- #: app/libraries/main.php:5268
7044
  msgid "Speaker Singular Label"
7045
  msgstr "Instruktør/Foredragsholder enkelt etikett"
7046
 
7047
- #: app/libraries/main.php:5274
7048
  msgid "Sunday abbreviation"
7049
  msgstr "Forkortelser på søndager"
7050
 
7051
- #: app/libraries/main.php:5275
7052
  msgid "Monday abbreviation"
7053
  msgstr "Mandag forkortelse"
7054
 
7055
- #: app/libraries/main.php:5276
7056
  msgid "Tuesday abbreviation"
7057
  msgstr "Tirsdag forkortelse"
7058
 
7059
- #: app/libraries/main.php:5277
7060
  msgid "Wednesday abbreviation"
7061
  msgstr "Onsdag forkortelse"
7062
 
7063
- #: app/libraries/main.php:5278
7064
  msgid "Thursday abbreviation"
7065
  msgstr "Torsdag forkortelse"
7066
 
7067
- #: app/libraries/main.php:5279
7068
  msgid "Friday abbreviation"
7069
  msgstr "Fredag forkortelse"
7070
 
7071
- #: app/libraries/main.php:5280
7072
  msgid "Saturday abbreviation"
7073
  msgstr "Lørdag forkortelse"
7074
 
7075
- #: app/libraries/main.php:5284
7076
  msgid "Others"
7077
  msgstr "Øvrige"
7078
 
7079
- #: app/libraries/main.php:5286
7080
  msgid "Booking Success Message"
7081
  msgstr "Melding ved vellykket bestilling"
7082
 
7083
- #: app/libraries/main.php:5286
7084
  msgid ""
7085
  "Thanks for your booking. Your tickets booked, booking verification might be "
7086
  "needed, please check your email."
@@ -7088,17 +7196,17 @@ msgstr ""
7088
  "Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
7089
  "bekreftelse. Vennligst sjekk din epost."
7090
 
7091
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7092
  msgid "Register Button"
7093
  msgstr "Registreringsknapp"
7094
 
7095
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7096
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7097
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7098
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7099
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7100
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7101
- #: app/skins/single.php:771 app/skins/single/default.php:255
7102
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7103
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7104
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7109,11 +7217,11 @@ msgstr "Registreringsknapp"
7109
  msgid "REGISTER"
7110
  msgstr "Registrere"
7111
 
7112
- #: app/libraries/main.php:5288
7113
  msgid "View Detail Button"
7114
  msgstr "Se Detalj Knapp"
7115
 
7116
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7117
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7118
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7119
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7124,87 +7232,87 @@ msgstr "Se Detalj Knapp"
7124
  msgid "View Detail"
7125
  msgstr "Se detaljer"
7126
 
7127
- #: app/libraries/main.php:5289
7128
  msgid "Event Detail Button"
7129
  msgstr "Knapp for arrangementsdetaljer"
7130
 
7131
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7132
  msgid "Event Detail"
7133
  msgstr "Arrangement Detaljer"
7134
 
7135
- #: app/libraries/main.php:5291
7136
  msgid "More Info Link"
7137
  msgstr "Mer Info Lenke"
7138
 
7139
- #: app/libraries/main.php:5294
7140
  msgid "Ticket (Singular)"
7141
  msgstr "Billett (Singel)"
7142
 
7143
- #: app/libraries/main.php:5295
7144
  msgid "Tickets (Plural)"
7145
  msgstr "Billetter (Flertall)"
7146
 
7147
- #: app/libraries/main.php:5381
7148
  msgid "EventON"
7149
  msgstr "EventON"
7150
 
7151
- #: app/libraries/main.php:5382
7152
  msgid "The Events Calendar"
7153
  msgstr "Aktivitetskalenderen"
7154
 
7155
- #: app/libraries/main.php:5383
7156
  msgid "Events Schedule WP Plugin"
7157
  msgstr "Arrangement Planlegging WP Plugin"
7158
 
7159
- #: app/libraries/main.php:5384
7160
  msgid "Calendarize It"
7161
  msgstr "HOP Kalender"
7162
 
7163
- #: app/libraries/main.php:5385
7164
  #, fuzzy
7165
  #| msgid "Event Speakers"
7166
  msgid "Event Espresso"
7167
  msgstr "Event høyttalere"
7168
 
7169
- #: app/libraries/main.php:5386
7170
  #, fuzzy
7171
  #| msgid "Event Repeating"
7172
  msgid "Events Manager (Recurring)"
7173
  msgstr "Gjentakende arrangement"
7174
 
7175
- #: app/libraries/main.php:5387
7176
  #, fuzzy
7177
  #| msgid "Modern Events Calendar (Lite)"
7178
  msgid "Events Manager (Single)"
7179
  msgstr "Kalender for moderne arrangementer (lite)"
7180
 
7181
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7182
  msgid "Confirmed"
7183
  msgstr "Bekreftet"
7184
 
7185
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7186
  msgid "Rejected"
7187
  msgstr "Avvist"
7188
 
7189
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7190
  msgid "Pending"
7191
  msgstr "Venter"
7192
 
7193
- #: app/libraries/main.php:5511
7194
  msgid "Waiting"
7195
  msgstr "Ventende"
7196
 
7197
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7198
  msgid "Skin controller does not exist."
7199
  msgstr "Skin kontroller eksisterer ikke."
7200
 
7201
- #: app/libraries/main.php:5830
7202
  #, fuzzy
7203
  #| msgid "Sold out!"
7204
  msgid "Sold Out"
7205
  msgstr "Utsolgt!"
7206
 
7207
- #: app/libraries/main.php:5838
7208
  #, fuzzy
7209
  #| msgid "Ticket"
7210
  msgid "Last Few Tickets"
@@ -7214,58 +7322,60 @@ msgstr "Billett"
7214
  msgid "Please verify your email."
7215
  msgstr "Vennligst bekrefte din E-post."
7216
 
7217
- #: app/libraries/notifications.php:142
7218
  msgid "Your booking is received."
7219
  msgstr "Din bestilling er mottatt."
7220
 
7221
- #: app/libraries/notifications.php:249
7222
  msgid "Your booking is confirmed."
7223
  msgstr "Din Bestilling er bekreftet."
7224
 
7225
- #: app/libraries/notifications.php:391
7226
  #, fuzzy
7227
  #| msgid "Your booking cannot be canceled."
7228
  msgid "booking canceled."
7229
  msgstr "Din booking ble ikke kansellert."
7230
 
7231
- #: app/libraries/notifications.php:466
7232
  msgid "A new booking is received."
7233
  msgstr "En ny bestilling er mottatt."
7234
 
7235
- #: app/libraries/notifications.php:657
7236
  msgid "A new event is added."
7237
  msgstr "Ett nytt arrangement er lagt til."
7238
 
7239
- #: app/libraries/notifications.php:726
7240
  #, fuzzy
7241
  #| msgid "The event published."
7242
  msgid "Your event is published."
7243
  msgstr "Arrangement er publisert."
7244
 
7245
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7246
- #: app/libraries/notifications.php:964
7247
  msgid "to"
7248
  msgstr "til"
7249
 
7250
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7251
  msgid "+ Add to Google Calendar"
7252
  msgstr "+ Legg til i Google Kalender"
7253
 
7254
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7255
  msgid "+ iCal export"
7256
  msgstr "+ iCal eksport"
7257
 
7258
- #: app/libraries/notifications.php:1043
7259
  msgid "Yes"
7260
  msgstr "Ja"
7261
 
7262
- #: app/libraries/notifications.php:1043
7263
  msgid "No"
7264
  msgstr "Nei"
7265
 
7266
- #: app/libraries/skins.php:1000
7267
- msgid "none"
7268
- msgstr ""
 
 
7269
 
7270
  #: app/modules/attendees-list/details.php:36
7271
  msgid "Event Attendees"
@@ -7302,12 +7412,18 @@ msgstr ""
7302
  msgid "Free Booking"
7303
  msgstr "Book nå, betal senere"
7304
 
 
 
 
 
 
 
7305
  #: app/modules/booking/steps/form.php:165
7306
  msgid "Fill other attendees information like the first form."
7307
  msgstr "Fyll ut andre deltakere informasjon som det første skjemaet."
7308
 
7309
  #: app/modules/booking/steps/form.php:179
7310
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7311
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7312
  msgid "Next"
7313
  msgstr "Neste"
@@ -7320,17 +7436,17 @@ msgstr "Takk for din bestilling."
7320
  msgid "Book Event"
7321
  msgstr "Meld deg på"
7322
 
7323
- #: app/modules/booking/steps/tickets.php:44
7324
  #, php-format
7325
  msgid "Available %s: <span>%s</span>"
7326
  msgstr "Tilgjengelig %s: <span>%s</span>"
7327
 
7328
- #: app/modules/booking/steps/tickets.php:48
7329
  #, php-format
7330
- msgid "The %s ticket sales has stoped!"
7331
  msgstr ""
7332
 
7333
- #: app/modules/booking/steps/tickets.php:49
7334
  #, php-format
7335
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7336
  msgstr ""
@@ -7352,7 +7468,7 @@ msgstr "Adresse fra ..."
7352
  msgid "Get Directions"
7353
  msgstr "Få veibeskrivelse"
7354
 
7355
- #: app/modules/links/details.php:17 app/skins/single.php:455
7356
  msgid "Share this event"
7357
  msgstr "Del arrangementet"
7358
 
@@ -7379,7 +7495,7 @@ msgstr "Neste Forekomst"
7379
  msgid "Go to occurrence page"
7380
  msgstr "Gå til gjentagende side"
7381
 
7382
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7383
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7384
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7385
  msgid "Time"
@@ -7509,27 +7625,27 @@ msgstr "Ingen hendelser"
7509
  msgid "Home"
7510
  msgstr ""
7511
 
7512
- #: app/skins/single.php:538 app/skins/single/default.php:51
7513
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7514
  #: app/skins/single/modern.php:265
7515
  msgid "Sold out!"
7516
  msgstr "Utsolgt!"
7517
 
7518
- #: app/skins/single.php:816 app/skins/single.php:871
7519
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7520
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7521
  #: app/skins/single/modern.php:44
7522
  msgid "Phone"
7523
  msgstr "Telefon"
7524
 
7525
- #: app/skins/single.php:830 app/skins/single.php:885
7526
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7527
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7528
  #: app/skins/single/modern.php:58
7529
  msgid "Website"
7530
  msgstr "Nettsted"
7531
 
7532
- #: app/skins/single.php:955
7533
  msgid "Speakers:"
7534
  msgstr "Høyttalere:"
7535
 
@@ -8134,9 +8250,6 @@ msgstr "http://webnus.net"
8134
  #~ msgid "Google+"
8135
  #~ msgstr "Google+"
8136
 
8137
- #~ msgid "Insert URL of Google+"
8138
- #~ msgstr "Sett inn nettadressen til Google +"
8139
-
8140
  #~ msgid "Google Plus"
8141
  #~ msgstr "Google Plus"
8142
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
294
  msgid "Add New Event"
295
  msgstr "Legg til nytt arrangement"
296
 
297
+ #: app/features/events.php:161 app/features/ix.php:3889
298
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
299
  msgid "No events found!"
300
  msgstr "Ingen hendelser funnet!"
329
  #: app/features/mec/meta_boxes/search_form.php:575
330
  #: app/features/mec/meta_boxes/search_form.php:672
331
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
332
+ #: app/features/search.php:67 app/libraries/main.php:5278
333
+ #: app/libraries/skins.php:858 app/skins/single.php:566
334
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
335
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
336
  #: app/skins/single/modern.php:113
339
 
340
  #: app/features/events.php:183 app/features/events.php:3275
341
  #: app/features/fes/form.php:757 app/features/mec.php:402
342
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
343
  msgid "Categories"
344
  msgstr "Kategorier"
345
 
428
  msgstr "Gjentakende arrangement"
429
 
430
  #: app/features/events.php:333 app/features/events.php:1286
431
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
432
  msgid "Hourly Schedule"
433
  msgstr "Timeplan"
434
 
446
 
447
  #: app/features/events.php:336 app/features/events.php:3322
448
  #: app/features/events.php:3513 app/features/events.php:3555
449
+ #: app/features/ix.php:3510 app/features/ix.php:3551
450
  #: app/features/mec/meta_boxes/display_options.php:960
451
  #: app/features/mec/meta_boxes/search_form.php:45
452
  #: app/features/mec/meta_boxes/search_form.php:107
463
  #: app/features/organizers.php:58 app/features/organizers.php:204
464
  #: app/features/organizers.php:260 app/features/organizers.php:262
465
  #: app/features/organizers.php:271 app/features/search.php:75
466
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
467
+ #: app/skins/single.php:812 app/skins/single/default.php:217
468
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
469
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
470
  msgid "Organizer"
471
  msgstr "Arrangør"
472
 
473
  #: app/features/events.php:337 app/features/events.php:1172
474
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
475
+ #: app/skins/single.php:589 app/skins/single/default.php:126
476
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
477
  #: app/skins/single/modern.php:208
478
  msgid "Cost"
490
  #: app/features/events.php:3802 app/features/fes.php:223
491
  #: app/features/fes/form.php:689 app/features/labels.php:178
492
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
493
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
494
  #: app/modules/booking/steps/form.php:37
495
  msgid "Name"
496
  msgstr "Navn"
500
  #: app/features/fes.php:223 app/features/fes/form.php:685
501
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
502
  #: app/features/organizers.php:111 app/features/organizers.php:152
503
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
504
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
505
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
506
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
507
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
508
+ #: app/skins/single.php:884 app/skins/single/default.php:234
509
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
510
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
511
  msgid "Email"
518
  #: app/features/events.php:491 app/features/events.php:497
519
  #: app/features/events.php:3323 app/features/events.php:3513
520
  #: app/features/events.php:3555 app/features/fes/form.php:247
521
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
522
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
523
  #: app/features/mec/dashboard.php:400
524
  #: app/features/mec/meta_boxes/display_options.php:48
525
  #: app/features/mec/meta_boxes/display_options.php:228
556
  #: app/features/events.php:583 app/features/events.php:588
557
  #: app/features/events.php:3324 app/features/events.php:3513
558
  #: app/features/events.php:3555 app/features/fes/form.php:287
559
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
560
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
561
  #: app/features/mec/dashboard.php:401
562
  msgid "End Date"
563
  msgstr "Sluttdato"
641
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
642
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
643
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
644
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
645
+ #: app/features/mec/notifications.php:277
646
+ #: app/features/mec/notifications.php:380
647
+ #: app/features/mec/notifications.php:486
648
+ #: app/features/mec/notifications.php:587
649
+ #: app/features/mec/notifications.php:598
650
+ #: app/features/mec/notifications.php:704
651
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
652
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
653
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
654
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
664
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
665
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
666
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
667
+ #: app/skins/single.php:674 app/skins/single/default.php:141
668
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
669
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
670
  msgid "Read More"
847
 
848
  #: app/features/events.php:1168 app/features/events.php:3513
849
  #: app/features/events.php:3555 app/features/fes/form.php:727
850
+ #: app/features/ix.php:3510 app/features/ix.php:3551
851
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
852
  #: app/widgets/single.php:103
853
  msgid "Event Cost"
854
  msgstr "Kostnad for arrangementet"
866
  #: app/features/events.php:1204 app/features/events.php:2541
867
  #: app/features/fes.php:223 app/features/mec/booking.php:491
868
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
869
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
870
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
871
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
872
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
873
  msgid "Date"
906
  #: app/features/events.php:1437 app/features/events.php:2322
907
  #: app/features/events.php:2369 app/features/events.php:3319
908
  #: app/features/events.php:3513 app/features/events.php:3555
909
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
910
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
911
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
912
  msgid "Title"
913
  msgstr "Tittel"
920
  #: app/features/events.php:2357 app/features/events.php:2399
921
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
922
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
923
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
924
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
925
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
926
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
927
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
928
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
929
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
930
  msgid "Remove"
931
  msgstr "Fjern"
932
 
954
  #: app/features/events.php:1445 app/features/fes/form.php:851
955
  #: app/features/mec.php:410 app/features/mec/modules.php:52
956
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
957
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
958
  #: app/modules/speakers/details.php:18
959
  msgid "Speakers"
960
  msgstr "Foredragsholdere"
971
  msgstr "Arrangemenslenker"
972
 
973
  #: app/features/events.php:1479 app/features/events.php:1485
974
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
975
  msgid "Event Link"
976
  msgstr "Arrangemenslenke"
977
 
998
  msgstr ""
999
 
1000
  #: app/features/events.php:1495 app/features/events.php:1508
1001
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
1002
+ #: app/skins/single.php:673 app/skins/single/default.php:140
1003
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
1004
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
1005
  #: app/widgets/single.php:107
1032
 
1033
  #: app/features/events.php:1596 app/features/events.php:1849
1034
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1035
+ #: app/modules/booking/steps/tickets.php:40
1036
  #: app/skins/available_spot/tpl.php:160
1037
  msgid "Unlimited"
1038
  msgstr "Ubegrenset"
1069
  msgstr ""
1070
 
1071
  #: app/features/events.php:1653 app/libraries/book.php:60
1072
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1073
  msgid "Tickets"
1074
  msgstr "Billetter"
1075
 
1096
 
1097
  #: app/features/events.php:1680 app/features/events.php:1955
1098
  #: app/features/events.php:3513 app/features/events.php:3555
1099
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1100
  msgid "Start Time"
1101
  msgstr "Starttid"
1102
 
1103
  #: app/features/events.php:1739 app/features/events.php:1985
1104
  #: app/features/events.php:3513 app/features/events.php:3555
1105
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1106
  msgid "End Time"
1107
  msgstr "Sluttidspunkt"
1108
 
1134
  msgid "Available Tickets"
1135
  msgstr "Tilgjengelige Billetter"
1136
 
1137
+ #: app/features/events.php:1853 app/features/events.php:2068
1138
  #, fuzzy
1139
  #| msgid "Maximum Per Ticket"
1140
  msgid "Minimum Ticket e.g. 3"
1141
  msgstr "Maks Per billett"
1142
 
1143
+ #: app/features/events.php:1856 app/features/events.php:2071
1144
  #, fuzzy
1145
  #| msgid "Maximum Per Ticket"
1146
  msgid "MinimumTicket"
1147
  msgstr "Maks Per billett"
1148
 
1149
+ #: app/features/events.php:1858 app/features/events.php:2073
1150
  msgid "Set a number for the minimum ticket reservation"
1151
  msgstr ""
1152
 
1153
+ #: app/features/events.php:1866 app/features/events.php:2081
1154
  msgid "e.g. 0"
1155
  msgstr ""
1156
 
1157
+ #: app/features/events.php:1868 app/features/events.php:2083
1158
  #, fuzzy
1159
  #| msgid "Days"
1160
  msgid "Day"
1161
  msgstr "Dager"
1162
 
1163
+ #: app/features/events.php:1869 app/features/events.php:2084
1164
  msgid "Hour"
1165
  msgstr ""
1166
 
1167
+ #: app/features/events.php:1871 app/features/events.php:2086
1168
  #, php-format
1169
  msgid "Stop selling ticket %s before event start."
1170
  msgstr ""
1188
  #: app/features/mec/meta_boxes/search_form.php:610
1189
  #: app/features/mec/meta_boxes/search_form.php:707
1190
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1191
+ #: app/libraries/skins.php:988
1192
  msgid "Label"
1193
  msgstr "Etikett"
1194
 
1254
  msgstr "Maks per billett. La det stå tomt for ubegrenset."
1255
 
1256
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1257
+ #: app/libraries/main.php:2767
1258
  #, fuzzy
1259
  #| msgid "Name"
1260
  msgid "MEC Name"
1261
  msgstr "Navn"
1262
 
1263
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1264
+ #: app/libraries/main.php:2796
1265
  #, fuzzy
1266
  #| msgid "Email"
1267
  msgid "MEC Email"
1268
  msgstr "E-post"
1269
 
1270
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1271
+ #: app/libraries/main.php:2737
1272
  msgid "Text"
1273
  msgstr "Tekst"
1274
 
1275
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1276
  #: app/features/organizers.php:103 app/features/organizers.php:148
1277
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1278
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1279
  msgid "Tel"
1280
  msgstr "Tlf"
1281
 
1282
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1283
+ #: app/libraries/main.php:2855
1284
  msgid "File"
1285
  msgstr ""
1286
 
1287
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1288
+ #: app/libraries/main.php:2942
1289
  msgid "Textarea"
1290
  msgstr "Tekstområde"
1291
 
1292
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1293
+ #: app/libraries/main.php:2995
1294
  msgid "Checkboxes"
1295
  msgstr "Avmerkingsbokser"
1296
 
1297
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1298
+ #: app/libraries/main.php:3039
1299
  msgid "Radio Buttons"
1300
  msgstr "Radioknapper"
1301
 
1375
  #: app/features/mec/meta_boxes/search_form.php:696
1376
  #: app/features/mec/meta_boxes/search_form.php:703
1377
  #: app/features/mec/meta_boxes/search_form.php:710
1378
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1379
  msgid "Dropdown"
1380
  msgstr "Nedtrekksmeny"
1381
 
1382
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1383
+ #: app/libraries/main.php:3130
1384
  msgid "Agreement"
1385
  msgstr "Avtalen"
1386
 
1387
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1388
+ #: app/libraries/main.php:2971
1389
  msgid "Paragraph"
1390
  msgstr "Avsnitt"
1391
 
1414
  msgstr "Deltagerbegrensning"
1415
 
1416
  #: app/features/events.php:3321 app/features/events.php:3513
1417
+ #: app/features/events.php:3555 app/features/ix.php:3510
1418
+ #: app/features/ix.php:3551 app/features/locations.php:58
1419
  #: app/features/locations.php:230 app/features/locations.php:287
1420
  #: app/features/locations.php:289 app/features/locations.php:298
1421
  #: app/features/mec/meta_boxes/display_options.php:959
1432
  #: app/features/mec/meta_boxes/search_form.php:679
1433
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1434
  #: app/features/search.php:71 app/libraries/main.php:2236
1435
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1436
+ #: app/skins/single.php:493 app/skins/single.php:924
1437
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1438
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1439
  #: app/skins/single/modern.php:97
1474
  msgstr "Dupliser"
1475
 
1476
  #: app/features/events.php:3513 app/features/events.php:3555
1477
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1478
  #: app/features/labels.php:177 app/features/locations.php:229
1479
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1480
  msgid "ID"
1481
  msgstr "ID"
1482
 
1483
  #: app/features/events.php:3513 app/features/events.php:3555
1484
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1485
  msgid "Link"
1486
  msgstr "Lenke"
1487
 
1497
 
1498
  #: app/features/events.php:3808 app/features/fes.php:223
1499
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1500
+ #: app/libraries/main.php:5312
1501
  msgid "Ticket"
1502
  msgstr "Billett"
1503
 
1673
 
1674
  #: app/features/fes/form.php:783 app/features/labels.php:61
1675
  #: app/features/labels.php:221 app/features/mec.php:403
1676
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1677
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1678
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1679
  #: app/skins/single/modern.php:223
1680
  msgid "Labels"
1754
  msgid "The events are imported successfully!"
1755
  msgstr "Hendelser er vellykket importert!"
1756
 
1757
+ #: app/features/ix.php:943
1758
  msgid "Third Party plugin is not installed and activated!"
1759
  msgstr "Tredjeparts plugin er ikke installert og aktivert!"
1760
 
1761
+ #: app/features/ix.php:966
1762
  msgid "Third Party plugin is invalid!"
1763
  msgstr "Tredjeparts plugin er ugyldig!"
1764
 
1765
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1766
  msgid "Both of API key and Calendar ID are required!"
1767
  msgstr "Både API nøkkel og Kalender ID er påkrevd!"
1768
 
1769
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1770
  msgid "Please select some events to import!"
1771
  msgstr "Vennligst velg data som skal importeres!"
1772
 
1773
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1774
  msgid "Both of API key and Group URL are required!"
1775
  msgstr "Både API-nøkkel og gruppe-URL kreves!"
1776
 
1777
+ #: app/features/ix.php:3433
1778
  msgid "Check at Meetup"
1779
  msgstr "Sjekk på Meetup"
1780
 
1781
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1782
  msgid "Organizer Tel"
1783
  msgstr "Tlf til arrangør"
1784
 
1785
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1786
  msgid "Organizer Email"
1787
  msgstr "Arrangør e-post"
1788
 
1789
+ #: app/features/ix.php:3632
1790
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1791
  msgstr "Alle Klient ID, Klient Hemmelig Kode og Kalender-ID er påkrevd!"
1792
 
1793
+ #: app/features/ix.php:3655
1794
  #, php-format
1795
  msgid "All seems good! Please click %s for authenticating your app."
1796
  msgstr "Alt ser bra ut! Klikk %s for å godkjenne din app."
1797
 
1798
+ #: app/features/ix.php:3709
1799
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1800
  msgstr "Alle felt, klientapp, klienthemmelig og kalender-ID er påkrevd!"
1801
 
1802
+ #: app/features/ix.php:3825
1803
  #, php-format
1804
  msgid "%s events added to Google Calendar successfully."
1805
  msgstr "%s hendelser lagt til i Google Kalender vellykket."
1806
 
1807
+ #: app/features/ix.php:3826
1808
  #, php-format
1809
  msgid "%s previously added events get updated."
1810
  msgstr "%s tidligere hendelser lagt til blir oppdatert."
1811
 
1812
+ #: app/features/ix.php:3827
1813
  #, php-format
1814
  msgid "%s events failed to add for following reasons: %s"
1815
  msgstr "%s hendelser kunne ikke tilføyes av følgende grunner: %s"
1816
 
1817
+ #: app/features/ix.php:3859
1818
  msgid "Please insert your Facebook page's link."
1819
  msgstr "Vennligst sett inn lenken til Facebook-siden din."
1820
 
1821
+ #: app/features/ix.php:3868
1822
  msgid ""
1823
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1824
  "valid Facebook page link."
1826
  "Vi kunne ikke gjenkjenne din Facebook-side. Vennligst sjekk den og gi oss en "
1827
  "gyldig Facebook side link."
1828
 
1829
+ #: app/features/ix.php:3900
1830
  msgid "Please insert your facebook page's link."
1831
  msgstr "Vennligst sett inn linken til din Facebook-side."
1832
 
1833
+ #: app/features/ix.php:3905
1834
  msgid ""
1835
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1836
  "valid facebook page link."
1999
  #: app/features/ix/export_g_calendar.php:72
2000
  #: app/features/ix/export_g_calendar.php:147
2001
  #: app/features/ix/export_g_calendar.php:164
2002
+ #: app/features/mec/notifications.php:131
2003
+ #: app/features/mec/notifications.php:223
2004
+ #: app/features/mec/notifications.php:320
2005
+ #: app/features/mec/notifications.php:635
2006
  msgid "Add to Google Calendar"
2007
  msgstr "Legg til i Google Kalender"
2008
 
2009
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2010
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2011
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2012
  msgid "Checking ..."
2013
  msgstr "Sjekker ..."
2261
 
2262
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2263
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2264
+ #: app/features/mec/notifications.php:540
2265
  msgid "Important Note"
2266
  msgstr "Viktig merknad"
2267
 
2450
  msgstr "Fremhevet"
2451
 
2452
  #: app/features/labels.php:118 app/features/labels.php:143
2453
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2454
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2455
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2456
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2469
  msgstr "Du kan vise utvalgte og kansellerte hendelser med en annen stil!"
2470
 
2471
  #: app/features/labels.php:180 app/features/locations.php:232
2472
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2473
  #: app/modules/booking/steps/tickets.php:38
2474
  msgid "Count"
2475
  msgstr "Antall"
2486
 
2487
  #: app/features/locations.php:59 app/features/mec.php:404
2488
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2489
+ #: app/libraries/main.php:5281
2490
  msgid "Locations"
2491
  msgstr "Steder"
2492
 
2519
 
2520
  #: app/features/locations.php:138 app/features/locations.php:180
2521
  #: app/features/organizers.php:127 app/features/organizers.php:160
2522
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2523
  msgid "Thumbnail"
2524
  msgstr "Miniatyrbilde"
2525
 
2526
  #: app/features/locations.php:143 app/features/locations.php:183
2527
  #: app/features/organizers.php:132 app/features/organizers.php:163
2528
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2529
  msgid "Upload/Add image"
2530
  msgstr "Last opp/Legg til bilde"
2531
 
2533
  #: app/features/locations.php:340 app/features/locations.php:347
2534
  #: app/features/organizers.php:133 app/features/organizers.php:164
2535
  #: app/features/organizers.php:299 app/features/organizers.php:306
2536
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2537
  msgid "Remove image"
2538
  msgstr "Fjern bilde"
2539
 
2593
  msgid "Don't show map in single event page"
2594
  msgstr "Ikke vis kart i enkelt arrangement visning"
2595
 
2596
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2597
  #, fuzzy
2598
  #| msgid "Locations"
2599
  msgid "Other Locations"
2624
  msgid "Troubleshooting"
2625
  msgstr "Feilsøking"
2626
 
2627
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2628
  #, php-format
2629
  msgid "%s to %s"
2630
  msgstr "%s til %s"
2656
 
2657
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2658
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2659
+ #: app/libraries/main.php:5283
2660
  msgid "Organizers"
2661
  msgstr "Arrangører"
2662
 
2776
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2777
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2778
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2779
+ #: app/features/mec/notifications.php:816
2780
+ #: app/features/mec/notifications.php:828
2781
+ #: app/features/mec/notifications.php:924
2782
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2783
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2784
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2785
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2900
  msgid "Enable Express Attendees Form"
2901
  msgstr "Aktiver Ekspress Deltagere Skjema"
2902
 
2903
+ #: app/features/mec/booking.php:186
2904
  msgid "Attendees Form"
2905
  msgstr "Deltagerskjema"
2906
 
2936
  msgid "Auto verification for paid bookings"
2937
  msgstr "Auto godkjenning for betalte bookinger"
2938
 
2939
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2940
  #: app/libraries/main.php:579
2941
  msgid "Booking Confirmation"
2942
  msgstr "Bestillingsbekreftelsen"
3000
  msgstr ""
3001
 
3002
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3003
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3004
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3005
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3006
  msgid "Saved"
3007
  msgstr "Lagret"
3008
 
3009
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3010
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3011
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3012
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3013
  msgid "Settings Saved!"
3015
 
3016
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3017
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3018
+ #: app/features/mec/notifications.php:905
3019
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3020
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3021
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
3022
  msgid "Verified"
3023
  msgstr "Verifisert"
3024
 
3025
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3026
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3027
  #: app/features/mec/single.php:291
3028
  msgid "Please Refresh Page"
3029
  msgstr "Vennligst Oppdater Side"
4161
  #: app/features/mec/meta_boxes/search_form.php:693
4162
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4163
  #: app/features/search.php:79 app/features/speakers.php:61
4164
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4165
+ #: app/libraries/skins.php:936
4166
  msgid "Speaker"
4167
  msgstr "Foredragsholder"
4168
 
4178
  #: app/features/mec/meta_boxes/search_form.php:603
4179
  #: app/features/mec/meta_boxes/search_form.php:700
4180
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4181
+ #: app/features/search.php:83 app/libraries/skins.php:962
4182
  #, fuzzy
4183
  #| msgid "Tags"
4184
  msgid "Tag"
4435
  msgid "It sends to attendee after booking for notifying him/her."
4436
  msgstr "Sendes til deltager etter booking for å opplyse han/henne."
4437
 
4438
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4439
+ #: app/features/mec/notifications.php:233
4440
+ #: app/features/mec/notifications.php:336
4441
+ #: app/features/mec/notifications.php:442
4442
+ #: app/features/mec/notifications.php:543
4443
+ #: app/features/mec/notifications.php:660
4444
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4445
  msgid "Email Subject"
4446
  msgstr "E-postemne"
4447
 
4448
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4449
+ #: app/features/mec/notifications.php:147
4450
+ #: app/features/mec/notifications.php:154
4451
+ #: app/features/mec/notifications.php:239
4452
+ #: app/features/mec/notifications.php:246
4453
+ #: app/features/mec/notifications.php:342
4454
+ #: app/features/mec/notifications.php:349
4455
+ #: app/features/mec/notifications.php:448
4456
+ #: app/features/mec/notifications.php:455
4457
+ #: app/features/mec/notifications.php:549
4458
+ #: app/features/mec/notifications.php:556
4459
+ #: app/features/mec/notifications.php:666
4460
+ #: app/features/mec/notifications.php:673
4461
+ #: app/features/mec/notifications.php:749
4462
+ #: app/features/mec/notifications.php:756
4463
+ msgid "Receiver Users"
4464
+ msgstr ""
4465
+
4466
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4467
+ #: app/features/mec/notifications.php:247
4468
+ #: app/features/mec/notifications.php:350
4469
+ #: app/features/mec/notifications.php:456
4470
+ #: app/features/mec/notifications.php:557
4471
+ #: app/features/mec/notifications.php:674
4472
+ #: app/features/mec/notifications.php:757
4473
+ msgid "Select your desired users to send a copy of email to them!"
4474
+ msgstr ""
4475
+
4476
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4477
+ #: app/features/mec/notifications.php:164
4478
+ #: app/features/mec/notifications.php:171
4479
+ #: app/features/mec/notifications.php:256
4480
+ #: app/features/mec/notifications.php:263
4481
+ #: app/features/mec/notifications.php:359
4482
+ #: app/features/mec/notifications.php:366
4483
+ #: app/features/mec/notifications.php:465
4484
+ #: app/features/mec/notifications.php:472
4485
+ #: app/features/mec/notifications.php:566
4486
+ #: app/features/mec/notifications.php:573
4487
+ #: app/features/mec/notifications.php:683
4488
+ #: app/features/mec/notifications.php:690
4489
+ #: app/features/mec/notifications.php:766
4490
+ #: app/features/mec/notifications.php:773
4491
+ msgid "Receiver Roles"
4492
+ msgstr ""
4493
+
4494
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4495
+ #: app/features/mec/notifications.php:264
4496
+ #: app/features/mec/notifications.php:367
4497
+ #: app/features/mec/notifications.php:473
4498
+ #: app/features/mec/notifications.php:574
4499
+ #: app/features/mec/notifications.php:691
4500
+ #: app/features/mec/notifications.php:774
4501
+ msgid "Select users a specific role."
4502
+ msgstr ""
4503
+
4504
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4505
+ #: app/features/mec/notifications.php:180
4506
+ #: app/features/mec/notifications.php:184
4507
+ #: app/features/mec/notifications.php:272
4508
+ #: app/features/mec/notifications.php:276
4509
+ #: app/features/mec/notifications.php:375
4510
+ #: app/features/mec/notifications.php:379
4511
+ #: app/features/mec/notifications.php:481
4512
+ #: app/features/mec/notifications.php:485
4513
+ #: app/features/mec/notifications.php:582
4514
+ #: app/features/mec/notifications.php:586
4515
+ #: app/features/mec/notifications.php:597
4516
+ #: app/features/mec/notifications.php:699
4517
+ #: app/features/mec/notifications.php:703
4518
+ #: app/features/mec/notifications.php:782
4519
+ #: app/features/mec/notifications.php:786
4520
  msgid "Custom Recipients"
4521
  msgstr "Tilpassede Mottagere"
4522
 
4523
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4524
+ #: app/features/mec/notifications.php:277
4525
+ #: app/features/mec/notifications.php:380
4526
+ #: app/features/mec/notifications.php:486
4527
+ #: app/features/mec/notifications.php:587
4528
+ #: app/features/mec/notifications.php:598
4529
+ #: app/features/mec/notifications.php:704
4530
+ #: app/features/mec/notifications.php:787
4531
  msgid "Insert comma separated emails for multiple recipients."
4532
  msgstr "Sett inn kommaseparerte eposter for flere samtidige mottagere."
4533
 
4534
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4535
+ #: app/features/mec/notifications.php:493
4536
  msgid "Send the email to event organizer"
4537
  msgstr "Send epost til arrangøren"
4538
 
4539
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4540
+ #: app/features/mec/notifications.php:287
4541
+ #: app/features/mec/notifications.php:398
4542
+ #: app/features/mec/notifications.php:496
4543
+ #: app/features/mec/notifications.php:604
4544
+ #: app/features/mec/notifications.php:710
4545
+ #: app/features/mec/notifications.php:793
4546
  msgid "Email Content"
4547
  msgstr "E-postinnhold"
4548
 
4549
+ #: app/features/mec/notifications.php:101
4550
+ #: app/features/mec/notifications.php:194
4551
+ #: app/features/mec/notifications.php:290
4552
+ #: app/features/mec/notifications.php:401
4553
+ #: app/features/mec/notifications.php:499
4554
+ #: app/features/mec/notifications.php:607
4555
+ #: app/features/mec/notifications.php:713
4556
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4557
  msgid "You can use following placeholders"
4558
  msgstr "Du kan bruke følgende plassholdere"
4559
 
4560
+ #: app/features/mec/notifications.php:103
4561
+ #: app/features/mec/notifications.php:196
4562
+ #: app/features/mec/notifications.php:292
4563
+ #: app/features/mec/notifications.php:403
4564
+ #: app/features/mec/notifications.php:501
4565
+ #: app/features/mec/notifications.php:609
4566
  msgid "First name of attendee"
4567
  msgstr "Fornavn til deltaker"
4568
 
4569
+ #: app/features/mec/notifications.php:104
4570
+ #: app/features/mec/notifications.php:197
4571
+ #: app/features/mec/notifications.php:293
4572
+ #: app/features/mec/notifications.php:404
4573
+ #: app/features/mec/notifications.php:502
4574
+ #: app/features/mec/notifications.php:610
4575
  msgid "Last name of attendee"
4576
  msgstr "Etternavn på deltaker"
4577
 
4578
+ #: app/features/mec/notifications.php:105
4579
+ #: app/features/mec/notifications.php:198
4580
+ #: app/features/mec/notifications.php:294
4581
+ #: app/features/mec/notifications.php:405
4582
+ #: app/features/mec/notifications.php:503
4583
+ #: app/features/mec/notifications.php:611
4584
  msgid "Email of attendee"
4585
  msgstr "E-post til deltaker"
4586
 
4587
+ #: app/features/mec/notifications.php:106
4588
+ #: app/features/mec/notifications.php:199
4589
+ #: app/features/mec/notifications.php:295
4590
+ #: app/features/mec/notifications.php:406
4591
+ #: app/features/mec/notifications.php:504
4592
+ #: app/features/mec/notifications.php:612
4593
  msgid "Booked date of event"
4594
  msgstr "Booket dato for arrangement"
4595
 
4596
+ #: app/features/mec/notifications.php:107
4597
+ #: app/features/mec/notifications.php:200
4598
+ #: app/features/mec/notifications.php:296
4599
+ #: app/features/mec/notifications.php:407
4600
+ #: app/features/mec/notifications.php:505
4601
+ #: app/features/mec/notifications.php:613
4602
  #, fuzzy
4603
  #| msgid "Booked date of event"
4604
  msgid "Booked time of event"
4605
  msgstr "Booket dato for arrangement"
4606
 
4607
+ #: app/features/mec/notifications.php:108
4608
+ #: app/features/mec/notifications.php:201
4609
+ #: app/features/mec/notifications.php:297
4610
+ #: app/features/mec/notifications.php:408
4611
+ #: app/features/mec/notifications.php:506
4612
+ #: app/features/mec/notifications.php:614
4613
  msgid "Booking Price"
4614
  msgstr "Booking Pris"
4615
 
4616
+ #: app/features/mec/notifications.php:109
4617
+ #: app/features/mec/notifications.php:202
4618
+ #: app/features/mec/notifications.php:298
4619
+ #: app/features/mec/notifications.php:409
4620
+ #: app/features/mec/notifications.php:507
4621
+ #: app/features/mec/notifications.php:615
4622
  msgid "Date and time of placing booking"
4623
  msgstr ""
4624
 
4625
+ #: app/features/mec/notifications.php:110
4626
+ #: app/features/mec/notifications.php:203
4627
+ #: app/features/mec/notifications.php:299
4628
+ #: app/features/mec/notifications.php:410
4629
+ #: app/features/mec/notifications.php:508
4630
+ #: app/features/mec/notifications.php:616
4631
+ #: app/features/mec/notifications.php:721
4632
+ #: app/features/mec/notifications.php:804
4633
  msgid "Your website title"
4634
  msgstr "Ditt nettstedstittel"
4635
 
4636
+ #: app/features/mec/notifications.php:111
4637
+ #: app/features/mec/notifications.php:204
4638
+ #: app/features/mec/notifications.php:300
4639
+ #: app/features/mec/notifications.php:411
4640
+ #: app/features/mec/notifications.php:509
4641
+ #: app/features/mec/notifications.php:617
4642
+ #: app/features/mec/notifications.php:722
4643
+ #: app/features/mec/notifications.php:805
4644
  msgid "Your website URL"
4645
  msgstr "Din nettstedsadresse (URL)"
4646
 
4647
+ #: app/features/mec/notifications.php:112
4648
+ #: app/features/mec/notifications.php:205
4649
+ #: app/features/mec/notifications.php:301
4650
+ #: app/features/mec/notifications.php:412
4651
+ #: app/features/mec/notifications.php:510
4652
+ #: app/features/mec/notifications.php:618
4653
+ #: app/features/mec/notifications.php:723
4654
+ #: app/features/mec/notifications.php:806
4655
  msgid "Your website description"
4656
  msgstr "Din nettstedsbeskrivelse"
4657
 
4658
+ #: app/features/mec/notifications.php:113
4659
+ #: app/features/mec/notifications.php:206
4660
+ #: app/features/mec/notifications.php:302
4661
+ #: app/features/mec/notifications.php:413
4662
+ #: app/features/mec/notifications.php:511
4663
+ #: app/features/mec/notifications.php:619
4664
  msgid "Event title"
4665
  msgstr "Arrangementtittel"
4666
 
4667
+ #: app/features/mec/notifications.php:114
4668
+ #: app/features/mec/notifications.php:207
4669
+ #: app/features/mec/notifications.php:303
4670
+ #: app/features/mec/notifications.php:414
4671
+ #: app/features/mec/notifications.php:512
4672
+ #: app/features/mec/notifications.php:620
4673
  #, fuzzy
4674
  #| msgid "Event Link"
4675
  msgid "Event link"
4676
  msgstr "Arrangemenslenke"
4677
 
4678
+ #: app/features/mec/notifications.php:115
4679
+ #: app/features/mec/notifications.php:208
4680
+ #: app/features/mec/notifications.php:304
4681
+ #: app/features/mec/notifications.php:717
4682
+ #: app/features/mec/notifications.php:800
4683
  #, fuzzy
4684
  #| msgid "Start Date"
4685
  msgid "Event Start Date"
4686
  msgstr "Startdato"
4687
 
4688
+ #: app/features/mec/notifications.php:116
4689
+ #: app/features/mec/notifications.php:209
4690
+ #: app/features/mec/notifications.php:305
4691
+ #: app/features/mec/notifications.php:718
4692
+ #: app/features/mec/notifications.php:801
4693
  #, fuzzy
4694
  #| msgid "End Date"
4695
  msgid "Event End Date"
4696
  msgstr "Sluttdato"
4697
 
4698
+ #: app/features/mec/notifications.php:117
4699
+ #: app/features/mec/notifications.php:210
4700
+ #: app/features/mec/notifications.php:306
4701
+ #: app/features/mec/notifications.php:415
4702
+ #: app/features/mec/notifications.php:513
4703
+ #: app/features/mec/notifications.php:621
4704
  #, fuzzy
4705
  #| msgid "Organizer name of booked event"
4706
  msgid "Speaker name of booked event"
4707
  msgstr "Arrangørnavnet av booket arrangement"
4708
 
4709
+ #: app/features/mec/notifications.php:118
4710
+ #: app/features/mec/notifications.php:211
4711
+ #: app/features/mec/notifications.php:307
4712
+ #: app/features/mec/notifications.php:416
4713
+ #: app/features/mec/notifications.php:514
4714
+ #: app/features/mec/notifications.php:622
4715
  msgid "Organizer name of booked event"
4716
  msgstr "Arrangørnavnet av booket arrangement"
4717
 
4718
+ #: app/features/mec/notifications.php:119
4719
+ #: app/features/mec/notifications.php:212
4720
+ #: app/features/mec/notifications.php:308
4721
+ #: app/features/mec/notifications.php:417
4722
+ #: app/features/mec/notifications.php:515
4723
+ #: app/features/mec/notifications.php:623
4724
  msgid "Organizer tel of booked event"
4725
  msgstr "Tlf til arrangør av booket arrangement"
4726
 
4727
+ #: app/features/mec/notifications.php:120
4728
+ #: app/features/mec/notifications.php:213
4729
+ #: app/features/mec/notifications.php:309
4730
+ #: app/features/mec/notifications.php:418
4731
+ #: app/features/mec/notifications.php:516
4732
+ #: app/features/mec/notifications.php:624
4733
  msgid "Organizer email of booked event"
4734
  msgstr "E-post til arrangør av booket arrangement"
4735
 
4736
+ #: app/features/mec/notifications.php:121
4737
+ #: app/features/mec/notifications.php:214
4738
+ #: app/features/mec/notifications.php:310
4739
+ #: app/features/mec/notifications.php:419
4740
+ #: app/features/mec/notifications.php:517
4741
+ #: app/features/mec/notifications.php:625
4742
  msgid "Location name of booked event"
4743
  msgstr "Stedsnavn til booket arrangement"
4744
 
4745
+ #: app/features/mec/notifications.php:122
4746
+ #: app/features/mec/notifications.php:215
4747
+ #: app/features/mec/notifications.php:311
4748
+ #: app/features/mec/notifications.php:420
4749
+ #: app/features/mec/notifications.php:518
4750
+ #: app/features/mec/notifications.php:626
4751
  msgid "Location address of booked event"
4752
  msgstr "Adresse til bestilt arrangement"
4753
 
4754
+ #: app/features/mec/notifications.php:123
4755
+ #: app/features/mec/notifications.php:216
4756
+ #: app/features/mec/notifications.php:312
4757
+ #: app/features/mec/notifications.php:421
4758
+ #: app/features/mec/notifications.php:519
4759
+ #: app/features/mec/notifications.php:627
4760
  #, fuzzy
4761
  #| msgid "Organizer name of booked event"
4762
  msgid "Featured image of booked event"
4763
  msgstr "Arrangørnavnet av booket arrangement"
4764
 
4765
+ #: app/features/mec/notifications.php:124
4766
+ #: app/features/mec/notifications.php:423
4767
+ #: app/features/mec/notifications.php:521
4768
  msgid "Full Attendee info such as booking form data, name, email etc."
4769
  msgstr "Full deltager info som booking skjema data, navn, epost osv."
4770
 
4771
+ #: app/features/mec/notifications.php:125
4772
+ #: app/features/mec/notifications.php:314
4773
+ #: app/features/mec/notifications.php:629
4774
  msgid "Invoice Link"
4775
  msgstr "Fakturalenke"
4776
 
4777
+ #: app/features/mec/notifications.php:126
4778
+ #: app/features/mec/notifications.php:218
4779
+ #: app/features/mec/notifications.php:315
4780
+ #: app/features/mec/notifications.php:424
4781
+ #: app/features/mec/notifications.php:522
4782
+ #: app/features/mec/notifications.php:630
4783
  msgid "Total Attendees"
4784
  msgstr "Antall deltakere"
4785
 
4786
+ #: app/features/mec/notifications.php:127
4787
+ #: app/features/mec/notifications.php:219
4788
+ #: app/features/mec/notifications.php:316
4789
+ #: app/features/mec/notifications.php:425
4790
+ #: app/features/mec/notifications.php:523
4791
+ #: app/features/mec/notifications.php:631
4792
+ #, fuzzy
4793
+ #| msgid "Amount (Per Ticket)"
4794
+ msgid "Amount of Booked Tickets"
4795
+ msgstr "Beløp (Per Billett)"
4796
+
4797
+ #: app/features/mec/notifications.php:128
4798
+ #: app/features/mec/notifications.php:220
4799
+ #: app/features/mec/notifications.php:317
4800
+ #: app/features/mec/notifications.php:632
4801
  msgid "Ticket name"
4802
  msgstr "Navn på billett"
4803
 
4804
+ #: app/features/mec/notifications.php:129
4805
+ #: app/features/mec/notifications.php:221
4806
+ #: app/features/mec/notifications.php:318
4807
+ #: app/features/mec/notifications.php:633
4808
  msgid "Ticket time"
4809
  msgstr "Billettidspunkt"
4810
 
4811
+ #: app/features/mec/notifications.php:130
4812
+ #: app/features/mec/notifications.php:222
4813
+ #: app/features/mec/notifications.php:319
4814
+ #: app/features/mec/notifications.php:634
4815
  msgid "Download ICS file"
4816
  msgstr "Last ned ICS-fil"
4817
 
4818
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4819
  msgid "Booking Verification"
4820
  msgstr "Bestillingsbekreftelse"
4821
 
4822
+ #: app/features/mec/notifications.php:139
4823
  msgid "It sends to attendee email for verifying their booking/email."
4824
  msgstr "Send epost til deltagere for å verifisere deres booking/epost."
4825
 
4826
+ #: app/features/mec/notifications.php:217
4827
  msgid "Email/Booking verification link."
4828
  msgstr "Epost/Booking bekreftelseslenke"
4829
 
4830
+ #: app/features/mec/notifications.php:231
4831
  msgid "It sends to attendee after confirming the booking by admin."
4832
  msgstr "Den sender til deltagere etter bekreftelse bookingen av administrator."
4833
 
4834
+ #: app/features/mec/notifications.php:284
4835
  msgid "Send One Single Email Only To First Attendee"
4836
  msgstr ""
4837
 
4838
+ #: app/features/mec/notifications.php:313
4839
+ #: app/features/mec/notifications.php:628
4840
  msgid "Booking cancellation link."
4841
  msgstr "Booking avbestillingskobling."
4842
 
4843
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4844
  #, fuzzy
4845
  #| msgid "Booking cancellation link."
4846
  msgid "Booking Cancellation"
4847
  msgstr "Booking avbestillingskobling."
4848
 
4849
+ #: app/features/mec/notifications.php:330
4850
  #, fuzzy
4851
  #| msgid "Enable new event notification"
4852
  msgid "Enable cancellation notification"
4853
  msgstr "Aktiver nytt arrangement-varsel"
4854
 
4855
+ #: app/features/mec/notifications.php:334
4856
  #, fuzzy
4857
  #| msgid "It sends to attendee after booking for notifying him/her."
4858
  msgid ""
4860
  "them."
4861
  msgstr "Sendes til deltager etter booking for å opplyse han/henne."
4862
 
4863
+ #: app/features/mec/notifications.php:387
4864
+ #: app/features/mec/notifications.php:654
4865
  #, fuzzy
4866
  #| msgid "Send the email to event organizer"
4867
  msgid "Send the email to admin"
4868
  msgstr "Send epost til arrangøren"
4869
 
4870
+ #: app/features/mec/notifications.php:395
4871
  #, fuzzy
4872
  #| msgid "Send the email to event organizer"
4873
  msgid "Send the email to booking user"
4874
  msgstr "Send epost til arrangøren"
4875
 
4876
+ #: app/features/mec/notifications.php:422
4877
+ #: app/features/mec/notifications.php:520
4878
  msgid "Admin booking management link."
4879
  msgstr "Lenke til å Administrere booking."
4880
 
4881
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4882
  msgid "Admin"
4883
  msgstr ""
4884
 
4885
+ #: app/features/mec/notifications.php:436
4886
  #, fuzzy
4887
  #| msgid "Enable booking notification"
4888
  msgid "Enable admin notification"
4889
  msgstr "Tillatt bestillingsvarsel"
4890
 
4891
+ #: app/features/mec/notifications.php:440
4892
  msgid "It sends to admin to notify him/her that a new booking received."
4893
  msgstr ""
4894
  "Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
4895
 
4896
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4897
+ #: app/libraries/notifications.php:603
4898
  msgid "Booking Reminder"
4899
  msgstr "Påminnelse angående din bestilling"
4900
 
4901
+ #: app/features/mec/notifications.php:534
4902
  msgid "Enable booking reminder notification"
4903
  msgstr "Aktiver booking påminnelse"
4904
 
4905
+ #: app/features/mec/notifications.php:540
4906
  #, php-format
4907
  msgid ""
4908
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4913
  "sende påmindelser. Vennligst noter at du burde kalle på denne filen %s eller "
4914
  "vill den sende påmindelser flere ganger."
4915
 
4916
+ #: app/features/mec/notifications.php:540
4917
  msgid "only once per day"
4918
  msgstr "bare en gang per dag"
4919
 
4920
+ #: app/features/mec/notifications.php:593
4921
  msgid "Days"
4922
  msgstr "Dager"
4923
 
4924
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4925
  #: app/libraries/main.php:583
4926
  msgid "New Event"
4927
  msgstr "Nytt Arrangement"
4928
 
4929
+ #: app/features/mec/notifications.php:648
4930
  msgid "Enable new event notification"
4931
  msgstr "Aktiver nytt arrangement-varsel"
4932
 
4933
+ #: app/features/mec/notifications.php:658
4934
  msgid ""
4935
  "It sends after adding a new event from frontend event submission or from "
4936
  "website backend."
4938
  "Sender etter ett nytt arrangement fra event registrering eller fra "
4939
  "nettsidens bakside."
4940
 
4941
+ #: app/features/mec/notifications.php:715
4942
+ #: app/features/mec/notifications.php:798
4943
  msgid "Title of event"
4944
  msgstr "Tittel på arrangement"
4945
 
4946
+ #: app/features/mec/notifications.php:716
4947
+ #: app/features/mec/notifications.php:799
4948
  #, fuzzy
4949
  #| msgid "Title of event"
4950
  msgid "Link of event"
4951
  msgstr "Tittel på arrangement"
4952
 
4953
+ #: app/features/mec/notifications.php:719
4954
+ #: app/features/mec/notifications.php:802
4955
  msgid "Status of event"
4956
  msgstr "Status på arrangement"
4957
 
4958
+ #: app/features/mec/notifications.php:720
4959
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4960
  #: app/features/mec/settings.php:738
4961
  msgid "Event Note"
4962
  msgstr "Arrangementsnotat"
4963
 
4964
+ #: app/features/mec/notifications.php:724
4965
+ #: app/features/mec/notifications.php:807
4966
  msgid "Admin events management link."
4967
  msgstr "Lenge til arrangementsadministrasjon"
4968
 
4969
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4970
  #, fuzzy
4971
  #| msgid "The event published."
4972
  msgid "User Event Publishing"
4973
  msgstr "Arrangement er publisert."
4974
 
4975
+ #: app/features/mec/notifications.php:737
4976
  #, fuzzy
4977
  #| msgid "Enable new event notification"
4978
  msgid "Enable user event publishing notification"
4979
  msgstr "Aktiver nytt arrangement-varsel"
4980
 
4981
+ #: app/features/mec/notifications.php:741
4982
  #, fuzzy
4983
  #| msgid ""
4984
  #| "It sends after adding a new event from frontend event submission or from "
5161
  msgstr ""
5162
 
5163
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5164
+ #: app/libraries/main.php:5290
5165
  msgid "Weekdays"
5166
  msgstr "Ukedager"
5167
 
6418
  msgid "eg. https://webnus.net"
6419
  msgstr "F.eks. https://webnus.net"
6420
 
6421
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6422
+ #: app/skins/single.php:862
6423
  msgid "Other Organizers"
6424
  msgstr "Andre Arrangører"
6425
 
6426
+ #: app/features/organizers.php:314
6427
  msgid ""
6428
  "You can select extra organizers in addition to main organizer if you like."
6429
  msgstr ""
6444
  msgid "#"
6445
  msgstr "#"
6446
 
6447
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6448
  msgid "Status"
6449
  msgstr "Status"
6450
 
6479
  msgid "No bookings found!"
6480
  msgstr "Ingen bestillinger funnet!"
6481
 
6482
+ #: app/features/search.php:87 app/libraries/main.php:5280
6483
  msgid "label"
6484
  msgstr "etikett"
6485
 
6506
  msgstr ""
6507
 
6508
  #: app/features/search_bar/search_result.php:11
6509
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6510
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6511
+ #: app/skins/single.php:160 app/skins/single.php:753
6512
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6513
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6514
  msgid "All of the day"
6515
  msgstr "Hele dagen"
6516
 
6517
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6518
+ #: app/features/speakers.php:270
6519
  msgid "Job Title"
6520
  msgstr "Yrkestittel"
6521
 
6522
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6523
  msgid "Insert speaker job title."
6524
  msgstr "Sette inn instruktørstilling."
6525
 
6526
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6527
  msgid "Insert speaker phone number."
6528
  msgstr "Sette inn instruktørens telefonnummer."
6529
 
6530
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6531
  msgid "Insert speaker email address."
6532
  msgstr "Sette inn instruktørens epost."
6533
 
6534
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6535
  msgid "Facebook Page"
6536
  msgstr "Facebook-side"
6537
 
6538
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6539
  msgid "Insert URL of Facebook Page"
6540
  msgstr "Sett inn nettadressen til Facebook-siden"
6541
 
6542
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6543
  msgid "Instagram"
6544
  msgstr ""
6545
 
6546
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6547
  #, fuzzy
6548
  #| msgid "Insert URL of Twitter Page"
6549
  msgid "Insert URL of Instagram"
6550
  msgstr "Sett inn nettadressen til Twitter-siden"
6551
 
6552
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6553
+ #, fuzzy
6554
+ #| msgid "Linkedin"
6555
+ msgid "LinkedIn"
6556
+ msgstr "LinkedIn"
6557
+
6558
+ #: app/features/speakers.php:154
6559
+ #, fuzzy
6560
+ #| msgid "Insert URL of Twitter Page"
6561
+ msgid "Insert URL of LinkedIn"
6562
+ msgstr "Sett inn nettadressen til Twitter-siden"
6563
+
6564
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6565
  msgid "Twitter Page"
6566
  msgstr "Twitter-side"
6567
 
6568
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6569
  msgid "Insert URL of Twitter Page"
6570
  msgstr "Sett inn nettadressen til Twitter-siden"
6571
 
6572
+ #: app/features/speakers.php:209
6573
+ #, fuzzy
6574
+ #| msgid "Insert URL of Google+"
6575
+ msgid "Insert URL of linkedin"
6576
+ msgstr "Sett inn nettadressen til Google +"
6577
+
6578
+ #: app/features/speakers.php:330
6579
  msgid "Sorry, You must insert speaker name!"
6580
  msgstr ""
6581
 
6582
+ #: app/features/speakers.php:379
6583
  msgid ""
6584
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6585
  "section and speaker widget section!"
6737
  msgid "Tile View"
6738
  msgstr "Tidstabell Visning"
6739
 
6740
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6741
  msgid "SU"
6742
  msgstr "SØN"
6743
 
6744
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6745
  msgid "MO"
6746
  msgstr "MAN"
6747
 
6748
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6749
  msgid "TU"
6750
  msgstr "TIRS"
6751
 
6752
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6753
  msgid "WE"
6754
  msgstr "ONS"
6755
 
6756
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6757
  msgid "TH"
6758
  msgstr "TORS"
6759
 
6760
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6761
  msgid "FR"
6762
  msgstr "FRE"
6763
 
6764
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6765
  msgid "SA"
6766
  msgstr "LØR"
6767
 
7026
  msgid "iCal export stopped!"
7027
  msgstr "iCal eksport stoppet!"
7028
 
7029
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
7030
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
7031
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
7032
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
7033
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
7034
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
7035
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
7036
  msgid "Sort"
7037
  msgstr "Sortere"
7038
 
7039
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
7040
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
7041
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
7042
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
7043
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
7044
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
7045
  msgid "Required Field"
7046
  msgstr "Obligatorisk skjemafelt"
7047
 
7048
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
7049
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
7050
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
7051
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
7052
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
7053
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
7054
  msgid "Insert a label for this field"
7055
  msgstr "Sett inn en tittel for dette feltet"
7056
 
7057
+ #: app/libraries/main.php:2976
7058
  msgid "HTML and shortcode are allowed."
7059
  msgstr "HTML og kortkoder er tillatt."
7060
 
7061
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
7062
+ #: app/libraries/main.php:3107
7063
  msgid "Option"
7064
  msgstr "Alternativ"
7065
 
7066
+ #: app/libraries/main.php:3141
7067
  #, php-format
7068
  msgid "Instead of %s, the page title with a link will be show."
7069
  msgstr "Istedenfor %s, vil sidetittelen med en lenke bli vist."
7070
 
7071
+ #: app/libraries/main.php:3143
7072
  msgid "Agreement Page"
7073
  msgstr "Avtale Side"
7074
 
7075
+ #: app/libraries/main.php:3154
7076
  msgid "Checked by default"
7077
  msgstr "Avmerket som standard"
7078
 
7079
+ #: app/libraries/main.php:3155
7080
  msgid "Unchecked by default"
7081
  msgstr "Ikke avkrysset somstandard"
7082
 
7083
+ #: app/libraries/main.php:3178
7084
  msgid "Insert a label for this option"
7085
  msgstr "Sett inn en etikett for dette alternativet"
7086
 
7087
+ #: app/libraries/main.php:3193
7088
  msgid "Free"
7089
  msgstr "Gratis"
7090
 
7091
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7092
  #, fuzzy
7093
  #| msgid "M.E. Calendar"
7094
  msgid "M.E. Calender"
7095
  msgstr "ME Kalender"
7096
 
7097
+ #: app/libraries/main.php:3954
7098
  #, php-format
7099
  msgid "Copy of %s"
7100
  msgstr "Kopi av %s"
7101
 
7102
+ #: app/libraries/main.php:4669
7103
  msgid "Booked an event."
7104
  msgstr "Bestilte ett arrangement."
7105
 
7106
+ #: app/libraries/main.php:4710
7107
  #, php-format
7108
  msgid "%s booked %s event."
7109
  msgstr "%s bestilt %s arrangement."
7110
 
7111
+ #: app/libraries/main.php:5275
7112
  msgid "Taxonomies"
7113
  msgstr "Taxonomies"
7114
 
7115
+ #: app/libraries/main.php:5277
7116
  msgid "Category Plural Label"
7117
  msgstr "Kategori Fler Etikett"
7118
 
7119
+ #: app/libraries/main.php:5278
7120
  msgid "Category Singular Label"
7121
  msgstr "Kategori Singel Tittel"
7122
 
7123
+ #: app/libraries/main.php:5279
7124
  msgid "Label Plural Label"
7125
  msgstr "Etiketter Flertall"
7126
 
7127
+ #: app/libraries/main.php:5280
7128
  msgid "Label Singular Label"
7129
  msgstr "Etiketter Entall"
7130
 
7131
+ #: app/libraries/main.php:5281
7132
  msgid "Location Plural Label"
7133
  msgstr "Lokasjon Flertall Etiketter"
7134
 
7135
+ #: app/libraries/main.php:5282
7136
  msgid "Location Singular Label"
7137
  msgstr "Plasseringen Entall Etikett"
7138
 
7139
+ #: app/libraries/main.php:5283
7140
  msgid "Organizer Plural Label"
7141
  msgstr "Arrangør Flertall etikett"
7142
 
7143
+ #: app/libraries/main.php:5284
7144
  msgid "Organizer Singular Label"
7145
  msgstr "Arrangør Enkel Etikett"
7146
 
7147
+ #: app/libraries/main.php:5285
7148
  msgid "Speaker Plural Label"
7149
  msgstr "Instruktør/Foredragsholder flere etiketter"
7150
 
7151
+ #: app/libraries/main.php:5286
7152
  msgid "Speaker Singular Label"
7153
  msgstr "Instruktør/Foredragsholder enkelt etikett"
7154
 
7155
+ #: app/libraries/main.php:5292
7156
  msgid "Sunday abbreviation"
7157
  msgstr "Forkortelser på søndager"
7158
 
7159
+ #: app/libraries/main.php:5293
7160
  msgid "Monday abbreviation"
7161
  msgstr "Mandag forkortelse"
7162
 
7163
+ #: app/libraries/main.php:5294
7164
  msgid "Tuesday abbreviation"
7165
  msgstr "Tirsdag forkortelse"
7166
 
7167
+ #: app/libraries/main.php:5295
7168
  msgid "Wednesday abbreviation"
7169
  msgstr "Onsdag forkortelse"
7170
 
7171
+ #: app/libraries/main.php:5296
7172
  msgid "Thursday abbreviation"
7173
  msgstr "Torsdag forkortelse"
7174
 
7175
+ #: app/libraries/main.php:5297
7176
  msgid "Friday abbreviation"
7177
  msgstr "Fredag forkortelse"
7178
 
7179
+ #: app/libraries/main.php:5298
7180
  msgid "Saturday abbreviation"
7181
  msgstr "Lørdag forkortelse"
7182
 
7183
+ #: app/libraries/main.php:5302
7184
  msgid "Others"
7185
  msgstr "Øvrige"
7186
 
7187
+ #: app/libraries/main.php:5304
7188
  msgid "Booking Success Message"
7189
  msgstr "Melding ved vellykket bestilling"
7190
 
7191
+ #: app/libraries/main.php:5304
7192
  msgid ""
7193
  "Thanks for your booking. Your tickets booked, booking verification might be "
7194
  "needed, please check your email."
7196
  "Takk for din bestilling. Din plass er bestilt, men vi trenger kanskje din "
7197
  "bekreftelse. Vennligst sjekk din epost."
7198
 
7199
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7200
  msgid "Register Button"
7201
  msgstr "Registreringsknapp"
7202
 
7203
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7204
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7205
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7206
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7207
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7208
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7209
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7210
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7211
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7212
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7217
  msgid "REGISTER"
7218
  msgstr "Registrere"
7219
 
7220
+ #: app/libraries/main.php:5306
7221
  msgid "View Detail Button"
7222
  msgstr "Se Detalj Knapp"
7223
 
7224
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7225
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7226
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7227
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7232
  msgid "View Detail"
7233
  msgstr "Se detaljer"
7234
 
7235
+ #: app/libraries/main.php:5307
7236
  msgid "Event Detail Button"
7237
  msgstr "Knapp for arrangementsdetaljer"
7238
 
7239
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7240
  msgid "Event Detail"
7241
  msgstr "Arrangement Detaljer"
7242
 
7243
+ #: app/libraries/main.php:5309
7244
  msgid "More Info Link"
7245
  msgstr "Mer Info Lenke"
7246
 
7247
+ #: app/libraries/main.php:5312
7248
  msgid "Ticket (Singular)"
7249
  msgstr "Billett (Singel)"
7250
 
7251
+ #: app/libraries/main.php:5313
7252
  msgid "Tickets (Plural)"
7253
  msgstr "Billetter (Flertall)"
7254
 
7255
+ #: app/libraries/main.php:5399
7256
  msgid "EventON"
7257
  msgstr "EventON"
7258
 
7259
+ #: app/libraries/main.php:5400
7260
  msgid "The Events Calendar"
7261
  msgstr "Aktivitetskalenderen"
7262
 
7263
+ #: app/libraries/main.php:5401
7264
  msgid "Events Schedule WP Plugin"
7265
  msgstr "Arrangement Planlegging WP Plugin"
7266
 
7267
+ #: app/libraries/main.php:5402
7268
  msgid "Calendarize It"
7269
  msgstr "HOP Kalender"
7270
 
7271
+ #: app/libraries/main.php:5403
7272
  #, fuzzy
7273
  #| msgid "Event Speakers"
7274
  msgid "Event Espresso"
7275
  msgstr "Event høyttalere"
7276
 
7277
+ #: app/libraries/main.php:5404
7278
  #, fuzzy
7279
  #| msgid "Event Repeating"
7280
  msgid "Events Manager (Recurring)"
7281
  msgstr "Gjentakende arrangement"
7282
 
7283
+ #: app/libraries/main.php:5405
7284
  #, fuzzy
7285
  #| msgid "Modern Events Calendar (Lite)"
7286
  msgid "Events Manager (Single)"
7287
  msgstr "Kalender for moderne arrangementer (lite)"
7288
 
7289
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7290
  msgid "Confirmed"
7291
  msgstr "Bekreftet"
7292
 
7293
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7294
  msgid "Rejected"
7295
  msgstr "Avvist"
7296
 
7297
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7298
  msgid "Pending"
7299
  msgstr "Venter"
7300
 
7301
+ #: app/libraries/main.php:5529
7302
  msgid "Waiting"
7303
  msgstr "Ventende"
7304
 
7305
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7306
  msgid "Skin controller does not exist."
7307
  msgstr "Skin kontroller eksisterer ikke."
7308
 
7309
+ #: app/libraries/main.php:5848
7310
  #, fuzzy
7311
  #| msgid "Sold out!"
7312
  msgid "Sold Out"
7313
  msgstr "Utsolgt!"
7314
 
7315
+ #: app/libraries/main.php:5856
7316
  #, fuzzy
7317
  #| msgid "Ticket"
7318
  msgid "Last Few Tickets"
7322
  msgid "Please verify your email."
7323
  msgstr "Vennligst bekrefte din E-post."
7324
 
7325
+ #: app/libraries/notifications.php:153
7326
  msgid "Your booking is received."
7327
  msgstr "Din bestilling er mottatt."
7328
 
7329
+ #: app/libraries/notifications.php:271
7330
  msgid "Your booking is confirmed."
7331
  msgstr "Din Bestilling er bekreftet."
7332
 
7333
+ #: app/libraries/notifications.php:435
7334
  #, fuzzy
7335
  #| msgid "Your booking cannot be canceled."
7336
  msgid "booking canceled."
7337
  msgstr "Din booking ble ikke kansellert."
7338
 
7339
+ #: app/libraries/notifications.php:510
7340
  msgid "A new booking is received."
7341
  msgstr "En ny bestilling er mottatt."
7342
 
7343
+ #: app/libraries/notifications.php:734
7344
  msgid "A new event is added."
7345
  msgstr "Ett nytt arrangement er lagt til."
7346
 
7347
+ #: app/libraries/notifications.php:803
7348
  #, fuzzy
7349
  #| msgid "The event published."
7350
  msgid "Your event is published."
7351
  msgstr "Arrangement er publisert."
7352
 
7353
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7354
+ #: app/libraries/notifications.php:1052
7355
  msgid "to"
7356
  msgstr "til"
7357
 
7358
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7359
  msgid "+ Add to Google Calendar"
7360
  msgstr "+ Legg til i Google Kalender"
7361
 
7362
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7363
  msgid "+ iCal export"
7364
  msgstr "+ iCal eksport"
7365
 
7366
+ #: app/libraries/notifications.php:1131
7367
  msgid "Yes"
7368
  msgstr "Ja"
7369
 
7370
+ #: app/libraries/notifications.php:1131
7371
  msgid "No"
7372
  msgstr "Nei"
7373
 
7374
+ #: app/libraries/skins.php:1008
7375
+ #, fuzzy
7376
+ #| msgid "Select All"
7377
+ msgid "Select"
7378
+ msgstr "Velg alle"
7379
 
7380
  #: app/modules/attendees-list/details.php:36
7381
  msgid "Event Attendees"
7412
  msgid "Free Booking"
7413
  msgstr "Book nå, betal senere"
7414
 
7415
+ #: app/modules/booking/steps/form.php:52
7416
+ #, fuzzy
7417
+ #| msgid "Attendees Form"
7418
+ msgid "Attendee's Form"
7419
+ msgstr "Deltagerskjema"
7420
+
7421
  #: app/modules/booking/steps/form.php:165
7422
  msgid "Fill other attendees information like the first form."
7423
  msgstr "Fyll ut andre deltakere informasjon som det første skjemaet."
7424
 
7425
  #: app/modules/booking/steps/form.php:179
7426
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7427
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7428
  msgid "Next"
7429
  msgstr "Neste"
7436
  msgid "Book Event"
7437
  msgstr "Meld deg på"
7438
 
7439
+ #: app/modules/booking/steps/tickets.php:40
7440
  #, php-format
7441
  msgid "Available %s: <span>%s</span>"
7442
  msgstr "Tilgjengelig %s: <span>%s</span>"
7443
 
7444
+ #: app/modules/booking/steps/tickets.php:44
7445
  #, php-format
7446
+ msgid "The %s ticket sales has stopped!"
7447
  msgstr ""
7448
 
7449
+ #: app/modules/booking/steps/tickets.php:45
7450
  #, php-format
7451
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7452
  msgstr ""
7468
  msgid "Get Directions"
7469
  msgstr "Få veibeskrivelse"
7470
 
7471
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7472
  msgid "Share this event"
7473
  msgstr "Del arrangementet"
7474
 
7495
  msgid "Go to occurrence page"
7496
  msgstr "Gå til gjentagende side"
7497
 
7498
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7499
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7500
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7501
  msgid "Time"
7625
  msgid "Home"
7626
  msgstr ""
7627
 
7628
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7629
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7630
  #: app/skins/single/modern.php:265
7631
  msgid "Sold out!"
7632
  msgstr "Utsolgt!"
7633
 
7634
+ #: app/skins/single.php:822 app/skins/single.php:877
7635
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7636
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7637
  #: app/skins/single/modern.php:44
7638
  msgid "Phone"
7639
  msgstr "Telefon"
7640
 
7641
+ #: app/skins/single.php:836 app/skins/single.php:891
7642
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7643
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7644
  #: app/skins/single/modern.php:58
7645
  msgid "Website"
7646
  msgstr "Nettsted"
7647
 
7648
+ #: app/skins/single.php:961
7649
  msgid "Speakers:"
7650
  msgstr "Høyttalere:"
7651
 
8250
  #~ msgid "Google+"
8251
  #~ msgstr "Google+"
8252
 
 
 
 
8253
  #~ msgid "Google Plus"
8254
  #~ msgstr "Google Plus"
8255
 
languages/modern-events-calendar-lite-nl_NL.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nl_NL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:04+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -275,7 +275,7 @@ msgstr "Evenement toevoegen"
275
  msgid "Add New Event"
276
  msgstr "Voeg nieuw evenement toe"
277
 
278
- #: app/features/events.php:161 app/features/ix.php:3752
279
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
280
  msgid "No events found!"
281
  msgstr "Geen evenementen gevonden!"
@@ -310,8 +310,8 @@ msgstr "Geen evenementen gevonden in de prullenbak."
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
- #: app/features/search.php:67 app/libraries/main.php:5260
314
- #: app/libraries/skins.php:850 app/skins/single.php:560
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
317
  #: app/skins/single/modern.php:113
@@ -320,7 +320,7 @@ msgstr "Categorie"
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
324
  msgid "Categories"
325
  msgstr "Categorieën"
326
 
@@ -409,7 +409,7 @@ msgid "Event Repeating"
409
  msgstr "Terugkerend evenement"
410
 
411
  #: app/features/events.php:333 app/features/events.php:1286
412
- #: app/features/mec/settings.php:710 app/skins/single.php:941
413
  msgid "Hourly Schedule"
414
  msgstr "Urenschema"
415
 
@@ -426,7 +426,7 @@ msgstr "Evenement locatie"
426
 
427
  #: app/features/events.php:336 app/features/events.php:3322
428
  #: app/features/events.php:3513 app/features/events.php:3555
429
- #: app/features/ix.php:3373 app/features/ix.php:3414
430
  #: app/features/mec/meta_boxes/display_options.php:960
431
  #: app/features/mec/meta_boxes/search_form.php:45
432
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -443,16 +443,16 @@ msgstr "Evenement locatie"
443
  #: app/features/organizers.php:58 app/features/organizers.php:204
444
  #: app/features/organizers.php:260 app/features/organizers.php:262
445
  #: app/features/organizers.php:271 app/features/search.php:75
446
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
447
- #: app/skins/single.php:806 app/skins/single/default.php:217
448
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
449
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
450
  msgid "Organizer"
451
  msgstr "Organisator"
452
 
453
  #: app/features/events.php:337 app/features/events.php:1172
454
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
455
- #: app/skins/single.php:583 app/skins/single/default.php:126
456
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
457
  #: app/skins/single/modern.php:208
458
  msgid "Cost"
@@ -470,7 +470,7 @@ msgstr ""
470
  #: app/features/events.php:3802 app/features/fes.php:223
471
  #: app/features/fes/form.php:689 app/features/labels.php:178
472
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
473
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
474
  #: app/modules/booking/steps/form.php:37
475
  msgid "Name"
476
  msgstr "Naam"
@@ -480,12 +480,12 @@ msgstr "Naam"
480
  #: app/features/fes.php:223 app/features/fes/form.php:685
481
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
482
  #: app/features/organizers.php:111 app/features/organizers.php:152
483
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
484
- #: app/features/speakers.php:187 app/libraries/main.php:1539
485
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
486
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
487
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
488
- #: app/skins/single.php:878 app/skins/single/default.php:234
489
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
490
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
491
  msgid "Email"
@@ -498,8 +498,8 @@ msgstr "Datum en tijd"
498
  #: app/features/events.php:491 app/features/events.php:497
499
  #: app/features/events.php:3323 app/features/events.php:3513
500
  #: app/features/events.php:3555 app/features/fes/form.php:247
501
- #: app/features/fes/form.php:251 app/features/ix.php:3373
502
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
503
  #: app/features/mec/dashboard.php:400
504
  #: app/features/mec/meta_boxes/display_options.php:48
505
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -536,8 +536,8 @@ msgstr "PM"
536
  #: app/features/events.php:583 app/features/events.php:588
537
  #: app/features/events.php:3324 app/features/events.php:3513
538
  #: app/features/events.php:3555 app/features/fes/form.php:287
539
- #: app/features/fes/form.php:291 app/features/ix.php:3373
540
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
541
  #: app/features/mec/dashboard.php:401
542
  msgid "End Date"
543
  msgstr "Einddatum"
@@ -621,14 +621,14 @@ msgstr ""
621
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
622
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
623
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
624
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
625
- #: app/features/mec/notifications.php:170
626
- #: app/features/mec/notifications.php:238
627
- #: app/features/mec/notifications.php:308
628
- #: app/features/mec/notifications.php:373
629
- #: app/features/mec/notifications.php:384
630
- #: app/features/mec/notifications.php:454
631
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
632
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
633
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
634
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -644,7 +644,7 @@ msgstr ""
644
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
645
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
646
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
647
- #: app/skins/single.php:668 app/skins/single/default.php:141
648
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
649
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
650
  #, fuzzy
@@ -827,8 +827,8 @@ msgstr ""
827
 
828
  #: app/features/events.php:1168 app/features/events.php:3513
829
  #: app/features/events.php:3555 app/features/fes/form.php:727
830
- #: app/features/ix.php:3373 app/features/ix.php:3414
831
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
832
  #: app/widgets/single.php:103
833
  msgid "Event Cost"
834
  msgstr "Evenements kosten"
@@ -846,8 +846,8 @@ msgstr "Elke doordeweekse dag"
846
  #: app/features/events.php:1204 app/features/events.php:2541
847
  #: app/features/fes.php:223 app/features/mec/booking.php:491
848
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
849
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
850
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
851
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
852
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
853
  msgid "Date"
@@ -884,8 +884,8 @@ msgstr ""
884
  #: app/features/events.php:1437 app/features/events.php:2322
885
  #: app/features/events.php:2369 app/features/events.php:3319
886
  #: app/features/events.php:3513 app/features/events.php:3555
887
- #: app/features/fes/form.php:236 app/features/ix.php:3373
888
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
889
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
890
  msgid "Title"
891
  msgstr "Titel"
@@ -898,13 +898,13 @@ msgstr "Titel"
898
  #: app/features/events.php:2357 app/features/events.php:2399
899
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
900
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
901
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
902
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
903
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
904
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
905
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
906
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
907
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
908
  msgid "Remove"
909
  msgstr "Verwijderen"
910
 
@@ -932,7 +932,7 @@ msgstr "Beschrijving"
932
  #: app/features/events.php:1445 app/features/fes/form.php:851
933
  #: app/features/mec.php:410 app/features/mec/modules.php:52
934
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
935
- #: app/libraries/main.php:565 app/libraries/main.php:5267
936
  #: app/modules/speakers/details.php:18
937
  msgid "Speakers"
938
  msgstr ""
@@ -949,7 +949,7 @@ msgid "Event Links"
949
  msgstr "Evenement locatie"
950
 
951
  #: app/features/events.php:1479 app/features/events.php:1485
952
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
953
  #, fuzzy
954
  msgid "Event Link"
955
  msgstr "Evenement locatie"
@@ -974,8 +974,8 @@ msgid "URL Shortener"
974
  msgstr ""
975
 
976
  #: app/features/events.php:1495 app/features/events.php:1508
977
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
978
- #: app/skins/single.php:667 app/skins/single/default.php:140
979
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
980
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
981
  #: app/widgets/single.php:107
@@ -1010,7 +1010,7 @@ msgstr "Maximum aantal boekingen"
1010
 
1011
  #: app/features/events.php:1596 app/features/events.php:1849
1012
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1013
- #: app/modules/booking/steps/tickets.php:44
1014
  #: app/skins/available_spot/tpl.php:160
1015
  msgid "Unlimited"
1016
  msgstr "Onbeperkt"
@@ -1046,7 +1046,7 @@ msgid "12"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1050
  msgid "Tickets"
1051
  msgstr "Tickets"
1052
 
@@ -1069,13 +1069,13 @@ msgstr "Ticket naam"
1069
 
1070
  #: app/features/events.php:1680 app/features/events.php:1955
1071
  #: app/features/events.php:3513 app/features/events.php:3555
1072
- #: app/features/ix.php:3373 app/features/ix.php:3414
1073
  msgid "Start Time"
1074
  msgstr ""
1075
 
1076
  #: app/features/events.php:1739 app/features/events.php:1985
1077
  #: app/features/events.php:3513 app/features/events.php:3555
1078
- #: app/features/ix.php:3373 app/features/ix.php:3414
1079
  msgid "End Time"
1080
  msgstr ""
1081
 
@@ -1107,37 +1107,37 @@ msgstr "Voor het tonen op de website. bijv. €15"
1107
  msgid "Available Tickets"
1108
  msgstr "Beschikbare tickets"
1109
 
1110
- #: app/features/events.php:1855 app/features/events.php:2070
1111
  #, fuzzy
1112
  #| msgid "Maximum events"
1113
  msgid "Minimum Ticket e.g. 3"
1114
  msgstr "Mximum evenementen"
1115
 
1116
- #: app/features/events.php:1858 app/features/events.php:2073
1117
  #, fuzzy
1118
  #| msgid "Maximum events"
1119
  msgid "MinimumTicket"
1120
  msgstr "Mximum evenementen"
1121
 
1122
- #: app/features/events.php:1860 app/features/events.php:2075
1123
  msgid "Set a number for the minimum ticket reservation"
1124
  msgstr ""
1125
 
1126
- #: app/features/events.php:1868 app/features/events.php:2083
1127
  msgid "e.g. 0"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:1870 app/features/events.php:2085
1131
  #, fuzzy
1132
  #| msgid "Daily"
1133
  msgid "Day"
1134
  msgstr "Dagelijks"
1135
 
1136
- #: app/features/events.php:1871 app/features/events.php:2086
1137
  msgid "Hour"
1138
  msgstr ""
1139
 
1140
- #: app/features/events.php:1873 app/features/events.php:2088
1141
  #, php-format
1142
  msgid "Stop selling ticket %s before event start."
1143
  msgstr ""
@@ -1163,7 +1163,7 @@ msgstr "Prijs label"
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
- #: app/libraries/skins.php:980
1167
  msgid "Label"
1168
  msgstr "Label"
1169
 
@@ -1233,48 +1233,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1233
  msgstr ""
1234
 
1235
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1236
- #: app/libraries/main.php:2749
1237
  #, fuzzy
1238
  #| msgid "Name"
1239
  msgid "MEC Name"
1240
  msgstr "Naam"
1241
 
1242
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1243
- #: app/libraries/main.php:2778
1244
  #, fuzzy
1245
  #| msgid "Email"
1246
  msgid "MEC Email"
1247
  msgstr "Email"
1248
 
1249
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1250
- #: app/libraries/main.php:2719
1251
  msgid "Text"
1252
  msgstr "Tekst"
1253
 
1254
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1255
  #: app/features/organizers.php:103 app/features/organizers.php:148
1256
- #: app/features/speakers.php:118 app/features/speakers.php:183
1257
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1258
  msgid "Tel"
1259
  msgstr "Tel"
1260
 
1261
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1262
- #: app/libraries/main.php:2837
1263
  msgid "File"
1264
  msgstr ""
1265
 
1266
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1267
- #: app/libraries/main.php:2924
1268
  msgid "Textarea"
1269
  msgstr "Tekstgebied"
1270
 
1271
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1272
- #: app/libraries/main.php:2977
1273
  msgid "Checkboxes"
1274
  msgstr "Checkboxes"
1275
 
1276
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1277
- #: app/libraries/main.php:3021
1278
  msgid "Radio Buttons"
1279
  msgstr "Radio knoppen"
1280
 
@@ -1354,17 +1354,17 @@ msgstr "Radio knoppen"
1354
  #: app/features/mec/meta_boxes/search_form.php:696
1355
  #: app/features/mec/meta_boxes/search_form.php:703
1356
  #: app/features/mec/meta_boxes/search_form.php:710
1357
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1358
  msgid "Dropdown"
1359
  msgstr "Dropdown"
1360
 
1361
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1362
- #: app/libraries/main.php:3112
1363
  msgid "Agreement"
1364
  msgstr ""
1365
 
1366
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1367
- #: app/libraries/main.php:2953
1368
  msgid "Paragraph"
1369
  msgstr "Paragraaf"
1370
 
@@ -1393,8 +1393,8 @@ msgid "Attendees List"
1393
  msgstr "Aanwezige"
1394
 
1395
  #: app/features/events.php:3321 app/features/events.php:3513
1396
- #: app/features/events.php:3555 app/features/ix.php:3373
1397
- #: app/features/ix.php:3414 app/features/locations.php:58
1398
  #: app/features/locations.php:230 app/features/locations.php:287
1399
  #: app/features/locations.php:289 app/features/locations.php:298
1400
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1411,8 +1411,8 @@ msgstr "Aanwezige"
1411
  #: app/features/mec/meta_boxes/search_form.php:679
1412
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1413
  #: app/features/search.php:71 app/libraries/main.php:2236
1414
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1415
- #: app/skins/single.php:487 app/skins/single.php:918
1416
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1417
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1418
  #: app/skins/single/modern.php:97
@@ -1453,14 +1453,14 @@ msgid "Duplicate"
1453
  msgstr ""
1454
 
1455
  #: app/features/events.php:3513 app/features/events.php:3555
1456
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1457
  #: app/features/labels.php:177 app/features/locations.php:229
1458
- #: app/features/organizers.php:203 app/features/speakers.php:253
1459
  msgid "ID"
1460
  msgstr "ID"
1461
 
1462
  #: app/features/events.php:3513 app/features/events.php:3555
1463
- #: app/features/ix.php:3373 app/features/ix.php:3414
1464
  msgid "Link"
1465
  msgstr ""
1466
 
@@ -1476,7 +1476,7 @@ msgstr ""
1476
 
1477
  #: app/features/events.php:3808 app/features/fes.php:223
1478
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1479
- #: app/libraries/main.php:5294
1480
  msgid "Ticket"
1481
  msgstr "Ticket"
1482
 
@@ -1655,8 +1655,8 @@ msgstr "Verwijder afbeelding"
1655
 
1656
  #: app/features/fes/form.php:783 app/features/labels.php:61
1657
  #: app/features/labels.php:221 app/features/mec.php:403
1658
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1659
- #: app/skins/single.php:696 app/skins/single/default.php:155
1660
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1661
  #: app/skins/single/modern.php:223
1662
  msgid "Labels"
@@ -1734,81 +1734,81 @@ msgstr ""
1734
  msgid "The events are imported successfully!"
1735
  msgstr ""
1736
 
1737
- #: app/features/ix.php:806
1738
  msgid "Third Party plugin is not installed and activated!"
1739
  msgstr ""
1740
 
1741
- #: app/features/ix.php:829
1742
  msgid "Third Party plugin is invalid!"
1743
  msgstr ""
1744
 
1745
- #: app/features/ix.php:2580 app/features/ix.php:2638
1746
  msgid "Both of API key and Calendar ID are required!"
1747
  msgstr ""
1748
 
1749
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1750
  msgid "Please select some events to import!"
1751
  msgstr ""
1752
 
1753
- #: app/features/ix.php:2994 app/features/ix.php:3057
1754
  msgid "Both of API key and Group URL are required!"
1755
  msgstr ""
1756
 
1757
- #: app/features/ix.php:3296
1758
  msgid "Check at Meetup"
1759
  msgstr ""
1760
 
1761
- #: app/features/ix.php:3373 app/features/ix.php:3414
1762
  msgid "Organizer Tel"
1763
  msgstr ""
1764
 
1765
- #: app/features/ix.php:3373 app/features/ix.php:3414
1766
  msgid "Organizer Email"
1767
  msgstr ""
1768
 
1769
- #: app/features/ix.php:3495
1770
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1771
  msgstr ""
1772
 
1773
- #: app/features/ix.php:3518
1774
  #, php-format
1775
  msgid "All seems good! Please click %s for authenticating your app."
1776
  msgstr ""
1777
 
1778
- #: app/features/ix.php:3572
1779
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1780
  msgstr ""
1781
 
1782
- #: app/features/ix.php:3688
1783
  #, php-format
1784
  msgid "%s events added to Google Calendar successfully."
1785
  msgstr ""
1786
 
1787
- #: app/features/ix.php:3689
1788
  #, php-format
1789
  msgid "%s previously added events get updated."
1790
  msgstr ""
1791
 
1792
- #: app/features/ix.php:3690
1793
  #, php-format
1794
  msgid "%s events failed to add for following reasons: %s"
1795
  msgstr ""
1796
 
1797
- #: app/features/ix.php:3722
1798
  msgid "Please insert your Facebook page's link."
1799
  msgstr ""
1800
 
1801
- #: app/features/ix.php:3731
1802
  msgid ""
1803
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1804
  "valid Facebook page link."
1805
  msgstr ""
1806
 
1807
- #: app/features/ix.php:3763
1808
  msgid "Please insert your facebook page's link."
1809
  msgstr ""
1810
 
1811
- #: app/features/ix.php:3768
1812
  msgid ""
1813
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1814
  "valid facebook page link."
@@ -1973,14 +1973,15 @@ msgstr ""
1973
  #: app/features/ix/export_g_calendar.php:72
1974
  #: app/features/ix/export_g_calendar.php:147
1975
  #: app/features/ix/export_g_calendar.php:164
1976
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
1977
- #: app/features/mec/notifications.php:213
1978
- #: app/features/mec/notifications.php:420
 
1979
  msgid "Add to Google Calendar"
1980
  msgstr ""
1981
 
1982
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1983
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
1984
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1985
  msgid "Checking ..."
1986
  msgstr ""
@@ -2224,7 +2225,7 @@ msgstr ""
2224
 
2225
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2226
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2227
- #: app/features/mec/notifications.php:361
2228
  msgid "Important Note"
2229
  msgstr ""
2230
 
@@ -2400,7 +2401,7 @@ msgid "Featured"
2400
  msgstr "Uitgelichte afbeelding"
2401
 
2402
  #: app/features/labels.php:118 app/features/labels.php:143
2403
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2404
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2405
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2406
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2419,7 +2420,7 @@ msgid "You can show featured and canceled events by a different style!"
2419
  msgstr ""
2420
 
2421
  #: app/features/labels.php:180 app/features/locations.php:232
2422
- #: app/features/organizers.php:206 app/features/speakers.php:257
2423
  #: app/modules/booking/steps/tickets.php:38
2424
  msgid "Count"
2425
  msgstr "Aantal keer gebruikt"
@@ -2436,7 +2437,7 @@ msgstr ""
2436
 
2437
  #: app/features/locations.php:59 app/features/mec.php:404
2438
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2439
- #: app/libraries/main.php:5263
2440
  msgid "Locations"
2441
  msgstr "Locaties"
2442
 
@@ -2469,13 +2470,13 @@ msgstr "Geo longitude (Optioneel)"
2469
 
2470
  #: app/features/locations.php:138 app/features/locations.php:180
2471
  #: app/features/organizers.php:127 app/features/organizers.php:160
2472
- #: app/features/speakers.php:158 app/features/speakers.php:203
2473
  msgid "Thumbnail"
2474
  msgstr "Thumbnail"
2475
 
2476
  #: app/features/locations.php:143 app/features/locations.php:183
2477
  #: app/features/organizers.php:132 app/features/organizers.php:163
2478
- #: app/features/speakers.php:163 app/features/speakers.php:206
2479
  msgid "Upload/Add image"
2480
  msgstr "Upload/toevoegen afbeelding"
2481
 
@@ -2483,7 +2484,7 @@ msgstr "Upload/toevoegen afbeelding"
2483
  #: app/features/locations.php:340 app/features/locations.php:347
2484
  #: app/features/organizers.php:133 app/features/organizers.php:164
2485
  #: app/features/organizers.php:299 app/features/organizers.php:306
2486
- #: app/features/speakers.php:164 app/features/speakers.php:207
2487
  msgid "Remove image"
2488
  msgstr "Verwijder afbeelding"
2489
 
@@ -2543,7 +2544,7 @@ msgstr "Kies afbeelding"
2543
  msgid "Don't show map in single event page"
2544
  msgstr "Verberg de map op de pagina van het evenement"
2545
 
2546
- #: app/features/locations.php:356 app/libraries/main.php:5297
2547
  #, fuzzy
2548
  #| msgid "Search Locations"
2549
  msgid "Other Locations"
@@ -2568,7 +2569,7 @@ msgstr ""
2568
  msgid "Troubleshooting"
2569
  msgstr ""
2570
 
2571
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2572
  #, php-format
2573
  msgid "%s to %s"
2574
  msgstr "%s tot %s"
@@ -2604,7 +2605,7 @@ msgstr "Support"
2604
 
2605
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2606
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2607
- #: app/libraries/main.php:5265
2608
  msgid "Organizers"
2609
  msgstr "Organisatoren"
2610
 
@@ -2726,10 +2727,10 @@ msgstr "Zoek coupons"
2726
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2727
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2728
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2729
- #: app/features/mec/notifications.php:531
2730
- #: app/features/mec/notifications.php:543
2731
- #: app/features/mec/notifications.php:639
2732
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2733
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2734
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2735
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2849,7 +2850,7 @@ msgstr ""
2849
  msgid "Enable Express Attendees Form"
2850
  msgstr ""
2851
 
2852
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2853
  msgid "Attendees Form"
2854
  msgstr "Deelnemersformulier"
2855
 
@@ -2883,7 +2884,7 @@ msgstr "Automatisch verifiëren voor gratis boekingen"
2883
  msgid "Auto verification for paid bookings"
2884
  msgstr "Automatisch verifiëren voor betaalde boekingen"
2885
 
2886
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2887
  #: app/libraries/main.php:579
2888
  msgid "Booking Confirmation"
2889
  msgstr "Boekingsbevestiging"
@@ -2951,14 +2952,14 @@ msgid ""
2951
  msgstr ""
2952
 
2953
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2954
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
2955
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2956
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2957
  msgid "Saved"
2958
  msgstr "Opgeslagen"
2959
 
2960
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2961
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
2962
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2963
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2964
  msgid "Settings Saved!"
@@ -2966,15 +2967,15 @@ msgstr ""
2966
 
2967
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2968
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2969
- #: app/features/mec/notifications.php:620
2970
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
2971
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2972
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
2973
  msgid "Verified"
2974
  msgstr "Geverifieerd"
2975
 
2976
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2977
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
2978
  #: app/features/mec/single.php:291
2979
  msgid "Please Refresh Page"
2980
  msgstr ""
@@ -4117,8 +4118,8 @@ msgstr "Uitgeschakeld"
4117
  #: app/features/mec/meta_boxes/search_form.php:693
4118
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4119
  #: app/features/search.php:79 app/features/speakers.php:61
4120
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4121
- #: app/libraries/skins.php:928
4122
  msgid "Speaker"
4123
  msgstr ""
4124
 
@@ -4134,7 +4135,7 @@ msgstr ""
4134
  #: app/features/mec/meta_boxes/search_form.php:603
4135
  #: app/features/mec/meta_boxes/search_form.php:700
4136
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4137
- #: app/features/search.php:83 app/libraries/skins.php:954
4138
  #, fuzzy
4139
  #| msgid "Tags"
4140
  msgid "Tag"
@@ -4397,341 +4398,430 @@ msgstr ""
4397
  "Wordt gestuurd naar deelnemer op hem / haar op de hoogte te stellen van de "
4398
  "boeking."
4399
 
4400
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4401
- #: app/features/mec/notifications.php:161
4402
- #: app/features/mec/notifications.php:229
4403
- #: app/features/mec/notifications.php:299
4404
- #: app/features/mec/notifications.php:364
4405
- #: app/features/mec/notifications.php:445
4406
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4407
  msgid "Email Subject"
4408
  msgstr "Email onderwerp"
4409
 
4410
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4411
- #: app/features/mec/notifications.php:109
4412
- #: app/features/mec/notifications.php:113
4413
- #: app/features/mec/notifications.php:165
4414
- #: app/features/mec/notifications.php:169
4415
- #: app/features/mec/notifications.php:233
4416
- #: app/features/mec/notifications.php:237
4417
- #: app/features/mec/notifications.php:303
4418
- #: app/features/mec/notifications.php:307
4419
- #: app/features/mec/notifications.php:368
4420
- #: app/features/mec/notifications.php:372
4421
- #: app/features/mec/notifications.php:383
4422
- #: app/features/mec/notifications.php:449
4423
- #: app/features/mec/notifications.php:453
4424
- #: app/features/mec/notifications.php:497
4425
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4426
  msgid "Custom Recipients"
4427
  msgstr "Geadresseerden"
4428
 
4429
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4430
- #: app/features/mec/notifications.php:170
4431
- #: app/features/mec/notifications.php:238
4432
- #: app/features/mec/notifications.php:308
4433
- #: app/features/mec/notifications.php:373
4434
- #: app/features/mec/notifications.php:384
4435
- #: app/features/mec/notifications.php:454
4436
- #: app/features/mec/notifications.php:502
4437
  msgid "Insert comma separated emails for multiple recipients."
4438
  msgstr "Vul verschillende emailadressen in door ze met een komma te scheiden."
4439
 
4440
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4441
- #: app/features/mec/notifications.php:315
4442
  msgid "Send the email to event organizer"
4443
  msgstr ""
4444
 
4445
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4446
- #: app/features/mec/notifications.php:180
4447
- #: app/features/mec/notifications.php:256
4448
- #: app/features/mec/notifications.php:318
4449
- #: app/features/mec/notifications.php:390
4450
- #: app/features/mec/notifications.php:460
4451
- #: app/features/mec/notifications.php:508
4452
  msgid "Email Content"
4453
  msgstr "Email inhoud"
4454
 
4455
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4456
- #: app/features/mec/notifications.php:183
4457
- #: app/features/mec/notifications.php:259
4458
- #: app/features/mec/notifications.php:321
4459
- #: app/features/mec/notifications.php:393
4460
- #: app/features/mec/notifications.php:463
4461
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4462
  msgid "You can use following placeholders"
4463
  msgstr "U kunt de volgende placeholders gebruiken"
4464
 
4465
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4466
- #: app/features/mec/notifications.php:185
4467
- #: app/features/mec/notifications.php:261
4468
- #: app/features/mec/notifications.php:323
4469
- #: app/features/mec/notifications.php:395
 
4470
  msgid "First name of attendee"
4471
  msgstr "Voornaam van deelnemer"
4472
 
4473
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4474
- #: app/features/mec/notifications.php:186
4475
- #: app/features/mec/notifications.php:262
4476
- #: app/features/mec/notifications.php:324
4477
- #: app/features/mec/notifications.php:396
 
4478
  msgid "Last name of attendee"
4479
  msgstr "Achternaam van deelnemer"
4480
 
4481
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4482
- #: app/features/mec/notifications.php:187
4483
- #: app/features/mec/notifications.php:263
4484
- #: app/features/mec/notifications.php:325
4485
- #: app/features/mec/notifications.php:397
 
4486
  msgid "Email of attendee"
4487
  msgstr "Email van deelnemer"
4488
 
4489
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4490
- #: app/features/mec/notifications.php:188
4491
- #: app/features/mec/notifications.php:264
4492
- #: app/features/mec/notifications.php:326
4493
- #: app/features/mec/notifications.php:398
 
4494
  msgid "Booked date of event"
4495
  msgstr "Geboekte datum van het evenement"
4496
 
4497
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4498
- #: app/features/mec/notifications.php:189
4499
- #: app/features/mec/notifications.php:265
4500
- #: app/features/mec/notifications.php:327
4501
- #: app/features/mec/notifications.php:399
 
4502
  #, fuzzy
4503
  #| msgid "Booked date of event"
4504
  msgid "Booked time of event"
4505
  msgstr "Geboekte datum van het evenement"
4506
 
4507
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4508
- #: app/features/mec/notifications.php:190
4509
- #: app/features/mec/notifications.php:266
4510
- #: app/features/mec/notifications.php:328
4511
- #: app/features/mec/notifications.php:400
 
4512
  msgid "Booking Price"
4513
  msgstr ""
4514
 
4515
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4516
- #: app/features/mec/notifications.php:191
4517
- #: app/features/mec/notifications.php:267
4518
- #: app/features/mec/notifications.php:329
4519
- #: app/features/mec/notifications.php:401
 
4520
  msgid "Date and time of placing booking"
4521
  msgstr ""
4522
 
4523
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4524
- #: app/features/mec/notifications.php:192
4525
- #: app/features/mec/notifications.php:268
4526
- #: app/features/mec/notifications.php:330
4527
- #: app/features/mec/notifications.php:402
4528
- #: app/features/mec/notifications.php:471
4529
- #: app/features/mec/notifications.php:519
 
4530
  msgid "Your website title"
4531
  msgstr "Uw website titel"
4532
 
4533
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4534
- #: app/features/mec/notifications.php:193
4535
- #: app/features/mec/notifications.php:269
4536
- #: app/features/mec/notifications.php:331
4537
- #: app/features/mec/notifications.php:403
4538
- #: app/features/mec/notifications.php:472
4539
- #: app/features/mec/notifications.php:520
 
4540
  msgid "Your website URL"
4541
  msgstr "Uw website URL"
4542
 
4543
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4544
- #: app/features/mec/notifications.php:194
4545
- #: app/features/mec/notifications.php:270
4546
- #: app/features/mec/notifications.php:332
4547
- #: app/features/mec/notifications.php:404
4548
- #: app/features/mec/notifications.php:473
4549
- #: app/features/mec/notifications.php:521
 
4550
  msgid "Your website description"
4551
  msgstr "Uw website beschrijving"
4552
 
4553
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4554
- #: app/features/mec/notifications.php:195
4555
- #: app/features/mec/notifications.php:271
4556
- #: app/features/mec/notifications.php:333
4557
- #: app/features/mec/notifications.php:405
 
4558
  msgid "Event title"
4559
  msgstr "Evenement titel"
4560
 
4561
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4562
- #: app/features/mec/notifications.php:196
4563
- #: app/features/mec/notifications.php:272
4564
- #: app/features/mec/notifications.php:334
4565
- #: app/features/mec/notifications.php:406
 
4566
  #, fuzzy
4567
  msgid "Event link"
4568
  msgstr "Evenement locatie"
4569
 
4570
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4571
- #: app/features/mec/notifications.php:197
4572
- #: app/features/mec/notifications.php:467
4573
- #: app/features/mec/notifications.php:515
 
4574
  #, fuzzy
4575
  #| msgid "Start Date"
4576
  msgid "Event Start Date"
4577
  msgstr "Begindatum"
4578
 
4579
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4580
- #: app/features/mec/notifications.php:198
4581
- #: app/features/mec/notifications.php:468
4582
- #: app/features/mec/notifications.php:516
 
4583
  #, fuzzy
4584
  #| msgid "End Date"
4585
  msgid "Event End Date"
4586
  msgstr "Einddatum"
4587
 
4588
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4589
- #: app/features/mec/notifications.php:199
4590
- #: app/features/mec/notifications.php:273
4591
- #: app/features/mec/notifications.php:335
4592
- #: app/features/mec/notifications.php:407
 
4593
  #, fuzzy
4594
  #| msgid "Organizer name of booked event"
4595
  msgid "Speaker name of booked event"
4596
  msgstr "Organisator naam van geboekt evenement"
4597
 
4598
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4599
- #: app/features/mec/notifications.php:200
4600
- #: app/features/mec/notifications.php:274
4601
- #: app/features/mec/notifications.php:336
4602
- #: app/features/mec/notifications.php:408
 
4603
  msgid "Organizer name of booked event"
4604
  msgstr "Organisator naam van geboekt evenement"
4605
 
4606
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4607
- #: app/features/mec/notifications.php:201
4608
- #: app/features/mec/notifications.php:275
4609
- #: app/features/mec/notifications.php:337
4610
- #: app/features/mec/notifications.php:409
 
4611
  msgid "Organizer tel of booked event"
4612
  msgstr "Organisator telefoonnummer van geboekt evenement"
4613
 
4614
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4615
- #: app/features/mec/notifications.php:202
4616
- #: app/features/mec/notifications.php:276
4617
- #: app/features/mec/notifications.php:338
4618
- #: app/features/mec/notifications.php:410
 
4619
  msgid "Organizer email of booked event"
4620
  msgstr "Organisator email van geboekt evenement"
4621
 
4622
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4623
- #: app/features/mec/notifications.php:203
4624
- #: app/features/mec/notifications.php:277
4625
- #: app/features/mec/notifications.php:339
4626
- #: app/features/mec/notifications.php:411
 
4627
  msgid "Location name of booked event"
4628
  msgstr "Locatie naam van geboekt evenement"
4629
 
4630
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4631
- #: app/features/mec/notifications.php:204
4632
- #: app/features/mec/notifications.php:278
4633
- #: app/features/mec/notifications.php:340
4634
- #: app/features/mec/notifications.php:412
 
4635
  msgid "Location address of booked event"
4636
  msgstr "Locatie adres van geboekt evenement"
4637
 
4638
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4639
- #: app/features/mec/notifications.php:205
4640
- #: app/features/mec/notifications.php:279
4641
- #: app/features/mec/notifications.php:341
4642
- #: app/features/mec/notifications.php:413
 
4643
  #, fuzzy
4644
  #| msgid "Organizer name of booked event"
4645
  msgid "Featured image of booked event"
4646
  msgstr "Organisator naam van geboekt evenement"
4647
 
4648
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4649
- #: app/features/mec/notifications.php:343
 
4650
  msgid "Full Attendee info such as booking form data, name, email etc."
4651
  msgstr "Volledige deelnemers info zoals boekings datim, naam, email enz."
4652
 
4653
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4654
- #: app/features/mec/notifications.php:415
 
4655
  msgid "Invoice Link"
4656
  msgstr ""
4657
 
4658
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4659
- #: app/features/mec/notifications.php:208
4660
- #: app/features/mec/notifications.php:282
4661
- #: app/features/mec/notifications.php:344
4662
- #: app/features/mec/notifications.php:416
 
4663
  msgid "Total Attendees"
4664
  msgstr ""
4665
 
4666
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4667
- #: app/features/mec/notifications.php:210
4668
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4669
  #, fuzzy
4670
  #| msgid "Ticket Name"
4671
  msgid "Ticket name"
4672
  msgstr "Ticket naam"
4673
 
4674
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4675
- #: app/features/mec/notifications.php:211
4676
- #: app/features/mec/notifications.php:418
 
4677
  #, fuzzy
4678
  #| msgid "Ticket Name"
4679
  msgid "Ticket time"
4680
  msgstr "Ticket naam"
4681
 
4682
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4683
- #: app/features/mec/notifications.php:212
4684
- #: app/features/mec/notifications.php:419
 
4685
  msgid "Download ICS file"
4686
  msgstr ""
4687
 
4688
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4689
  msgid "Booking Verification"
4690
  msgstr "Boekingsverificatie"
4691
 
4692
- #: app/features/mec/notifications.php:103
4693
  msgid "It sends to attendee email for verifying their booking/email."
4694
  msgstr ""
4695
  "Wordt gestuurd naar de deelnemers email voor verificatie van hun boeking."
4696
 
4697
- #: app/features/mec/notifications.php:146
4698
  msgid "Email/Booking verification link."
4699
  msgstr "Email/boeking verificatie link"
4700
 
4701
- #: app/features/mec/notifications.php:159
4702
  msgid "It sends to attendee after confirming the booking by admin."
4703
  msgstr ""
4704
  "Wordt gestuurd naar de deelnemer om hem / haar op de hoogte te stellen voor "
4705
  "bevestiging van de boeking."
4706
 
4707
- #: app/features/mec/notifications.php:177
4708
  msgid "Send One Single Email Only To First Attendee"
4709
  msgstr ""
4710
 
4711
- #: app/features/mec/notifications.php:206
4712
- #: app/features/mec/notifications.php:414
4713
  msgid "Booking cancellation link."
4714
  msgstr "Annuleringslink boeking"
4715
 
4716
- #: app/features/mec/notifications.php:209
4717
- #, fuzzy
4718
- #| msgid "Tickets"
4719
- msgid "Amount Tickets"
4720
- msgstr "Tickets"
4721
-
4722
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4723
  #, fuzzy
4724
  #| msgid "Booking cancellation link."
4725
  msgid "Booking Cancellation"
4726
  msgstr "Annuleringslink boeking"
4727
 
4728
- #: app/features/mec/notifications.php:223
4729
  #, fuzzy
4730
  #| msgid "Enable new event notification"
4731
  msgid "Enable cancellation notification"
4732
  msgstr "Nieuwe evenement notificatie inschakelen"
4733
 
4734
- #: app/features/mec/notifications.php:227
4735
  #, fuzzy
4736
  #| msgid "It sends to attendee after booking for notifying him/her."
4737
  msgid ""
@@ -4741,46 +4831,46 @@ msgstr ""
4741
  "Wordt gestuurd naar deelnemer op hem / haar op de hoogte te stellen van de "
4742
  "boeking."
4743
 
4744
- #: app/features/mec/notifications.php:245
4745
- #: app/features/mec/notifications.php:439
4746
  msgid "Send the email to admin"
4747
  msgstr ""
4748
 
4749
- #: app/features/mec/notifications.php:253
4750
  msgid "Send the email to booking user"
4751
  msgstr ""
4752
 
4753
- #: app/features/mec/notifications.php:280
4754
- #: app/features/mec/notifications.php:342
4755
  msgid "Admin booking management link."
4756
  msgstr "Admin boeking beheer link"
4757
 
4758
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4759
  msgid "Admin"
4760
  msgstr ""
4761
 
4762
- #: app/features/mec/notifications.php:293
4763
  #, fuzzy
4764
  #| msgid "Enable new event notification"
4765
  msgid "Enable admin notification"
4766
  msgstr "Nieuwe evenement notificatie inschakelen"
4767
 
4768
- #: app/features/mec/notifications.php:297
4769
  msgid "It sends to admin to notify him/her that a new booking received."
4770
  msgstr ""
4771
  "Het zal een email sturen naar de admin om hem / haar te melden dat er een "
4772
  "nieuwe boeking is ontvangen."
4773
 
4774
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4775
- #: app/libraries/notifications.php:548
4776
  msgid "Booking Reminder"
4777
  msgstr ""
4778
 
4779
- #: app/features/mec/notifications.php:355
4780
  msgid "Enable booking reminder notification"
4781
  msgstr ""
4782
 
4783
- #: app/features/mec/notifications.php:361
4784
  #, php-format
4785
  msgid ""
4786
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4788,24 +4878,24 @@ msgid ""
4788
  "send the reminders multiple times."
4789
  msgstr ""
4790
 
4791
- #: app/features/mec/notifications.php:361
4792
  msgid "only once per day"
4793
  msgstr ""
4794
 
4795
- #: app/features/mec/notifications.php:379
4796
  msgid "Days"
4797
  msgstr ""
4798
 
4799
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4800
  #: app/libraries/main.php:583
4801
  msgid "New Event"
4802
  msgstr "Nieuw evenement"
4803
 
4804
- #: app/features/mec/notifications.php:433
4805
  msgid "Enable new event notification"
4806
  msgstr "Nieuwe evenement notificatie inschakelen"
4807
 
4808
- #: app/features/mec/notifications.php:443
4809
  msgid ""
4810
  "It sends after adding a new event from frontend event submission or from "
4811
  "website backend."
@@ -4813,47 +4903,47 @@ msgstr ""
4813
  "Het zal een email sturen als er een nieuw evenement op de pagina of in de "
4814
  "dashboard is aangemaakt."
4815
 
4816
- #: app/features/mec/notifications.php:465
4817
- #: app/features/mec/notifications.php:513
4818
  msgid "Title of event"
4819
  msgstr "Titel van evenement"
4820
 
4821
- #: app/features/mec/notifications.php:466
4822
- #: app/features/mec/notifications.php:514
4823
  #, fuzzy
4824
  #| msgid "Title of event"
4825
  msgid "Link of event"
4826
  msgstr "Titel van evenement"
4827
 
4828
- #: app/features/mec/notifications.php:469
4829
- #: app/features/mec/notifications.php:517
4830
  msgid "Status of event"
4831
  msgstr "Status evenement"
4832
 
4833
- #: app/features/mec/notifications.php:470
4834
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4835
  #: app/features/mec/settings.php:738
4836
  msgid "Event Note"
4837
  msgstr ""
4838
 
4839
- #: app/features/mec/notifications.php:474
4840
- #: app/features/mec/notifications.php:522
4841
  msgid "Admin events management link."
4842
  msgstr "Admin evenement beheer link"
4843
 
4844
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4845
  #, fuzzy
4846
  #| msgid "The event published."
4847
  msgid "User Event Publishing"
4848
  msgstr "Het evenement gepubliceerd."
4849
 
4850
- #: app/features/mec/notifications.php:487
4851
  #, fuzzy
4852
  #| msgid "Enable new event notification"
4853
  msgid "Enable user event publishing notification"
4854
  msgstr "Nieuwe evenement notificatie inschakelen"
4855
 
4856
- #: app/features/mec/notifications.php:491
4857
  #, fuzzy
4858
  #| msgid ""
4859
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5030,7 +5120,7 @@ msgid "You can enable/disable Schema scripts"
5030
  msgstr ""
5031
 
5032
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5033
- #: app/libraries/main.php:5272
5034
  msgid "Weekdays"
5035
  msgstr ""
5036
 
@@ -6243,12 +6333,12 @@ msgstr "bijv. john@smith.com"
6243
  msgid "eg. https://webnus.net"
6244
  msgstr ""
6245
 
6246
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6247
- #: app/skins/single.php:856
6248
  msgid "Other Organizers"
6249
  msgstr ""
6250
 
6251
- #: app/features/organizers.php:313
6252
  msgid ""
6253
  "You can select extra organizers in addition to main organizer if you like."
6254
  msgstr ""
@@ -6269,7 +6359,7 @@ msgstr "Uw boeking kan niet worden geannuleerd."
6269
  msgid "#"
6270
  msgstr ""
6271
 
6272
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6273
  msgid "Status"
6274
  msgstr ""
6275
 
@@ -6304,7 +6394,7 @@ msgstr ""
6304
  msgid "No bookings found!"
6305
  msgstr "Geen boekingen gevonden!"
6306
 
6307
- #: app/features/search.php:87 app/libraries/main.php:5262
6308
  msgid "label"
6309
  msgstr ""
6310
 
@@ -6330,74 +6420,92 @@ msgid "No search result."
6330
  msgstr ""
6331
 
6332
  #: app/features/search_bar/search_result.php:11
6333
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6334
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6335
- #: app/skins/single.php:160 app/skins/single.php:747
6336
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6337
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6338
  msgid "All of the day"
6339
  msgstr "Hele dag"
6340
 
6341
- #: app/features/speakers.php:110 app/features/speakers.php:179
6342
- #: app/features/speakers.php:255
6343
  #, fuzzy
6344
  #| msgid "Title"
6345
  msgid "Job Title"
6346
  msgstr "Titel"
6347
 
6348
- #: app/features/speakers.php:113 app/features/speakers.php:180
6349
  msgid "Insert speaker job title."
6350
  msgstr ""
6351
 
6352
- #: app/features/speakers.php:121 app/features/speakers.php:184
6353
  #, fuzzy
6354
  #| msgid "Insert organizer phone number."
6355
  msgid "Insert speaker phone number."
6356
  msgstr "Voer telefoonnummer organisator in."
6357
 
6358
- #: app/features/speakers.php:129 app/features/speakers.php:188
6359
  #, fuzzy
6360
  #| msgid "Insert organizer email address."
6361
  msgid "Insert speaker email address."
6362
  msgstr "Voer organisator email adres in."
6363
 
6364
- #: app/features/speakers.php:134 app/features/speakers.php:191
6365
  #, fuzzy
6366
  #| msgid "Facebook"
6367
  msgid "Facebook Page"
6368
  msgstr "Facebook"
6369
 
6370
- #: app/features/speakers.php:137 app/features/speakers.php:192
6371
  msgid "Insert URL of Facebook Page"
6372
  msgstr ""
6373
 
6374
- #: app/features/speakers.php:142 app/features/speakers.php:195
6375
  msgid "Instagram"
6376
  msgstr ""
6377
 
6378
- #: app/features/speakers.php:145 app/features/speakers.php:196
6379
  #, fuzzy
6380
  #| msgid "Insert -1 for unlimited usage"
6381
  msgid "Insert URL of Instagram"
6382
  msgstr "Voer -1 in voor onbeperkt gebruik"
6383
 
6384
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6385
  #, fuzzy
6386
  #| msgid "Twitter"
6387
  msgid "Twitter Page"
6388
  msgstr "Twitter"
6389
 
6390
- #: app/features/speakers.php:153 app/features/speakers.php:200
6391
  #, fuzzy
6392
  #| msgid "Insert -1 for unlimited usage"
6393
  msgid "Insert URL of Twitter Page"
6394
  msgstr "Voer -1 in voor onbeperkt gebruik"
6395
 
6396
- #: app/features/speakers.php:315
 
 
 
 
 
 
6397
  msgid "Sorry, You must insert speaker name!"
6398
  msgstr ""
6399
 
6400
- #: app/features/speakers.php:364
6401
  msgid ""
6402
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6403
  "section and speaker widget section!"
@@ -6558,31 +6666,31 @@ msgstr "Dagweergave"
6558
  msgid "Tile View"
6559
  msgstr "Dagweergave"
6560
 
6561
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6562
  msgid "SU"
6563
  msgstr "ZO"
6564
 
6565
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6566
  msgid "MO"
6567
  msgstr "MA"
6568
 
6569
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6570
  msgid "TU"
6571
  msgstr "DI"
6572
 
6573
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6574
  msgid "WE"
6575
  msgstr "WO"
6576
 
6577
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6578
  msgid "TH"
6579
  msgstr "DO"
6580
 
6581
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6582
  msgid "FR"
6583
  msgstr "VR"
6584
 
6585
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6586
  msgid "SA"
6587
  msgstr "ZA"
6588
 
@@ -6849,173 +6957,173 @@ msgstr "Aanvraag is ongeldig!"
6849
  msgid "iCal export stopped!"
6850
  msgstr "iCal exporteren gestopt!"
6851
 
6852
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6853
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6854
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6855
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6856
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6857
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6858
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6859
  msgid "Sort"
6860
  msgstr "Sorteren"
6861
 
6862
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6863
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6864
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6865
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6866
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6867
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6868
  msgid "Required Field"
6869
  msgstr "Verplicht veld"
6870
 
6871
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6872
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6873
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6874
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6875
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6876
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6877
  msgid "Insert a label for this field"
6878
  msgstr "Voer een label in voor dit veld"
6879
 
6880
- #: app/libraries/main.php:2958
6881
  msgid "HTML and shortcode are allowed."
6882
  msgstr "HTML en shortcodes zijn toegestaan."
6883
 
6884
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
6885
- #: app/libraries/main.php:3089
6886
  msgid "Option"
6887
  msgstr "Optie"
6888
 
6889
- #: app/libraries/main.php:3123
6890
  #, php-format
6891
  msgid "Instead of %s, the page title with a link will be show."
6892
  msgstr ""
6893
 
6894
- #: app/libraries/main.php:3125
6895
  msgid "Agreement Page"
6896
  msgstr ""
6897
 
6898
- #: app/libraries/main.php:3136
6899
  msgid "Checked by default"
6900
  msgstr ""
6901
 
6902
- #: app/libraries/main.php:3137
6903
  msgid "Unchecked by default"
6904
  msgstr ""
6905
 
6906
- #: app/libraries/main.php:3160
6907
  msgid "Insert a label for this option"
6908
  msgstr "Voer een label in voor deze optie"
6909
 
6910
- #: app/libraries/main.php:3175
6911
  msgid "Free"
6912
  msgstr "Gratis"
6913
 
6914
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
6915
  #, fuzzy
6916
  #| msgid "M.E. Calendar"
6917
  msgid "M.E. Calender"
6918
  msgstr "M.E. Calendar"
6919
 
6920
- #: app/libraries/main.php:3936
6921
  #, php-format
6922
  msgid "Copy of %s"
6923
  msgstr ""
6924
 
6925
- #: app/libraries/main.php:4651
6926
  msgid "Booked an event."
6927
  msgstr ""
6928
 
6929
- #: app/libraries/main.php:4692
6930
  #, php-format
6931
  msgid "%s booked %s event."
6932
  msgstr ""
6933
 
6934
- #: app/libraries/main.php:5257
6935
  msgid "Taxonomies"
6936
  msgstr ""
6937
 
6938
- #: app/libraries/main.php:5259
6939
  msgid "Category Plural Label"
6940
  msgstr ""
6941
 
6942
- #: app/libraries/main.php:5260
6943
  msgid "Category Singular Label"
6944
  msgstr ""
6945
 
6946
- #: app/libraries/main.php:5261
6947
  msgid "Label Plural Label"
6948
  msgstr ""
6949
 
6950
- #: app/libraries/main.php:5262
6951
  msgid "Label Singular Label"
6952
  msgstr ""
6953
 
6954
- #: app/libraries/main.php:5263
6955
  msgid "Location Plural Label"
6956
  msgstr ""
6957
 
6958
- #: app/libraries/main.php:5264
6959
  msgid "Location Singular Label"
6960
  msgstr ""
6961
 
6962
- #: app/libraries/main.php:5265
6963
  msgid "Organizer Plural Label"
6964
  msgstr ""
6965
 
6966
- #: app/libraries/main.php:5266
6967
  msgid "Organizer Singular Label"
6968
  msgstr ""
6969
 
6970
- #: app/libraries/main.php:5267
6971
  #, fuzzy
6972
  #| msgid "Search Labels"
6973
  msgid "Speaker Plural Label"
6974
  msgstr "Zoek labels"
6975
 
6976
- #: app/libraries/main.php:5268
6977
  #, fuzzy
6978
  #| msgid "Popular Labels"
6979
  msgid "Speaker Singular Label"
6980
  msgstr "Populaire labels"
6981
 
6982
- #: app/libraries/main.php:5274
6983
  msgid "Sunday abbreviation"
6984
  msgstr ""
6985
 
6986
- #: app/libraries/main.php:5275
6987
  msgid "Monday abbreviation"
6988
  msgstr ""
6989
 
6990
- #: app/libraries/main.php:5276
6991
  msgid "Tuesday abbreviation"
6992
  msgstr ""
6993
 
6994
- #: app/libraries/main.php:5277
6995
  msgid "Wednesday abbreviation"
6996
  msgstr ""
6997
 
6998
- #: app/libraries/main.php:5278
6999
  msgid "Thursday abbreviation"
7000
  msgstr ""
7001
 
7002
- #: app/libraries/main.php:5279
7003
  msgid "Friday abbreviation"
7004
  msgstr ""
7005
 
7006
- #: app/libraries/main.php:5280
7007
  msgid "Saturday abbreviation"
7008
  msgstr ""
7009
 
7010
- #: app/libraries/main.php:5284
7011
  msgid "Others"
7012
  msgstr ""
7013
 
7014
- #: app/libraries/main.php:5286
7015
  msgid "Booking Success Message"
7016
  msgstr ""
7017
 
7018
- #: app/libraries/main.php:5286
7019
  msgid ""
7020
  "Thanks for your booking. Your tickets booked, booking verification might be "
7021
  "needed, please check your email."
@@ -7023,17 +7131,17 @@ msgstr ""
7023
  "Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
7024
  "nodig zijn, controleer uw email alstublieft."
7025
 
7026
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7027
  msgid "Register Button"
7028
  msgstr ""
7029
 
7030
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7031
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7032
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7033
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7034
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7035
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7036
- #: app/skins/single.php:771 app/skins/single/default.php:255
7037
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7038
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7039
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7044,11 +7152,11 @@ msgstr ""
7044
  msgid "REGISTER"
7045
  msgstr "REGISTREREN"
7046
 
7047
- #: app/libraries/main.php:5288
7048
  msgid "View Detail Button"
7049
  msgstr ""
7050
 
7051
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7052
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7053
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7054
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7059,85 +7167,85 @@ msgstr ""
7059
  msgid "View Detail"
7060
  msgstr "Bekijk detail"
7061
 
7062
- #: app/libraries/main.php:5289
7063
  msgid "Event Detail Button"
7064
  msgstr ""
7065
 
7066
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7067
  #, fuzzy
7068
  msgid "Event Detail"
7069
  msgstr "Evenement details"
7070
 
7071
- #: app/libraries/main.php:5291
7072
  msgid "More Info Link"
7073
  msgstr ""
7074
 
7075
- #: app/libraries/main.php:5294
7076
  msgid "Ticket (Singular)"
7077
  msgstr ""
7078
 
7079
- #: app/libraries/main.php:5295
7080
  msgid "Tickets (Plural)"
7081
  msgstr ""
7082
 
7083
- #: app/libraries/main.php:5381
7084
  msgid "EventON"
7085
  msgstr ""
7086
 
7087
- #: app/libraries/main.php:5382
7088
  msgid "The Events Calendar"
7089
  msgstr ""
7090
 
7091
- #: app/libraries/main.php:5383
7092
  msgid "Events Schedule WP Plugin"
7093
  msgstr ""
7094
 
7095
- #: app/libraries/main.php:5384
7096
  msgid "Calendarize It"
7097
  msgstr ""
7098
 
7099
- #: app/libraries/main.php:5385
7100
  #, fuzzy
7101
  msgid "Event Espresso"
7102
  msgstr "Zoek locaties"
7103
 
7104
- #: app/libraries/main.php:5386
7105
  #, fuzzy
7106
  #| msgid "Event Repeating"
7107
  msgid "Events Manager (Recurring)"
7108
  msgstr "Terugkerend evenement"
7109
 
7110
- #: app/libraries/main.php:5387
7111
  #, fuzzy
7112
  #| msgid "Modern Events Calendar"
7113
  msgid "Events Manager (Single)"
7114
  msgstr "Modern Events Calendar"
7115
 
7116
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7117
  msgid "Confirmed"
7118
  msgstr "Bevestigd"
7119
 
7120
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7121
  msgid "Rejected"
7122
  msgstr "Afgewezen"
7123
 
7124
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7125
  msgid "Pending"
7126
  msgstr "In afwachting"
7127
 
7128
- #: app/libraries/main.php:5511
7129
  msgid "Waiting"
7130
  msgstr "In afwachting"
7131
 
7132
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7133
  msgid "Skin controller does not exist."
7134
  msgstr "Skin controller bestaat niet."
7135
 
7136
- #: app/libraries/main.php:5830
7137
  msgid "Sold Out"
7138
  msgstr ""
7139
 
7140
- #: app/libraries/main.php:5838
7141
  #, fuzzy
7142
  #| msgid "Ticket"
7143
  msgid "Last Few Tickets"
@@ -7147,57 +7255,57 @@ msgstr "Ticket"
7147
  msgid "Please verify your email."
7148
  msgstr "Controleer uw email."
7149
 
7150
- #: app/libraries/notifications.php:142
7151
  msgid "Your booking is received."
7152
  msgstr ""
7153
 
7154
- #: app/libraries/notifications.php:249
7155
  msgid "Your booking is confirmed."
7156
  msgstr "Uw boeking is bevestigd."
7157
 
7158
- #: app/libraries/notifications.php:391
7159
  #, fuzzy
7160
  #| msgid "Your booking cannot be canceled."
7161
  msgid "booking canceled."
7162
  msgstr "Uw boeking kan niet worden geannuleerd."
7163
 
7164
- #: app/libraries/notifications.php:466
7165
  msgid "A new booking is received."
7166
  msgstr "Een nieuwe boeking ontvangen."
7167
 
7168
- #: app/libraries/notifications.php:657
7169
  msgid "A new event is added."
7170
  msgstr "Een nieuw evenement is toegevoegd."
7171
 
7172
- #: app/libraries/notifications.php:726
7173
  #, fuzzy
7174
  #| msgid "The event published."
7175
  msgid "Your event is published."
7176
  msgstr "Het evenement gepubliceerd."
7177
 
7178
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7179
- #: app/libraries/notifications.php:964
7180
  msgid "to"
7181
  msgstr ""
7182
 
7183
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7184
  msgid "+ Add to Google Calendar"
7185
  msgstr "+ Aan Google Kalender toevoegen"
7186
 
7187
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7188
  msgid "+ iCal export"
7189
  msgstr "+ iCal export"
7190
 
7191
- #: app/libraries/notifications.php:1043
7192
  msgid "Yes"
7193
  msgstr ""
7194
 
7195
- #: app/libraries/notifications.php:1043
7196
  msgid "No"
7197
  msgstr ""
7198
 
7199
- #: app/libraries/skins.php:1000
7200
- msgid "none"
7201
  msgstr ""
7202
 
7203
  #: app/modules/attendees-list/details.php:36
@@ -7235,12 +7343,18 @@ msgstr ""
7235
  msgid "Free Booking"
7236
  msgstr ""
7237
 
 
 
 
 
 
 
7238
  #: app/modules/booking/steps/form.php:165
7239
  msgid "Fill other attendees information like the first form."
7240
  msgstr ""
7241
 
7242
  #: app/modules/booking/steps/form.php:179
7243
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7244
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7245
  msgid "Next"
7246
  msgstr "Volgende"
@@ -7254,17 +7368,17 @@ msgstr "Bedankt voor uw boeking"
7254
  msgid "Book Event"
7255
  msgstr "Evenement boeken"
7256
 
7257
- #: app/modules/booking/steps/tickets.php:44
7258
  #, php-format
7259
  msgid "Available %s: <span>%s</span>"
7260
  msgstr ""
7261
 
7262
- #: app/modules/booking/steps/tickets.php:48
7263
  #, php-format
7264
- msgid "The %s ticket sales has stoped!"
7265
  msgstr ""
7266
 
7267
- #: app/modules/booking/steps/tickets.php:49
7268
  #, php-format
7269
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7270
  msgstr ""
@@ -7285,7 +7399,7 @@ msgstr "Adres ..."
7285
  msgid "Get Directions"
7286
  msgstr ""
7287
 
7288
- #: app/modules/links/details.php:17 app/skins/single.php:455
7289
  msgid "Share this event"
7290
  msgstr "Deel dit evenement"
7291
 
@@ -7312,7 +7426,7 @@ msgstr ""
7312
  msgid "Go to occurrence page"
7313
  msgstr ""
7314
 
7315
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7316
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7317
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7318
  msgid "Time"
@@ -7441,27 +7555,27 @@ msgstr "Geen evenementen"
7441
  msgid "Home"
7442
  msgstr ""
7443
 
7444
- #: app/skins/single.php:538 app/skins/single/default.php:51
7445
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7446
  #: app/skins/single/modern.php:265
7447
  msgid "Sold out!"
7448
  msgstr ""
7449
 
7450
- #: app/skins/single.php:816 app/skins/single.php:871
7451
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7452
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7453
  #: app/skins/single/modern.php:44
7454
  msgid "Phone"
7455
  msgstr "Telefoon"
7456
 
7457
- #: app/skins/single.php:830 app/skins/single.php:885
7458
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7459
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7460
  #: app/skins/single/modern.php:58
7461
  msgid "Website"
7462
  msgstr "Website"
7463
 
7464
- #: app/skins/single.php:955
7465
  #, fuzzy
7466
  msgid "Speakers:"
7467
  msgstr "Zoek locaties"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
275
  msgid "Add New Event"
276
  msgstr "Voeg nieuw evenement toe"
277
 
278
+ #: app/features/events.php:161 app/features/ix.php:3889
279
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
280
  msgid "No events found!"
281
  msgstr "Geen evenementen gevonden!"
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
+ #: app/features/search.php:67 app/libraries/main.php:5278
314
+ #: app/libraries/skins.php:858 app/skins/single.php:566
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
317
  #: app/skins/single/modern.php:113
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
324
  msgid "Categories"
325
  msgstr "Categorieën"
326
 
409
  msgstr "Terugkerend evenement"
410
 
411
  #: app/features/events.php:333 app/features/events.php:1286
412
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
413
  msgid "Hourly Schedule"
414
  msgstr "Urenschema"
415
 
426
 
427
  #: app/features/events.php:336 app/features/events.php:3322
428
  #: app/features/events.php:3513 app/features/events.php:3555
429
+ #: app/features/ix.php:3510 app/features/ix.php:3551
430
  #: app/features/mec/meta_boxes/display_options.php:960
431
  #: app/features/mec/meta_boxes/search_form.php:45
432
  #: app/features/mec/meta_boxes/search_form.php:107
443
  #: app/features/organizers.php:58 app/features/organizers.php:204
444
  #: app/features/organizers.php:260 app/features/organizers.php:262
445
  #: app/features/organizers.php:271 app/features/search.php:75
446
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
447
+ #: app/skins/single.php:812 app/skins/single/default.php:217
448
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
449
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
450
  msgid "Organizer"
451
  msgstr "Organisator"
452
 
453
  #: app/features/events.php:337 app/features/events.php:1172
454
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
455
+ #: app/skins/single.php:589 app/skins/single/default.php:126
456
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
457
  #: app/skins/single/modern.php:208
458
  msgid "Cost"
470
  #: app/features/events.php:3802 app/features/fes.php:223
471
  #: app/features/fes/form.php:689 app/features/labels.php:178
472
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
473
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
474
  #: app/modules/booking/steps/form.php:37
475
  msgid "Name"
476
  msgstr "Naam"
480
  #: app/features/fes.php:223 app/features/fes/form.php:685
481
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
482
  #: app/features/organizers.php:111 app/features/organizers.php:152
483
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
484
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
485
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
486
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
487
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
488
+ #: app/skins/single.php:884 app/skins/single/default.php:234
489
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
490
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
491
  msgid "Email"
498
  #: app/features/events.php:491 app/features/events.php:497
499
  #: app/features/events.php:3323 app/features/events.php:3513
500
  #: app/features/events.php:3555 app/features/fes/form.php:247
501
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
502
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
503
  #: app/features/mec/dashboard.php:400
504
  #: app/features/mec/meta_boxes/display_options.php:48
505
  #: app/features/mec/meta_boxes/display_options.php:228
536
  #: app/features/events.php:583 app/features/events.php:588
537
  #: app/features/events.php:3324 app/features/events.php:3513
538
  #: app/features/events.php:3555 app/features/fes/form.php:287
539
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
540
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
541
  #: app/features/mec/dashboard.php:401
542
  msgid "End Date"
543
  msgstr "Einddatum"
621
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
622
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
623
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
624
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
625
+ #: app/features/mec/notifications.php:277
626
+ #: app/features/mec/notifications.php:380
627
+ #: app/features/mec/notifications.php:486
628
+ #: app/features/mec/notifications.php:587
629
+ #: app/features/mec/notifications.php:598
630
+ #: app/features/mec/notifications.php:704
631
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
632
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
633
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
634
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
644
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
645
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
646
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
647
+ #: app/skins/single.php:674 app/skins/single/default.php:141
648
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
649
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
650
  #, fuzzy
827
 
828
  #: app/features/events.php:1168 app/features/events.php:3513
829
  #: app/features/events.php:3555 app/features/fes/form.php:727
830
+ #: app/features/ix.php:3510 app/features/ix.php:3551
831
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
832
  #: app/widgets/single.php:103
833
  msgid "Event Cost"
834
  msgstr "Evenements kosten"
846
  #: app/features/events.php:1204 app/features/events.php:2541
847
  #: app/features/fes.php:223 app/features/mec/booking.php:491
848
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
849
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
850
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
851
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
852
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
853
  msgid "Date"
884
  #: app/features/events.php:1437 app/features/events.php:2322
885
  #: app/features/events.php:2369 app/features/events.php:3319
886
  #: app/features/events.php:3513 app/features/events.php:3555
887
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
888
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
889
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
890
  msgid "Title"
891
  msgstr "Titel"
898
  #: app/features/events.php:2357 app/features/events.php:2399
899
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
900
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
901
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
902
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
903
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
904
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
905
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
906
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
907
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
908
  msgid "Remove"
909
  msgstr "Verwijderen"
910
 
932
  #: app/features/events.php:1445 app/features/fes/form.php:851
933
  #: app/features/mec.php:410 app/features/mec/modules.php:52
934
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
935
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
936
  #: app/modules/speakers/details.php:18
937
  msgid "Speakers"
938
  msgstr ""
949
  msgstr "Evenement locatie"
950
 
951
  #: app/features/events.php:1479 app/features/events.php:1485
952
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
953
  #, fuzzy
954
  msgid "Event Link"
955
  msgstr "Evenement locatie"
974
  msgstr ""
975
 
976
  #: app/features/events.php:1495 app/features/events.php:1508
977
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
978
+ #: app/skins/single.php:673 app/skins/single/default.php:140
979
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
980
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
981
  #: app/widgets/single.php:107
1010
 
1011
  #: app/features/events.php:1596 app/features/events.php:1849
1012
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1013
+ #: app/modules/booking/steps/tickets.php:40
1014
  #: app/skins/available_spot/tpl.php:160
1015
  msgid "Unlimited"
1016
  msgstr "Onbeperkt"
1046
  msgstr ""
1047
 
1048
  #: app/features/events.php:1653 app/libraries/book.php:60
1049
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1050
  msgid "Tickets"
1051
  msgstr "Tickets"
1052
 
1069
 
1070
  #: app/features/events.php:1680 app/features/events.php:1955
1071
  #: app/features/events.php:3513 app/features/events.php:3555
1072
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1073
  msgid "Start Time"
1074
  msgstr ""
1075
 
1076
  #: app/features/events.php:1739 app/features/events.php:1985
1077
  #: app/features/events.php:3513 app/features/events.php:3555
1078
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1079
  msgid "End Time"
1080
  msgstr ""
1081
 
1107
  msgid "Available Tickets"
1108
  msgstr "Beschikbare tickets"
1109
 
1110
+ #: app/features/events.php:1853 app/features/events.php:2068
1111
  #, fuzzy
1112
  #| msgid "Maximum events"
1113
  msgid "Minimum Ticket e.g. 3"
1114
  msgstr "Mximum evenementen"
1115
 
1116
+ #: app/features/events.php:1856 app/features/events.php:2071
1117
  #, fuzzy
1118
  #| msgid "Maximum events"
1119
  msgid "MinimumTicket"
1120
  msgstr "Mximum evenementen"
1121
 
1122
+ #: app/features/events.php:1858 app/features/events.php:2073
1123
  msgid "Set a number for the minimum ticket reservation"
1124
  msgstr ""
1125
 
1126
+ #: app/features/events.php:1866 app/features/events.php:2081
1127
  msgid "e.g. 0"
1128
  msgstr ""
1129
 
1130
+ #: app/features/events.php:1868 app/features/events.php:2083
1131
  #, fuzzy
1132
  #| msgid "Daily"
1133
  msgid "Day"
1134
  msgstr "Dagelijks"
1135
 
1136
+ #: app/features/events.php:1869 app/features/events.php:2084
1137
  msgid "Hour"
1138
  msgstr ""
1139
 
1140
+ #: app/features/events.php:1871 app/features/events.php:2086
1141
  #, php-format
1142
  msgid "Stop selling ticket %s before event start."
1143
  msgstr ""
1163
  #: app/features/mec/meta_boxes/search_form.php:610
1164
  #: app/features/mec/meta_boxes/search_form.php:707
1165
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1166
+ #: app/libraries/skins.php:988
1167
  msgid "Label"
1168
  msgstr "Label"
1169
 
1233
  msgstr ""
1234
 
1235
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1236
+ #: app/libraries/main.php:2767
1237
  #, fuzzy
1238
  #| msgid "Name"
1239
  msgid "MEC Name"
1240
  msgstr "Naam"
1241
 
1242
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1243
+ #: app/libraries/main.php:2796
1244
  #, fuzzy
1245
  #| msgid "Email"
1246
  msgid "MEC Email"
1247
  msgstr "Email"
1248
 
1249
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1250
+ #: app/libraries/main.php:2737
1251
  msgid "Text"
1252
  msgstr "Tekst"
1253
 
1254
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1255
  #: app/features/organizers.php:103 app/features/organizers.php:148
1256
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1257
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1258
  msgid "Tel"
1259
  msgstr "Tel"
1260
 
1261
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1262
+ #: app/libraries/main.php:2855
1263
  msgid "File"
1264
  msgstr ""
1265
 
1266
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1267
+ #: app/libraries/main.php:2942
1268
  msgid "Textarea"
1269
  msgstr "Tekstgebied"
1270
 
1271
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1272
+ #: app/libraries/main.php:2995
1273
  msgid "Checkboxes"
1274
  msgstr "Checkboxes"
1275
 
1276
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1277
+ #: app/libraries/main.php:3039
1278
  msgid "Radio Buttons"
1279
  msgstr "Radio knoppen"
1280
 
1354
  #: app/features/mec/meta_boxes/search_form.php:696
1355
  #: app/features/mec/meta_boxes/search_form.php:703
1356
  #: app/features/mec/meta_boxes/search_form.php:710
1357
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1358
  msgid "Dropdown"
1359
  msgstr "Dropdown"
1360
 
1361
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1362
+ #: app/libraries/main.php:3130
1363
  msgid "Agreement"
1364
  msgstr ""
1365
 
1366
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1367
+ #: app/libraries/main.php:2971
1368
  msgid "Paragraph"
1369
  msgstr "Paragraaf"
1370
 
1393
  msgstr "Aanwezige"
1394
 
1395
  #: app/features/events.php:3321 app/features/events.php:3513
1396
+ #: app/features/events.php:3555 app/features/ix.php:3510
1397
+ #: app/features/ix.php:3551 app/features/locations.php:58
1398
  #: app/features/locations.php:230 app/features/locations.php:287
1399
  #: app/features/locations.php:289 app/features/locations.php:298
1400
  #: app/features/mec/meta_boxes/display_options.php:959
1411
  #: app/features/mec/meta_boxes/search_form.php:679
1412
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1413
  #: app/features/search.php:71 app/libraries/main.php:2236
1414
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1415
+ #: app/skins/single.php:493 app/skins/single.php:924
1416
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1417
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1418
  #: app/skins/single/modern.php:97
1453
  msgstr ""
1454
 
1455
  #: app/features/events.php:3513 app/features/events.php:3555
1456
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1457
  #: app/features/labels.php:177 app/features/locations.php:229
1458
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1459
  msgid "ID"
1460
  msgstr "ID"
1461
 
1462
  #: app/features/events.php:3513 app/features/events.php:3555
1463
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1464
  msgid "Link"
1465
  msgstr ""
1466
 
1476
 
1477
  #: app/features/events.php:3808 app/features/fes.php:223
1478
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1479
+ #: app/libraries/main.php:5312
1480
  msgid "Ticket"
1481
  msgstr "Ticket"
1482
 
1655
 
1656
  #: app/features/fes/form.php:783 app/features/labels.php:61
1657
  #: app/features/labels.php:221 app/features/mec.php:403
1658
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1659
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1660
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1661
  #: app/skins/single/modern.php:223
1662
  msgid "Labels"
1734
  msgid "The events are imported successfully!"
1735
  msgstr ""
1736
 
1737
+ #: app/features/ix.php:943
1738
  msgid "Third Party plugin is not installed and activated!"
1739
  msgstr ""
1740
 
1741
+ #: app/features/ix.php:966
1742
  msgid "Third Party plugin is invalid!"
1743
  msgstr ""
1744
 
1745
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1746
  msgid "Both of API key and Calendar ID are required!"
1747
  msgstr ""
1748
 
1749
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1750
  msgid "Please select some events to import!"
1751
  msgstr ""
1752
 
1753
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1754
  msgid "Both of API key and Group URL are required!"
1755
  msgstr ""
1756
 
1757
+ #: app/features/ix.php:3433
1758
  msgid "Check at Meetup"
1759
  msgstr ""
1760
 
1761
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1762
  msgid "Organizer Tel"
1763
  msgstr ""
1764
 
1765
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1766
  msgid "Organizer Email"
1767
  msgstr ""
1768
 
1769
+ #: app/features/ix.php:3632
1770
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1771
  msgstr ""
1772
 
1773
+ #: app/features/ix.php:3655
1774
  #, php-format
1775
  msgid "All seems good! Please click %s for authenticating your app."
1776
  msgstr ""
1777
 
1778
+ #: app/features/ix.php:3709
1779
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1780
  msgstr ""
1781
 
1782
+ #: app/features/ix.php:3825
1783
  #, php-format
1784
  msgid "%s events added to Google Calendar successfully."
1785
  msgstr ""
1786
 
1787
+ #: app/features/ix.php:3826
1788
  #, php-format
1789
  msgid "%s previously added events get updated."
1790
  msgstr ""
1791
 
1792
+ #: app/features/ix.php:3827
1793
  #, php-format
1794
  msgid "%s events failed to add for following reasons: %s"
1795
  msgstr ""
1796
 
1797
+ #: app/features/ix.php:3859
1798
  msgid "Please insert your Facebook page's link."
1799
  msgstr ""
1800
 
1801
+ #: app/features/ix.php:3868
1802
  msgid ""
1803
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1804
  "valid Facebook page link."
1805
  msgstr ""
1806
 
1807
+ #: app/features/ix.php:3900
1808
  msgid "Please insert your facebook page's link."
1809
  msgstr ""
1810
 
1811
+ #: app/features/ix.php:3905
1812
  msgid ""
1813
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1814
  "valid facebook page link."
1973
  #: app/features/ix/export_g_calendar.php:72
1974
  #: app/features/ix/export_g_calendar.php:147
1975
  #: app/features/ix/export_g_calendar.php:164
1976
+ #: app/features/mec/notifications.php:131
1977
+ #: app/features/mec/notifications.php:223
1978
+ #: app/features/mec/notifications.php:320
1979
+ #: app/features/mec/notifications.php:635
1980
  msgid "Add to Google Calendar"
1981
  msgstr ""
1982
 
1983
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
1984
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
1985
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
1986
  msgid "Checking ..."
1987
  msgstr ""
2225
 
2226
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2227
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2228
+ #: app/features/mec/notifications.php:540
2229
  msgid "Important Note"
2230
  msgstr ""
2231
 
2401
  msgstr "Uitgelichte afbeelding"
2402
 
2403
  #: app/features/labels.php:118 app/features/labels.php:143
2404
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2405
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2406
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2407
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2420
  msgstr ""
2421
 
2422
  #: app/features/labels.php:180 app/features/locations.php:232
2423
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2424
  #: app/modules/booking/steps/tickets.php:38
2425
  msgid "Count"
2426
  msgstr "Aantal keer gebruikt"
2437
 
2438
  #: app/features/locations.php:59 app/features/mec.php:404
2439
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2440
+ #: app/libraries/main.php:5281
2441
  msgid "Locations"
2442
  msgstr "Locaties"
2443
 
2470
 
2471
  #: app/features/locations.php:138 app/features/locations.php:180
2472
  #: app/features/organizers.php:127 app/features/organizers.php:160
2473
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2474
  msgid "Thumbnail"
2475
  msgstr "Thumbnail"
2476
 
2477
  #: app/features/locations.php:143 app/features/locations.php:183
2478
  #: app/features/organizers.php:132 app/features/organizers.php:163
2479
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2480
  msgid "Upload/Add image"
2481
  msgstr "Upload/toevoegen afbeelding"
2482
 
2484
  #: app/features/locations.php:340 app/features/locations.php:347
2485
  #: app/features/organizers.php:133 app/features/organizers.php:164
2486
  #: app/features/organizers.php:299 app/features/organizers.php:306
2487
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2488
  msgid "Remove image"
2489
  msgstr "Verwijder afbeelding"
2490
 
2544
  msgid "Don't show map in single event page"
2545
  msgstr "Verberg de map op de pagina van het evenement"
2546
 
2547
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2548
  #, fuzzy
2549
  #| msgid "Search Locations"
2550
  msgid "Other Locations"
2569
  msgid "Troubleshooting"
2570
  msgstr ""
2571
 
2572
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2573
  #, php-format
2574
  msgid "%s to %s"
2575
  msgstr "%s tot %s"
2605
 
2606
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2607
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2608
+ #: app/libraries/main.php:5283
2609
  msgid "Organizers"
2610
  msgstr "Organisatoren"
2611
 
2727
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2728
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2729
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2730
+ #: app/features/mec/notifications.php:816
2731
+ #: app/features/mec/notifications.php:828
2732
+ #: app/features/mec/notifications.php:924
2733
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2734
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2735
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2736
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2850
  msgid "Enable Express Attendees Form"
2851
  msgstr ""
2852
 
2853
+ #: app/features/mec/booking.php:186
2854
  msgid "Attendees Form"
2855
  msgstr "Deelnemersformulier"
2856
 
2884
  msgid "Auto verification for paid bookings"
2885
  msgstr "Automatisch verifiëren voor betaalde boekingen"
2886
 
2887
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2888
  #: app/libraries/main.php:579
2889
  msgid "Booking Confirmation"
2890
  msgstr "Boekingsbevestiging"
2952
  msgstr ""
2953
 
2954
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
2955
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
2956
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
2957
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
2958
  msgid "Saved"
2959
  msgstr "Opgeslagen"
2960
 
2961
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
2962
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
2963
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
2964
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
2965
  msgid "Settings Saved!"
2967
 
2968
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
2969
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
2970
+ #: app/features/mec/notifications.php:905
2971
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
2972
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
2973
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
2974
  msgid "Verified"
2975
  msgstr "Geverifieerd"
2976
 
2977
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
2978
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
2979
  #: app/features/mec/single.php:291
2980
  msgid "Please Refresh Page"
2981
  msgstr ""
4118
  #: app/features/mec/meta_boxes/search_form.php:693
4119
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4120
  #: app/features/search.php:79 app/features/speakers.php:61
4121
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4122
+ #: app/libraries/skins.php:936
4123
  msgid "Speaker"
4124
  msgstr ""
4125
 
4135
  #: app/features/mec/meta_boxes/search_form.php:603
4136
  #: app/features/mec/meta_boxes/search_form.php:700
4137
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4138
+ #: app/features/search.php:83 app/libraries/skins.php:962
4139
  #, fuzzy
4140
  #| msgid "Tags"
4141
  msgid "Tag"
4398
  "Wordt gestuurd naar deelnemer op hem / haar op de hoogte te stellen van de "
4399
  "boeking."
4400
 
4401
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4402
+ #: app/features/mec/notifications.php:233
4403
+ #: app/features/mec/notifications.php:336
4404
+ #: app/features/mec/notifications.php:442
4405
+ #: app/features/mec/notifications.php:543
4406
+ #: app/features/mec/notifications.php:660
4407
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4408
  msgid "Email Subject"
4409
  msgstr "Email onderwerp"
4410
 
4411
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4412
+ #: app/features/mec/notifications.php:147
4413
+ #: app/features/mec/notifications.php:154
4414
+ #: app/features/mec/notifications.php:239
4415
+ #: app/features/mec/notifications.php:246
4416
+ #: app/features/mec/notifications.php:342
4417
+ #: app/features/mec/notifications.php:349
4418
+ #: app/features/mec/notifications.php:448
4419
+ #: app/features/mec/notifications.php:455
4420
+ #: app/features/mec/notifications.php:549
4421
+ #: app/features/mec/notifications.php:556
4422
+ #: app/features/mec/notifications.php:666
4423
+ #: app/features/mec/notifications.php:673
4424
+ #: app/features/mec/notifications.php:749
4425
+ #: app/features/mec/notifications.php:756
4426
+ msgid "Receiver Users"
4427
+ msgstr ""
4428
+
4429
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4430
+ #: app/features/mec/notifications.php:247
4431
+ #: app/features/mec/notifications.php:350
4432
+ #: app/features/mec/notifications.php:456
4433
+ #: app/features/mec/notifications.php:557
4434
+ #: app/features/mec/notifications.php:674
4435
+ #: app/features/mec/notifications.php:757
4436
+ msgid "Select your desired users to send a copy of email to them!"
4437
+ msgstr ""
4438
+
4439
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4440
+ #: app/features/mec/notifications.php:164
4441
+ #: app/features/mec/notifications.php:171
4442
+ #: app/features/mec/notifications.php:256
4443
+ #: app/features/mec/notifications.php:263
4444
+ #: app/features/mec/notifications.php:359
4445
+ #: app/features/mec/notifications.php:366
4446
+ #: app/features/mec/notifications.php:465
4447
+ #: app/features/mec/notifications.php:472
4448
+ #: app/features/mec/notifications.php:566
4449
+ #: app/features/mec/notifications.php:573
4450
+ #: app/features/mec/notifications.php:683
4451
+ #: app/features/mec/notifications.php:690
4452
+ #: app/features/mec/notifications.php:766
4453
+ #: app/features/mec/notifications.php:773
4454
+ msgid "Receiver Roles"
4455
+ msgstr ""
4456
+
4457
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4458
+ #: app/features/mec/notifications.php:264
4459
+ #: app/features/mec/notifications.php:367
4460
+ #: app/features/mec/notifications.php:473
4461
+ #: app/features/mec/notifications.php:574
4462
+ #: app/features/mec/notifications.php:691
4463
+ #: app/features/mec/notifications.php:774
4464
+ msgid "Select users a specific role."
4465
+ msgstr ""
4466
+
4467
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4468
+ #: app/features/mec/notifications.php:180
4469
+ #: app/features/mec/notifications.php:184
4470
+ #: app/features/mec/notifications.php:272
4471
+ #: app/features/mec/notifications.php:276
4472
+ #: app/features/mec/notifications.php:375
4473
+ #: app/features/mec/notifications.php:379
4474
+ #: app/features/mec/notifications.php:481
4475
+ #: app/features/mec/notifications.php:485
4476
+ #: app/features/mec/notifications.php:582
4477
+ #: app/features/mec/notifications.php:586
4478
+ #: app/features/mec/notifications.php:597
4479
+ #: app/features/mec/notifications.php:699
4480
+ #: app/features/mec/notifications.php:703
4481
+ #: app/features/mec/notifications.php:782
4482
+ #: app/features/mec/notifications.php:786
4483
  msgid "Custom Recipients"
4484
  msgstr "Geadresseerden"
4485
 
4486
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4487
+ #: app/features/mec/notifications.php:277
4488
+ #: app/features/mec/notifications.php:380
4489
+ #: app/features/mec/notifications.php:486
4490
+ #: app/features/mec/notifications.php:587
4491
+ #: app/features/mec/notifications.php:598
4492
+ #: app/features/mec/notifications.php:704
4493
+ #: app/features/mec/notifications.php:787
4494
  msgid "Insert comma separated emails for multiple recipients."
4495
  msgstr "Vul verschillende emailadressen in door ze met een komma te scheiden."
4496
 
4497
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4498
+ #: app/features/mec/notifications.php:493
4499
  msgid "Send the email to event organizer"
4500
  msgstr ""
4501
 
4502
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4503
+ #: app/features/mec/notifications.php:287
4504
+ #: app/features/mec/notifications.php:398
4505
+ #: app/features/mec/notifications.php:496
4506
+ #: app/features/mec/notifications.php:604
4507
+ #: app/features/mec/notifications.php:710
4508
+ #: app/features/mec/notifications.php:793
4509
  msgid "Email Content"
4510
  msgstr "Email inhoud"
4511
 
4512
+ #: app/features/mec/notifications.php:101
4513
+ #: app/features/mec/notifications.php:194
4514
+ #: app/features/mec/notifications.php:290
4515
+ #: app/features/mec/notifications.php:401
4516
+ #: app/features/mec/notifications.php:499
4517
+ #: app/features/mec/notifications.php:607
4518
+ #: app/features/mec/notifications.php:713
4519
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4520
  msgid "You can use following placeholders"
4521
  msgstr "U kunt de volgende placeholders gebruiken"
4522
 
4523
+ #: app/features/mec/notifications.php:103
4524
+ #: app/features/mec/notifications.php:196
4525
+ #: app/features/mec/notifications.php:292
4526
+ #: app/features/mec/notifications.php:403
4527
+ #: app/features/mec/notifications.php:501
4528
+ #: app/features/mec/notifications.php:609
4529
  msgid "First name of attendee"
4530
  msgstr "Voornaam van deelnemer"
4531
 
4532
+ #: app/features/mec/notifications.php:104
4533
+ #: app/features/mec/notifications.php:197
4534
+ #: app/features/mec/notifications.php:293
4535
+ #: app/features/mec/notifications.php:404
4536
+ #: app/features/mec/notifications.php:502
4537
+ #: app/features/mec/notifications.php:610
4538
  msgid "Last name of attendee"
4539
  msgstr "Achternaam van deelnemer"
4540
 
4541
+ #: app/features/mec/notifications.php:105
4542
+ #: app/features/mec/notifications.php:198
4543
+ #: app/features/mec/notifications.php:294
4544
+ #: app/features/mec/notifications.php:405
4545
+ #: app/features/mec/notifications.php:503
4546
+ #: app/features/mec/notifications.php:611
4547
  msgid "Email of attendee"
4548
  msgstr "Email van deelnemer"
4549
 
4550
+ #: app/features/mec/notifications.php:106
4551
+ #: app/features/mec/notifications.php:199
4552
+ #: app/features/mec/notifications.php:295
4553
+ #: app/features/mec/notifications.php:406
4554
+ #: app/features/mec/notifications.php:504
4555
+ #: app/features/mec/notifications.php:612
4556
  msgid "Booked date of event"
4557
  msgstr "Geboekte datum van het evenement"
4558
 
4559
+ #: app/features/mec/notifications.php:107
4560
+ #: app/features/mec/notifications.php:200
4561
+ #: app/features/mec/notifications.php:296
4562
+ #: app/features/mec/notifications.php:407
4563
+ #: app/features/mec/notifications.php:505
4564
+ #: app/features/mec/notifications.php:613
4565
  #, fuzzy
4566
  #| msgid "Booked date of event"
4567
  msgid "Booked time of event"
4568
  msgstr "Geboekte datum van het evenement"
4569
 
4570
+ #: app/features/mec/notifications.php:108
4571
+ #: app/features/mec/notifications.php:201
4572
+ #: app/features/mec/notifications.php:297
4573
+ #: app/features/mec/notifications.php:408
4574
+ #: app/features/mec/notifications.php:506
4575
+ #: app/features/mec/notifications.php:614
4576
  msgid "Booking Price"
4577
  msgstr ""
4578
 
4579
+ #: app/features/mec/notifications.php:109
4580
+ #: app/features/mec/notifications.php:202
4581
+ #: app/features/mec/notifications.php:298
4582
+ #: app/features/mec/notifications.php:409
4583
+ #: app/features/mec/notifications.php:507
4584
+ #: app/features/mec/notifications.php:615
4585
  msgid "Date and time of placing booking"
4586
  msgstr ""
4587
 
4588
+ #: app/features/mec/notifications.php:110
4589
+ #: app/features/mec/notifications.php:203
4590
+ #: app/features/mec/notifications.php:299
4591
+ #: app/features/mec/notifications.php:410
4592
+ #: app/features/mec/notifications.php:508
4593
+ #: app/features/mec/notifications.php:616
4594
+ #: app/features/mec/notifications.php:721
4595
+ #: app/features/mec/notifications.php:804
4596
  msgid "Your website title"
4597
  msgstr "Uw website titel"
4598
 
4599
+ #: app/features/mec/notifications.php:111
4600
+ #: app/features/mec/notifications.php:204
4601
+ #: app/features/mec/notifications.php:300
4602
+ #: app/features/mec/notifications.php:411
4603
+ #: app/features/mec/notifications.php:509
4604
+ #: app/features/mec/notifications.php:617
4605
+ #: app/features/mec/notifications.php:722
4606
+ #: app/features/mec/notifications.php:805
4607
  msgid "Your website URL"
4608
  msgstr "Uw website URL"
4609
 
4610
+ #: app/features/mec/notifications.php:112
4611
+ #: app/features/mec/notifications.php:205
4612
+ #: app/features/mec/notifications.php:301
4613
+ #: app/features/mec/notifications.php:412
4614
+ #: app/features/mec/notifications.php:510
4615
+ #: app/features/mec/notifications.php:618
4616
+ #: app/features/mec/notifications.php:723
4617
+ #: app/features/mec/notifications.php:806
4618
  msgid "Your website description"
4619
  msgstr "Uw website beschrijving"
4620
 
4621
+ #: app/features/mec/notifications.php:113
4622
+ #: app/features/mec/notifications.php:206
4623
+ #: app/features/mec/notifications.php:302
4624
+ #: app/features/mec/notifications.php:413
4625
+ #: app/features/mec/notifications.php:511
4626
+ #: app/features/mec/notifications.php:619
4627
  msgid "Event title"
4628
  msgstr "Evenement titel"
4629
 
4630
+ #: app/features/mec/notifications.php:114
4631
+ #: app/features/mec/notifications.php:207
4632
+ #: app/features/mec/notifications.php:303
4633
+ #: app/features/mec/notifications.php:414
4634
+ #: app/features/mec/notifications.php:512
4635
+ #: app/features/mec/notifications.php:620
4636
  #, fuzzy
4637
  msgid "Event link"
4638
  msgstr "Evenement locatie"
4639
 
4640
+ #: app/features/mec/notifications.php:115
4641
+ #: app/features/mec/notifications.php:208
4642
+ #: app/features/mec/notifications.php:304
4643
+ #: app/features/mec/notifications.php:717
4644
+ #: app/features/mec/notifications.php:800
4645
  #, fuzzy
4646
  #| msgid "Start Date"
4647
  msgid "Event Start Date"
4648
  msgstr "Begindatum"
4649
 
4650
+ #: app/features/mec/notifications.php:116
4651
+ #: app/features/mec/notifications.php:209
4652
+ #: app/features/mec/notifications.php:305
4653
+ #: app/features/mec/notifications.php:718
4654
+ #: app/features/mec/notifications.php:801
4655
  #, fuzzy
4656
  #| msgid "End Date"
4657
  msgid "Event End Date"
4658
  msgstr "Einddatum"
4659
 
4660
+ #: app/features/mec/notifications.php:117
4661
+ #: app/features/mec/notifications.php:210
4662
+ #: app/features/mec/notifications.php:306
4663
+ #: app/features/mec/notifications.php:415
4664
+ #: app/features/mec/notifications.php:513
4665
+ #: app/features/mec/notifications.php:621
4666
  #, fuzzy
4667
  #| msgid "Organizer name of booked event"
4668
  msgid "Speaker name of booked event"
4669
  msgstr "Organisator naam van geboekt evenement"
4670
 
4671
+ #: app/features/mec/notifications.php:118
4672
+ #: app/features/mec/notifications.php:211
4673
+ #: app/features/mec/notifications.php:307
4674
+ #: app/features/mec/notifications.php:416
4675
+ #: app/features/mec/notifications.php:514
4676
+ #: app/features/mec/notifications.php:622
4677
  msgid "Organizer name of booked event"
4678
  msgstr "Organisator naam van geboekt evenement"
4679
 
4680
+ #: app/features/mec/notifications.php:119
4681
+ #: app/features/mec/notifications.php:212
4682
+ #: app/features/mec/notifications.php:308
4683
+ #: app/features/mec/notifications.php:417
4684
+ #: app/features/mec/notifications.php:515
4685
+ #: app/features/mec/notifications.php:623
4686
  msgid "Organizer tel of booked event"
4687
  msgstr "Organisator telefoonnummer van geboekt evenement"
4688
 
4689
+ #: app/features/mec/notifications.php:120
4690
+ #: app/features/mec/notifications.php:213
4691
+ #: app/features/mec/notifications.php:309
4692
+ #: app/features/mec/notifications.php:418
4693
+ #: app/features/mec/notifications.php:516
4694
+ #: app/features/mec/notifications.php:624
4695
  msgid "Organizer email of booked event"
4696
  msgstr "Organisator email van geboekt evenement"
4697
 
4698
+ #: app/features/mec/notifications.php:121
4699
+ #: app/features/mec/notifications.php:214
4700
+ #: app/features/mec/notifications.php:310
4701
+ #: app/features/mec/notifications.php:419
4702
+ #: app/features/mec/notifications.php:517
4703
+ #: app/features/mec/notifications.php:625
4704
  msgid "Location name of booked event"
4705
  msgstr "Locatie naam van geboekt evenement"
4706
 
4707
+ #: app/features/mec/notifications.php:122
4708
+ #: app/features/mec/notifications.php:215
4709
+ #: app/features/mec/notifications.php:311
4710
+ #: app/features/mec/notifications.php:420
4711
+ #: app/features/mec/notifications.php:518
4712
+ #: app/features/mec/notifications.php:626
4713
  msgid "Location address of booked event"
4714
  msgstr "Locatie adres van geboekt evenement"
4715
 
4716
+ #: app/features/mec/notifications.php:123
4717
+ #: app/features/mec/notifications.php:216
4718
+ #: app/features/mec/notifications.php:312
4719
+ #: app/features/mec/notifications.php:421
4720
+ #: app/features/mec/notifications.php:519
4721
+ #: app/features/mec/notifications.php:627
4722
  #, fuzzy
4723
  #| msgid "Organizer name of booked event"
4724
  msgid "Featured image of booked event"
4725
  msgstr "Organisator naam van geboekt evenement"
4726
 
4727
+ #: app/features/mec/notifications.php:124
4728
+ #: app/features/mec/notifications.php:423
4729
+ #: app/features/mec/notifications.php:521
4730
  msgid "Full Attendee info such as booking form data, name, email etc."
4731
  msgstr "Volledige deelnemers info zoals boekings datim, naam, email enz."
4732
 
4733
+ #: app/features/mec/notifications.php:125
4734
+ #: app/features/mec/notifications.php:314
4735
+ #: app/features/mec/notifications.php:629
4736
  msgid "Invoice Link"
4737
  msgstr ""
4738
 
4739
+ #: app/features/mec/notifications.php:126
4740
+ #: app/features/mec/notifications.php:218
4741
+ #: app/features/mec/notifications.php:315
4742
+ #: app/features/mec/notifications.php:424
4743
+ #: app/features/mec/notifications.php:522
4744
+ #: app/features/mec/notifications.php:630
4745
  msgid "Total Attendees"
4746
  msgstr ""
4747
 
4748
+ #: app/features/mec/notifications.php:127
4749
+ #: app/features/mec/notifications.php:219
4750
+ #: app/features/mec/notifications.php:316
4751
+ #: app/features/mec/notifications.php:425
4752
+ #: app/features/mec/notifications.php:523
4753
+ #: app/features/mec/notifications.php:631
4754
+ #, fuzzy
4755
+ #| msgid "Tickets"
4756
+ msgid "Amount of Booked Tickets"
4757
+ msgstr "Tickets"
4758
+
4759
+ #: app/features/mec/notifications.php:128
4760
+ #: app/features/mec/notifications.php:220
4761
+ #: app/features/mec/notifications.php:317
4762
+ #: app/features/mec/notifications.php:632
4763
  #, fuzzy
4764
  #| msgid "Ticket Name"
4765
  msgid "Ticket name"
4766
  msgstr "Ticket naam"
4767
 
4768
+ #: app/features/mec/notifications.php:129
4769
+ #: app/features/mec/notifications.php:221
4770
+ #: app/features/mec/notifications.php:318
4771
+ #: app/features/mec/notifications.php:633
4772
  #, fuzzy
4773
  #| msgid "Ticket Name"
4774
  msgid "Ticket time"
4775
  msgstr "Ticket naam"
4776
 
4777
+ #: app/features/mec/notifications.php:130
4778
+ #: app/features/mec/notifications.php:222
4779
+ #: app/features/mec/notifications.php:319
4780
+ #: app/features/mec/notifications.php:634
4781
  msgid "Download ICS file"
4782
  msgstr ""
4783
 
4784
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4785
  msgid "Booking Verification"
4786
  msgstr "Boekingsverificatie"
4787
 
4788
+ #: app/features/mec/notifications.php:139
4789
  msgid "It sends to attendee email for verifying their booking/email."
4790
  msgstr ""
4791
  "Wordt gestuurd naar de deelnemers email voor verificatie van hun boeking."
4792
 
4793
+ #: app/features/mec/notifications.php:217
4794
  msgid "Email/Booking verification link."
4795
  msgstr "Email/boeking verificatie link"
4796
 
4797
+ #: app/features/mec/notifications.php:231
4798
  msgid "It sends to attendee after confirming the booking by admin."
4799
  msgstr ""
4800
  "Wordt gestuurd naar de deelnemer om hem / haar op de hoogte te stellen voor "
4801
  "bevestiging van de boeking."
4802
 
4803
+ #: app/features/mec/notifications.php:284
4804
  msgid "Send One Single Email Only To First Attendee"
4805
  msgstr ""
4806
 
4807
+ #: app/features/mec/notifications.php:313
4808
+ #: app/features/mec/notifications.php:628
4809
  msgid "Booking cancellation link."
4810
  msgstr "Annuleringslink boeking"
4811
 
4812
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4813
  #, fuzzy
4814
  #| msgid "Booking cancellation link."
4815
  msgid "Booking Cancellation"
4816
  msgstr "Annuleringslink boeking"
4817
 
4818
+ #: app/features/mec/notifications.php:330
4819
  #, fuzzy
4820
  #| msgid "Enable new event notification"
4821
  msgid "Enable cancellation notification"
4822
  msgstr "Nieuwe evenement notificatie inschakelen"
4823
 
4824
+ #: app/features/mec/notifications.php:334
4825
  #, fuzzy
4826
  #| msgid "It sends to attendee after booking for notifying him/her."
4827
  msgid ""
4831
  "Wordt gestuurd naar deelnemer op hem / haar op de hoogte te stellen van de "
4832
  "boeking."
4833
 
4834
+ #: app/features/mec/notifications.php:387
4835
+ #: app/features/mec/notifications.php:654
4836
  msgid "Send the email to admin"
4837
  msgstr ""
4838
 
4839
+ #: app/features/mec/notifications.php:395
4840
  msgid "Send the email to booking user"
4841
  msgstr ""
4842
 
4843
+ #: app/features/mec/notifications.php:422
4844
+ #: app/features/mec/notifications.php:520
4845
  msgid "Admin booking management link."
4846
  msgstr "Admin boeking beheer link"
4847
 
4848
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4849
  msgid "Admin"
4850
  msgstr ""
4851
 
4852
+ #: app/features/mec/notifications.php:436
4853
  #, fuzzy
4854
  #| msgid "Enable new event notification"
4855
  msgid "Enable admin notification"
4856
  msgstr "Nieuwe evenement notificatie inschakelen"
4857
 
4858
+ #: app/features/mec/notifications.php:440
4859
  msgid "It sends to admin to notify him/her that a new booking received."
4860
  msgstr ""
4861
  "Het zal een email sturen naar de admin om hem / haar te melden dat er een "
4862
  "nieuwe boeking is ontvangen."
4863
 
4864
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4865
+ #: app/libraries/notifications.php:603
4866
  msgid "Booking Reminder"
4867
  msgstr ""
4868
 
4869
+ #: app/features/mec/notifications.php:534
4870
  msgid "Enable booking reminder notification"
4871
  msgstr ""
4872
 
4873
+ #: app/features/mec/notifications.php:540
4874
  #, php-format
4875
  msgid ""
4876
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4878
  "send the reminders multiple times."
4879
  msgstr ""
4880
 
4881
+ #: app/features/mec/notifications.php:540
4882
  msgid "only once per day"
4883
  msgstr ""
4884
 
4885
+ #: app/features/mec/notifications.php:593
4886
  msgid "Days"
4887
  msgstr ""
4888
 
4889
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4890
  #: app/libraries/main.php:583
4891
  msgid "New Event"
4892
  msgstr "Nieuw evenement"
4893
 
4894
+ #: app/features/mec/notifications.php:648
4895
  msgid "Enable new event notification"
4896
  msgstr "Nieuwe evenement notificatie inschakelen"
4897
 
4898
+ #: app/features/mec/notifications.php:658
4899
  msgid ""
4900
  "It sends after adding a new event from frontend event submission or from "
4901
  "website backend."
4903
  "Het zal een email sturen als er een nieuw evenement op de pagina of in de "
4904
  "dashboard is aangemaakt."
4905
 
4906
+ #: app/features/mec/notifications.php:715
4907
+ #: app/features/mec/notifications.php:798
4908
  msgid "Title of event"
4909
  msgstr "Titel van evenement"
4910
 
4911
+ #: app/features/mec/notifications.php:716
4912
+ #: app/features/mec/notifications.php:799
4913
  #, fuzzy
4914
  #| msgid "Title of event"
4915
  msgid "Link of event"
4916
  msgstr "Titel van evenement"
4917
 
4918
+ #: app/features/mec/notifications.php:719
4919
+ #: app/features/mec/notifications.php:802
4920
  msgid "Status of event"
4921
  msgstr "Status evenement"
4922
 
4923
+ #: app/features/mec/notifications.php:720
4924
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4925
  #: app/features/mec/settings.php:738
4926
  msgid "Event Note"
4927
  msgstr ""
4928
 
4929
+ #: app/features/mec/notifications.php:724
4930
+ #: app/features/mec/notifications.php:807
4931
  msgid "Admin events management link."
4932
  msgstr "Admin evenement beheer link"
4933
 
4934
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4935
  #, fuzzy
4936
  #| msgid "The event published."
4937
  msgid "User Event Publishing"
4938
  msgstr "Het evenement gepubliceerd."
4939
 
4940
+ #: app/features/mec/notifications.php:737
4941
  #, fuzzy
4942
  #| msgid "Enable new event notification"
4943
  msgid "Enable user event publishing notification"
4944
  msgstr "Nieuwe evenement notificatie inschakelen"
4945
 
4946
+ #: app/features/mec/notifications.php:741
4947
  #, fuzzy
4948
  #| msgid ""
4949
  #| "It sends after adding a new event from frontend event submission or from "
5120
  msgstr ""
5121
 
5122
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5123
+ #: app/libraries/main.php:5290
5124
  msgid "Weekdays"
5125
  msgstr ""
5126
 
6333
  msgid "eg. https://webnus.net"
6334
  msgstr ""
6335
 
6336
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6337
+ #: app/skins/single.php:862
6338
  msgid "Other Organizers"
6339
  msgstr ""
6340
 
6341
+ #: app/features/organizers.php:314
6342
  msgid ""
6343
  "You can select extra organizers in addition to main organizer if you like."
6344
  msgstr ""
6359
  msgid "#"
6360
  msgstr ""
6361
 
6362
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6363
  msgid "Status"
6364
  msgstr ""
6365
 
6394
  msgid "No bookings found!"
6395
  msgstr "Geen boekingen gevonden!"
6396
 
6397
+ #: app/features/search.php:87 app/libraries/main.php:5280
6398
  msgid "label"
6399
  msgstr ""
6400
 
6420
  msgstr ""
6421
 
6422
  #: app/features/search_bar/search_result.php:11
6423
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6424
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6425
+ #: app/skins/single.php:160 app/skins/single.php:753
6426
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6427
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6428
  msgid "All of the day"
6429
  msgstr "Hele dag"
6430
 
6431
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6432
+ #: app/features/speakers.php:270
6433
  #, fuzzy
6434
  #| msgid "Title"
6435
  msgid "Job Title"
6436
  msgstr "Titel"
6437
 
6438
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6439
  msgid "Insert speaker job title."
6440
  msgstr ""
6441
 
6442
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6443
  #, fuzzy
6444
  #| msgid "Insert organizer phone number."
6445
  msgid "Insert speaker phone number."
6446
  msgstr "Voer telefoonnummer organisator in."
6447
 
6448
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6449
  #, fuzzy
6450
  #| msgid "Insert organizer email address."
6451
  msgid "Insert speaker email address."
6452
  msgstr "Voer organisator email adres in."
6453
 
6454
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6455
  #, fuzzy
6456
  #| msgid "Facebook"
6457
  msgid "Facebook Page"
6458
  msgstr "Facebook"
6459
 
6460
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6461
  msgid "Insert URL of Facebook Page"
6462
  msgstr ""
6463
 
6464
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6465
  msgid "Instagram"
6466
  msgstr ""
6467
 
6468
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6469
  #, fuzzy
6470
  #| msgid "Insert -1 for unlimited usage"
6471
  msgid "Insert URL of Instagram"
6472
  msgstr "Voer -1 in voor onbeperkt gebruik"
6473
 
6474
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6475
+ #, fuzzy
6476
+ #| msgid "Linkedin"
6477
+ msgid "LinkedIn"
6478
+ msgstr "Linkedin"
6479
+
6480
+ #: app/features/speakers.php:154
6481
+ #, fuzzy
6482
+ #| msgid "Insert -1 for unlimited usage"
6483
+ msgid "Insert URL of LinkedIn"
6484
+ msgstr "Voer -1 in voor onbeperkt gebruik"
6485
+
6486
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6487
  #, fuzzy
6488
  #| msgid "Twitter"
6489
  msgid "Twitter Page"
6490
  msgstr "Twitter"
6491
 
6492
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6493
  #, fuzzy
6494
  #| msgid "Insert -1 for unlimited usage"
6495
  msgid "Insert URL of Twitter Page"
6496
  msgstr "Voer -1 in voor onbeperkt gebruik"
6497
 
6498
+ #: app/features/speakers.php:209
6499
+ #, fuzzy
6500
+ #| msgid "Insert -1 for unlimited usage"
6501
+ msgid "Insert URL of linkedin"
6502
+ msgstr "Voer -1 in voor onbeperkt gebruik"
6503
+
6504
+ #: app/features/speakers.php:330
6505
  msgid "Sorry, You must insert speaker name!"
6506
  msgstr ""
6507
 
6508
+ #: app/features/speakers.php:379
6509
  msgid ""
6510
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6511
  "section and speaker widget section!"
6666
  msgid "Tile View"
6667
  msgstr "Dagweergave"
6668
 
6669
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6670
  msgid "SU"
6671
  msgstr "ZO"
6672
 
6673
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6674
  msgid "MO"
6675
  msgstr "MA"
6676
 
6677
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6678
  msgid "TU"
6679
  msgstr "DI"
6680
 
6681
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6682
  msgid "WE"
6683
  msgstr "WO"
6684
 
6685
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6686
  msgid "TH"
6687
  msgstr "DO"
6688
 
6689
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6690
  msgid "FR"
6691
  msgstr "VR"
6692
 
6693
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6694
  msgid "SA"
6695
  msgstr "ZA"
6696
 
6957
  msgid "iCal export stopped!"
6958
  msgstr "iCal exporteren gestopt!"
6959
 
6960
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
6961
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
6962
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
6963
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
6964
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
6965
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
6966
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
6967
  msgid "Sort"
6968
  msgstr "Sorteren"
6969
 
6970
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
6971
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
6972
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
6973
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
6974
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
6975
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
6976
  msgid "Required Field"
6977
  msgstr "Verplicht veld"
6978
 
6979
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
6980
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
6981
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
6982
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
6983
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
6984
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
6985
  msgid "Insert a label for this field"
6986
  msgstr "Voer een label in voor dit veld"
6987
 
6988
+ #: app/libraries/main.php:2976
6989
  msgid "HTML and shortcode are allowed."
6990
  msgstr "HTML en shortcodes zijn toegestaan."
6991
 
6992
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
6993
+ #: app/libraries/main.php:3107
6994
  msgid "Option"
6995
  msgstr "Optie"
6996
 
6997
+ #: app/libraries/main.php:3141
6998
  #, php-format
6999
  msgid "Instead of %s, the page title with a link will be show."
7000
  msgstr ""
7001
 
7002
+ #: app/libraries/main.php:3143
7003
  msgid "Agreement Page"
7004
  msgstr ""
7005
 
7006
+ #: app/libraries/main.php:3154
7007
  msgid "Checked by default"
7008
  msgstr ""
7009
 
7010
+ #: app/libraries/main.php:3155
7011
  msgid "Unchecked by default"
7012
  msgstr ""
7013
 
7014
+ #: app/libraries/main.php:3178
7015
  msgid "Insert a label for this option"
7016
  msgstr "Voer een label in voor deze optie"
7017
 
7018
+ #: app/libraries/main.php:3193
7019
  msgid "Free"
7020
  msgstr "Gratis"
7021
 
7022
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7023
  #, fuzzy
7024
  #| msgid "M.E. Calendar"
7025
  msgid "M.E. Calender"
7026
  msgstr "M.E. Calendar"
7027
 
7028
+ #: app/libraries/main.php:3954
7029
  #, php-format
7030
  msgid "Copy of %s"
7031
  msgstr ""
7032
 
7033
+ #: app/libraries/main.php:4669
7034
  msgid "Booked an event."
7035
  msgstr ""
7036
 
7037
+ #: app/libraries/main.php:4710
7038
  #, php-format
7039
  msgid "%s booked %s event."
7040
  msgstr ""
7041
 
7042
+ #: app/libraries/main.php:5275
7043
  msgid "Taxonomies"
7044
  msgstr ""
7045
 
7046
+ #: app/libraries/main.php:5277
7047
  msgid "Category Plural Label"
7048
  msgstr ""
7049
 
7050
+ #: app/libraries/main.php:5278
7051
  msgid "Category Singular Label"
7052
  msgstr ""
7053
 
7054
+ #: app/libraries/main.php:5279
7055
  msgid "Label Plural Label"
7056
  msgstr ""
7057
 
7058
+ #: app/libraries/main.php:5280
7059
  msgid "Label Singular Label"
7060
  msgstr ""
7061
 
7062
+ #: app/libraries/main.php:5281
7063
  msgid "Location Plural Label"
7064
  msgstr ""
7065
 
7066
+ #: app/libraries/main.php:5282
7067
  msgid "Location Singular Label"
7068
  msgstr ""
7069
 
7070
+ #: app/libraries/main.php:5283
7071
  msgid "Organizer Plural Label"
7072
  msgstr ""
7073
 
7074
+ #: app/libraries/main.php:5284
7075
  msgid "Organizer Singular Label"
7076
  msgstr ""
7077
 
7078
+ #: app/libraries/main.php:5285
7079
  #, fuzzy
7080
  #| msgid "Search Labels"
7081
  msgid "Speaker Plural Label"
7082
  msgstr "Zoek labels"
7083
 
7084
+ #: app/libraries/main.php:5286
7085
  #, fuzzy
7086
  #| msgid "Popular Labels"
7087
  msgid "Speaker Singular Label"
7088
  msgstr "Populaire labels"
7089
 
7090
+ #: app/libraries/main.php:5292
7091
  msgid "Sunday abbreviation"
7092
  msgstr ""
7093
 
7094
+ #: app/libraries/main.php:5293
7095
  msgid "Monday abbreviation"
7096
  msgstr ""
7097
 
7098
+ #: app/libraries/main.php:5294
7099
  msgid "Tuesday abbreviation"
7100
  msgstr ""
7101
 
7102
+ #: app/libraries/main.php:5295
7103
  msgid "Wednesday abbreviation"
7104
  msgstr ""
7105
 
7106
+ #: app/libraries/main.php:5296
7107
  msgid "Thursday abbreviation"
7108
  msgstr ""
7109
 
7110
+ #: app/libraries/main.php:5297
7111
  msgid "Friday abbreviation"
7112
  msgstr ""
7113
 
7114
+ #: app/libraries/main.php:5298
7115
  msgid "Saturday abbreviation"
7116
  msgstr ""
7117
 
7118
+ #: app/libraries/main.php:5302
7119
  msgid "Others"
7120
  msgstr ""
7121
 
7122
+ #: app/libraries/main.php:5304
7123
  msgid "Booking Success Message"
7124
  msgstr ""
7125
 
7126
+ #: app/libraries/main.php:5304
7127
  msgid ""
7128
  "Thanks for your booking. Your tickets booked, booking verification might be "
7129
  "needed, please check your email."
7131
  "Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
7132
  "nodig zijn, controleer uw email alstublieft."
7133
 
7134
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7135
  msgid "Register Button"
7136
  msgstr ""
7137
 
7138
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7139
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7140
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7141
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7142
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7143
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7144
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7145
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7146
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7147
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7152
  msgid "REGISTER"
7153
  msgstr "REGISTREREN"
7154
 
7155
+ #: app/libraries/main.php:5306
7156
  msgid "View Detail Button"
7157
  msgstr ""
7158
 
7159
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7160
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7161
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7162
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7167
  msgid "View Detail"
7168
  msgstr "Bekijk detail"
7169
 
7170
+ #: app/libraries/main.php:5307
7171
  msgid "Event Detail Button"
7172
  msgstr ""
7173
 
7174
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7175
  #, fuzzy
7176
  msgid "Event Detail"
7177
  msgstr "Evenement details"
7178
 
7179
+ #: app/libraries/main.php:5309
7180
  msgid "More Info Link"
7181
  msgstr ""
7182
 
7183
+ #: app/libraries/main.php:5312
7184
  msgid "Ticket (Singular)"
7185
  msgstr ""
7186
 
7187
+ #: app/libraries/main.php:5313
7188
  msgid "Tickets (Plural)"
7189
  msgstr ""
7190
 
7191
+ #: app/libraries/main.php:5399
7192
  msgid "EventON"
7193
  msgstr ""
7194
 
7195
+ #: app/libraries/main.php:5400
7196
  msgid "The Events Calendar"
7197
  msgstr ""
7198
 
7199
+ #: app/libraries/main.php:5401
7200
  msgid "Events Schedule WP Plugin"
7201
  msgstr ""
7202
 
7203
+ #: app/libraries/main.php:5402
7204
  msgid "Calendarize It"
7205
  msgstr ""
7206
 
7207
+ #: app/libraries/main.php:5403
7208
  #, fuzzy
7209
  msgid "Event Espresso"
7210
  msgstr "Zoek locaties"
7211
 
7212
+ #: app/libraries/main.php:5404
7213
  #, fuzzy
7214
  #| msgid "Event Repeating"
7215
  msgid "Events Manager (Recurring)"
7216
  msgstr "Terugkerend evenement"
7217
 
7218
+ #: app/libraries/main.php:5405
7219
  #, fuzzy
7220
  #| msgid "Modern Events Calendar"
7221
  msgid "Events Manager (Single)"
7222
  msgstr "Modern Events Calendar"
7223
 
7224
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7225
  msgid "Confirmed"
7226
  msgstr "Bevestigd"
7227
 
7228
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7229
  msgid "Rejected"
7230
  msgstr "Afgewezen"
7231
 
7232
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7233
  msgid "Pending"
7234
  msgstr "In afwachting"
7235
 
7236
+ #: app/libraries/main.php:5529
7237
  msgid "Waiting"
7238
  msgstr "In afwachting"
7239
 
7240
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7241
  msgid "Skin controller does not exist."
7242
  msgstr "Skin controller bestaat niet."
7243
 
7244
+ #: app/libraries/main.php:5848
7245
  msgid "Sold Out"
7246
  msgstr ""
7247
 
7248
+ #: app/libraries/main.php:5856
7249
  #, fuzzy
7250
  #| msgid "Ticket"
7251
  msgid "Last Few Tickets"
7255
  msgid "Please verify your email."
7256
  msgstr "Controleer uw email."
7257
 
7258
+ #: app/libraries/notifications.php:153
7259
  msgid "Your booking is received."
7260
  msgstr ""
7261
 
7262
+ #: app/libraries/notifications.php:271
7263
  msgid "Your booking is confirmed."
7264
  msgstr "Uw boeking is bevestigd."
7265
 
7266
+ #: app/libraries/notifications.php:435
7267
  #, fuzzy
7268
  #| msgid "Your booking cannot be canceled."
7269
  msgid "booking canceled."
7270
  msgstr "Uw boeking kan niet worden geannuleerd."
7271
 
7272
+ #: app/libraries/notifications.php:510
7273
  msgid "A new booking is received."
7274
  msgstr "Een nieuwe boeking ontvangen."
7275
 
7276
+ #: app/libraries/notifications.php:734
7277
  msgid "A new event is added."
7278
  msgstr "Een nieuw evenement is toegevoegd."
7279
 
7280
+ #: app/libraries/notifications.php:803
7281
  #, fuzzy
7282
  #| msgid "The event published."
7283
  msgid "Your event is published."
7284
  msgstr "Het evenement gepubliceerd."
7285
 
7286
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7287
+ #: app/libraries/notifications.php:1052
7288
  msgid "to"
7289
  msgstr ""
7290
 
7291
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7292
  msgid "+ Add to Google Calendar"
7293
  msgstr "+ Aan Google Kalender toevoegen"
7294
 
7295
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7296
  msgid "+ iCal export"
7297
  msgstr "+ iCal export"
7298
 
7299
+ #: app/libraries/notifications.php:1131
7300
  msgid "Yes"
7301
  msgstr ""
7302
 
7303
+ #: app/libraries/notifications.php:1131
7304
  msgid "No"
7305
  msgstr ""
7306
 
7307
+ #: app/libraries/skins.php:1008
7308
+ msgid "Select"
7309
  msgstr ""
7310
 
7311
  #: app/modules/attendees-list/details.php:36
7343
  msgid "Free Booking"
7344
  msgstr ""
7345
 
7346
+ #: app/modules/booking/steps/form.php:52
7347
+ #, fuzzy
7348
+ #| msgid "Attendees Form"
7349
+ msgid "Attendee's Form"
7350
+ msgstr "Deelnemersformulier"
7351
+
7352
  #: app/modules/booking/steps/form.php:165
7353
  msgid "Fill other attendees information like the first form."
7354
  msgstr ""
7355
 
7356
  #: app/modules/booking/steps/form.php:179
7357
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7358
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7359
  msgid "Next"
7360
  msgstr "Volgende"
7368
  msgid "Book Event"
7369
  msgstr "Evenement boeken"
7370
 
7371
+ #: app/modules/booking/steps/tickets.php:40
7372
  #, php-format
7373
  msgid "Available %s: <span>%s</span>"
7374
  msgstr ""
7375
 
7376
+ #: app/modules/booking/steps/tickets.php:44
7377
  #, php-format
7378
+ msgid "The %s ticket sales has stopped!"
7379
  msgstr ""
7380
 
7381
+ #: app/modules/booking/steps/tickets.php:45
7382
  #, php-format
7383
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7384
  msgstr ""
7399
  msgid "Get Directions"
7400
  msgstr ""
7401
 
7402
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7403
  msgid "Share this event"
7404
  msgstr "Deel dit evenement"
7405
 
7426
  msgid "Go to occurrence page"
7427
  msgstr ""
7428
 
7429
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7430
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7431
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7432
  msgid "Time"
7555
  msgid "Home"
7556
  msgstr ""
7557
 
7558
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7559
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7560
  #: app/skins/single/modern.php:265
7561
  msgid "Sold out!"
7562
  msgstr ""
7563
 
7564
+ #: app/skins/single.php:822 app/skins/single.php:877
7565
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7566
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7567
  #: app/skins/single/modern.php:44
7568
  msgid "Phone"
7569
  msgstr "Telefoon"
7570
 
7571
+ #: app/skins/single.php:836 app/skins/single.php:891
7572
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7573
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7574
  #: app/skins/single/modern.php:58
7575
  msgid "Website"
7576
  msgstr "Website"
7577
 
7578
+ #: app/skins/single.php:961
7579
  #, fuzzy
7580
  msgid "Speakers:"
7581
  msgstr "Zoek locaties"
languages/modern-events-calendar-lite-pl_PL.mo CHANGED
Binary file
languages/modern-events-calendar-lite-pl_PL.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:04+0330\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
@@ -277,7 +277,7 @@ msgstr "Dodaj wydarzenie"
277
  msgid "Add New Event"
278
  msgstr "Dodaj nowe wydarzenie"
279
 
280
- #: app/features/events.php:161 app/features/ix.php:3752
281
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
282
  msgid "No events found!"
283
  msgstr "Nie znaleziono wydarzeń!"
@@ -312,8 +312,8 @@ msgstr "Nie znaleziono wydarzeń w Koszu!"
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
- #: app/features/search.php:67 app/libraries/main.php:5260
316
- #: app/libraries/skins.php:850 app/skins/single.php:560
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
319
  #: app/skins/single/modern.php:113
@@ -322,7 +322,7 @@ msgstr "Kategoria"
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
326
  msgid "Categories"
327
  msgstr "Kategorie"
328
 
@@ -411,7 +411,7 @@ msgid "Event Repeating"
411
  msgstr "Wydarzenie powtarzalne"
412
 
413
  #: app/features/events.php:333 app/features/events.php:1286
414
- #: app/features/mec/settings.php:710 app/skins/single.php:941
415
  msgid "Hourly Schedule"
416
  msgstr "Harmonogram"
417
 
@@ -429,7 +429,7 @@ msgstr "Link"
429
 
430
  #: app/features/events.php:336 app/features/events.php:3322
431
  #: app/features/events.php:3513 app/features/events.php:3555
432
- #: app/features/ix.php:3373 app/features/ix.php:3414
433
  #: app/features/mec/meta_boxes/display_options.php:960
434
  #: app/features/mec/meta_boxes/search_form.php:45
435
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -446,16 +446,16 @@ msgstr "Link"
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
450
- #: app/skins/single.php:806 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
453
  msgid "Organizer"
454
  msgstr "Organizator"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
458
- #: app/skins/single.php:583 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
461
  msgid "Cost"
@@ -473,7 +473,7 @@ msgstr "Dane gości"
473
  #: app/features/events.php:3802 app/features/fes.php:223
474
  #: app/features/fes/form.php:689 app/features/labels.php:178
475
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
476
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
477
  #: app/modules/booking/steps/form.php:37
478
  msgid "Name"
479
  msgstr "Imię"
@@ -483,12 +483,12 @@ msgstr "Imię"
483
  #: app/features/fes.php:223 app/features/fes/form.php:685
484
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
485
  #: app/features/organizers.php:111 app/features/organizers.php:152
486
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
487
- #: app/features/speakers.php:187 app/libraries/main.php:1539
488
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
489
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
490
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
491
- #: app/skins/single.php:878 app/skins/single/default.php:234
492
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
493
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
494
  msgid "Email"
@@ -501,8 +501,8 @@ msgstr "Data i godzina"
501
  #: app/features/events.php:491 app/features/events.php:497
502
  #: app/features/events.php:3323 app/features/events.php:3513
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
- #: app/features/fes/form.php:251 app/features/ix.php:3373
505
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
506
  #: app/features/mec/dashboard.php:400
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -539,8 +539,8 @@ msgstr "PM"
539
  #: app/features/events.php:583 app/features/events.php:588
540
  #: app/features/events.php:3324 app/features/events.php:3513
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
- #: app/features/fes/form.php:291 app/features/ix.php:3373
543
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
544
  #: app/features/mec/dashboard.php:401
545
  msgid "End Date"
546
  msgstr "Data zakończenia"
@@ -624,14 +624,14 @@ msgstr ""
624
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
625
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
626
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
627
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
628
- #: app/features/mec/notifications.php:170
629
- #: app/features/mec/notifications.php:238
630
- #: app/features/mec/notifications.php:308
631
- #: app/features/mec/notifications.php:373
632
- #: app/features/mec/notifications.php:384
633
- #: app/features/mec/notifications.php:454
634
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
635
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
636
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
637
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -647,7 +647,7 @@ msgstr ""
647
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
648
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
649
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
650
- #: app/skins/single.php:668 app/skins/single/default.php:141
651
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
652
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
653
  msgid "Read More"
@@ -830,8 +830,8 @@ msgstr "Kolejne wystąpienie innych wydarzeń"
830
 
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
- #: app/features/ix.php:3373 app/features/ix.php:3414
834
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Koszt wydarzenia"
@@ -849,8 +849,8 @@ msgstr "Wyklucz pewne dni"
849
  #: app/features/events.php:1204 app/features/events.php:2541
850
  #: app/features/fes.php:223 app/features/mec/booking.php:491
851
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
852
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
853
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
854
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
855
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
856
  msgid "Date"
@@ -887,8 +887,8 @@ msgstr ""
887
  #: app/features/events.php:1437 app/features/events.php:2322
888
  #: app/features/events.php:2369 app/features/events.php:3319
889
  #: app/features/events.php:3513 app/features/events.php:3555
890
- #: app/features/fes/form.php:236 app/features/ix.php:3373
891
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
892
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
893
  msgid "Title"
894
  msgstr "Tytuł"
@@ -901,13 +901,13 @@ msgstr "Tytuł"
901
  #: app/features/events.php:2357 app/features/events.php:2399
902
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
903
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
904
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
905
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
906
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
907
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
908
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
909
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
910
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
911
  msgid "Remove"
912
  msgstr "Usuń"
913
 
@@ -935,7 +935,7 @@ msgstr "Opis"
935
  #: app/features/events.php:1445 app/features/fes/form.php:851
936
  #: app/features/mec.php:410 app/features/mec/modules.php:52
937
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
938
- #: app/libraries/main.php:565 app/libraries/main.php:5267
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
@@ -952,7 +952,7 @@ msgid "Event Links"
952
  msgstr "Linki wydarzenia"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
956
  msgid "Event Link"
957
  msgstr "Link strony www wydarzenia"
958
 
@@ -979,8 +979,8 @@ msgid "URL Shortener"
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
983
- #: app/skins/single.php:667 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
986
  #: app/widgets/single.php:107
@@ -1013,7 +1013,7 @@ msgstr "Limity rezerwacji"
1013
 
1014
  #: app/features/events.php:1596 app/features/events.php:1849
1015
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1016
- #: app/modules/booking/steps/tickets.php:44
1017
  #: app/skins/available_spot/tpl.php:160
1018
  msgid "Unlimited"
1019
  msgstr "Nieograniczony"
@@ -1050,7 +1050,7 @@ msgid "12"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1054
  msgid "Tickets"
1055
  msgstr "Bilety"
1056
 
@@ -1073,13 +1073,13 @@ msgstr "Nazwa biletu"
1073
 
1074
  #: app/features/events.php:1680 app/features/events.php:1955
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
- #: app/features/ix.php:3373 app/features/ix.php:3414
1077
  msgid "Start Time"
1078
  msgstr "Czas rozpoczęcia"
1079
 
1080
  #: app/features/events.php:1739 app/features/events.php:1985
1081
  #: app/features/events.php:3513 app/features/events.php:3555
1082
- #: app/features/ix.php:3373 app/features/ix.php:3414
1083
  msgid "End Time"
1084
  msgstr "Czas zakończenia"
1085
 
@@ -1111,37 +1111,37 @@ msgstr "Widoczne na stronie, np. 15 zł"
1111
  msgid "Available Tickets"
1112
  msgstr "Dostępne bilety"
1113
 
1114
- #: app/features/events.php:1855 app/features/events.php:2070
1115
  #, fuzzy
1116
  #| msgid "Amount (Per Ticket)"
1117
  msgid "Minimum Ticket e.g. 3"
1118
  msgstr "Wartość (bilet)"
1119
 
1120
- #: app/features/events.php:1858 app/features/events.php:2073
1121
  #, fuzzy
1122
  #| msgid "Amount (Per Ticket)"
1123
  msgid "MinimumTicket"
1124
  msgstr "Wartość (bilet)"
1125
 
1126
- #: app/features/events.php:1860 app/features/events.php:2075
1127
  msgid "Set a number for the minimum ticket reservation"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:1868 app/features/events.php:2083
1131
  msgid "e.g. 0"
1132
  msgstr ""
1133
 
1134
- #: app/features/events.php:1870 app/features/events.php:2085
1135
  #, fuzzy
1136
  #| msgid "Daily"
1137
  msgid "Day"
1138
  msgstr "Codziennie"
1139
 
1140
- #: app/features/events.php:1871 app/features/events.php:2086
1141
  msgid "Hour"
1142
  msgstr ""
1143
 
1144
- #: app/features/events.php:1873 app/features/events.php:2088
1145
  #, php-format
1146
  msgid "Stop selling ticket %s before event start."
1147
  msgstr ""
@@ -1167,7 +1167,7 @@ msgstr "Tekst etykiety"
1167
  #: app/features/mec/meta_boxes/search_form.php:610
1168
  #: app/features/mec/meta_boxes/search_form.php:707
1169
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1170
- #: app/libraries/skins.php:980
1171
  msgid "Label"
1172
  msgstr "Etykieta"
1173
 
@@ -1238,48 +1238,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1238
  msgstr ""
1239
 
1240
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1241
- #: app/libraries/main.php:2749
1242
  #, fuzzy
1243
  #| msgid "Name"
1244
  msgid "MEC Name"
1245
  msgstr "Imię"
1246
 
1247
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1248
- #: app/libraries/main.php:2778
1249
  #, fuzzy
1250
  #| msgid "Email"
1251
  msgid "MEC Email"
1252
  msgstr "Email"
1253
 
1254
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1255
- #: app/libraries/main.php:2719
1256
  msgid "Text"
1257
  msgstr "Pole tekstowe"
1258
 
1259
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1260
  #: app/features/organizers.php:103 app/features/organizers.php:148
1261
- #: app/features/speakers.php:118 app/features/speakers.php:183
1262
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1263
  msgid "Tel"
1264
  msgstr "Tel"
1265
 
1266
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1267
- #: app/libraries/main.php:2837
1268
  msgid "File"
1269
  msgstr ""
1270
 
1271
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1272
- #: app/libraries/main.php:2924
1273
  msgid "Textarea"
1274
  msgstr "Obszar tekstowy"
1275
 
1276
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1277
- #: app/libraries/main.php:2977
1278
  msgid "Checkboxes"
1279
  msgstr "Pola wyboru"
1280
 
1281
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1282
- #: app/libraries/main.php:3021
1283
  msgid "Radio Buttons"
1284
  msgstr "Przyciski radiowe"
1285
 
@@ -1359,17 +1359,17 @@ msgstr "Przyciski radiowe"
1359
  #: app/features/mec/meta_boxes/search_form.php:696
1360
  #: app/features/mec/meta_boxes/search_form.php:703
1361
  #: app/features/mec/meta_boxes/search_form.php:710
1362
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1363
  msgid "Dropdown"
1364
  msgstr "Lista rozwijalna"
1365
 
1366
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1367
- #: app/libraries/main.php:3112
1368
  msgid "Agreement"
1369
  msgstr ""
1370
 
1371
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1372
- #: app/libraries/main.php:2953
1373
  msgid "Paragraph"
1374
  msgstr "Paragraf"
1375
 
@@ -1398,8 +1398,8 @@ msgid "Attendees List"
1398
  msgstr "Limit uczestników"
1399
 
1400
  #: app/features/events.php:3321 app/features/events.php:3513
1401
- #: app/features/events.php:3555 app/features/ix.php:3373
1402
- #: app/features/ix.php:3414 app/features/locations.php:58
1403
  #: app/features/locations.php:230 app/features/locations.php:287
1404
  #: app/features/locations.php:289 app/features/locations.php:298
1405
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1416,8 +1416,8 @@ msgstr "Limit uczestników"
1416
  #: app/features/mec/meta_boxes/search_form.php:679
1417
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1418
  #: app/features/search.php:71 app/libraries/main.php:2236
1419
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1420
- #: app/skins/single.php:487 app/skins/single.php:918
1421
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1422
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1423
  #: app/skins/single/modern.php:97
@@ -1458,14 +1458,14 @@ msgid "Duplicate"
1458
  msgstr "Duplikuj"
1459
 
1460
  #: app/features/events.php:3513 app/features/events.php:3555
1461
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1462
  #: app/features/labels.php:177 app/features/locations.php:229
1463
- #: app/features/organizers.php:203 app/features/speakers.php:253
1464
  msgid "ID"
1465
  msgstr "ID"
1466
 
1467
  #: app/features/events.php:3513 app/features/events.php:3555
1468
- #: app/features/ix.php:3373 app/features/ix.php:3414
1469
  msgid "Link"
1470
  msgstr "Link"
1471
 
@@ -1481,7 +1481,7 @@ msgstr "%s Email"
1481
 
1482
  #: app/features/events.php:3808 app/features/fes.php:223
1483
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1484
- #: app/libraries/main.php:5294
1485
  msgid "Ticket"
1486
  msgstr "Zgłoszenie"
1487
 
@@ -1659,8 +1659,8 @@ msgstr "Usuń obraz"
1659
 
1660
  #: app/features/fes/form.php:783 app/features/labels.php:61
1661
  #: app/features/labels.php:221 app/features/mec.php:403
1662
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1663
- #: app/skins/single.php:696 app/skins/single/default.php:155
1664
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1665
  #: app/skins/single/modern.php:223
1666
  msgid "Labels"
@@ -1739,77 +1739,77 @@ msgstr ""
1739
  msgid "The events are imported successfully!"
1740
  msgstr ""
1741
 
1742
- #: app/features/ix.php:806
1743
  msgid "Third Party plugin is not installed and activated!"
1744
  msgstr ""
1745
 
1746
- #: app/features/ix.php:829
1747
  msgid "Third Party plugin is invalid!"
1748
  msgstr ""
1749
 
1750
- #: app/features/ix.php:2580 app/features/ix.php:2638
1751
  msgid "Both of API key and Calendar ID are required!"
1752
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
1753
 
1754
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1755
  msgid "Please select some events to import!"
1756
  msgstr "Proszę wybrać dane do zaimportowania!"
1757
 
1758
- #: app/features/ix.php:2994 app/features/ix.php:3057
1759
  #, fuzzy
1760
  #| msgid "Both of API key and Calendar ID are required!"
1761
  msgid "Both of API key and Group URL are required!"
1762
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
1763
 
1764
- #: app/features/ix.php:3296
1765
  msgid "Check at Meetup"
1766
  msgstr ""
1767
 
1768
- #: app/features/ix.php:3373 app/features/ix.php:3414
1769
  msgid "Organizer Tel"
1770
  msgstr "Telefon organizatora"
1771
 
1772
- #: app/features/ix.php:3373 app/features/ix.php:3414
1773
  msgid "Organizer Email"
1774
  msgstr "Email organizatora"
1775
 
1776
- #: app/features/ix.php:3495
1777
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1778
  msgstr "Wszystkie Client ID, Client Secret oraz Calendar ID są wymagane!"
1779
 
1780
- #: app/features/ix.php:3518
1781
  #, php-format
1782
  msgid "All seems good! Please click %s for authenticating your app."
1783
  msgstr ""
1784
  "Wszystko wydaje się być w porządku! Kliknij %s w celu uwierzytelnienia "
1785
  "swojej aplikacji."
1786
 
1787
- #: app/features/ix.php:3572
1788
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1789
  msgstr "Wszystkie Client APP, Client Secret oraz Calendar ID są wymagane!"
1790
 
1791
- #: app/features/ix.php:3688
1792
  #, php-format
1793
  msgid "%s events added to Google Calendar successfully."
1794
  msgstr "%s wydarzenia dodane do Kalendarza Google pomyślnie."
1795
 
1796
- #: app/features/ix.php:3689
1797
  #, php-format
1798
  msgid "%s previously added events get updated."
1799
  msgstr "%s wcześniej dodane wydarzenia zaktualizowane."
1800
 
1801
- #: app/features/ix.php:3690
1802
  #, php-format
1803
  msgid "%s events failed to add for following reasons: %s"
1804
  msgstr "%s wydarzenia nie udało się dodać z następujących powodów:%s"
1805
 
1806
- #: app/features/ix.php:3722
1807
  #, fuzzy
1808
  #| msgid "Please insert your facebook page's link."
1809
  msgid "Please insert your Facebook page's link."
1810
  msgstr "Wstaw własny odnośnik Facebook."
1811
 
1812
- #: app/features/ix.php:3731
1813
  #, fuzzy
1814
  #| msgid ""
1815
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -1820,11 +1820,11 @@ msgid ""
1820
  msgstr ""
1821
  "Nie mogliśmy rozpoznać odnośnika Facebook. Sprawdź link i spróbuj ponownie."
1822
 
1823
- #: app/features/ix.php:3763
1824
  msgid "Please insert your facebook page's link."
1825
  msgstr "Wstaw własny odnośnik Facebook."
1826
 
1827
- #: app/features/ix.php:3768
1828
  msgid ""
1829
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1830
  "valid facebook page link."
@@ -1996,14 +1996,15 @@ msgstr "Przełącz"
1996
  #: app/features/ix/export_g_calendar.php:72
1997
  #: app/features/ix/export_g_calendar.php:147
1998
  #: app/features/ix/export_g_calendar.php:164
1999
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
2000
- #: app/features/mec/notifications.php:213
2001
- #: app/features/mec/notifications.php:420
 
2002
  msgid "Add to Google Calendar"
2003
  msgstr "Dodaj do Kalendarza Google"
2004
 
2005
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2006
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
2007
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2008
  msgid "Checking ..."
2009
  msgstr "Sprawdzanie ..."
@@ -2268,7 +2269,7 @@ msgstr "Automatyczny import Google"
2268
 
2269
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2270
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2271
- #: app/features/mec/notifications.php:361
2272
  msgid "Important Note"
2273
  msgstr "Ważna informacja"
2274
 
@@ -2459,7 +2460,7 @@ msgid "Featured"
2459
  msgstr "Obraz wyróżniający"
2460
 
2461
  #: app/features/labels.php:118 app/features/labels.php:143
2462
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2463
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2464
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2465
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2478,7 +2479,7 @@ msgid "You can show featured and canceled events by a different style!"
2478
  msgstr ""
2479
 
2480
  #: app/features/labels.php:180 app/features/locations.php:232
2481
- #: app/features/organizers.php:206 app/features/speakers.php:257
2482
  #: app/modules/booking/steps/tickets.php:38
2483
  msgid "Count"
2484
  msgstr "Liczba"
@@ -2495,7 +2496,7 @@ msgstr "Wydarzenie %s"
2495
 
2496
  #: app/features/locations.php:59 app/features/mec.php:404
2497
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2498
- #: app/libraries/main.php:5263
2499
  msgid "Locations"
2500
  msgstr "Lokalizacje"
2501
 
@@ -2528,13 +2529,13 @@ msgstr "Długość geograficzna (opcjonalnie)"
2528
 
2529
  #: app/features/locations.php:138 app/features/locations.php:180
2530
  #: app/features/organizers.php:127 app/features/organizers.php:160
2531
- #: app/features/speakers.php:158 app/features/speakers.php:203
2532
  msgid "Thumbnail"
2533
  msgstr "Miniatura"
2534
 
2535
  #: app/features/locations.php:143 app/features/locations.php:183
2536
  #: app/features/organizers.php:132 app/features/organizers.php:163
2537
- #: app/features/speakers.php:163 app/features/speakers.php:206
2538
  msgid "Upload/Add image"
2539
  msgstr "Prześlij / Dodaj obraz"
2540
 
@@ -2542,7 +2543,7 @@ msgstr "Prześlij / Dodaj obraz"
2542
  #: app/features/locations.php:340 app/features/locations.php:347
2543
  #: app/features/organizers.php:133 app/features/organizers.php:164
2544
  #: app/features/organizers.php:299 app/features/organizers.php:306
2545
- #: app/features/speakers.php:164 app/features/speakers.php:207
2546
  msgid "Remove image"
2547
  msgstr "Usuń obraz"
2548
 
@@ -2602,7 +2603,7 @@ msgstr "Wybierz obraz"
2602
  msgid "Don't show map in single event page"
2603
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
2604
 
2605
- #: app/features/locations.php:356 app/libraries/main.php:5297
2606
  #, fuzzy
2607
  #| msgid "Search Locations"
2608
  msgid "Other Locations"
@@ -2627,7 +2628,7 @@ msgstr ""
2627
  msgid "Troubleshooting"
2628
  msgstr ""
2629
 
2630
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2631
  #, php-format
2632
  msgid "%s to %s"
2633
  msgstr "%s do%s"
@@ -2663,7 +2664,7 @@ msgstr "Wsparcie"
2663
 
2664
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2665
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2666
- #: app/libraries/main.php:5265
2667
  msgid "Organizers"
2668
  msgstr "Organizatorzy"
2669
 
@@ -2785,10 +2786,10 @@ msgstr "Wyszukaj %s"
2785
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2786
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2787
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2788
- #: app/features/mec/notifications.php:531
2789
- #: app/features/mec/notifications.php:543
2790
- #: app/features/mec/notifications.php:639
2791
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2792
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2793
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2794
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2909,7 +2910,7 @@ msgstr ""
2909
  msgid "Enable Express Attendees Form"
2910
  msgstr ""
2911
 
2912
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2913
  msgid "Attendees Form"
2914
  msgstr "Formularz zgłoszenia uczestników"
2915
 
@@ -2943,7 +2944,7 @@ msgstr "Automatyczna weryfikacja dla bezpłatnych rezerwacji"
2943
  msgid "Auto verification for paid bookings"
2944
  msgstr "Automatyczna rezerwacja dla płatnych rezerwacji"
2945
 
2946
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2947
  #: app/libraries/main.php:579
2948
  msgid "Booking Confirmation"
2949
  msgstr "Potwierdzenie rezerwacji"
@@ -3011,14 +3012,14 @@ msgid ""
3011
  msgstr ""
3012
 
3013
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3014
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
3015
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3016
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3017
  msgid "Saved"
3018
  msgstr "Zapisane"
3019
 
3020
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3021
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
3022
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3023
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3024
  msgid "Settings Saved!"
@@ -3026,15 +3027,15 @@ msgstr ""
3026
 
3027
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3028
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3029
- #: app/features/mec/notifications.php:620
3030
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
3031
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3032
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
3033
  msgid "Verified"
3034
  msgstr "Zweryfikowane"
3035
 
3036
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3037
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
3038
  #: app/features/mec/single.php:291
3039
  msgid "Please Refresh Page"
3040
  msgstr "Proszę odświeżyć stronę"
@@ -4172,8 +4173,8 @@ msgstr "Wyłączone"
4172
  #: app/features/mec/meta_boxes/search_form.php:693
4173
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4174
  #: app/features/search.php:79 app/features/speakers.php:61
4175
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4176
- #: app/libraries/skins.php:928
4177
  msgid "Speaker"
4178
  msgstr ""
4179
 
@@ -4189,7 +4190,7 @@ msgstr ""
4189
  #: app/features/mec/meta_boxes/search_form.php:603
4190
  #: app/features/mec/meta_boxes/search_form.php:700
4191
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4192
- #: app/features/search.php:83 app/libraries/skins.php:954
4193
  #, fuzzy
4194
  #| msgid "Tags"
4195
  msgid "Tag"
@@ -4451,343 +4452,432 @@ msgstr ""
4451
  msgid "It sends to attendee after booking for notifying him/her."
4452
  msgstr "Wysyła do uczestnika email po zgłoszeniu rezerwacji."
4453
 
4454
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4455
- #: app/features/mec/notifications.php:161
4456
- #: app/features/mec/notifications.php:229
4457
- #: app/features/mec/notifications.php:299
4458
- #: app/features/mec/notifications.php:364
4459
- #: app/features/mec/notifications.php:445
4460
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4461
  msgid "Email Subject"
4462
  msgstr "Temat maila"
4463
 
4464
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4465
- #: app/features/mec/notifications.php:109
4466
- #: app/features/mec/notifications.php:113
4467
- #: app/features/mec/notifications.php:165
4468
- #: app/features/mec/notifications.php:169
4469
- #: app/features/mec/notifications.php:233
4470
- #: app/features/mec/notifications.php:237
4471
- #: app/features/mec/notifications.php:303
4472
- #: app/features/mec/notifications.php:307
4473
- #: app/features/mec/notifications.php:368
4474
- #: app/features/mec/notifications.php:372
4475
- #: app/features/mec/notifications.php:383
4476
- #: app/features/mec/notifications.php:449
4477
- #: app/features/mec/notifications.php:453
4478
- #: app/features/mec/notifications.php:497
4479
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4480
  msgid "Custom Recipients"
4481
  msgstr "Niestandardowi odbiorcy"
4482
 
4483
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4484
- #: app/features/mec/notifications.php:170
4485
- #: app/features/mec/notifications.php:238
4486
- #: app/features/mec/notifications.php:308
4487
- #: app/features/mec/notifications.php:373
4488
- #: app/features/mec/notifications.php:384
4489
- #: app/features/mec/notifications.php:454
4490
- #: app/features/mec/notifications.php:502
4491
  msgid "Insert comma separated emails for multiple recipients."
4492
  msgstr ""
4493
  "Wstaw adresy email oddzielone przecinkami aby wysłać email do wielu "
4494
  "odbiorców jednocześnie."
4495
 
4496
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4497
- #: app/features/mec/notifications.php:315
4498
  msgid "Send the email to event organizer"
4499
  msgstr "Wyślij e-mail do organizatora"
4500
 
4501
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4502
- #: app/features/mec/notifications.php:180
4503
- #: app/features/mec/notifications.php:256
4504
- #: app/features/mec/notifications.php:318
4505
- #: app/features/mec/notifications.php:390
4506
- #: app/features/mec/notifications.php:460
4507
- #: app/features/mec/notifications.php:508
4508
  msgid "Email Content"
4509
  msgstr "Zawartość emaila"
4510
 
4511
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4512
- #: app/features/mec/notifications.php:183
4513
- #: app/features/mec/notifications.php:259
4514
- #: app/features/mec/notifications.php:321
4515
- #: app/features/mec/notifications.php:393
4516
- #: app/features/mec/notifications.php:463
4517
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4518
  msgid "You can use following placeholders"
4519
  msgstr "Możesz użyć następujących symboli zastępczych"
4520
 
4521
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4522
- #: app/features/mec/notifications.php:185
4523
- #: app/features/mec/notifications.php:261
4524
- #: app/features/mec/notifications.php:323
4525
- #: app/features/mec/notifications.php:395
 
4526
  msgid "First name of attendee"
4527
  msgstr "Imię"
4528
 
4529
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4530
- #: app/features/mec/notifications.php:186
4531
- #: app/features/mec/notifications.php:262
4532
- #: app/features/mec/notifications.php:324
4533
- #: app/features/mec/notifications.php:396
 
4534
  msgid "Last name of attendee"
4535
  msgstr "Nazwisko"
4536
 
4537
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4538
- #: app/features/mec/notifications.php:187
4539
- #: app/features/mec/notifications.php:263
4540
- #: app/features/mec/notifications.php:325
4541
- #: app/features/mec/notifications.php:397
 
4542
  msgid "Email of attendee"
4543
  msgstr "E-mail uczestnika"
4544
 
4545
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4546
- #: app/features/mec/notifications.php:188
4547
- #: app/features/mec/notifications.php:264
4548
- #: app/features/mec/notifications.php:326
4549
- #: app/features/mec/notifications.php:398
 
4550
  msgid "Booked date of event"
4551
  msgstr "Termin zarezerwowanego wydarzenia"
4552
 
4553
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4554
- #: app/features/mec/notifications.php:189
4555
- #: app/features/mec/notifications.php:265
4556
- #: app/features/mec/notifications.php:327
4557
- #: app/features/mec/notifications.php:399
 
4558
  #, fuzzy
4559
  #| msgid "Booked date of event"
4560
  msgid "Booked time of event"
4561
  msgstr "Termin zarezerwowanego wydarzenia"
4562
 
4563
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4564
- #: app/features/mec/notifications.php:190
4565
- #: app/features/mec/notifications.php:266
4566
- #: app/features/mec/notifications.php:328
4567
- #: app/features/mec/notifications.php:400
 
4568
  msgid "Booking Price"
4569
  msgstr "Cena rezerwacji"
4570
 
4571
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4572
- #: app/features/mec/notifications.php:191
4573
- #: app/features/mec/notifications.php:267
4574
- #: app/features/mec/notifications.php:329
4575
- #: app/features/mec/notifications.php:401
 
4576
  msgid "Date and time of placing booking"
4577
  msgstr ""
4578
 
4579
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4580
- #: app/features/mec/notifications.php:192
4581
- #: app/features/mec/notifications.php:268
4582
- #: app/features/mec/notifications.php:330
4583
- #: app/features/mec/notifications.php:402
4584
- #: app/features/mec/notifications.php:471
4585
- #: app/features/mec/notifications.php:519
 
4586
  msgid "Your website title"
4587
  msgstr "Twoja strona WWW"
4588
 
4589
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4590
- #: app/features/mec/notifications.php:193
4591
- #: app/features/mec/notifications.php:269
4592
- #: app/features/mec/notifications.php:331
4593
- #: app/features/mec/notifications.php:403
4594
- #: app/features/mec/notifications.php:472
4595
- #: app/features/mec/notifications.php:520
 
4596
  msgid "Your website URL"
4597
  msgstr "Adres URL strony WWW"
4598
 
4599
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4600
- #: app/features/mec/notifications.php:194
4601
- #: app/features/mec/notifications.php:270
4602
- #: app/features/mec/notifications.php:332
4603
- #: app/features/mec/notifications.php:404
4604
- #: app/features/mec/notifications.php:473
4605
- #: app/features/mec/notifications.php:521
 
4606
  msgid "Your website description"
4607
  msgstr "Opis twojej strony WWW"
4608
 
4609
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4610
- #: app/features/mec/notifications.php:195
4611
- #: app/features/mec/notifications.php:271
4612
- #: app/features/mec/notifications.php:333
4613
- #: app/features/mec/notifications.php:405
 
4614
  msgid "Event title"
4615
  msgstr "Tytuł wydarzenia"
4616
 
4617
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4618
- #: app/features/mec/notifications.php:196
4619
- #: app/features/mec/notifications.php:272
4620
- #: app/features/mec/notifications.php:334
4621
- #: app/features/mec/notifications.php:406
 
4622
  #, fuzzy
4623
  #| msgid "Event Link"
4624
  msgid "Event link"
4625
  msgstr "Link strony www wydarzenia"
4626
 
4627
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4628
- #: app/features/mec/notifications.php:197
4629
- #: app/features/mec/notifications.php:467
4630
- #: app/features/mec/notifications.php:515
 
4631
  #, fuzzy
4632
  #| msgid "Start Date"
4633
  msgid "Event Start Date"
4634
  msgstr "Data rozpoczęcia"
4635
 
4636
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4637
- #: app/features/mec/notifications.php:198
4638
- #: app/features/mec/notifications.php:468
4639
- #: app/features/mec/notifications.php:516
 
4640
  #, fuzzy
4641
  #| msgid "End Date"
4642
  msgid "Event End Date"
4643
  msgstr "Data zakończenia"
4644
 
4645
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4646
- #: app/features/mec/notifications.php:199
4647
- #: app/features/mec/notifications.php:273
4648
- #: app/features/mec/notifications.php:335
4649
- #: app/features/mec/notifications.php:407
 
4650
  #, fuzzy
4651
  #| msgid "Organizer name of booked event"
4652
  msgid "Speaker name of booked event"
4653
  msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
4654
 
4655
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4656
- #: app/features/mec/notifications.php:200
4657
- #: app/features/mec/notifications.php:274
4658
- #: app/features/mec/notifications.php:336
4659
- #: app/features/mec/notifications.php:408
 
4660
  msgid "Organizer name of booked event"
4661
  msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
4662
 
4663
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4664
- #: app/features/mec/notifications.php:201
4665
- #: app/features/mec/notifications.php:275
4666
- #: app/features/mec/notifications.php:337
4667
- #: app/features/mec/notifications.php:409
 
4668
  msgid "Organizer tel of booked event"
4669
  msgstr "Telefon organizatora zarezerwowanego wydarzenia"
4670
 
4671
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4672
- #: app/features/mec/notifications.php:202
4673
- #: app/features/mec/notifications.php:276
4674
- #: app/features/mec/notifications.php:338
4675
- #: app/features/mec/notifications.php:410
 
4676
  msgid "Organizer email of booked event"
4677
  msgstr "Email organizatora zarezerwowanego wydarzenia"
4678
 
4679
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4680
- #: app/features/mec/notifications.php:203
4681
- #: app/features/mec/notifications.php:277
4682
- #: app/features/mec/notifications.php:339
4683
- #: app/features/mec/notifications.php:411
 
4684
  msgid "Location name of booked event"
4685
  msgstr "Nazwa lokalizacji zarezerwowanego wydarzenia"
4686
 
4687
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4688
- #: app/features/mec/notifications.php:204
4689
- #: app/features/mec/notifications.php:278
4690
- #: app/features/mec/notifications.php:340
4691
- #: app/features/mec/notifications.php:412
 
4692
  msgid "Location address of booked event"
4693
  msgstr "Adres lokalizacji zarezerwowanego wydarzenia"
4694
 
4695
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4696
- #: app/features/mec/notifications.php:205
4697
- #: app/features/mec/notifications.php:279
4698
- #: app/features/mec/notifications.php:341
4699
- #: app/features/mec/notifications.php:413
 
4700
  #, fuzzy
4701
  #| msgid "Organizer name of booked event"
4702
  msgid "Featured image of booked event"
4703
  msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
4704
 
4705
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4706
- #: app/features/mec/notifications.php:343
 
4707
  msgid "Full Attendee info such as booking form data, name, email etc."
4708
  msgstr ""
4709
  "Pełna informacja na temat uczestnika pochodząca z wypełnionego formularza."
4710
 
4711
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4712
- #: app/features/mec/notifications.php:415
 
4713
  msgid "Invoice Link"
4714
  msgstr ""
4715
 
4716
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4717
- #: app/features/mec/notifications.php:208
4718
- #: app/features/mec/notifications.php:282
4719
- #: app/features/mec/notifications.php:344
4720
- #: app/features/mec/notifications.php:416
 
4721
  msgid "Total Attendees"
4722
  msgstr ""
4723
 
4724
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4725
- #: app/features/mec/notifications.php:210
4726
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4727
  #, fuzzy
4728
  #| msgid "Ticket Name"
4729
  msgid "Ticket name"
4730
  msgstr "Nazwa biletu"
4731
 
4732
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4733
- #: app/features/mec/notifications.php:211
4734
- #: app/features/mec/notifications.php:418
 
4735
  #, fuzzy
4736
  #| msgid "Ticket Name"
4737
  msgid "Ticket time"
4738
  msgstr "Nazwa biletu"
4739
 
4740
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4741
- #: app/features/mec/notifications.php:212
4742
- #: app/features/mec/notifications.php:419
 
4743
  msgid "Download ICS file"
4744
  msgstr ""
4745
 
4746
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4747
  msgid "Booking Verification"
4748
  msgstr "Potwierdzenie rezerwacji"
4749
 
4750
- #: app/features/mec/notifications.php:103
4751
  msgid "It sends to attendee email for verifying their booking/email."
4752
  msgstr "Wysyła email do uczestnika w celu potwierdzenia rezerwacji."
4753
 
4754
- #: app/features/mec/notifications.php:146
4755
  msgid "Email/Booking verification link."
4756
  msgstr "Link potwierdzający rezerwację."
4757
 
4758
- #: app/features/mec/notifications.php:159
4759
  msgid "It sends to attendee after confirming the booking by admin."
4760
  msgstr ""
4761
  "Wysyła do uczestnika email po zaakceptowaniu rezerwacji przez administratora."
4762
 
4763
- #: app/features/mec/notifications.php:177
4764
  msgid "Send One Single Email Only To First Attendee"
4765
  msgstr ""
4766
 
4767
- #: app/features/mec/notifications.php:206
4768
- #: app/features/mec/notifications.php:414
4769
  msgid "Booking cancellation link."
4770
  msgstr "Link odrzucenia rezerwacji."
4771
 
4772
- #: app/features/mec/notifications.php:209
4773
- #, fuzzy
4774
- #| msgid "Amount (Per Ticket)"
4775
- msgid "Amount Tickets"
4776
- msgstr "Wartość (bilet)"
4777
-
4778
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4779
  #, fuzzy
4780
  #| msgid "Booking cancellation link."
4781
  msgid "Booking Cancellation"
4782
  msgstr "Link odrzucenia rezerwacji."
4783
 
4784
- #: app/features/mec/notifications.php:223
4785
  #, fuzzy
4786
  #| msgid "Enable new event notification"
4787
  msgid "Enable cancellation notification"
4788
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4789
 
4790
- #: app/features/mec/notifications.php:227
4791
  #, fuzzy
4792
  #| msgid "It sends to attendee after booking for notifying him/her."
4793
  msgid ""
@@ -4795,48 +4885,48 @@ msgid ""
4795
  "them."
4796
  msgstr "Wysyła do uczestnika email po zgłoszeniu rezerwacji."
4797
 
4798
- #: app/features/mec/notifications.php:245
4799
- #: app/features/mec/notifications.php:439
4800
  #, fuzzy
4801
  #| msgid "Send the email to event organizer"
4802
  msgid "Send the email to admin"
4803
  msgstr "Wyślij e-mail do organizatora"
4804
 
4805
- #: app/features/mec/notifications.php:253
4806
  #, fuzzy
4807
  #| msgid "Send the email to event organizer"
4808
  msgid "Send the email to booking user"
4809
  msgstr "Wyślij e-mail do organizatora"
4810
 
4811
- #: app/features/mec/notifications.php:280
4812
- #: app/features/mec/notifications.php:342
4813
  msgid "Admin booking management link."
4814
  msgstr "Link do administracji rezerwacją."
4815
 
4816
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4817
  msgid "Admin"
4818
  msgstr ""
4819
 
4820
- #: app/features/mec/notifications.php:293
4821
  #, fuzzy
4822
  #| msgid "Enable new event notification"
4823
  msgid "Enable admin notification"
4824
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4825
 
4826
- #: app/features/mec/notifications.php:297
4827
  msgid "It sends to admin to notify him/her that a new booking received."
4828
  msgstr "Wysyła do administratora email z informacją o nowej rezerwacji."
4829
 
4830
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4831
- #: app/libraries/notifications.php:548
4832
  msgid "Booking Reminder"
4833
  msgstr ""
4834
 
4835
- #: app/features/mec/notifications.php:355
4836
  msgid "Enable booking reminder notification"
4837
  msgstr ""
4838
 
4839
- #: app/features/mec/notifications.php:361
4840
  #, php-format
4841
  msgid ""
4842
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4844,70 +4934,70 @@ msgid ""
4844
  "send the reminders multiple times."
4845
  msgstr ""
4846
 
4847
- #: app/features/mec/notifications.php:361
4848
  msgid "only once per day"
4849
  msgstr ""
4850
 
4851
- #: app/features/mec/notifications.php:379
4852
  msgid "Days"
4853
  msgstr ""
4854
 
4855
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4856
  #: app/libraries/main.php:583
4857
  msgid "New Event"
4858
  msgstr "Nowe wydarzenie"
4859
 
4860
- #: app/features/mec/notifications.php:433
4861
  msgid "Enable new event notification"
4862
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4863
 
4864
- #: app/features/mec/notifications.php:443
4865
  msgid ""
4866
  "It sends after adding a new event from frontend event submission or from "
4867
  "website backend."
4868
  msgstr "Wysyła powiadomienie o nowym wydarzeniu gdy zostanie dodane."
4869
 
4870
- #: app/features/mec/notifications.php:465
4871
- #: app/features/mec/notifications.php:513
4872
  msgid "Title of event"
4873
  msgstr "Tytuł wydarzenia"
4874
 
4875
- #: app/features/mec/notifications.php:466
4876
- #: app/features/mec/notifications.php:514
4877
  #, fuzzy
4878
  #| msgid "Title of event"
4879
  msgid "Link of event"
4880
  msgstr "Tytuł wydarzenia"
4881
 
4882
- #: app/features/mec/notifications.php:469
4883
- #: app/features/mec/notifications.php:517
4884
  msgid "Status of event"
4885
  msgstr "Status wydarzenia"
4886
 
4887
- #: app/features/mec/notifications.php:470
4888
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4889
  #: app/features/mec/settings.php:738
4890
  msgid "Event Note"
4891
  msgstr "Uwaga"
4892
 
4893
- #: app/features/mec/notifications.php:474
4894
- #: app/features/mec/notifications.php:522
4895
  msgid "Admin events management link."
4896
  msgstr "Link do zarzadzania wydarzeniami."
4897
 
4898
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4899
  #, fuzzy
4900
  #| msgid "The event published."
4901
  msgid "User Event Publishing"
4902
  msgstr "Wydarzenie opublikowane."
4903
 
4904
- #: app/features/mec/notifications.php:487
4905
  #, fuzzy
4906
  #| msgid "Enable new event notification"
4907
  msgid "Enable user event publishing notification"
4908
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4909
 
4910
- #: app/features/mec/notifications.php:491
4911
  #, fuzzy
4912
  #| msgid ""
4913
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5088,7 +5178,7 @@ msgid "You can enable/disable Schema scripts"
5088
  msgstr ""
5089
 
5090
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5091
- #: app/libraries/main.php:5272
5092
  msgid "Weekdays"
5093
  msgstr "Dni powszednie"
5094
 
@@ -6361,12 +6451,12 @@ msgstr "np. email@domena.pl"
6361
  msgid "eg. https://webnus.net"
6362
  msgstr "http://webnus.biz"
6363
 
6364
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6365
- #: app/skins/single.php:856
6366
  msgid "Other Organizers"
6367
  msgstr ""
6368
 
6369
- #: app/features/organizers.php:313
6370
  msgid ""
6371
  "You can select extra organizers in addition to main organizer if you like."
6372
  msgstr ""
@@ -6387,7 +6477,7 @@ msgstr "Twoja rezerwacja nie może zostać anulowana."
6387
  msgid "#"
6388
  msgstr ""
6389
 
6390
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6391
  msgid "Status"
6392
  msgstr ""
6393
 
@@ -6422,7 +6512,7 @@ msgstr ""
6422
  msgid "No bookings found!"
6423
  msgstr "Nie znaleziono rezerwacji!"
6424
 
6425
- #: app/features/search.php:87 app/libraries/main.php:5262
6426
  msgid "label"
6427
  msgstr "etykieta"
6428
 
@@ -6449,76 +6539,94 @@ msgid "No search result."
6449
  msgstr ""
6450
 
6451
  #: app/features/search_bar/search_result.php:11
6452
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6453
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6454
- #: app/skins/single.php:160 app/skins/single.php:747
6455
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6456
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6457
  msgid "All of the day"
6458
  msgstr "Cały dzień"
6459
 
6460
- #: app/features/speakers.php:110 app/features/speakers.php:179
6461
- #: app/features/speakers.php:255
6462
  #, fuzzy
6463
  #| msgid "Title"
6464
  msgid "Job Title"
6465
  msgstr "Tytuł"
6466
 
6467
- #: app/features/speakers.php:113 app/features/speakers.php:180
6468
  msgid "Insert speaker job title."
6469
  msgstr ""
6470
 
6471
- #: app/features/speakers.php:121 app/features/speakers.php:184
6472
  #, fuzzy
6473
  #| msgid "Insert organizer phone number."
6474
  msgid "Insert speaker phone number."
6475
  msgstr "Podaj numer telefonu organizatora."
6476
 
6477
- #: app/features/speakers.php:129 app/features/speakers.php:188
6478
  #, fuzzy
6479
  #| msgid "Insert organizer email address."
6480
  msgid "Insert speaker email address."
6481
  msgstr "Podaj adres email organizatora."
6482
 
6483
- #: app/features/speakers.php:134 app/features/speakers.php:191
6484
  #, fuzzy
6485
  #| msgid "Facebook Page Link"
6486
  msgid "Facebook Page"
6487
  msgstr "Własny odnośnik Facebook"
6488
 
6489
- #: app/features/speakers.php:137 app/features/speakers.php:192
6490
  #, fuzzy
6491
  #| msgid "Import from Facebook Calendar"
6492
  msgid "Insert URL of Facebook Page"
6493
  msgstr "Importuj z kalendarza Facebook"
6494
 
6495
- #: app/features/speakers.php:142 app/features/speakers.php:195
6496
  msgid "Instagram"
6497
  msgstr ""
6498
 
6499
- #: app/features/speakers.php:145 app/features/speakers.php:196
6500
  #, fuzzy
6501
  #| msgid "Insert -1 for unlimited usage"
6502
  msgid "Insert URL of Instagram"
6503
  msgstr "Wstaw -1 dla braku limitu"
6504
 
6505
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6506
  #, fuzzy
6507
  #| msgid "Twitter"
6508
  msgid "Twitter Page"
6509
  msgstr "Twitter"
6510
 
6511
- #: app/features/speakers.php:153 app/features/speakers.php:200
6512
  #, fuzzy
6513
  #| msgid "Insert -1 for unlimited usage"
6514
  msgid "Insert URL of Twitter Page"
6515
  msgstr "Wstaw -1 dla braku limitu"
6516
 
6517
- #: app/features/speakers.php:315
 
 
 
 
 
 
6518
  msgid "Sorry, You must insert speaker name!"
6519
  msgstr ""
6520
 
6521
- #: app/features/speakers.php:364
6522
  msgid ""
6523
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6524
  "section and speaker widget section!"
@@ -6677,31 +6785,31 @@ msgstr "Widok suwaka"
6677
  msgid "Tile View"
6678
  msgstr "Widok suwaka"
6679
 
6680
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6681
  msgid "SU"
6682
  msgstr "NIE"
6683
 
6684
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6685
  msgid "MO"
6686
  msgstr "PN"
6687
 
6688
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6689
  msgid "TU"
6690
  msgstr "WT"
6691
 
6692
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6693
  msgid "WE"
6694
  msgstr "ŚR"
6695
 
6696
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6697
  msgid "TH"
6698
  msgstr "CZW"
6699
 
6700
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6701
  msgid "FR"
6702
  msgstr "PT"
6703
 
6704
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6705
  msgid "SA"
6706
  msgstr "SOB"
6707
 
@@ -6968,173 +7076,173 @@ msgstr "Nieprawidłowe żądanie!"
6968
  msgid "iCal export stopped!"
6969
  msgstr "iCal eksport zatrzymany!"
6970
 
6971
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6972
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6973
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6974
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6975
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6976
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6977
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6978
  msgid "Sort"
6979
  msgstr "Sortowanie"
6980
 
6981
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6982
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6983
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6984
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6985
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6986
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6987
  msgid "Required Field"
6988
  msgstr "Wymagane pole"
6989
 
6990
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6991
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6992
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6993
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6994
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6995
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6996
  msgid "Insert a label for this field"
6997
  msgstr "Wpisz etykietę dla tego pola"
6998
 
6999
- #: app/libraries/main.php:2958
7000
  msgid "HTML and shortcode are allowed."
7001
  msgstr "HTML i shortcode są dozwolone."
7002
 
7003
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
7004
- #: app/libraries/main.php:3089
7005
  msgid "Option"
7006
  msgstr "Opcja"
7007
 
7008
- #: app/libraries/main.php:3123
7009
  #, php-format
7010
  msgid "Instead of %s, the page title with a link will be show."
7011
  msgstr ""
7012
 
7013
- #: app/libraries/main.php:3125
7014
  msgid "Agreement Page"
7015
  msgstr ""
7016
 
7017
- #: app/libraries/main.php:3136
7018
  msgid "Checked by default"
7019
  msgstr ""
7020
 
7021
- #: app/libraries/main.php:3137
7022
  msgid "Unchecked by default"
7023
  msgstr ""
7024
 
7025
- #: app/libraries/main.php:3160
7026
  msgid "Insert a label for this option"
7027
  msgstr "Podaj etykietę dla tej opcji"
7028
 
7029
- #: app/libraries/main.php:3175
7030
  msgid "Free"
7031
  msgstr "Darmowy"
7032
 
7033
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
7034
  #, fuzzy
7035
  #| msgid "M.E. Calendar"
7036
  msgid "M.E. Calender"
7037
  msgstr "Kalendarz"
7038
 
7039
- #: app/libraries/main.php:3936
7040
  #, php-format
7041
  msgid "Copy of %s"
7042
  msgstr "Kopia %s"
7043
 
7044
- #: app/libraries/main.php:4651
7045
  msgid "Booked an event."
7046
  msgstr "Zarezerwowano wydarzenie."
7047
 
7048
- #: app/libraries/main.php:4692
7049
  #, php-format
7050
  msgid "%s booked %s event."
7051
  msgstr "%s zarezerwował %s wydarzenie."
7052
 
7053
- #: app/libraries/main.php:5257
7054
  msgid "Taxonomies"
7055
  msgstr "Taksonomie"
7056
 
7057
- #: app/libraries/main.php:5259
7058
  msgid "Category Plural Label"
7059
  msgstr "Etykieta dla kategorii - liczba mnoga"
7060
 
7061
- #: app/libraries/main.php:5260
7062
  msgid "Category Singular Label"
7063
  msgstr "Etykieta dla kategorii - liczba pojedyncza"
7064
 
7065
- #: app/libraries/main.php:5261
7066
  msgid "Label Plural Label"
7067
  msgstr "Etykieta - liczba mnoga"
7068
 
7069
- #: app/libraries/main.php:5262
7070
  msgid "Label Singular Label"
7071
  msgstr "Etykieta - liczba pojedyncza"
7072
 
7073
- #: app/libraries/main.php:5263
7074
  msgid "Location Plural Label"
7075
  msgstr "Etykieta dla lokalizacji - wersja mnoga"
7076
 
7077
- #: app/libraries/main.php:5264
7078
  msgid "Location Singular Label"
7079
  msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
7080
 
7081
- #: app/libraries/main.php:5265
7082
  msgid "Organizer Plural Label"
7083
  msgstr "Etykieta dla organizatora - wersja mnoga"
7084
 
7085
- #: app/libraries/main.php:5266
7086
  msgid "Organizer Singular Label"
7087
  msgstr "Etykieta dla organizatora - wersja pojedyncza"
7088
 
7089
- #: app/libraries/main.php:5267
7090
  #, fuzzy
7091
  #| msgid "Label Plural Label"
7092
  msgid "Speaker Plural Label"
7093
  msgstr "Etykieta - liczba mnoga"
7094
 
7095
- #: app/libraries/main.php:5268
7096
  #, fuzzy
7097
  #| msgid "Label Singular Label"
7098
  msgid "Speaker Singular Label"
7099
  msgstr "Etykieta - liczba pojedyncza"
7100
 
7101
- #: app/libraries/main.php:5274
7102
  msgid "Sunday abbreviation"
7103
  msgstr "Niedziela"
7104
 
7105
- #: app/libraries/main.php:5275
7106
  msgid "Monday abbreviation"
7107
  msgstr "Poniedziałek"
7108
 
7109
- #: app/libraries/main.php:5276
7110
  msgid "Tuesday abbreviation"
7111
  msgstr "Wtorek"
7112
 
7113
- #: app/libraries/main.php:5277
7114
  msgid "Wednesday abbreviation"
7115
  msgstr "Środa"
7116
 
7117
- #: app/libraries/main.php:5278
7118
  msgid "Thursday abbreviation"
7119
  msgstr "Czwartek"
7120
 
7121
- #: app/libraries/main.php:5279
7122
  msgid "Friday abbreviation"
7123
  msgstr "Piątek"
7124
 
7125
- #: app/libraries/main.php:5280
7126
  msgid "Saturday abbreviation"
7127
  msgstr "Sobota"
7128
 
7129
- #: app/libraries/main.php:5284
7130
  msgid "Others"
7131
  msgstr "Inne"
7132
 
7133
- #: app/libraries/main.php:5286
7134
  msgid "Booking Success Message"
7135
  msgstr "Wiadomość zakończenia rezerwacji"
7136
 
7137
- #: app/libraries/main.php:5286
7138
  msgid ""
7139
  "Thanks for your booking. Your tickets booked, booking verification might be "
7140
  "needed, please check your email."
@@ -7142,17 +7250,17 @@ msgstr ""
7142
  "Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
7143
  "rezerwacji może być konieczna, sprawdź swoją pocztę email."
7144
 
7145
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7146
  msgid "Register Button"
7147
  msgstr "Przycisk rejestracji"
7148
 
7149
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7150
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7151
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7152
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7153
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7154
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7155
- #: app/skins/single.php:771 app/skins/single/default.php:255
7156
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7157
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7158
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7163,11 +7271,11 @@ msgstr "Przycisk rejestracji"
7163
  msgid "REGISTER"
7164
  msgstr "REJESTRACJA"
7165
 
7166
- #: app/libraries/main.php:5288
7167
  msgid "View Detail Button"
7168
  msgstr "Pokaż szczegóły"
7169
 
7170
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7171
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7172
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7173
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7178,87 +7286,87 @@ msgstr "Pokaż szczegóły"
7178
  msgid "View Detail"
7179
  msgstr "Pokaż szczegóły"
7180
 
7181
- #: app/libraries/main.php:5289
7182
  msgid "Event Detail Button"
7183
  msgstr "Szczegóły wydarzenia"
7184
 
7185
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7186
  msgid "Event Detail"
7187
  msgstr "Szczegóły wydarzenia"
7188
 
7189
- #: app/libraries/main.php:5291
7190
  msgid "More Info Link"
7191
  msgstr "Więcej informacji"
7192
 
7193
- #: app/libraries/main.php:5294
7194
  msgid "Ticket (Singular)"
7195
  msgstr ""
7196
 
7197
- #: app/libraries/main.php:5295
7198
  msgid "Tickets (Plural)"
7199
  msgstr ""
7200
 
7201
- #: app/libraries/main.php:5381
7202
  msgid "EventON"
7203
  msgstr ""
7204
 
7205
- #: app/libraries/main.php:5382
7206
  msgid "The Events Calendar"
7207
  msgstr ""
7208
 
7209
- #: app/libraries/main.php:5383
7210
  msgid "Events Schedule WP Plugin"
7211
  msgstr ""
7212
 
7213
- #: app/libraries/main.php:5384
7214
  msgid "Calendarize It"
7215
  msgstr ""
7216
 
7217
- #: app/libraries/main.php:5385
7218
  #, fuzzy
7219
  #| msgid "No Search Options"
7220
  msgid "Event Espresso"
7221
  msgstr "Brak opcji wyszukiwania"
7222
 
7223
- #: app/libraries/main.php:5386
7224
  #, fuzzy
7225
  #| msgid "Event Repeating"
7226
  msgid "Events Manager (Recurring)"
7227
  msgstr "Wydarzenie powtarzalne"
7228
 
7229
- #: app/libraries/main.php:5387
7230
  #, fuzzy
7231
  #| msgid "Modern Events Calendar"
7232
  msgid "Events Manager (Single)"
7233
  msgstr "Nowoczesny Kalendarz Wydarzeń"
7234
 
7235
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7236
  msgid "Confirmed"
7237
  msgstr "Potwierdzone"
7238
 
7239
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7240
  msgid "Rejected"
7241
  msgstr "Odrzucone"
7242
 
7243
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7244
  msgid "Pending"
7245
  msgstr "Oczekuje"
7246
 
7247
- #: app/libraries/main.php:5511
7248
  msgid "Waiting"
7249
  msgstr "Oczekuje"
7250
 
7251
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7252
  msgid "Skin controller does not exist."
7253
  msgstr "Kontroler skórki nie iestnieje."
7254
 
7255
- #: app/libraries/main.php:5830
7256
  #, fuzzy
7257
  #| msgid "Sold out!"
7258
  msgid "Sold Out"
7259
  msgstr "Wyprzedane!"
7260
 
7261
- #: app/libraries/main.php:5838
7262
  #, fuzzy
7263
  #| msgid "Ticket"
7264
  msgid "Last Few Tickets"
@@ -7268,58 +7376,60 @@ msgstr "Zgłoszenie"
7268
  msgid "Please verify your email."
7269
  msgstr "Potwierdź swój email."
7270
 
7271
- #: app/libraries/notifications.php:142
7272
  msgid "Your booking is received."
7273
  msgstr "Otrzymaliśmy twoją rezerwację."
7274
 
7275
- #: app/libraries/notifications.php:249
7276
  msgid "Your booking is confirmed."
7277
  msgstr "Twoja rezerwacja jest potwierdzona."
7278
 
7279
- #: app/libraries/notifications.php:391
7280
  #, fuzzy
7281
  #| msgid "Your booking cannot be canceled."
7282
  msgid "booking canceled."
7283
  msgstr "Twoja rezerwacja nie może zostać anulowana."
7284
 
7285
- #: app/libraries/notifications.php:466
7286
  msgid "A new booking is received."
7287
  msgstr "Otrzymałeś nową rezerwację."
7288
 
7289
- #: app/libraries/notifications.php:657
7290
  msgid "A new event is added."
7291
  msgstr "Nowe wydarzenie zostało dodane."
7292
 
7293
- #: app/libraries/notifications.php:726
7294
  #, fuzzy
7295
  #| msgid "The event published."
7296
  msgid "Your event is published."
7297
  msgstr "Wydarzenie opublikowane."
7298
 
7299
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7300
- #: app/libraries/notifications.php:964
7301
  msgid "to"
7302
  msgstr ""
7303
 
7304
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7305
  msgid "+ Add to Google Calendar"
7306
  msgstr "+ Dodaj do Google Calendar"
7307
 
7308
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7309
  msgid "+ iCal export"
7310
  msgstr "+ eksport iCal"
7311
 
7312
- #: app/libraries/notifications.php:1043
7313
  msgid "Yes"
7314
  msgstr ""
7315
 
7316
- #: app/libraries/notifications.php:1043
7317
  msgid "No"
7318
  msgstr ""
7319
 
7320
- #: app/libraries/skins.php:1000
7321
- msgid "none"
7322
- msgstr ""
 
 
7323
 
7324
  #: app/modules/attendees-list/details.php:36
7325
  msgid "Event Attendees"
@@ -7356,12 +7466,18 @@ msgstr ""
7356
  msgid "Free Booking"
7357
  msgstr ""
7358
 
 
 
 
 
 
 
7359
  #: app/modules/booking/steps/form.php:165
7360
  msgid "Fill other attendees information like the first form."
7361
  msgstr ""
7362
 
7363
  #: app/modules/booking/steps/form.php:179
7364
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7365
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7366
  msgid "Next"
7367
  msgstr "Następny"
@@ -7374,17 +7490,17 @@ msgstr "Dziękujemy za rezerwację."
7374
  msgid "Book Event"
7375
  msgstr "Rezerwuj wydarzenie"
7376
 
7377
- #: app/modules/booking/steps/tickets.php:44
7378
  #, php-format
7379
  msgid "Available %s: <span>%s</span>"
7380
  msgstr ""
7381
 
7382
- #: app/modules/booking/steps/tickets.php:48
7383
  #, php-format
7384
- msgid "The %s ticket sales has stoped!"
7385
  msgstr ""
7386
 
7387
- #: app/modules/booking/steps/tickets.php:49
7388
  #, php-format
7389
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7390
  msgstr "Bilety %s zostały wyprzedane. Możesz spróbować wybrać inny bilet."
@@ -7405,7 +7521,7 @@ msgstr "Adres z ..."
7405
  msgid "Get Directions"
7406
  msgstr ""
7407
 
7408
- #: app/modules/links/details.php:17 app/skins/single.php:455
7409
  msgid "Share this event"
7410
  msgstr "Poleć to wydarzenie"
7411
 
@@ -7432,7 +7548,7 @@ msgstr "Następne wystąpienie"
7432
  msgid "Go to occurrence page"
7433
  msgstr "Przejdź do strony wystąpienia"
7434
 
7435
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7436
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7437
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7438
  msgid "Time"
@@ -7560,27 +7676,27 @@ msgstr "Brak wydarzeń"
7560
  msgid "Home"
7561
  msgstr ""
7562
 
7563
- #: app/skins/single.php:538 app/skins/single/default.php:51
7564
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7565
  #: app/skins/single/modern.php:265
7566
  msgid "Sold out!"
7567
  msgstr "Wyprzedane!"
7568
 
7569
- #: app/skins/single.php:816 app/skins/single.php:871
7570
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7571
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7572
  #: app/skins/single/modern.php:44
7573
  msgid "Phone"
7574
  msgstr "Telefon"
7575
 
7576
- #: app/skins/single.php:830 app/skins/single.php:885
7577
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7578
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7579
  #: app/skins/single/modern.php:58
7580
  msgid "Website"
7581
  msgstr "Strona WWW"
7582
 
7583
- #: app/skins/single.php:955
7584
  #, fuzzy
7585
  #| msgid "No Search Options"
7586
  msgid "Speakers:"
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:49+0330\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
277
  msgid "Add New Event"
278
  msgstr "Dodaj nowe wydarzenie"
279
 
280
+ #: app/features/events.php:161 app/features/ix.php:3889
281
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
282
  msgid "No events found!"
283
  msgstr "Nie znaleziono wydarzeń!"
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
+ #: app/features/search.php:67 app/libraries/main.php:5278
316
+ #: app/libraries/skins.php:858 app/skins/single.php:566
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
319
  #: app/skins/single/modern.php:113
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
326
  msgid "Categories"
327
  msgstr "Kategorie"
328
 
411
  msgstr "Wydarzenie powtarzalne"
412
 
413
  #: app/features/events.php:333 app/features/events.php:1286
414
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
415
  msgid "Hourly Schedule"
416
  msgstr "Harmonogram"
417
 
429
 
430
  #: app/features/events.php:336 app/features/events.php:3322
431
  #: app/features/events.php:3513 app/features/events.php:3555
432
+ #: app/features/ix.php:3510 app/features/ix.php:3551
433
  #: app/features/mec/meta_boxes/display_options.php:960
434
  #: app/features/mec/meta_boxes/search_form.php:45
435
  #: app/features/mec/meta_boxes/search_form.php:107
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
450
+ #: app/skins/single.php:812 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
453
  msgid "Organizer"
454
  msgstr "Organizator"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
458
+ #: app/skins/single.php:589 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
461
  msgid "Cost"
473
  #: app/features/events.php:3802 app/features/fes.php:223
474
  #: app/features/fes/form.php:689 app/features/labels.php:178
475
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
476
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
477
  #: app/modules/booking/steps/form.php:37
478
  msgid "Name"
479
  msgstr "Imię"
483
  #: app/features/fes.php:223 app/features/fes/form.php:685
484
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
485
  #: app/features/organizers.php:111 app/features/organizers.php:152
486
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
487
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
488
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
489
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
490
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
491
+ #: app/skins/single.php:884 app/skins/single/default.php:234
492
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
493
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
494
  msgid "Email"
501
  #: app/features/events.php:491 app/features/events.php:497
502
  #: app/features/events.php:3323 app/features/events.php:3513
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
505
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
506
  #: app/features/mec/dashboard.php:400
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
539
  #: app/features/events.php:583 app/features/events.php:588
540
  #: app/features/events.php:3324 app/features/events.php:3513
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
543
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
544
  #: app/features/mec/dashboard.php:401
545
  msgid "End Date"
546
  msgstr "Data zakończenia"
624
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
625
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
626
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
627
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
628
+ #: app/features/mec/notifications.php:277
629
+ #: app/features/mec/notifications.php:380
630
+ #: app/features/mec/notifications.php:486
631
+ #: app/features/mec/notifications.php:587
632
+ #: app/features/mec/notifications.php:598
633
+ #: app/features/mec/notifications.php:704
634
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
635
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
636
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
637
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
647
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
648
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
649
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
650
+ #: app/skins/single.php:674 app/skins/single/default.php:141
651
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
652
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
653
  msgid "Read More"
830
 
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
+ #: app/features/ix.php:3510 app/features/ix.php:3551
834
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Koszt wydarzenia"
849
  #: app/features/events.php:1204 app/features/events.php:2541
850
  #: app/features/fes.php:223 app/features/mec/booking.php:491
851
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
852
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
853
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
854
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
855
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
856
  msgid "Date"
887
  #: app/features/events.php:1437 app/features/events.php:2322
888
  #: app/features/events.php:2369 app/features/events.php:3319
889
  #: app/features/events.php:3513 app/features/events.php:3555
890
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
891
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
892
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
893
  msgid "Title"
894
  msgstr "Tytuł"
901
  #: app/features/events.php:2357 app/features/events.php:2399
902
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
903
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
904
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
905
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
906
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
907
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
908
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
909
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
910
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
911
  msgid "Remove"
912
  msgstr "Usuń"
913
 
935
  #: app/features/events.php:1445 app/features/fes/form.php:851
936
  #: app/features/mec.php:410 app/features/mec/modules.php:52
937
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
938
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
952
  msgstr "Linki wydarzenia"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
956
  msgid "Event Link"
957
  msgstr "Link strony www wydarzenia"
958
 
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
983
+ #: app/skins/single.php:673 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
986
  #: app/widgets/single.php:107
1013
 
1014
  #: app/features/events.php:1596 app/features/events.php:1849
1015
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1016
+ #: app/modules/booking/steps/tickets.php:40
1017
  #: app/skins/available_spot/tpl.php:160
1018
  msgid "Unlimited"
1019
  msgstr "Nieograniczony"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Bilety"
1056
 
1073
 
1074
  #: app/features/events.php:1680 app/features/events.php:1955
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1077
  msgid "Start Time"
1078
  msgstr "Czas rozpoczęcia"
1079
 
1080
  #: app/features/events.php:1739 app/features/events.php:1985
1081
  #: app/features/events.php:3513 app/features/events.php:3555
1082
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1083
  msgid "End Time"
1084
  msgstr "Czas zakończenia"
1085
 
1111
  msgid "Available Tickets"
1112
  msgstr "Dostępne bilety"
1113
 
1114
+ #: app/features/events.php:1853 app/features/events.php:2068
1115
  #, fuzzy
1116
  #| msgid "Amount (Per Ticket)"
1117
  msgid "Minimum Ticket e.g. 3"
1118
  msgstr "Wartość (bilet)"
1119
 
1120
+ #: app/features/events.php:1856 app/features/events.php:2071
1121
  #, fuzzy
1122
  #| msgid "Amount (Per Ticket)"
1123
  msgid "MinimumTicket"
1124
  msgstr "Wartość (bilet)"
1125
 
1126
+ #: app/features/events.php:1858 app/features/events.php:2073
1127
  msgid "Set a number for the minimum ticket reservation"
1128
  msgstr ""
1129
 
1130
+ #: app/features/events.php:1866 app/features/events.php:2081
1131
  msgid "e.g. 0"
1132
  msgstr ""
1133
 
1134
+ #: app/features/events.php:1868 app/features/events.php:2083
1135
  #, fuzzy
1136
  #| msgid "Daily"
1137
  msgid "Day"
1138
  msgstr "Codziennie"
1139
 
1140
+ #: app/features/events.php:1869 app/features/events.php:2084
1141
  msgid "Hour"
1142
  msgstr ""
1143
 
1144
+ #: app/features/events.php:1871 app/features/events.php:2086
1145
  #, php-format
1146
  msgid "Stop selling ticket %s before event start."
1147
  msgstr ""
1167
  #: app/features/mec/meta_boxes/search_form.php:610
1168
  #: app/features/mec/meta_boxes/search_form.php:707
1169
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1170
+ #: app/libraries/skins.php:988
1171
  msgid "Label"
1172
  msgstr "Etykieta"
1173
 
1238
  msgstr ""
1239
 
1240
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1241
+ #: app/libraries/main.php:2767
1242
  #, fuzzy
1243
  #| msgid "Name"
1244
  msgid "MEC Name"
1245
  msgstr "Imię"
1246
 
1247
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1248
+ #: app/libraries/main.php:2796
1249
  #, fuzzy
1250
  #| msgid "Email"
1251
  msgid "MEC Email"
1252
  msgstr "Email"
1253
 
1254
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1255
+ #: app/libraries/main.php:2737
1256
  msgid "Text"
1257
  msgstr "Pole tekstowe"
1258
 
1259
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1260
  #: app/features/organizers.php:103 app/features/organizers.php:148
1261
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1262
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1263
  msgid "Tel"
1264
  msgstr "Tel"
1265
 
1266
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1267
+ #: app/libraries/main.php:2855
1268
  msgid "File"
1269
  msgstr ""
1270
 
1271
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1272
+ #: app/libraries/main.php:2942
1273
  msgid "Textarea"
1274
  msgstr "Obszar tekstowy"
1275
 
1276
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1277
+ #: app/libraries/main.php:2995
1278
  msgid "Checkboxes"
1279
  msgstr "Pola wyboru"
1280
 
1281
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1282
+ #: app/libraries/main.php:3039
1283
  msgid "Radio Buttons"
1284
  msgstr "Przyciski radiowe"
1285
 
1359
  #: app/features/mec/meta_boxes/search_form.php:696
1360
  #: app/features/mec/meta_boxes/search_form.php:703
1361
  #: app/features/mec/meta_boxes/search_form.php:710
1362
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1363
  msgid "Dropdown"
1364
  msgstr "Lista rozwijalna"
1365
 
1366
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1367
+ #: app/libraries/main.php:3130
1368
  msgid "Agreement"
1369
  msgstr ""
1370
 
1371
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1372
+ #: app/libraries/main.php:2971
1373
  msgid "Paragraph"
1374
  msgstr "Paragraf"
1375
 
1398
  msgstr "Limit uczestników"
1399
 
1400
  #: app/features/events.php:3321 app/features/events.php:3513
1401
+ #: app/features/events.php:3555 app/features/ix.php:3510
1402
+ #: app/features/ix.php:3551 app/features/locations.php:58
1403
  #: app/features/locations.php:230 app/features/locations.php:287
1404
  #: app/features/locations.php:289 app/features/locations.php:298
1405
  #: app/features/mec/meta_boxes/display_options.php:959
1416
  #: app/features/mec/meta_boxes/search_form.php:679
1417
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1418
  #: app/features/search.php:71 app/libraries/main.php:2236
1419
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1420
+ #: app/skins/single.php:493 app/skins/single.php:924
1421
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1422
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1423
  #: app/skins/single/modern.php:97
1458
  msgstr "Duplikuj"
1459
 
1460
  #: app/features/events.php:3513 app/features/events.php:3555
1461
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1462
  #: app/features/labels.php:177 app/features/locations.php:229
1463
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1464
  msgid "ID"
1465
  msgstr "ID"
1466
 
1467
  #: app/features/events.php:3513 app/features/events.php:3555
1468
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1469
  msgid "Link"
1470
  msgstr "Link"
1471
 
1481
 
1482
  #: app/features/events.php:3808 app/features/fes.php:223
1483
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1484
+ #: app/libraries/main.php:5312
1485
  msgid "Ticket"
1486
  msgstr "Zgłoszenie"
1487
 
1659
 
1660
  #: app/features/fes/form.php:783 app/features/labels.php:61
1661
  #: app/features/labels.php:221 app/features/mec.php:403
1662
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1663
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1664
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1665
  #: app/skins/single/modern.php:223
1666
  msgid "Labels"
1739
  msgid "The events are imported successfully!"
1740
  msgstr ""
1741
 
1742
+ #: app/features/ix.php:943
1743
  msgid "Third Party plugin is not installed and activated!"
1744
  msgstr ""
1745
 
1746
+ #: app/features/ix.php:966
1747
  msgid "Third Party plugin is invalid!"
1748
  msgstr ""
1749
 
1750
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1751
  msgid "Both of API key and Calendar ID are required!"
1752
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
1753
 
1754
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1755
  msgid "Please select some events to import!"
1756
  msgstr "Proszę wybrać dane do zaimportowania!"
1757
 
1758
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1759
  #, fuzzy
1760
  #| msgid "Both of API key and Calendar ID are required!"
1761
  msgid "Both of API key and Group URL are required!"
1762
  msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
1763
 
1764
+ #: app/features/ix.php:3433
1765
  msgid "Check at Meetup"
1766
  msgstr ""
1767
 
1768
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1769
  msgid "Organizer Tel"
1770
  msgstr "Telefon organizatora"
1771
 
1772
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1773
  msgid "Organizer Email"
1774
  msgstr "Email organizatora"
1775
 
1776
+ #: app/features/ix.php:3632
1777
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1778
  msgstr "Wszystkie Client ID, Client Secret oraz Calendar ID są wymagane!"
1779
 
1780
+ #: app/features/ix.php:3655
1781
  #, php-format
1782
  msgid "All seems good! Please click %s for authenticating your app."
1783
  msgstr ""
1784
  "Wszystko wydaje się być w porządku! Kliknij %s w celu uwierzytelnienia "
1785
  "swojej aplikacji."
1786
 
1787
+ #: app/features/ix.php:3709
1788
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1789
  msgstr "Wszystkie Client APP, Client Secret oraz Calendar ID są wymagane!"
1790
 
1791
+ #: app/features/ix.php:3825
1792
  #, php-format
1793
  msgid "%s events added to Google Calendar successfully."
1794
  msgstr "%s wydarzenia dodane do Kalendarza Google pomyślnie."
1795
 
1796
+ #: app/features/ix.php:3826
1797
  #, php-format
1798
  msgid "%s previously added events get updated."
1799
  msgstr "%s wcześniej dodane wydarzenia zaktualizowane."
1800
 
1801
+ #: app/features/ix.php:3827
1802
  #, php-format
1803
  msgid "%s events failed to add for following reasons: %s"
1804
  msgstr "%s wydarzenia nie udało się dodać z następujących powodów:%s"
1805
 
1806
+ #: app/features/ix.php:3859
1807
  #, fuzzy
1808
  #| msgid "Please insert your facebook page's link."
1809
  msgid "Please insert your Facebook page's link."
1810
  msgstr "Wstaw własny odnośnik Facebook."
1811
 
1812
+ #: app/features/ix.php:3868
1813
  #, fuzzy
1814
  #| msgid ""
1815
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
1820
  msgstr ""
1821
  "Nie mogliśmy rozpoznać odnośnika Facebook. Sprawdź link i spróbuj ponownie."
1822
 
1823
+ #: app/features/ix.php:3900
1824
  msgid "Please insert your facebook page's link."
1825
  msgstr "Wstaw własny odnośnik Facebook."
1826
 
1827
+ #: app/features/ix.php:3905
1828
  msgid ""
1829
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1830
  "valid facebook page link."
1996
  #: app/features/ix/export_g_calendar.php:72
1997
  #: app/features/ix/export_g_calendar.php:147
1998
  #: app/features/ix/export_g_calendar.php:164
1999
+ #: app/features/mec/notifications.php:131
2000
+ #: app/features/mec/notifications.php:223
2001
+ #: app/features/mec/notifications.php:320
2002
+ #: app/features/mec/notifications.php:635
2003
  msgid "Add to Google Calendar"
2004
  msgstr "Dodaj do Kalendarza Google"
2005
 
2006
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2007
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2008
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2009
  msgid "Checking ..."
2010
  msgstr "Sprawdzanie ..."
2269
 
2270
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2271
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2272
+ #: app/features/mec/notifications.php:540
2273
  msgid "Important Note"
2274
  msgstr "Ważna informacja"
2275
 
2460
  msgstr "Obraz wyróżniający"
2461
 
2462
  #: app/features/labels.php:118 app/features/labels.php:143
2463
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2464
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2465
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2466
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2479
  msgstr ""
2480
 
2481
  #: app/features/labels.php:180 app/features/locations.php:232
2482
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2483
  #: app/modules/booking/steps/tickets.php:38
2484
  msgid "Count"
2485
  msgstr "Liczba"
2496
 
2497
  #: app/features/locations.php:59 app/features/mec.php:404
2498
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2499
+ #: app/libraries/main.php:5281
2500
  msgid "Locations"
2501
  msgstr "Lokalizacje"
2502
 
2529
 
2530
  #: app/features/locations.php:138 app/features/locations.php:180
2531
  #: app/features/organizers.php:127 app/features/organizers.php:160
2532
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2533
  msgid "Thumbnail"
2534
  msgstr "Miniatura"
2535
 
2536
  #: app/features/locations.php:143 app/features/locations.php:183
2537
  #: app/features/organizers.php:132 app/features/organizers.php:163
2538
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2539
  msgid "Upload/Add image"
2540
  msgstr "Prześlij / Dodaj obraz"
2541
 
2543
  #: app/features/locations.php:340 app/features/locations.php:347
2544
  #: app/features/organizers.php:133 app/features/organizers.php:164
2545
  #: app/features/organizers.php:299 app/features/organizers.php:306
2546
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2547
  msgid "Remove image"
2548
  msgstr "Usuń obraz"
2549
 
2603
  msgid "Don't show map in single event page"
2604
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
2605
 
2606
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2607
  #, fuzzy
2608
  #| msgid "Search Locations"
2609
  msgid "Other Locations"
2628
  msgid "Troubleshooting"
2629
  msgstr ""
2630
 
2631
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2632
  #, php-format
2633
  msgid "%s to %s"
2634
  msgstr "%s do%s"
2664
 
2665
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2666
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2667
+ #: app/libraries/main.php:5283
2668
  msgid "Organizers"
2669
  msgstr "Organizatorzy"
2670
 
2786
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2787
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2788
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2789
+ #: app/features/mec/notifications.php:816
2790
+ #: app/features/mec/notifications.php:828
2791
+ #: app/features/mec/notifications.php:924
2792
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2793
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2794
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2795
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2910
  msgid "Enable Express Attendees Form"
2911
  msgstr ""
2912
 
2913
+ #: app/features/mec/booking.php:186
2914
  msgid "Attendees Form"
2915
  msgstr "Formularz zgłoszenia uczestników"
2916
 
2944
  msgid "Auto verification for paid bookings"
2945
  msgstr "Automatyczna rezerwacja dla płatnych rezerwacji"
2946
 
2947
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2948
  #: app/libraries/main.php:579
2949
  msgid "Booking Confirmation"
2950
  msgstr "Potwierdzenie rezerwacji"
3012
  msgstr ""
3013
 
3014
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3015
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3016
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3017
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3018
  msgid "Saved"
3019
  msgstr "Zapisane"
3020
 
3021
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3022
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3023
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3024
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3025
  msgid "Settings Saved!"
3027
 
3028
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3029
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3030
+ #: app/features/mec/notifications.php:905
3031
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3032
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3033
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
3034
  msgid "Verified"
3035
  msgstr "Zweryfikowane"
3036
 
3037
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3038
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3039
  #: app/features/mec/single.php:291
3040
  msgid "Please Refresh Page"
3041
  msgstr "Proszę odświeżyć stronę"
4173
  #: app/features/mec/meta_boxes/search_form.php:693
4174
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4175
  #: app/features/search.php:79 app/features/speakers.php:61
4176
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4177
+ #: app/libraries/skins.php:936
4178
  msgid "Speaker"
4179
  msgstr ""
4180
 
4190
  #: app/features/mec/meta_boxes/search_form.php:603
4191
  #: app/features/mec/meta_boxes/search_form.php:700
4192
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4193
+ #: app/features/search.php:83 app/libraries/skins.php:962
4194
  #, fuzzy
4195
  #| msgid "Tags"
4196
  msgid "Tag"
4452
  msgid "It sends to attendee after booking for notifying him/her."
4453
  msgstr "Wysyła do uczestnika email po zgłoszeniu rezerwacji."
4454
 
4455
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4456
+ #: app/features/mec/notifications.php:233
4457
+ #: app/features/mec/notifications.php:336
4458
+ #: app/features/mec/notifications.php:442
4459
+ #: app/features/mec/notifications.php:543
4460
+ #: app/features/mec/notifications.php:660
4461
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4462
  msgid "Email Subject"
4463
  msgstr "Temat maila"
4464
 
4465
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4466
+ #: app/features/mec/notifications.php:147
4467
+ #: app/features/mec/notifications.php:154
4468
+ #: app/features/mec/notifications.php:239
4469
+ #: app/features/mec/notifications.php:246
4470
+ #: app/features/mec/notifications.php:342
4471
+ #: app/features/mec/notifications.php:349
4472
+ #: app/features/mec/notifications.php:448
4473
+ #: app/features/mec/notifications.php:455
4474
+ #: app/features/mec/notifications.php:549
4475
+ #: app/features/mec/notifications.php:556
4476
+ #: app/features/mec/notifications.php:666
4477
+ #: app/features/mec/notifications.php:673
4478
+ #: app/features/mec/notifications.php:749
4479
+ #: app/features/mec/notifications.php:756
4480
+ msgid "Receiver Users"
4481
+ msgstr ""
4482
+
4483
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4484
+ #: app/features/mec/notifications.php:247
4485
+ #: app/features/mec/notifications.php:350
4486
+ #: app/features/mec/notifications.php:456
4487
+ #: app/features/mec/notifications.php:557
4488
+ #: app/features/mec/notifications.php:674
4489
+ #: app/features/mec/notifications.php:757
4490
+ msgid "Select your desired users to send a copy of email to them!"
4491
+ msgstr ""
4492
+
4493
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4494
+ #: app/features/mec/notifications.php:164
4495
+ #: app/features/mec/notifications.php:171
4496
+ #: app/features/mec/notifications.php:256
4497
+ #: app/features/mec/notifications.php:263
4498
+ #: app/features/mec/notifications.php:359
4499
+ #: app/features/mec/notifications.php:366
4500
+ #: app/features/mec/notifications.php:465
4501
+ #: app/features/mec/notifications.php:472
4502
+ #: app/features/mec/notifications.php:566
4503
+ #: app/features/mec/notifications.php:573
4504
+ #: app/features/mec/notifications.php:683
4505
+ #: app/features/mec/notifications.php:690
4506
+ #: app/features/mec/notifications.php:766
4507
+ #: app/features/mec/notifications.php:773
4508
+ msgid "Receiver Roles"
4509
+ msgstr ""
4510
+
4511
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4512
+ #: app/features/mec/notifications.php:264
4513
+ #: app/features/mec/notifications.php:367
4514
+ #: app/features/mec/notifications.php:473
4515
+ #: app/features/mec/notifications.php:574
4516
+ #: app/features/mec/notifications.php:691
4517
+ #: app/features/mec/notifications.php:774
4518
+ msgid "Select users a specific role."
4519
+ msgstr ""
4520
+
4521
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4522
+ #: app/features/mec/notifications.php:180
4523
+ #: app/features/mec/notifications.php:184
4524
+ #: app/features/mec/notifications.php:272
4525
+ #: app/features/mec/notifications.php:276
4526
+ #: app/features/mec/notifications.php:375
4527
+ #: app/features/mec/notifications.php:379
4528
+ #: app/features/mec/notifications.php:481
4529
+ #: app/features/mec/notifications.php:485
4530
+ #: app/features/mec/notifications.php:582
4531
+ #: app/features/mec/notifications.php:586
4532
+ #: app/features/mec/notifications.php:597
4533
+ #: app/features/mec/notifications.php:699
4534
+ #: app/features/mec/notifications.php:703
4535
+ #: app/features/mec/notifications.php:782
4536
+ #: app/features/mec/notifications.php:786
4537
  msgid "Custom Recipients"
4538
  msgstr "Niestandardowi odbiorcy"
4539
 
4540
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4541
+ #: app/features/mec/notifications.php:277
4542
+ #: app/features/mec/notifications.php:380
4543
+ #: app/features/mec/notifications.php:486
4544
+ #: app/features/mec/notifications.php:587
4545
+ #: app/features/mec/notifications.php:598
4546
+ #: app/features/mec/notifications.php:704
4547
+ #: app/features/mec/notifications.php:787
4548
  msgid "Insert comma separated emails for multiple recipients."
4549
  msgstr ""
4550
  "Wstaw adresy email oddzielone przecinkami aby wysłać email do wielu "
4551
  "odbiorców jednocześnie."
4552
 
4553
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4554
+ #: app/features/mec/notifications.php:493
4555
  msgid "Send the email to event organizer"
4556
  msgstr "Wyślij e-mail do organizatora"
4557
 
4558
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4559
+ #: app/features/mec/notifications.php:287
4560
+ #: app/features/mec/notifications.php:398
4561
+ #: app/features/mec/notifications.php:496
4562
+ #: app/features/mec/notifications.php:604
4563
+ #: app/features/mec/notifications.php:710
4564
+ #: app/features/mec/notifications.php:793
4565
  msgid "Email Content"
4566
  msgstr "Zawartość emaila"
4567
 
4568
+ #: app/features/mec/notifications.php:101
4569
+ #: app/features/mec/notifications.php:194
4570
+ #: app/features/mec/notifications.php:290
4571
+ #: app/features/mec/notifications.php:401
4572
+ #: app/features/mec/notifications.php:499
4573
+ #: app/features/mec/notifications.php:607
4574
+ #: app/features/mec/notifications.php:713
4575
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4576
  msgid "You can use following placeholders"
4577
  msgstr "Możesz użyć następujących symboli zastępczych"
4578
 
4579
+ #: app/features/mec/notifications.php:103
4580
+ #: app/features/mec/notifications.php:196
4581
+ #: app/features/mec/notifications.php:292
4582
+ #: app/features/mec/notifications.php:403
4583
+ #: app/features/mec/notifications.php:501
4584
+ #: app/features/mec/notifications.php:609
4585
  msgid "First name of attendee"
4586
  msgstr "Imię"
4587
 
4588
+ #: app/features/mec/notifications.php:104
4589
+ #: app/features/mec/notifications.php:197
4590
+ #: app/features/mec/notifications.php:293
4591
+ #: app/features/mec/notifications.php:404
4592
+ #: app/features/mec/notifications.php:502
4593
+ #: app/features/mec/notifications.php:610
4594
  msgid "Last name of attendee"
4595
  msgstr "Nazwisko"
4596
 
4597
+ #: app/features/mec/notifications.php:105
4598
+ #: app/features/mec/notifications.php:198
4599
+ #: app/features/mec/notifications.php:294
4600
+ #: app/features/mec/notifications.php:405
4601
+ #: app/features/mec/notifications.php:503
4602
+ #: app/features/mec/notifications.php:611
4603
  msgid "Email of attendee"
4604
  msgstr "E-mail uczestnika"
4605
 
4606
+ #: app/features/mec/notifications.php:106
4607
+ #: app/features/mec/notifications.php:199
4608
+ #: app/features/mec/notifications.php:295
4609
+ #: app/features/mec/notifications.php:406
4610
+ #: app/features/mec/notifications.php:504
4611
+ #: app/features/mec/notifications.php:612
4612
  msgid "Booked date of event"
4613
  msgstr "Termin zarezerwowanego wydarzenia"
4614
 
4615
+ #: app/features/mec/notifications.php:107
4616
+ #: app/features/mec/notifications.php:200
4617
+ #: app/features/mec/notifications.php:296
4618
+ #: app/features/mec/notifications.php:407
4619
+ #: app/features/mec/notifications.php:505
4620
+ #: app/features/mec/notifications.php:613
4621
  #, fuzzy
4622
  #| msgid "Booked date of event"
4623
  msgid "Booked time of event"
4624
  msgstr "Termin zarezerwowanego wydarzenia"
4625
 
4626
+ #: app/features/mec/notifications.php:108
4627
+ #: app/features/mec/notifications.php:201
4628
+ #: app/features/mec/notifications.php:297
4629
+ #: app/features/mec/notifications.php:408
4630
+ #: app/features/mec/notifications.php:506
4631
+ #: app/features/mec/notifications.php:614
4632
  msgid "Booking Price"
4633
  msgstr "Cena rezerwacji"
4634
 
4635
+ #: app/features/mec/notifications.php:109
4636
+ #: app/features/mec/notifications.php:202
4637
+ #: app/features/mec/notifications.php:298
4638
+ #: app/features/mec/notifications.php:409
4639
+ #: app/features/mec/notifications.php:507
4640
+ #: app/features/mec/notifications.php:615
4641
  msgid "Date and time of placing booking"
4642
  msgstr ""
4643
 
4644
+ #: app/features/mec/notifications.php:110
4645
+ #: app/features/mec/notifications.php:203
4646
+ #: app/features/mec/notifications.php:299
4647
+ #: app/features/mec/notifications.php:410
4648
+ #: app/features/mec/notifications.php:508
4649
+ #: app/features/mec/notifications.php:616
4650
+ #: app/features/mec/notifications.php:721
4651
+ #: app/features/mec/notifications.php:804
4652
  msgid "Your website title"
4653
  msgstr "Twoja strona WWW"
4654
 
4655
+ #: app/features/mec/notifications.php:111
4656
+ #: app/features/mec/notifications.php:204
4657
+ #: app/features/mec/notifications.php:300
4658
+ #: app/features/mec/notifications.php:411
4659
+ #: app/features/mec/notifications.php:509
4660
+ #: app/features/mec/notifications.php:617
4661
+ #: app/features/mec/notifications.php:722
4662
+ #: app/features/mec/notifications.php:805
4663
  msgid "Your website URL"
4664
  msgstr "Adres URL strony WWW"
4665
 
4666
+ #: app/features/mec/notifications.php:112
4667
+ #: app/features/mec/notifications.php:205
4668
+ #: app/features/mec/notifications.php:301
4669
+ #: app/features/mec/notifications.php:412
4670
+ #: app/features/mec/notifications.php:510
4671
+ #: app/features/mec/notifications.php:618
4672
+ #: app/features/mec/notifications.php:723
4673
+ #: app/features/mec/notifications.php:806
4674
  msgid "Your website description"
4675
  msgstr "Opis twojej strony WWW"
4676
 
4677
+ #: app/features/mec/notifications.php:113
4678
+ #: app/features/mec/notifications.php:206
4679
+ #: app/features/mec/notifications.php:302
4680
+ #: app/features/mec/notifications.php:413
4681
+ #: app/features/mec/notifications.php:511
4682
+ #: app/features/mec/notifications.php:619
4683
  msgid "Event title"
4684
  msgstr "Tytuł wydarzenia"
4685
 
4686
+ #: app/features/mec/notifications.php:114
4687
+ #: app/features/mec/notifications.php:207
4688
+ #: app/features/mec/notifications.php:303
4689
+ #: app/features/mec/notifications.php:414
4690
+ #: app/features/mec/notifications.php:512
4691
+ #: app/features/mec/notifications.php:620
4692
  #, fuzzy
4693
  #| msgid "Event Link"
4694
  msgid "Event link"
4695
  msgstr "Link strony www wydarzenia"
4696
 
4697
+ #: app/features/mec/notifications.php:115
4698
+ #: app/features/mec/notifications.php:208
4699
+ #: app/features/mec/notifications.php:304
4700
+ #: app/features/mec/notifications.php:717
4701
+ #: app/features/mec/notifications.php:800
4702
  #, fuzzy
4703
  #| msgid "Start Date"
4704
  msgid "Event Start Date"
4705
  msgstr "Data rozpoczęcia"
4706
 
4707
+ #: app/features/mec/notifications.php:116
4708
+ #: app/features/mec/notifications.php:209
4709
+ #: app/features/mec/notifications.php:305
4710
+ #: app/features/mec/notifications.php:718
4711
+ #: app/features/mec/notifications.php:801
4712
  #, fuzzy
4713
  #| msgid "End Date"
4714
  msgid "Event End Date"
4715
  msgstr "Data zakończenia"
4716
 
4717
+ #: app/features/mec/notifications.php:117
4718
+ #: app/features/mec/notifications.php:210
4719
+ #: app/features/mec/notifications.php:306
4720
+ #: app/features/mec/notifications.php:415
4721
+ #: app/features/mec/notifications.php:513
4722
+ #: app/features/mec/notifications.php:621
4723
  #, fuzzy
4724
  #| msgid "Organizer name of booked event"
4725
  msgid "Speaker name of booked event"
4726
  msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
4727
 
4728
+ #: app/features/mec/notifications.php:118
4729
+ #: app/features/mec/notifications.php:211
4730
+ #: app/features/mec/notifications.php:307
4731
+ #: app/features/mec/notifications.php:416
4732
+ #: app/features/mec/notifications.php:514
4733
+ #: app/features/mec/notifications.php:622
4734
  msgid "Organizer name of booked event"
4735
  msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
4736
 
4737
+ #: app/features/mec/notifications.php:119
4738
+ #: app/features/mec/notifications.php:212
4739
+ #: app/features/mec/notifications.php:308
4740
+ #: app/features/mec/notifications.php:417
4741
+ #: app/features/mec/notifications.php:515
4742
+ #: app/features/mec/notifications.php:623
4743
  msgid "Organizer tel of booked event"
4744
  msgstr "Telefon organizatora zarezerwowanego wydarzenia"
4745
 
4746
+ #: app/features/mec/notifications.php:120
4747
+ #: app/features/mec/notifications.php:213
4748
+ #: app/features/mec/notifications.php:309
4749
+ #: app/features/mec/notifications.php:418
4750
+ #: app/features/mec/notifications.php:516
4751
+ #: app/features/mec/notifications.php:624
4752
  msgid "Organizer email of booked event"
4753
  msgstr "Email organizatora zarezerwowanego wydarzenia"
4754
 
4755
+ #: app/features/mec/notifications.php:121
4756
+ #: app/features/mec/notifications.php:214
4757
+ #: app/features/mec/notifications.php:310
4758
+ #: app/features/mec/notifications.php:419
4759
+ #: app/features/mec/notifications.php:517
4760
+ #: app/features/mec/notifications.php:625
4761
  msgid "Location name of booked event"
4762
  msgstr "Nazwa lokalizacji zarezerwowanego wydarzenia"
4763
 
4764
+ #: app/features/mec/notifications.php:122
4765
+ #: app/features/mec/notifications.php:215
4766
+ #: app/features/mec/notifications.php:311
4767
+ #: app/features/mec/notifications.php:420
4768
+ #: app/features/mec/notifications.php:518
4769
+ #: app/features/mec/notifications.php:626
4770
  msgid "Location address of booked event"
4771
  msgstr "Adres lokalizacji zarezerwowanego wydarzenia"
4772
 
4773
+ #: app/features/mec/notifications.php:123
4774
+ #: app/features/mec/notifications.php:216
4775
+ #: app/features/mec/notifications.php:312
4776
+ #: app/features/mec/notifications.php:421
4777
+ #: app/features/mec/notifications.php:519
4778
+ #: app/features/mec/notifications.php:627
4779
  #, fuzzy
4780
  #| msgid "Organizer name of booked event"
4781
  msgid "Featured image of booked event"
4782
  msgstr "Nazwa organizatora zarezerwowanego wydarzenia"
4783
 
4784
+ #: app/features/mec/notifications.php:124
4785
+ #: app/features/mec/notifications.php:423
4786
+ #: app/features/mec/notifications.php:521
4787
  msgid "Full Attendee info such as booking form data, name, email etc."
4788
  msgstr ""
4789
  "Pełna informacja na temat uczestnika pochodząca z wypełnionego formularza."
4790
 
4791
+ #: app/features/mec/notifications.php:125
4792
+ #: app/features/mec/notifications.php:314
4793
+ #: app/features/mec/notifications.php:629
4794
  msgid "Invoice Link"
4795
  msgstr ""
4796
 
4797
+ #: app/features/mec/notifications.php:126
4798
+ #: app/features/mec/notifications.php:218
4799
+ #: app/features/mec/notifications.php:315
4800
+ #: app/features/mec/notifications.php:424
4801
+ #: app/features/mec/notifications.php:522
4802
+ #: app/features/mec/notifications.php:630
4803
  msgid "Total Attendees"
4804
  msgstr ""
4805
 
4806
+ #: app/features/mec/notifications.php:127
4807
+ #: app/features/mec/notifications.php:219
4808
+ #: app/features/mec/notifications.php:316
4809
+ #: app/features/mec/notifications.php:425
4810
+ #: app/features/mec/notifications.php:523
4811
+ #: app/features/mec/notifications.php:631
4812
+ #, fuzzy
4813
+ #| msgid "Amount (Per Ticket)"
4814
+ msgid "Amount of Booked Tickets"
4815
+ msgstr "Wartość (bilet)"
4816
+
4817
+ #: app/features/mec/notifications.php:128
4818
+ #: app/features/mec/notifications.php:220
4819
+ #: app/features/mec/notifications.php:317
4820
+ #: app/features/mec/notifications.php:632
4821
  #, fuzzy
4822
  #| msgid "Ticket Name"
4823
  msgid "Ticket name"
4824
  msgstr "Nazwa biletu"
4825
 
4826
+ #: app/features/mec/notifications.php:129
4827
+ #: app/features/mec/notifications.php:221
4828
+ #: app/features/mec/notifications.php:318
4829
+ #: app/features/mec/notifications.php:633
4830
  #, fuzzy
4831
  #| msgid "Ticket Name"
4832
  msgid "Ticket time"
4833
  msgstr "Nazwa biletu"
4834
 
4835
+ #: app/features/mec/notifications.php:130
4836
+ #: app/features/mec/notifications.php:222
4837
+ #: app/features/mec/notifications.php:319
4838
+ #: app/features/mec/notifications.php:634
4839
  msgid "Download ICS file"
4840
  msgstr ""
4841
 
4842
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4843
  msgid "Booking Verification"
4844
  msgstr "Potwierdzenie rezerwacji"
4845
 
4846
+ #: app/features/mec/notifications.php:139
4847
  msgid "It sends to attendee email for verifying their booking/email."
4848
  msgstr "Wysyła email do uczestnika w celu potwierdzenia rezerwacji."
4849
 
4850
+ #: app/features/mec/notifications.php:217
4851
  msgid "Email/Booking verification link."
4852
  msgstr "Link potwierdzający rezerwację."
4853
 
4854
+ #: app/features/mec/notifications.php:231
4855
  msgid "It sends to attendee after confirming the booking by admin."
4856
  msgstr ""
4857
  "Wysyła do uczestnika email po zaakceptowaniu rezerwacji przez administratora."
4858
 
4859
+ #: app/features/mec/notifications.php:284
4860
  msgid "Send One Single Email Only To First Attendee"
4861
  msgstr ""
4862
 
4863
+ #: app/features/mec/notifications.php:313
4864
+ #: app/features/mec/notifications.php:628
4865
  msgid "Booking cancellation link."
4866
  msgstr "Link odrzucenia rezerwacji."
4867
 
4868
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4869
  #, fuzzy
4870
  #| msgid "Booking cancellation link."
4871
  msgid "Booking Cancellation"
4872
  msgstr "Link odrzucenia rezerwacji."
4873
 
4874
+ #: app/features/mec/notifications.php:330
4875
  #, fuzzy
4876
  #| msgid "Enable new event notification"
4877
  msgid "Enable cancellation notification"
4878
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4879
 
4880
+ #: app/features/mec/notifications.php:334
4881
  #, fuzzy
4882
  #| msgid "It sends to attendee after booking for notifying him/her."
4883
  msgid ""
4885
  "them."
4886
  msgstr "Wysyła do uczestnika email po zgłoszeniu rezerwacji."
4887
 
4888
+ #: app/features/mec/notifications.php:387
4889
+ #: app/features/mec/notifications.php:654
4890
  #, fuzzy
4891
  #| msgid "Send the email to event organizer"
4892
  msgid "Send the email to admin"
4893
  msgstr "Wyślij e-mail do organizatora"
4894
 
4895
+ #: app/features/mec/notifications.php:395
4896
  #, fuzzy
4897
  #| msgid "Send the email to event organizer"
4898
  msgid "Send the email to booking user"
4899
  msgstr "Wyślij e-mail do organizatora"
4900
 
4901
+ #: app/features/mec/notifications.php:422
4902
+ #: app/features/mec/notifications.php:520
4903
  msgid "Admin booking management link."
4904
  msgstr "Link do administracji rezerwacją."
4905
 
4906
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4907
  msgid "Admin"
4908
  msgstr ""
4909
 
4910
+ #: app/features/mec/notifications.php:436
4911
  #, fuzzy
4912
  #| msgid "Enable new event notification"
4913
  msgid "Enable admin notification"
4914
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4915
 
4916
+ #: app/features/mec/notifications.php:440
4917
  msgid "It sends to admin to notify him/her that a new booking received."
4918
  msgstr "Wysyła do administratora email z informacją o nowej rezerwacji."
4919
 
4920
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4921
+ #: app/libraries/notifications.php:603
4922
  msgid "Booking Reminder"
4923
  msgstr ""
4924
 
4925
+ #: app/features/mec/notifications.php:534
4926
  msgid "Enable booking reminder notification"
4927
  msgstr ""
4928
 
4929
+ #: app/features/mec/notifications.php:540
4930
  #, php-format
4931
  msgid ""
4932
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4934
  "send the reminders multiple times."
4935
  msgstr ""
4936
 
4937
+ #: app/features/mec/notifications.php:540
4938
  msgid "only once per day"
4939
  msgstr ""
4940
 
4941
+ #: app/features/mec/notifications.php:593
4942
  msgid "Days"
4943
  msgstr ""
4944
 
4945
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4946
  #: app/libraries/main.php:583
4947
  msgid "New Event"
4948
  msgstr "Nowe wydarzenie"
4949
 
4950
+ #: app/features/mec/notifications.php:648
4951
  msgid "Enable new event notification"
4952
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4953
 
4954
+ #: app/features/mec/notifications.php:658
4955
  msgid ""
4956
  "It sends after adding a new event from frontend event submission or from "
4957
  "website backend."
4958
  msgstr "Wysyła powiadomienie o nowym wydarzeniu gdy zostanie dodane."
4959
 
4960
+ #: app/features/mec/notifications.php:715
4961
+ #: app/features/mec/notifications.php:798
4962
  msgid "Title of event"
4963
  msgstr "Tytuł wydarzenia"
4964
 
4965
+ #: app/features/mec/notifications.php:716
4966
+ #: app/features/mec/notifications.php:799
4967
  #, fuzzy
4968
  #| msgid "Title of event"
4969
  msgid "Link of event"
4970
  msgstr "Tytuł wydarzenia"
4971
 
4972
+ #: app/features/mec/notifications.php:719
4973
+ #: app/features/mec/notifications.php:802
4974
  msgid "Status of event"
4975
  msgstr "Status wydarzenia"
4976
 
4977
+ #: app/features/mec/notifications.php:720
4978
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4979
  #: app/features/mec/settings.php:738
4980
  msgid "Event Note"
4981
  msgstr "Uwaga"
4982
 
4983
+ #: app/features/mec/notifications.php:724
4984
+ #: app/features/mec/notifications.php:807
4985
  msgid "Admin events management link."
4986
  msgstr "Link do zarzadzania wydarzeniami."
4987
 
4988
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4989
  #, fuzzy
4990
  #| msgid "The event published."
4991
  msgid "User Event Publishing"
4992
  msgstr "Wydarzenie opublikowane."
4993
 
4994
+ #: app/features/mec/notifications.php:737
4995
  #, fuzzy
4996
  #| msgid "Enable new event notification"
4997
  msgid "Enable user event publishing notification"
4998
  msgstr "Włącz powiadomienie o nowym wydarzeniu"
4999
 
5000
+ #: app/features/mec/notifications.php:741
5001
  #, fuzzy
5002
  #| msgid ""
5003
  #| "It sends after adding a new event from frontend event submission or from "
5178
  msgstr ""
5179
 
5180
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5181
+ #: app/libraries/main.php:5290
5182
  msgid "Weekdays"
5183
  msgstr "Dni powszednie"
5184
 
6451
  msgid "eg. https://webnus.net"
6452
  msgstr "http://webnus.biz"
6453
 
6454
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6455
+ #: app/skins/single.php:862
6456
  msgid "Other Organizers"
6457
  msgstr ""
6458
 
6459
+ #: app/features/organizers.php:314
6460
  msgid ""
6461
  "You can select extra organizers in addition to main organizer if you like."
6462
  msgstr ""
6477
  msgid "#"
6478
  msgstr ""
6479
 
6480
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6481
  msgid "Status"
6482
  msgstr ""
6483
 
6512
  msgid "No bookings found!"
6513
  msgstr "Nie znaleziono rezerwacji!"
6514
 
6515
+ #: app/features/search.php:87 app/libraries/main.php:5280
6516
  msgid "label"
6517
  msgstr "etykieta"
6518
 
6539
  msgstr ""
6540
 
6541
  #: app/features/search_bar/search_result.php:11
6542
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6543
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6544
+ #: app/skins/single.php:160 app/skins/single.php:753
6545
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6546
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6547
  msgid "All of the day"
6548
  msgstr "Cały dzień"
6549
 
6550
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6551
+ #: app/features/speakers.php:270
6552
  #, fuzzy
6553
  #| msgid "Title"
6554
  msgid "Job Title"
6555
  msgstr "Tytuł"
6556
 
6557
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6558
  msgid "Insert speaker job title."
6559
  msgstr ""
6560
 
6561
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6562
  #, fuzzy
6563
  #| msgid "Insert organizer phone number."
6564
  msgid "Insert speaker phone number."
6565
  msgstr "Podaj numer telefonu organizatora."
6566
 
6567
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6568
  #, fuzzy
6569
  #| msgid "Insert organizer email address."
6570
  msgid "Insert speaker email address."
6571
  msgstr "Podaj adres email organizatora."
6572
 
6573
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6574
  #, fuzzy
6575
  #| msgid "Facebook Page Link"
6576
  msgid "Facebook Page"
6577
  msgstr "Własny odnośnik Facebook"
6578
 
6579
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6580
  #, fuzzy
6581
  #| msgid "Import from Facebook Calendar"
6582
  msgid "Insert URL of Facebook Page"
6583
  msgstr "Importuj z kalendarza Facebook"
6584
 
6585
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6586
  msgid "Instagram"
6587
  msgstr ""
6588
 
6589
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6590
  #, fuzzy
6591
  #| msgid "Insert -1 for unlimited usage"
6592
  msgid "Insert URL of Instagram"
6593
  msgstr "Wstaw -1 dla braku limitu"
6594
 
6595
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6596
+ #, fuzzy
6597
+ #| msgid "Linkedin"
6598
+ msgid "LinkedIn"
6599
+ msgstr "Linkedin"
6600
+
6601
+ #: app/features/speakers.php:154
6602
+ #, fuzzy
6603
+ #| msgid "Insert -1 for unlimited usage"
6604
+ msgid "Insert URL of LinkedIn"
6605
+ msgstr "Wstaw -1 dla braku limitu"
6606
+
6607
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6608
  #, fuzzy
6609
  #| msgid "Twitter"
6610
  msgid "Twitter Page"
6611
  msgstr "Twitter"
6612
 
6613
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6614
  #, fuzzy
6615
  #| msgid "Insert -1 for unlimited usage"
6616
  msgid "Insert URL of Twitter Page"
6617
  msgstr "Wstaw -1 dla braku limitu"
6618
 
6619
+ #: app/features/speakers.php:209
6620
+ #, fuzzy
6621
+ #| msgid "Insert -1 for unlimited usage"
6622
+ msgid "Insert URL of linkedin"
6623
+ msgstr "Wstaw -1 dla braku limitu"
6624
+
6625
+ #: app/features/speakers.php:330
6626
  msgid "Sorry, You must insert speaker name!"
6627
  msgstr ""
6628
 
6629
+ #: app/features/speakers.php:379
6630
  msgid ""
6631
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6632
  "section and speaker widget section!"
6785
  msgid "Tile View"
6786
  msgstr "Widok suwaka"
6787
 
6788
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6789
  msgid "SU"
6790
  msgstr "NIE"
6791
 
6792
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6793
  msgid "MO"
6794
  msgstr "PN"
6795
 
6796
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6797
  msgid "TU"
6798
  msgstr "WT"
6799
 
6800
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6801
  msgid "WE"
6802
  msgstr "ŚR"
6803
 
6804
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6805
  msgid "TH"
6806
  msgstr "CZW"
6807
 
6808
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6809
  msgid "FR"
6810
  msgstr "PT"
6811
 
6812
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6813
  msgid "SA"
6814
  msgstr "SOB"
6815
 
7076
  msgid "iCal export stopped!"
7077
  msgstr "iCal eksport zatrzymany!"
7078
 
7079
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
7080
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
7081
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
7082
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
7083
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
7084
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
7085
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
7086
  msgid "Sort"
7087
  msgstr "Sortowanie"
7088
 
7089
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
7090
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
7091
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
7092
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
7093
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
7094
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
7095
  msgid "Required Field"
7096
  msgstr "Wymagane pole"
7097
 
7098
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
7099
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
7100
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
7101
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
7102
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
7103
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
7104
  msgid "Insert a label for this field"
7105
  msgstr "Wpisz etykietę dla tego pola"
7106
 
7107
+ #: app/libraries/main.php:2976
7108
  msgid "HTML and shortcode are allowed."
7109
  msgstr "HTML i shortcode są dozwolone."
7110
 
7111
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
7112
+ #: app/libraries/main.php:3107
7113
  msgid "Option"
7114
  msgstr "Opcja"
7115
 
7116
+ #: app/libraries/main.php:3141
7117
  #, php-format
7118
  msgid "Instead of %s, the page title with a link will be show."
7119
  msgstr ""
7120
 
7121
+ #: app/libraries/main.php:3143
7122
  msgid "Agreement Page"
7123
  msgstr ""
7124
 
7125
+ #: app/libraries/main.php:3154
7126
  msgid "Checked by default"
7127
  msgstr ""
7128
 
7129
+ #: app/libraries/main.php:3155
7130
  msgid "Unchecked by default"
7131
  msgstr ""
7132
 
7133
+ #: app/libraries/main.php:3178
7134
  msgid "Insert a label for this option"
7135
  msgstr "Podaj etykietę dla tej opcji"
7136
 
7137
+ #: app/libraries/main.php:3193
7138
  msgid "Free"
7139
  msgstr "Darmowy"
7140
 
7141
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7142
  #, fuzzy
7143
  #| msgid "M.E. Calendar"
7144
  msgid "M.E. Calender"
7145
  msgstr "Kalendarz"
7146
 
7147
+ #: app/libraries/main.php:3954
7148
  #, php-format
7149
  msgid "Copy of %s"
7150
  msgstr "Kopia %s"
7151
 
7152
+ #: app/libraries/main.php:4669
7153
  msgid "Booked an event."
7154
  msgstr "Zarezerwowano wydarzenie."
7155
 
7156
+ #: app/libraries/main.php:4710
7157
  #, php-format
7158
  msgid "%s booked %s event."
7159
  msgstr "%s zarezerwował %s wydarzenie."
7160
 
7161
+ #: app/libraries/main.php:5275
7162
  msgid "Taxonomies"
7163
  msgstr "Taksonomie"
7164
 
7165
+ #: app/libraries/main.php:5277
7166
  msgid "Category Plural Label"
7167
  msgstr "Etykieta dla kategorii - liczba mnoga"
7168
 
7169
+ #: app/libraries/main.php:5278
7170
  msgid "Category Singular Label"
7171
  msgstr "Etykieta dla kategorii - liczba pojedyncza"
7172
 
7173
+ #: app/libraries/main.php:5279
7174
  msgid "Label Plural Label"
7175
  msgstr "Etykieta - liczba mnoga"
7176
 
7177
+ #: app/libraries/main.php:5280
7178
  msgid "Label Singular Label"
7179
  msgstr "Etykieta - liczba pojedyncza"
7180
 
7181
+ #: app/libraries/main.php:5281
7182
  msgid "Location Plural Label"
7183
  msgstr "Etykieta dla lokalizacji - wersja mnoga"
7184
 
7185
+ #: app/libraries/main.php:5282
7186
  msgid "Location Singular Label"
7187
  msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
7188
 
7189
+ #: app/libraries/main.php:5283
7190
  msgid "Organizer Plural Label"
7191
  msgstr "Etykieta dla organizatora - wersja mnoga"
7192
 
7193
+ #: app/libraries/main.php:5284
7194
  msgid "Organizer Singular Label"
7195
  msgstr "Etykieta dla organizatora - wersja pojedyncza"
7196
 
7197
+ #: app/libraries/main.php:5285
7198
  #, fuzzy
7199
  #| msgid "Label Plural Label"
7200
  msgid "Speaker Plural Label"
7201
  msgstr "Etykieta - liczba mnoga"
7202
 
7203
+ #: app/libraries/main.php:5286
7204
  #, fuzzy
7205
  #| msgid "Label Singular Label"
7206
  msgid "Speaker Singular Label"
7207
  msgstr "Etykieta - liczba pojedyncza"
7208
 
7209
+ #: app/libraries/main.php:5292
7210
  msgid "Sunday abbreviation"
7211
  msgstr "Niedziela"
7212
 
7213
+ #: app/libraries/main.php:5293
7214
  msgid "Monday abbreviation"
7215
  msgstr "Poniedziałek"
7216
 
7217
+ #: app/libraries/main.php:5294
7218
  msgid "Tuesday abbreviation"
7219
  msgstr "Wtorek"
7220
 
7221
+ #: app/libraries/main.php:5295
7222
  msgid "Wednesday abbreviation"
7223
  msgstr "Środa"
7224
 
7225
+ #: app/libraries/main.php:5296
7226
  msgid "Thursday abbreviation"
7227
  msgstr "Czwartek"
7228
 
7229
+ #: app/libraries/main.php:5297
7230
  msgid "Friday abbreviation"
7231
  msgstr "Piątek"
7232
 
7233
+ #: app/libraries/main.php:5298
7234
  msgid "Saturday abbreviation"
7235
  msgstr "Sobota"
7236
 
7237
+ #: app/libraries/main.php:5302
7238
  msgid "Others"
7239
  msgstr "Inne"
7240
 
7241
+ #: app/libraries/main.php:5304
7242
  msgid "Booking Success Message"
7243
  msgstr "Wiadomość zakończenia rezerwacji"
7244
 
7245
+ #: app/libraries/main.php:5304
7246
  msgid ""
7247
  "Thanks for your booking. Your tickets booked, booking verification might be "
7248
  "needed, please check your email."
7250
  "Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
7251
  "rezerwacji może być konieczna, sprawdź swoją pocztę email."
7252
 
7253
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7254
  msgid "Register Button"
7255
  msgstr "Przycisk rejestracji"
7256
 
7257
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7258
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7259
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7260
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7261
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7262
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7263
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7264
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7265
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7266
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7271
  msgid "REGISTER"
7272
  msgstr "REJESTRACJA"
7273
 
7274
+ #: app/libraries/main.php:5306
7275
  msgid "View Detail Button"
7276
  msgstr "Pokaż szczegóły"
7277
 
7278
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7279
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7280
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7281
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7286
  msgid "View Detail"
7287
  msgstr "Pokaż szczegóły"
7288
 
7289
+ #: app/libraries/main.php:5307
7290
  msgid "Event Detail Button"
7291
  msgstr "Szczegóły wydarzenia"
7292
 
7293
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7294
  msgid "Event Detail"
7295
  msgstr "Szczegóły wydarzenia"
7296
 
7297
+ #: app/libraries/main.php:5309
7298
  msgid "More Info Link"
7299
  msgstr "Więcej informacji"
7300
 
7301
+ #: app/libraries/main.php:5312
7302
  msgid "Ticket (Singular)"
7303
  msgstr ""
7304
 
7305
+ #: app/libraries/main.php:5313
7306
  msgid "Tickets (Plural)"
7307
  msgstr ""
7308
 
7309
+ #: app/libraries/main.php:5399
7310
  msgid "EventON"
7311
  msgstr ""
7312
 
7313
+ #: app/libraries/main.php:5400
7314
  msgid "The Events Calendar"
7315
  msgstr ""
7316
 
7317
+ #: app/libraries/main.php:5401
7318
  msgid "Events Schedule WP Plugin"
7319
  msgstr ""
7320
 
7321
+ #: app/libraries/main.php:5402
7322
  msgid "Calendarize It"
7323
  msgstr ""
7324
 
7325
+ #: app/libraries/main.php:5403
7326
  #, fuzzy
7327
  #| msgid "No Search Options"
7328
  msgid "Event Espresso"
7329
  msgstr "Brak opcji wyszukiwania"
7330
 
7331
+ #: app/libraries/main.php:5404
7332
  #, fuzzy
7333
  #| msgid "Event Repeating"
7334
  msgid "Events Manager (Recurring)"
7335
  msgstr "Wydarzenie powtarzalne"
7336
 
7337
+ #: app/libraries/main.php:5405
7338
  #, fuzzy
7339
  #| msgid "Modern Events Calendar"
7340
  msgid "Events Manager (Single)"
7341
  msgstr "Nowoczesny Kalendarz Wydarzeń"
7342
 
7343
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7344
  msgid "Confirmed"
7345
  msgstr "Potwierdzone"
7346
 
7347
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7348
  msgid "Rejected"
7349
  msgstr "Odrzucone"
7350
 
7351
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7352
  msgid "Pending"
7353
  msgstr "Oczekuje"
7354
 
7355
+ #: app/libraries/main.php:5529
7356
  msgid "Waiting"
7357
  msgstr "Oczekuje"
7358
 
7359
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7360
  msgid "Skin controller does not exist."
7361
  msgstr "Kontroler skórki nie iestnieje."
7362
 
7363
+ #: app/libraries/main.php:5848
7364
  #, fuzzy
7365
  #| msgid "Sold out!"
7366
  msgid "Sold Out"
7367
  msgstr "Wyprzedane!"
7368
 
7369
+ #: app/libraries/main.php:5856
7370
  #, fuzzy
7371
  #| msgid "Ticket"
7372
  msgid "Last Few Tickets"
7376
  msgid "Please verify your email."
7377
  msgstr "Potwierdź swój email."
7378
 
7379
+ #: app/libraries/notifications.php:153
7380
  msgid "Your booking is received."
7381
  msgstr "Otrzymaliśmy twoją rezerwację."
7382
 
7383
+ #: app/libraries/notifications.php:271
7384
  msgid "Your booking is confirmed."
7385
  msgstr "Twoja rezerwacja jest potwierdzona."
7386
 
7387
+ #: app/libraries/notifications.php:435
7388
  #, fuzzy
7389
  #| msgid "Your booking cannot be canceled."
7390
  msgid "booking canceled."
7391
  msgstr "Twoja rezerwacja nie może zostać anulowana."
7392
 
7393
+ #: app/libraries/notifications.php:510
7394
  msgid "A new booking is received."
7395
  msgstr "Otrzymałeś nową rezerwację."
7396
 
7397
+ #: app/libraries/notifications.php:734
7398
  msgid "A new event is added."
7399
  msgstr "Nowe wydarzenie zostało dodane."
7400
 
7401
+ #: app/libraries/notifications.php:803
7402
  #, fuzzy
7403
  #| msgid "The event published."
7404
  msgid "Your event is published."
7405
  msgstr "Wydarzenie opublikowane."
7406
 
7407
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7408
+ #: app/libraries/notifications.php:1052
7409
  msgid "to"
7410
  msgstr ""
7411
 
7412
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7413
  msgid "+ Add to Google Calendar"
7414
  msgstr "+ Dodaj do Google Calendar"
7415
 
7416
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7417
  msgid "+ iCal export"
7418
  msgstr "+ eksport iCal"
7419
 
7420
+ #: app/libraries/notifications.php:1131
7421
  msgid "Yes"
7422
  msgstr ""
7423
 
7424
+ #: app/libraries/notifications.php:1131
7425
  msgid "No"
7426
  msgstr ""
7427
 
7428
+ #: app/libraries/skins.php:1008
7429
+ #, fuzzy
7430
+ #| msgid "Select All"
7431
+ msgid "Select"
7432
+ msgstr "Zaznacz wszystko"
7433
 
7434
  #: app/modules/attendees-list/details.php:36
7435
  msgid "Event Attendees"
7466
  msgid "Free Booking"
7467
  msgstr ""
7468
 
7469
+ #: app/modules/booking/steps/form.php:52
7470
+ #, fuzzy
7471
+ #| msgid "Attendees Form"
7472
+ msgid "Attendee's Form"
7473
+ msgstr "Formularz zgłoszenia uczestników"
7474
+
7475
  #: app/modules/booking/steps/form.php:165
7476
  msgid "Fill other attendees information like the first form."
7477
  msgstr ""
7478
 
7479
  #: app/modules/booking/steps/form.php:179
7480
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7481
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7482
  msgid "Next"
7483
  msgstr "Następny"
7490
  msgid "Book Event"
7491
  msgstr "Rezerwuj wydarzenie"
7492
 
7493
+ #: app/modules/booking/steps/tickets.php:40
7494
  #, php-format
7495
  msgid "Available %s: <span>%s</span>"
7496
  msgstr ""
7497
 
7498
+ #: app/modules/booking/steps/tickets.php:44
7499
  #, php-format
7500
+ msgid "The %s ticket sales has stopped!"
7501
  msgstr ""
7502
 
7503
+ #: app/modules/booking/steps/tickets.php:45
7504
  #, php-format
7505
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7506
  msgstr "Bilety %s zostały wyprzedane. Możesz spróbować wybrać inny bilet."
7521
  msgid "Get Directions"
7522
  msgstr ""
7523
 
7524
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7525
  msgid "Share this event"
7526
  msgstr "Poleć to wydarzenie"
7527
 
7548
  msgid "Go to occurrence page"
7549
  msgstr "Przejdź do strony wystąpienia"
7550
 
7551
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7552
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7553
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7554
  msgid "Time"
7676
  msgid "Home"
7677
  msgstr ""
7678
 
7679
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7680
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7681
  #: app/skins/single/modern.php:265
7682
  msgid "Sold out!"
7683
  msgstr "Wyprzedane!"
7684
 
7685
+ #: app/skins/single.php:822 app/skins/single.php:877
7686
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7687
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7688
  #: app/skins/single/modern.php:44
7689
  msgid "Phone"
7690
  msgstr "Telefon"
7691
 
7692
+ #: app/skins/single.php:836 app/skins/single.php:891
7693
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7694
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7695
  #: app/skins/single/modern.php:58
7696
  msgid "Website"
7697
  msgstr "Strona WWW"
7698
 
7699
+ #: app/skins/single.php:961
7700
  #, fuzzy
7701
  #| msgid "No Search Options"
7702
  msgid "Speakers:"
languages/modern-events-calendar-lite-pt_BR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-pt_BR.po CHANGED
@@ -2,8 +2,8 @@ msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
  "Report-Msgid-Bugs-To: \n"
5
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
6
- "PO-Revision-Date: 2020-01-14 10:04+0330\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
@@ -277,7 +277,7 @@ msgstr "Adicionar Evento"
277
  msgid "Add New Event"
278
  msgstr "Adicionar Novo Evento"
279
 
280
- #: app/features/events.php:161 app/features/ix.php:3752
281
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
282
  msgid "No events found!"
283
  msgstr "Nenhum evento encontrado!"
@@ -312,8 +312,8 @@ msgstr "Nenhum evento encontrado na Lixeira!"
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
- #: app/features/search.php:67 app/libraries/main.php:5260
316
- #: app/libraries/skins.php:850 app/skins/single.php:560
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
319
  #: app/skins/single/modern.php:113
@@ -322,7 +322,7 @@ msgstr "Categoria"
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
326
  msgid "Categories"
327
  msgstr "Categorias"
328
 
@@ -411,7 +411,7 @@ msgid "Event Repeating"
411
  msgstr "Repetição de Eventos"
412
 
413
  #: app/features/events.php:333 app/features/events.php:1286
414
- #: app/features/mec/settings.php:710 app/skins/single.php:941
415
  msgid "Hourly Schedule"
416
  msgstr "Horários da Programação"
417
 
@@ -429,7 +429,7 @@ msgstr "Link"
429
 
430
  #: app/features/events.php:336 app/features/events.php:3322
431
  #: app/features/events.php:3513 app/features/events.php:3555
432
- #: app/features/ix.php:3373 app/features/ix.php:3414
433
  #: app/features/mec/meta_boxes/display_options.php:960
434
  #: app/features/mec/meta_boxes/search_form.php:45
435
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -446,16 +446,16 @@ msgstr "Link"
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
450
- #: app/skins/single.php:806 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
453
  msgid "Organizer"
454
  msgstr "Organizador"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
458
- #: app/skins/single.php:583 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
461
  msgid "Cost"
@@ -473,7 +473,7 @@ msgstr ""
473
  #: app/features/events.php:3802 app/features/fes.php:223
474
  #: app/features/fes/form.php:689 app/features/labels.php:178
475
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
476
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
477
  #: app/modules/booking/steps/form.php:37
478
  msgid "Name"
479
  msgstr "Nome"
@@ -483,12 +483,12 @@ msgstr "Nome"
483
  #: app/features/fes.php:223 app/features/fes/form.php:685
484
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
485
  #: app/features/organizers.php:111 app/features/organizers.php:152
486
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
487
- #: app/features/speakers.php:187 app/libraries/main.php:1539
488
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
489
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
490
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
491
- #: app/skins/single.php:878 app/skins/single/default.php:234
492
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
493
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
494
  msgid "Email"
@@ -501,8 +501,8 @@ msgstr "Data e Hora"
501
  #: app/features/events.php:491 app/features/events.php:497
502
  #: app/features/events.php:3323 app/features/events.php:3513
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
- #: app/features/fes/form.php:251 app/features/ix.php:3373
505
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
506
  #: app/features/mec/dashboard.php:400
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -539,8 +539,8 @@ msgstr "PM"
539
  #: app/features/events.php:583 app/features/events.php:588
540
  #: app/features/events.php:3324 app/features/events.php:3513
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
- #: app/features/fes/form.php:291 app/features/ix.php:3373
543
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
544
  #: app/features/mec/dashboard.php:401
545
  msgid "End Date"
546
  msgstr "Data de Término"
@@ -624,14 +624,14 @@ msgstr ""
624
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
625
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
626
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
627
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
628
- #: app/features/mec/notifications.php:170
629
- #: app/features/mec/notifications.php:238
630
- #: app/features/mec/notifications.php:308
631
- #: app/features/mec/notifications.php:373
632
- #: app/features/mec/notifications.php:384
633
- #: app/features/mec/notifications.php:454
634
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
635
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
636
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
637
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -647,7 +647,7 @@ msgstr ""
647
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
648
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
649
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
650
- #: app/skins/single.php:668 app/skins/single/default.php:141
651
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
652
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
653
  msgid "Read More"
@@ -830,8 +830,8 @@ msgstr "Próxima Ocorrência de Outros Eventos"
830
 
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
- #: app/features/ix.php:3373 app/features/ix.php:3414
834
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Custo do Evento"
@@ -849,8 +849,8 @@ msgstr "Excluir determinados dias"
849
  #: app/features/events.php:1204 app/features/events.php:2541
850
  #: app/features/fes.php:223 app/features/mec/booking.php:491
851
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
852
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
853
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
854
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
855
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
856
  msgid "Date"
@@ -887,8 +887,8 @@ msgstr ""
887
  #: app/features/events.php:1437 app/features/events.php:2322
888
  #: app/features/events.php:2369 app/features/events.php:3319
889
  #: app/features/events.php:3513 app/features/events.php:3555
890
- #: app/features/fes/form.php:236 app/features/ix.php:3373
891
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
892
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
893
  msgid "Title"
894
  msgstr "Título"
@@ -901,13 +901,13 @@ msgstr "Título"
901
  #: app/features/events.php:2357 app/features/events.php:2399
902
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
903
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
904
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
905
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
906
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
907
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
908
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
909
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
910
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
911
  msgid "Remove"
912
  msgstr "Remover"
913
 
@@ -935,7 +935,7 @@ msgstr "Descrição"
935
  #: app/features/events.php:1445 app/features/fes/form.php:851
936
  #: app/features/mec.php:410 app/features/mec/modules.php:52
937
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
938
- #: app/libraries/main.php:565 app/libraries/main.php:5267
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
@@ -952,7 +952,7 @@ msgid "Event Links"
952
  msgstr "Links do Evento"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
956
  msgid "Event Link"
957
  msgstr "Link do Evento"
958
 
@@ -979,8 +979,8 @@ msgid "URL Shortener"
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
983
- #: app/skins/single.php:667 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
986
  #: app/widgets/single.php:107
@@ -1013,7 +1013,7 @@ msgstr "Total de limites de reserva"
1013
 
1014
  #: app/features/events.php:1596 app/features/events.php:1849
1015
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1016
- #: app/modules/booking/steps/tickets.php:44
1017
  #: app/skins/available_spot/tpl.php:160
1018
  msgid "Unlimited"
1019
  msgstr "Ilimitado"
@@ -1050,7 +1050,7 @@ msgid "12"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1054
  msgid "Tickets"
1055
  msgstr "Bilhetes"
1056
 
@@ -1073,13 +1073,13 @@ msgstr "Nome do Bilhete"
1073
 
1074
  #: app/features/events.php:1680 app/features/events.php:1955
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
- #: app/features/ix.php:3373 app/features/ix.php:3414
1077
  msgid "Start Time"
1078
  msgstr "Horário de Início"
1079
 
1080
  #: app/features/events.php:1739 app/features/events.php:1985
1081
  #: app/features/events.php:3513 app/features/events.php:3555
1082
- #: app/features/ix.php:3373 app/features/ix.php:3414
1083
  msgid "End Time"
1084
  msgstr "Horário de Término"
1085
 
@@ -1111,37 +1111,37 @@ msgstr "Para mostrar no site. Por exemplo, R$15"
1111
  msgid "Available Tickets"
1112
  msgstr "Bilhetes Disponíveis"
1113
 
1114
- #: app/features/events.php:1855 app/features/events.php:2070
1115
  #, fuzzy
1116
  #| msgid "Maximum events"
1117
  msgid "Minimum Ticket e.g. 3"
1118
  msgstr "Máximo de eventos"
1119
 
1120
- #: app/features/events.php:1858 app/features/events.php:2073
1121
  #, fuzzy
1122
  #| msgid "Maximum events"
1123
  msgid "MinimumTicket"
1124
  msgstr "Máximo de eventos"
1125
 
1126
- #: app/features/events.php:1860 app/features/events.php:2075
1127
  msgid "Set a number for the minimum ticket reservation"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:1868 app/features/events.php:2083
1131
  msgid "e.g. 0"
1132
  msgstr ""
1133
 
1134
- #: app/features/events.php:1870 app/features/events.php:2085
1135
  #, fuzzy
1136
  #| msgid "Daily"
1137
  msgid "Day"
1138
  msgstr "Diariamente"
1139
 
1140
- #: app/features/events.php:1871 app/features/events.php:2086
1141
  msgid "Hour"
1142
  msgstr ""
1143
 
1144
- #: app/features/events.php:1873 app/features/events.php:2088
1145
  #, php-format
1146
  msgid "Stop selling ticket %s before event start."
1147
  msgstr ""
@@ -1167,7 +1167,7 @@ msgstr "Preço da Etiqueta"
1167
  #: app/features/mec/meta_boxes/search_form.php:610
1168
  #: app/features/mec/meta_boxes/search_form.php:707
1169
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1170
- #: app/libraries/skins.php:980
1171
  msgid "Label"
1172
  msgstr "Etiqueta"
1173
 
@@ -1237,48 +1237,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1237
  msgstr ""
1238
 
1239
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1240
- #: app/libraries/main.php:2749
1241
  #, fuzzy
1242
  #| msgid "Name"
1243
  msgid "MEC Name"
1244
  msgstr "Nome"
1245
 
1246
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1247
- #: app/libraries/main.php:2778
1248
  #, fuzzy
1249
  #| msgid "Email"
1250
  msgid "MEC Email"
1251
  msgstr "E-mail"
1252
 
1253
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1254
- #: app/libraries/main.php:2719
1255
  msgid "Text"
1256
  msgstr "Texto"
1257
 
1258
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1259
  #: app/features/organizers.php:103 app/features/organizers.php:148
1260
- #: app/features/speakers.php:118 app/features/speakers.php:183
1261
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1262
  msgid "Tel"
1263
  msgstr "Telefone"
1264
 
1265
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1266
- #: app/libraries/main.php:2837
1267
  msgid "File"
1268
  msgstr ""
1269
 
1270
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1271
- #: app/libraries/main.php:2924
1272
  msgid "Textarea"
1273
  msgstr "Área de texto"
1274
 
1275
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1276
- #: app/libraries/main.php:2977
1277
  msgid "Checkboxes"
1278
  msgstr "Caixas de seleção"
1279
 
1280
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1281
- #: app/libraries/main.php:3021
1282
  msgid "Radio Buttons"
1283
  msgstr "Botões Rádio"
1284
 
@@ -1358,17 +1358,17 @@ msgstr "Botões Rádio"
1358
  #: app/features/mec/meta_boxes/search_form.php:696
1359
  #: app/features/mec/meta_boxes/search_form.php:703
1360
  #: app/features/mec/meta_boxes/search_form.php:710
1361
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1362
  msgid "Dropdown"
1363
  msgstr "Suspenso"
1364
 
1365
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1366
- #: app/libraries/main.php:3112
1367
  msgid "Agreement"
1368
  msgstr ""
1369
 
1370
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1371
- #: app/libraries/main.php:2953
1372
  msgid "Paragraph"
1373
  msgstr "Parágrafo"
1374
 
@@ -1397,8 +1397,8 @@ msgid "Attendees List"
1397
  msgstr "Participante"
1398
 
1399
  #: app/features/events.php:3321 app/features/events.php:3513
1400
- #: app/features/events.php:3555 app/features/ix.php:3373
1401
- #: app/features/ix.php:3414 app/features/locations.php:58
1402
  #: app/features/locations.php:230 app/features/locations.php:287
1403
  #: app/features/locations.php:289 app/features/locations.php:298
1404
  #: app/features/mec/meta_boxes/display_options.php:959
@@ -1415,8 +1415,8 @@ msgstr "Participante"
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
- #: app/libraries/main.php:5264 app/libraries/skins.php:876
1419
- #: app/skins/single.php:487 app/skins/single.php:918
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1422
  #: app/skins/single/modern.php:97
@@ -1457,14 +1457,14 @@ msgid "Duplicate"
1457
  msgstr "Duplicar"
1458
 
1459
  #: app/features/events.php:3513 app/features/events.php:3555
1460
- #: app/features/fes.php:223 app/features/ix.php:3373 app/features/ix.php:3414
1461
  #: app/features/labels.php:177 app/features/locations.php:229
1462
- #: app/features/organizers.php:203 app/features/speakers.php:253
1463
  msgid "ID"
1464
  msgstr "ID"
1465
 
1466
  #: app/features/events.php:3513 app/features/events.php:3555
1467
- #: app/features/ix.php:3373 app/features/ix.php:3414
1468
  msgid "Link"
1469
  msgstr "Link"
1470
 
@@ -1480,7 +1480,7 @@ msgstr ""
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
- #: app/libraries/main.php:5294
1484
  msgid "Ticket"
1485
  msgstr "Bilhete"
1486
 
@@ -1658,8 +1658,8 @@ msgstr "Remover Imagem"
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
- #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5261
1662
- #: app/skins/single.php:696 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
1665
  msgid "Labels"
@@ -1738,78 +1738,78 @@ msgstr ""
1738
  msgid "The events are imported successfully!"
1739
  msgstr ""
1740
 
1741
- #: app/features/ix.php:806
1742
  msgid "Third Party plugin is not installed and activated!"
1743
  msgstr ""
1744
 
1745
- #: app/features/ix.php:829
1746
  msgid "Third Party plugin is invalid!"
1747
  msgstr ""
1748
 
1749
- #: app/features/ix.php:2580 app/features/ix.php:2638
1750
  msgid "Both of API key and Calendar ID are required!"
1751
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
1752
 
1753
- #: app/features/ix.php:2633 app/features/ix.php:3052 app/features/ix.php:3759
1754
  msgid "Please select some events to import!"
1755
  msgstr "Por favor, selecione alguns eventos para importar!"
1756
 
1757
- #: app/features/ix.php:2994 app/features/ix.php:3057
1758
  #, fuzzy
1759
  #| msgid "Both of API key and Calendar ID are required!"
1760
  msgid "Both of API key and Group URL are required!"
1761
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
1762
 
1763
- #: app/features/ix.php:3296
1764
  msgid "Check at Meetup"
1765
  msgstr ""
1766
 
1767
- #: app/features/ix.php:3373 app/features/ix.php:3414
1768
  msgid "Organizer Tel"
1769
  msgstr "Telefone do Organizador"
1770
 
1771
- #: app/features/ix.php:3373 app/features/ix.php:3414
1772
  msgid "Organizer Email"
1773
  msgstr "E-mail do Organizador"
1774
 
1775
- #: app/features/ix.php:3495
1776
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1777
  msgstr ""
1778
  "Todos os IDs do cliente, Segredo e ID do Calendário do Cliente são "
1779
  "obrigatórios!"
1780
 
1781
- #: app/features/ix.php:3518
1782
  #, php-format
1783
  msgid "All seems good! Please click %s for authenticating your app."
1784
  msgstr "Tudo parece ótimo! Clique em %s para autenticar seu aplicativo."
1785
 
1786
- #: app/features/ix.php:3572
1787
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1788
  msgstr ""
1789
  "Todos os aplicativos, segredo e IDs do calendário do cliente são necessários!"
1790
 
1791
- #: app/features/ix.php:3688
1792
  #, php-format
1793
  msgid "%s events added to Google Calendar successfully."
1794
  msgstr "Eventos %s adicionados ao Google Calendário com sucesso."
1795
 
1796
- #: app/features/ix.php:3689
1797
  #, php-format
1798
  msgid "%s previously added events get updated."
1799
  msgstr "Os eventos %s adicionados anteriormente foram atualizados."
1800
 
1801
- #: app/features/ix.php:3690
1802
  #, php-format
1803
  msgid "%s events failed to add for following reasons: %s"
1804
  msgstr "Os eventos %s não foram adicionados pelas seguintes razões: %s"
1805
 
1806
- #: app/features/ix.php:3722
1807
  #, fuzzy
1808
  #| msgid "Please insert your facebook page's link."
1809
  msgid "Please insert your Facebook page's link."
1810
  msgstr "Insira o link da sua página do facebook."
1811
 
1812
- #: app/features/ix.php:3731
1813
  #, fuzzy
1814
  #| msgid ""
1815
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
@@ -1821,11 +1821,11 @@ msgstr ""
1821
  "Não foi possível reconhecer sua página do Facebook. Confira e forneça um "
1822
  "link válido para a página do facebook."
1823
 
1824
- #: app/features/ix.php:3763
1825
  msgid "Please insert your facebook page's link."
1826
  msgstr "Insira o link da sua página do facebook."
1827
 
1828
- #: app/features/ix.php:3768
1829
  msgid ""
1830
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1831
  "valid facebook page link."
@@ -2000,14 +2000,15 @@ msgstr "Alternar"
2000
  #: app/features/ix/export_g_calendar.php:72
2001
  #: app/features/ix/export_g_calendar.php:147
2002
  #: app/features/ix/export_g_calendar.php:164
2003
- #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:151
2004
- #: app/features/mec/notifications.php:213
2005
- #: app/features/mec/notifications.php:420
 
2006
  msgid "Add to Google Calendar"
2007
  msgstr "Adicionar ao Calendário do Google"
2008
 
2009
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2010
- #: app/features/mec/modules.php:397 app/features/mec/notifications.php:622
2011
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2012
  msgid "Checking ..."
2013
  msgstr "Verificando ...."
@@ -2279,7 +2280,7 @@ msgstr "Importar para Calendário do Google"
2279
 
2280
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2281
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2282
- #: app/features/mec/notifications.php:361
2283
  #, fuzzy
2284
  msgid "Important Note"
2285
  msgstr "Importar / Exportar"
@@ -2461,7 +2462,7 @@ msgid "Featured"
2461
  msgstr "Imagem Destacada"
2462
 
2463
  #: app/features/labels.php:118 app/features/labels.php:143
2464
- #: app/libraries/main.php:5510 app/skins/agenda/render.php:43
2465
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2466
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2467
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
@@ -2480,7 +2481,7 @@ msgid "You can show featured and canceled events by a different style!"
2480
  msgstr ""
2481
 
2482
  #: app/features/labels.php:180 app/features/locations.php:232
2483
- #: app/features/organizers.php:206 app/features/speakers.php:257
2484
  #: app/modules/booking/steps/tickets.php:38
2485
  msgid "Count"
2486
  msgstr "Contagem"
@@ -2497,7 +2498,7 @@ msgstr ""
2497
 
2498
  #: app/features/locations.php:59 app/features/mec.php:404
2499
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2500
- #: app/libraries/main.php:5263
2501
  msgid "Locations"
2502
  msgstr "Localizações"
2503
 
@@ -2530,13 +2531,13 @@ msgstr "Geo longitude (Opcional)"
2530
 
2531
  #: app/features/locations.php:138 app/features/locations.php:180
2532
  #: app/features/organizers.php:127 app/features/organizers.php:160
2533
- #: app/features/speakers.php:158 app/features/speakers.php:203
2534
  msgid "Thumbnail"
2535
  msgstr "Miniatura"
2536
 
2537
  #: app/features/locations.php:143 app/features/locations.php:183
2538
  #: app/features/organizers.php:132 app/features/organizers.php:163
2539
- #: app/features/speakers.php:163 app/features/speakers.php:206
2540
  msgid "Upload/Add image"
2541
  msgstr "Enviar/Adicionar imagem"
2542
 
@@ -2544,7 +2545,7 @@ msgstr "Enviar/Adicionar imagem"
2544
  #: app/features/locations.php:340 app/features/locations.php:347
2545
  #: app/features/organizers.php:133 app/features/organizers.php:164
2546
  #: app/features/organizers.php:299 app/features/organizers.php:306
2547
- #: app/features/speakers.php:164 app/features/speakers.php:207
2548
  msgid "Remove image"
2549
  msgstr "Remover imagem"
2550
 
@@ -2604,7 +2605,7 @@ msgstr "Escolha uma imagem"
2604
  msgid "Don't show map in single event page"
2605
  msgstr "Não mostrar mapa na página de evento individual"
2606
 
2607
- #: app/features/locations.php:356 app/libraries/main.php:5297
2608
  #, fuzzy
2609
  #| msgid "Search Locations"
2610
  msgid "Other Locations"
@@ -2629,7 +2630,7 @@ msgstr ""
2629
  msgid "Troubleshooting"
2630
  msgstr ""
2631
 
2632
- #: app/features/mec.php:255 app/libraries/notifications.php:845
2633
  #, php-format
2634
  msgid "%s to %s"
2635
  msgstr "%s para %s"
@@ -2665,7 +2666,7 @@ msgstr "Suporte"
2665
 
2666
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2667
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2668
- #: app/libraries/main.php:5265
2669
  msgid "Organizers"
2670
  msgstr "Organizadores"
2671
 
@@ -2787,10 +2788,10 @@ msgstr "Formulário de Pesquisa"
2787
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2788
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2789
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2790
- #: app/features/mec/notifications.php:531
2791
- #: app/features/mec/notifications.php:543
2792
- #: app/features/mec/notifications.php:639
2793
- #: app/features/mec/notifications.php:653 app/features/mec/settings.php:39
2794
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2795
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2796
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
@@ -2911,7 +2912,7 @@ msgstr ""
2911
  msgid "Enable Express Attendees Form"
2912
  msgstr ""
2913
 
2914
- #: app/features/mec/booking.php:186 app/modules/booking/steps/form.php:52
2915
  msgid "Attendees Form"
2916
  msgstr "Formulário de Participantes"
2917
 
@@ -2945,7 +2946,7 @@ msgstr "Auto verificação para reservas gratuitas"
2945
  msgid "Auto verification for paid bookings"
2946
  msgstr "Auto verificação para reservas pagas"
2947
 
2948
- #: app/features/mec/booking.php:235 app/features/mec/notifications.php:158
2949
  #: app/libraries/main.php:579
2950
  msgid "Booking Confirmation"
2951
  msgstr "Confirmação de Reserva"
@@ -3013,14 +3014,14 @@ msgid ""
3013
  msgstr ""
3014
 
3015
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3016
- #: app/features/mec/modules.php:392 app/features/mec/notifications.php:617
3017
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3018
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3019
  msgid "Saved"
3020
  msgstr "Salvo"
3021
 
3022
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3023
- #: app/features/mec/modules.php:393 app/features/mec/notifications.php:618
3024
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3025
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3026
  msgid "Settings Saved!"
@@ -3028,15 +3029,15 @@ msgstr ""
3028
 
3029
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3030
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3031
- #: app/features/mec/notifications.php:620
3032
- #: app/features/mec/notifications.php:642 app/features/mec/settings.php:1044
3033
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3034
- #: app/features/mec/single.php:289 app/libraries/main.php:5509
3035
  msgid "Verified"
3036
  msgstr "Verificado"
3037
 
3038
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3039
- #: app/features/mec/notifications.php:644 app/features/mec/settings.php:1068
3040
  #: app/features/mec/single.php:291
3041
  msgid "Please Refresh Page"
3042
  msgstr "Por favor, Atualize a Página"
@@ -4170,8 +4171,8 @@ msgstr "Desativado"
4170
  #: app/features/mec/meta_boxes/search_form.php:693
4171
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4172
  #: app/features/search.php:79 app/features/speakers.php:61
4173
- #: app/features/speakers.php:254 app/libraries/main.php:5268
4174
- #: app/libraries/skins.php:928
4175
  msgid "Speaker"
4176
  msgstr ""
4177
 
@@ -4187,7 +4188,7 @@ msgstr ""
4187
  #: app/features/mec/meta_boxes/search_form.php:603
4188
  #: app/features/mec/meta_boxes/search_form.php:700
4189
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4190
- #: app/features/search.php:83 app/libraries/skins.php:954
4191
  #, fuzzy
4192
  #| msgid "Tags"
4193
  msgid "Tag"
@@ -4445,345 +4446,434 @@ msgstr ""
4445
  msgid "It sends to attendee after booking for notifying him/her."
4446
  msgstr "Ele envia ao participante após a reserva para notificá-lo."
4447
 
4448
- #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:105
4449
- #: app/features/mec/notifications.php:161
4450
- #: app/features/mec/notifications.php:229
4451
- #: app/features/mec/notifications.php:299
4452
- #: app/features/mec/notifications.php:364
4453
- #: app/features/mec/notifications.php:445
4454
- #: app/features/mec/notifications.php:493 app/features/mec/report.php:49
4455
  msgid "Email Subject"
4456
  msgstr "Assunto do E-mail"
4457
 
4458
- #: app/features/mec/notifications.php:48 app/features/mec/notifications.php:52
4459
- #: app/features/mec/notifications.php:109
4460
- #: app/features/mec/notifications.php:113
4461
- #: app/features/mec/notifications.php:165
4462
- #: app/features/mec/notifications.php:169
4463
- #: app/features/mec/notifications.php:233
4464
- #: app/features/mec/notifications.php:237
4465
- #: app/features/mec/notifications.php:303
4466
- #: app/features/mec/notifications.php:307
4467
- #: app/features/mec/notifications.php:368
4468
- #: app/features/mec/notifications.php:372
4469
- #: app/features/mec/notifications.php:383
4470
- #: app/features/mec/notifications.php:449
4471
- #: app/features/mec/notifications.php:453
4472
- #: app/features/mec/notifications.php:497
4473
- #: app/features/mec/notifications.php:501
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4474
  msgid "Custom Recipients"
4475
  msgstr "Personalizar Recipientes"
4476
 
4477
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
4478
- #: app/features/mec/notifications.php:170
4479
- #: app/features/mec/notifications.php:238
4480
- #: app/features/mec/notifications.php:308
4481
- #: app/features/mec/notifications.php:373
4482
- #: app/features/mec/notifications.php:384
4483
- #: app/features/mec/notifications.php:454
4484
- #: app/features/mec/notifications.php:502
4485
  msgid "Insert comma separated emails for multiple recipients."
4486
  msgstr "Insira e-mails separados por vírgula para vários destinatários."
4487
 
4488
- #: app/features/mec/notifications.php:60 app/features/mec/notifications.php:249
4489
- #: app/features/mec/notifications.php:315
4490
  msgid "Send the email to event organizer"
4491
  msgstr "Envie o e-mail para organizador do evento"
4492
 
4493
- #: app/features/mec/notifications.php:63 app/features/mec/notifications.php:120
4494
- #: app/features/mec/notifications.php:180
4495
- #: app/features/mec/notifications.php:256
4496
- #: app/features/mec/notifications.php:318
4497
- #: app/features/mec/notifications.php:390
4498
- #: app/features/mec/notifications.php:460
4499
- #: app/features/mec/notifications.php:508
4500
  msgid "Email Content"
4501
  msgstr "Conteúdo do E-mail"
4502
 
4503
- #: app/features/mec/notifications.php:66 app/features/mec/notifications.php:123
4504
- #: app/features/mec/notifications.php:183
4505
- #: app/features/mec/notifications.php:259
4506
- #: app/features/mec/notifications.php:321
4507
- #: app/features/mec/notifications.php:393
4508
- #: app/features/mec/notifications.php:463
4509
- #: app/features/mec/notifications.php:511 app/features/mec/report.php:51
 
4510
  msgid "You can use following placeholders"
4511
  msgstr "Você pode usar os seguintes espaços reservados"
4512
 
4513
- #: app/features/mec/notifications.php:68 app/features/mec/notifications.php:125
4514
- #: app/features/mec/notifications.php:185
4515
- #: app/features/mec/notifications.php:261
4516
- #: app/features/mec/notifications.php:323
4517
- #: app/features/mec/notifications.php:395
 
4518
  msgid "First name of attendee"
4519
  msgstr "Primeiro nome do participante"
4520
 
4521
- #: app/features/mec/notifications.php:69 app/features/mec/notifications.php:126
4522
- #: app/features/mec/notifications.php:186
4523
- #: app/features/mec/notifications.php:262
4524
- #: app/features/mec/notifications.php:324
4525
- #: app/features/mec/notifications.php:396
 
4526
  msgid "Last name of attendee"
4527
  msgstr "Último nome do participante"
4528
 
4529
- #: app/features/mec/notifications.php:70 app/features/mec/notifications.php:127
4530
- #: app/features/mec/notifications.php:187
4531
- #: app/features/mec/notifications.php:263
4532
- #: app/features/mec/notifications.php:325
4533
- #: app/features/mec/notifications.php:397
 
4534
  msgid "Email of attendee"
4535
  msgstr "E-mail do participante"
4536
 
4537
- #: app/features/mec/notifications.php:71 app/features/mec/notifications.php:128
4538
- #: app/features/mec/notifications.php:188
4539
- #: app/features/mec/notifications.php:264
4540
- #: app/features/mec/notifications.php:326
4541
- #: app/features/mec/notifications.php:398
 
4542
  msgid "Booked date of event"
4543
  msgstr "Data do evento reservado"
4544
 
4545
- #: app/features/mec/notifications.php:72 app/features/mec/notifications.php:129
4546
- #: app/features/mec/notifications.php:189
4547
- #: app/features/mec/notifications.php:265
4548
- #: app/features/mec/notifications.php:327
4549
- #: app/features/mec/notifications.php:399
 
4550
  #, fuzzy
4551
  #| msgid "Booked date of event"
4552
  msgid "Booked time of event"
4553
  msgstr "Data do evento reservado"
4554
 
4555
- #: app/features/mec/notifications.php:73 app/features/mec/notifications.php:130
4556
- #: app/features/mec/notifications.php:190
4557
- #: app/features/mec/notifications.php:266
4558
- #: app/features/mec/notifications.php:328
4559
- #: app/features/mec/notifications.php:400
 
4560
  msgid "Booking Price"
4561
  msgstr ""
4562
 
4563
- #: app/features/mec/notifications.php:74 app/features/mec/notifications.php:131
4564
- #: app/features/mec/notifications.php:191
4565
- #: app/features/mec/notifications.php:267
4566
- #: app/features/mec/notifications.php:329
4567
- #: app/features/mec/notifications.php:401
 
4568
  msgid "Date and time of placing booking"
4569
  msgstr ""
4570
 
4571
- #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:132
4572
- #: app/features/mec/notifications.php:192
4573
- #: app/features/mec/notifications.php:268
4574
- #: app/features/mec/notifications.php:330
4575
- #: app/features/mec/notifications.php:402
4576
- #: app/features/mec/notifications.php:471
4577
- #: app/features/mec/notifications.php:519
 
4578
  msgid "Your website title"
4579
  msgstr "Título do seu site"
4580
 
4581
- #: app/features/mec/notifications.php:76 app/features/mec/notifications.php:133
4582
- #: app/features/mec/notifications.php:193
4583
- #: app/features/mec/notifications.php:269
4584
- #: app/features/mec/notifications.php:331
4585
- #: app/features/mec/notifications.php:403
4586
- #: app/features/mec/notifications.php:472
4587
- #: app/features/mec/notifications.php:520
 
4588
  msgid "Your website URL"
4589
  msgstr "URL do seu site"
4590
 
4591
- #: app/features/mec/notifications.php:77 app/features/mec/notifications.php:134
4592
- #: app/features/mec/notifications.php:194
4593
- #: app/features/mec/notifications.php:270
4594
- #: app/features/mec/notifications.php:332
4595
- #: app/features/mec/notifications.php:404
4596
- #: app/features/mec/notifications.php:473
4597
- #: app/features/mec/notifications.php:521
 
4598
  msgid "Your website description"
4599
  msgstr "Descrição do seu site"
4600
 
4601
- #: app/features/mec/notifications.php:78 app/features/mec/notifications.php:135
4602
- #: app/features/mec/notifications.php:195
4603
- #: app/features/mec/notifications.php:271
4604
- #: app/features/mec/notifications.php:333
4605
- #: app/features/mec/notifications.php:405
 
4606
  msgid "Event title"
4607
  msgstr "Título do evento"
4608
 
4609
- #: app/features/mec/notifications.php:79 app/features/mec/notifications.php:136
4610
- #: app/features/mec/notifications.php:196
4611
- #: app/features/mec/notifications.php:272
4612
- #: app/features/mec/notifications.php:334
4613
- #: app/features/mec/notifications.php:406
 
4614
  #, fuzzy
4615
  #| msgid "Event Link"
4616
  msgid "Event link"
4617
  msgstr "Link do Evento"
4618
 
4619
- #: app/features/mec/notifications.php:80 app/features/mec/notifications.php:137
4620
- #: app/features/mec/notifications.php:197
4621
- #: app/features/mec/notifications.php:467
4622
- #: app/features/mec/notifications.php:515
 
4623
  #, fuzzy
4624
  #| msgid "Start Date"
4625
  msgid "Event Start Date"
4626
  msgstr "Data Inicial"
4627
 
4628
- #: app/features/mec/notifications.php:81 app/features/mec/notifications.php:138
4629
- #: app/features/mec/notifications.php:198
4630
- #: app/features/mec/notifications.php:468
4631
- #: app/features/mec/notifications.php:516
 
4632
  #, fuzzy
4633
  #| msgid "End Date"
4634
  msgid "Event End Date"
4635
  msgstr "Data de Término"
4636
 
4637
- #: app/features/mec/notifications.php:82 app/features/mec/notifications.php:139
4638
- #: app/features/mec/notifications.php:199
4639
- #: app/features/mec/notifications.php:273
4640
- #: app/features/mec/notifications.php:335
4641
- #: app/features/mec/notifications.php:407
 
4642
  #, fuzzy
4643
  #| msgid "Organizer name of booked event"
4644
  msgid "Speaker name of booked event"
4645
  msgstr "Nome do organizador do evento reservado"
4646
 
4647
- #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:140
4648
- #: app/features/mec/notifications.php:200
4649
- #: app/features/mec/notifications.php:274
4650
- #: app/features/mec/notifications.php:336
4651
- #: app/features/mec/notifications.php:408
 
4652
  msgid "Organizer name of booked event"
4653
  msgstr "Nome do organizador do evento reservado"
4654
 
4655
- #: app/features/mec/notifications.php:84 app/features/mec/notifications.php:141
4656
- #: app/features/mec/notifications.php:201
4657
- #: app/features/mec/notifications.php:275
4658
- #: app/features/mec/notifications.php:337
4659
- #: app/features/mec/notifications.php:409
 
4660
  msgid "Organizer tel of booked event"
4661
  msgstr "Telefone do organizador do evento reservado"
4662
 
4663
- #: app/features/mec/notifications.php:85 app/features/mec/notifications.php:142
4664
- #: app/features/mec/notifications.php:202
4665
- #: app/features/mec/notifications.php:276
4666
- #: app/features/mec/notifications.php:338
4667
- #: app/features/mec/notifications.php:410
 
4668
  msgid "Organizer email of booked event"
4669
  msgstr "E-mail do organizador do evento reservado"
4670
 
4671
- #: app/features/mec/notifications.php:86 app/features/mec/notifications.php:143
4672
- #: app/features/mec/notifications.php:203
4673
- #: app/features/mec/notifications.php:277
4674
- #: app/features/mec/notifications.php:339
4675
- #: app/features/mec/notifications.php:411
 
4676
  msgid "Location name of booked event"
4677
  msgstr "Nome da localização do evento reservado"
4678
 
4679
- #: app/features/mec/notifications.php:87 app/features/mec/notifications.php:144
4680
- #: app/features/mec/notifications.php:204
4681
- #: app/features/mec/notifications.php:278
4682
- #: app/features/mec/notifications.php:340
4683
- #: app/features/mec/notifications.php:412
 
4684
  msgid "Location address of booked event"
4685
  msgstr "Endereço da localização do evento reservado"
4686
 
4687
- #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:145
4688
- #: app/features/mec/notifications.php:205
4689
- #: app/features/mec/notifications.php:279
4690
- #: app/features/mec/notifications.php:341
4691
- #: app/features/mec/notifications.php:413
 
4692
  #, fuzzy
4693
  #| msgid "Organizer name of booked event"
4694
  msgid "Featured image of booked event"
4695
  msgstr "Nome do organizador do evento reservado"
4696
 
4697
- #: app/features/mec/notifications.php:89 app/features/mec/notifications.php:281
4698
- #: app/features/mec/notifications.php:343
 
4699
  msgid "Full Attendee info such as booking form data, name, email etc."
4700
  msgstr ""
4701
  "Informação completa do participante, tais como dados do formulário de "
4702
  "reserva, nome, e-mail etc."
4703
 
4704
- #: app/features/mec/notifications.php:90 app/features/mec/notifications.php:207
4705
- #: app/features/mec/notifications.php:415
 
4706
  msgid "Invoice Link"
4707
  msgstr ""
4708
 
4709
- #: app/features/mec/notifications.php:91 app/features/mec/notifications.php:147
4710
- #: app/features/mec/notifications.php:208
4711
- #: app/features/mec/notifications.php:282
4712
- #: app/features/mec/notifications.php:344
4713
- #: app/features/mec/notifications.php:416
 
4714
  msgid "Total Attendees"
4715
  msgstr ""
4716
 
4717
- #: app/features/mec/notifications.php:92 app/features/mec/notifications.php:148
4718
- #: app/features/mec/notifications.php:210
4719
- #: app/features/mec/notifications.php:417
 
 
 
 
 
 
 
 
 
 
 
 
4720
  #, fuzzy
4721
  #| msgid "Ticket Name"
4722
  msgid "Ticket name"
4723
  msgstr "Nome do Bilhete"
4724
 
4725
- #: app/features/mec/notifications.php:93 app/features/mec/notifications.php:149
4726
- #: app/features/mec/notifications.php:211
4727
- #: app/features/mec/notifications.php:418
 
4728
  #, fuzzy
4729
  #| msgid "Ticket Name"
4730
  msgid "Ticket time"
4731
  msgstr "Nome do Bilhete"
4732
 
4733
- #: app/features/mec/notifications.php:94 app/features/mec/notifications.php:150
4734
- #: app/features/mec/notifications.php:212
4735
- #: app/features/mec/notifications.php:419
 
4736
  msgid "Download ICS file"
4737
  msgstr ""
4738
 
4739
- #: app/features/mec/notifications.php:102 app/libraries/main.php:578
4740
  msgid "Booking Verification"
4741
  msgstr "Verificação de Reserva"
4742
 
4743
- #: app/features/mec/notifications.php:103
4744
  msgid "It sends to attendee email for verifying their booking/email."
4745
  msgstr ""
4746
  "Ele envia para o e-mail do participante para verificar sua reserva por e-"
4747
  "mail."
4748
 
4749
- #: app/features/mec/notifications.php:146
4750
  msgid "Email/Booking verification link."
4751
  msgstr "Link do e-mail de confirmação de reserva."
4752
 
4753
- #: app/features/mec/notifications.php:159
4754
  msgid "It sends to attendee after confirming the booking by admin."
4755
  msgstr ""
4756
  "Ele envia para o participante depois de confirmar a reserva pelo "
4757
  "administrador."
4758
 
4759
- #: app/features/mec/notifications.php:177
4760
  msgid "Send One Single Email Only To First Attendee"
4761
  msgstr ""
4762
 
4763
- #: app/features/mec/notifications.php:206
4764
- #: app/features/mec/notifications.php:414
4765
  msgid "Booking cancellation link."
4766
  msgstr "Link de cancelamento da reserva."
4767
 
4768
- #: app/features/mec/notifications.php:209
4769
- #, fuzzy
4770
- #| msgid "Tickets"
4771
- msgid "Amount Tickets"
4772
- msgstr "Bilhetes"
4773
-
4774
- #: app/features/mec/notifications.php:219 app/libraries/main.php:580
4775
  #, fuzzy
4776
  #| msgid "Booking cancellation link."
4777
  msgid "Booking Cancellation"
4778
  msgstr "Link de cancelamento da reserva."
4779
 
4780
- #: app/features/mec/notifications.php:223
4781
  #, fuzzy
4782
  #| msgid "Enable new event notification"
4783
  msgid "Enable cancellation notification"
4784
  msgstr "Habilitar notificação de novo evento"
4785
 
4786
- #: app/features/mec/notifications.php:227
4787
  #, fuzzy
4788
  #| msgid "It sends to attendee after booking for notifying him/her."
4789
  msgid ""
@@ -4791,49 +4881,49 @@ msgid ""
4791
  "them."
4792
  msgstr "Ele envia ao participante após a reserva para notificá-lo."
4793
 
4794
- #: app/features/mec/notifications.php:245
4795
- #: app/features/mec/notifications.php:439
4796
  #, fuzzy
4797
  #| msgid "Send the email to event organizer"
4798
  msgid "Send the email to admin"
4799
  msgstr "Envie o e-mail para organizador do evento"
4800
 
4801
- #: app/features/mec/notifications.php:253
4802
  #, fuzzy
4803
  #| msgid "Send the email to event organizer"
4804
  msgid "Send the email to booking user"
4805
  msgstr "Envie o e-mail para organizador do evento"
4806
 
4807
- #: app/features/mec/notifications.php:280
4808
- #: app/features/mec/notifications.php:342
4809
  msgid "Admin booking management link."
4810
  msgstr "Gerenciamento do link da administração de reservas."
4811
 
4812
- #: app/features/mec/notifications.php:289 app/libraries/main.php:582
4813
  msgid "Admin"
4814
  msgstr ""
4815
 
4816
- #: app/features/mec/notifications.php:293
4817
  #, fuzzy
4818
  #| msgid "Enable new event notification"
4819
  msgid "Enable admin notification"
4820
  msgstr "Habilitar notificação de novo evento"
4821
 
4822
- #: app/features/mec/notifications.php:297
4823
  msgid "It sends to admin to notify him/her that a new booking received."
4824
  msgstr ""
4825
  "Ele envia para administrador para notificá-lo que recebeu uma nova reserva."
4826
 
4827
- #: app/features/mec/notifications.php:351 app/libraries/main.php:581
4828
- #: app/libraries/notifications.php:548
4829
  msgid "Booking Reminder"
4830
  msgstr ""
4831
 
4832
- #: app/features/mec/notifications.php:355
4833
  msgid "Enable booking reminder notification"
4834
  msgstr ""
4835
 
4836
- #: app/features/mec/notifications.php:361
4837
  #, php-format
4838
  msgid ""
4839
  "Set a cronjob to call %s file once per day otherwise it won't send the "
@@ -4841,24 +4931,24 @@ msgid ""
4841
  "send the reminders multiple times."
4842
  msgstr ""
4843
 
4844
- #: app/features/mec/notifications.php:361
4845
  msgid "only once per day"
4846
  msgstr ""
4847
 
4848
- #: app/features/mec/notifications.php:379
4849
  msgid "Days"
4850
  msgstr ""
4851
 
4852
- #: app/features/mec/notifications.php:429 app/features/mec/support-page.php:109
4853
  #: app/libraries/main.php:583
4854
  msgid "New Event"
4855
  msgstr "Novo Evento"
4856
 
4857
- #: app/features/mec/notifications.php:433
4858
  msgid "Enable new event notification"
4859
  msgstr "Habilitar notificação de novo evento"
4860
 
4861
- #: app/features/mec/notifications.php:443
4862
  msgid ""
4863
  "It sends after adding a new event from frontend event submission or from "
4864
  "website backend."
@@ -4866,47 +4956,47 @@ msgstr ""
4866
  "Ele envia depois de adicionar um novo evento a partir da submissão do evento "
4867
  "no site ou a partir da administração do site."
4868
 
4869
- #: app/features/mec/notifications.php:465
4870
- #: app/features/mec/notifications.php:513
4871
  msgid "Title of event"
4872
  msgstr "Título do evento"
4873
 
4874
- #: app/features/mec/notifications.php:466
4875
- #: app/features/mec/notifications.php:514
4876
  #, fuzzy
4877
  #| msgid "Title of event"
4878
  msgid "Link of event"
4879
  msgstr "Título do evento"
4880
 
4881
- #: app/features/mec/notifications.php:469
4882
- #: app/features/mec/notifications.php:517
4883
  msgid "Status of event"
4884
  msgstr "Estado do evento"
4885
 
4886
- #: app/features/mec/notifications.php:470
4887
- #: app/features/mec/notifications.php:518 app/features/mec/settings.php:734
4888
  #: app/features/mec/settings.php:738
4889
  msgid "Event Note"
4890
  msgstr "Nota do Evento"
4891
 
4892
- #: app/features/mec/notifications.php:474
4893
- #: app/features/mec/notifications.php:522
4894
  msgid "Admin events management link."
4895
  msgstr "Link de gerenciamento da administração de eventos."
4896
 
4897
- #: app/features/mec/notifications.php:483 app/libraries/main.php:584
4898
  #, fuzzy
4899
  #| msgid "The event published."
4900
  msgid "User Event Publishing"
4901
  msgstr "O evento foi publicado."
4902
 
4903
- #: app/features/mec/notifications.php:487
4904
  #, fuzzy
4905
  #| msgid "Enable new event notification"
4906
  msgid "Enable user event publishing notification"
4907
  msgstr "Habilitar notificação de novo evento"
4908
 
4909
- #: app/features/mec/notifications.php:491
4910
  #, fuzzy
4911
  #| msgid ""
4912
  #| "It sends after adding a new event from frontend event submission or from "
@@ -5086,7 +5176,7 @@ msgid "You can enable/disable Schema scripts"
5086
  msgstr ""
5087
 
5088
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5089
- #: app/libraries/main.php:5272
5090
  msgid "Weekdays"
5091
  msgstr "Dias da semana"
5092
 
@@ -6359,12 +6449,12 @@ msgstr "ex. john@smith.com"
6359
  msgid "eg. https://webnus.net"
6360
  msgstr "http://webnus.biz"
6361
 
6362
- #: app/features/organizers.php:311 app/libraries/main.php:5296
6363
- #: app/skins/single.php:856
6364
  msgid "Other Organizers"
6365
  msgstr ""
6366
 
6367
- #: app/features/organizers.php:313
6368
  msgid ""
6369
  "You can select extra organizers in addition to main organizer if you like."
6370
  msgstr ""
@@ -6385,7 +6475,7 @@ msgstr "Sua reserva não pôde ser cancelada."
6385
  msgid "#"
6386
  msgstr ""
6387
 
6388
- #: app/features/profile/profile.php:56 app/libraries/main.php:3134
6389
  msgid "Status"
6390
  msgstr ""
6391
 
@@ -6420,7 +6510,7 @@ msgstr ""
6420
  msgid "No bookings found!"
6421
  msgstr "Nenhuma reserva encontrada!"
6422
 
6423
- #: app/features/search.php:87 app/libraries/main.php:5262
6424
  msgid "label"
6425
  msgstr ""
6426
 
@@ -6447,76 +6537,94 @@ msgid "No search result."
6447
  msgstr ""
6448
 
6449
  #: app/features/search_bar/search_result.php:11
6450
- #: app/libraries/notifications.php:859 app/libraries/render.php:448
6451
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6452
- #: app/skins/single.php:160 app/skins/single.php:747
6453
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6454
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6455
  msgid "All of the day"
6456
  msgstr "Durante o dia todo"
6457
 
6458
- #: app/features/speakers.php:110 app/features/speakers.php:179
6459
- #: app/features/speakers.php:255
6460
  #, fuzzy
6461
  #| msgid "Title"
6462
  msgid "Job Title"
6463
  msgstr "Título"
6464
 
6465
- #: app/features/speakers.php:113 app/features/speakers.php:180
6466
  msgid "Insert speaker job title."
6467
  msgstr ""
6468
 
6469
- #: app/features/speakers.php:121 app/features/speakers.php:184
6470
  #, fuzzy
6471
  #| msgid "Insert organizer phone number."
6472
  msgid "Insert speaker phone number."
6473
  msgstr "Insira o número de telefone do organizador."
6474
 
6475
- #: app/features/speakers.php:129 app/features/speakers.php:188
6476
  #, fuzzy
6477
  #| msgid "Insert organizer email address."
6478
  msgid "Insert speaker email address."
6479
  msgstr "Insira o endereço de e-mail do organizador."
6480
 
6481
- #: app/features/speakers.php:134 app/features/speakers.php:191
6482
  #, fuzzy
6483
  #| msgid "Facebook Page Link"
6484
  msgid "Facebook Page"
6485
  msgstr "Link da Página do Facebook"
6486
 
6487
- #: app/features/speakers.php:137 app/features/speakers.php:192
6488
  #, fuzzy
6489
  #| msgid "Import from Facebook Calendar"
6490
  msgid "Insert URL of Facebook Page"
6491
  msgstr "Importar do Calendário do Facebook"
6492
 
6493
- #: app/features/speakers.php:142 app/features/speakers.php:195
6494
  msgid "Instagram"
6495
  msgstr ""
6496
 
6497
- #: app/features/speakers.php:145 app/features/speakers.php:196
6498
  #, fuzzy
6499
  #| msgid "Insert -1 for unlimited usage"
6500
  msgid "Insert URL of Instagram"
6501
  msgstr "Digite -1 para uso ilimitado"
6502
 
6503
- #: app/features/speakers.php:150 app/features/speakers.php:199
 
 
 
 
 
 
 
 
 
 
 
 
6504
  #, fuzzy
6505
  #| msgid "Twitter"
6506
  msgid "Twitter Page"
6507
  msgstr "Twitter"
6508
 
6509
- #: app/features/speakers.php:153 app/features/speakers.php:200
6510
  #, fuzzy
6511
  #| msgid "Insert -1 for unlimited usage"
6512
  msgid "Insert URL of Twitter Page"
6513
  msgstr "Digite -1 para uso ilimitado"
6514
 
6515
- #: app/features/speakers.php:315
 
 
 
 
 
 
6516
  msgid "Sorry, You must insert speaker name!"
6517
  msgstr ""
6518
 
6519
- #: app/features/speakers.php:364
6520
  msgid ""
6521
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6522
  "section and speaker widget section!"
@@ -6674,31 +6782,31 @@ msgstr "Visualização do Slider"
6674
  msgid "Tile View"
6675
  msgstr "Visualização do Slider"
6676
 
6677
- #: app/libraries/main.php:385 app/libraries/main.php:5274
6678
  msgid "SU"
6679
  msgstr "DOM"
6680
 
6681
- #: app/libraries/main.php:386 app/libraries/main.php:5275
6682
  msgid "MO"
6683
  msgstr "SEG"
6684
 
6685
- #: app/libraries/main.php:387 app/libraries/main.php:5276
6686
  msgid "TU"
6687
  msgstr "TER"
6688
 
6689
- #: app/libraries/main.php:388 app/libraries/main.php:5277
6690
  msgid "WE"
6691
  msgstr "QUA"
6692
 
6693
- #: app/libraries/main.php:389 app/libraries/main.php:5278
6694
  msgid "TH"
6695
  msgstr "QUI"
6696
 
6697
- #: app/libraries/main.php:390 app/libraries/main.php:5279
6698
  msgid "FR"
6699
  msgstr "SEX"
6700
 
6701
- #: app/libraries/main.php:391 app/libraries/main.php:5280
6702
  msgid "SA"
6703
  msgstr "SAB"
6704
 
@@ -6965,173 +7073,173 @@ msgstr "O pedido é inválido!"
6965
  msgid "iCal export stopped!"
6966
  msgstr "A exportação iCal parou!"
6967
 
6968
- #: app/libraries/main.php:2718 app/libraries/main.php:2748
6969
- #: app/libraries/main.php:2777 app/libraries/main.php:2807
6970
- #: app/libraries/main.php:2836 app/libraries/main.php:2865
6971
- #: app/libraries/main.php:2894 app/libraries/main.php:2923
6972
- #: app/libraries/main.php:2952 app/libraries/main.php:2976
6973
- #: app/libraries/main.php:3020 app/libraries/main.php:3064
6974
- #: app/libraries/main.php:3111 app/libraries/main.php:3158
6975
  msgid "Sort"
6976
  msgstr "Ordenar"
6977
 
6978
- #: app/libraries/main.php:2724 app/libraries/main.php:2754
6979
- #: app/libraries/main.php:2783 app/libraries/main.php:2813
6980
- #: app/libraries/main.php:2842 app/libraries/main.php:2871
6981
- #: app/libraries/main.php:2900 app/libraries/main.php:2929
6982
- #: app/libraries/main.php:2982 app/libraries/main.php:3026
6983
- #: app/libraries/main.php:3070 app/libraries/main.php:3117
6984
  msgid "Required Field"
6985
  msgstr "Campo Obrigatório"
6986
 
6987
- #: app/libraries/main.php:2730 app/libraries/main.php:2760
6988
- #: app/libraries/main.php:2789 app/libraries/main.php:2819
6989
- #: app/libraries/main.php:2848 app/libraries/main.php:2877
6990
- #: app/libraries/main.php:2906 app/libraries/main.php:2935
6991
- #: app/libraries/main.php:2988 app/libraries/main.php:3032
6992
- #: app/libraries/main.php:3076 app/libraries/main.php:3123
6993
  msgid "Insert a label for this field"
6994
  msgstr "Inserir uma etiqueta para este campo"
6995
 
6996
- #: app/libraries/main.php:2958
6997
  msgid "HTML and shortcode are allowed."
6998
  msgstr "HTML e códigos curtos são permitidos."
6999
 
7000
- #: app/libraries/main.php:3001 app/libraries/main.php:3045
7001
- #: app/libraries/main.php:3089
7002
  msgid "Option"
7003
  msgstr "Opção"
7004
 
7005
- #: app/libraries/main.php:3123
7006
  #, php-format
7007
  msgid "Instead of %s, the page title with a link will be show."
7008
  msgstr ""
7009
 
7010
- #: app/libraries/main.php:3125
7011
  msgid "Agreement Page"
7012
  msgstr ""
7013
 
7014
- #: app/libraries/main.php:3136
7015
  msgid "Checked by default"
7016
  msgstr ""
7017
 
7018
- #: app/libraries/main.php:3137
7019
  msgid "Unchecked by default"
7020
  msgstr ""
7021
 
7022
- #: app/libraries/main.php:3160
7023
  msgid "Insert a label for this option"
7024
  msgstr "Inserir uma etiqueta para esta opção"
7025
 
7026
- #: app/libraries/main.php:3175
7027
  msgid "Free"
7028
  msgstr "Grátis"
7029
 
7030
- #: app/libraries/main.php:3781 app/libraries/main.php:5524
7031
  #, fuzzy
7032
  #| msgid "M.E. Calendar"
7033
  msgid "M.E. Calender"
7034
  msgstr "Calendário E.M."
7035
 
7036
- #: app/libraries/main.php:3936
7037
  #, php-format
7038
  msgid "Copy of %s"
7039
  msgstr "Cópia de %s"
7040
 
7041
- #: app/libraries/main.php:4651
7042
  msgid "Booked an event."
7043
  msgstr "Um evento reservado."
7044
 
7045
- #: app/libraries/main.php:4692
7046
  #, php-format
7047
  msgid "%s booked %s event."
7048
  msgstr "Evento %s reservado %s."
7049
 
7050
- #: app/libraries/main.php:5257
7051
  msgid "Taxonomies"
7052
  msgstr ""
7053
 
7054
- #: app/libraries/main.php:5259
7055
  msgid "Category Plural Label"
7056
  msgstr ""
7057
 
7058
- #: app/libraries/main.php:5260
7059
  msgid "Category Singular Label"
7060
  msgstr ""
7061
 
7062
- #: app/libraries/main.php:5261
7063
  msgid "Label Plural Label"
7064
  msgstr ""
7065
 
7066
- #: app/libraries/main.php:5262
7067
  msgid "Label Singular Label"
7068
  msgstr ""
7069
 
7070
- #: app/libraries/main.php:5263
7071
  msgid "Location Plural Label"
7072
  msgstr ""
7073
 
7074
- #: app/libraries/main.php:5264
7075
  msgid "Location Singular Label"
7076
  msgstr ""
7077
 
7078
- #: app/libraries/main.php:5265
7079
  msgid "Organizer Plural Label"
7080
  msgstr ""
7081
 
7082
- #: app/libraries/main.php:5266
7083
  msgid "Organizer Singular Label"
7084
  msgstr ""
7085
 
7086
- #: app/libraries/main.php:5267
7087
  #, fuzzy
7088
  #| msgid "Search Labels"
7089
  msgid "Speaker Plural Label"
7090
  msgstr "Pesquisar Etiquetas"
7091
 
7092
- #: app/libraries/main.php:5268
7093
  #, fuzzy
7094
  #| msgid "Popular Labels"
7095
  msgid "Speaker Singular Label"
7096
  msgstr "Etiquetas Populares"
7097
 
7098
- #: app/libraries/main.php:5274
7099
  msgid "Sunday abbreviation"
7100
  msgstr ""
7101
 
7102
- #: app/libraries/main.php:5275
7103
  msgid "Monday abbreviation"
7104
  msgstr ""
7105
 
7106
- #: app/libraries/main.php:5276
7107
  msgid "Tuesday abbreviation"
7108
  msgstr ""
7109
 
7110
- #: app/libraries/main.php:5277
7111
  msgid "Wednesday abbreviation"
7112
  msgstr ""
7113
 
7114
- #: app/libraries/main.php:5278
7115
  msgid "Thursday abbreviation"
7116
  msgstr ""
7117
 
7118
- #: app/libraries/main.php:5279
7119
  msgid "Friday abbreviation"
7120
  msgstr ""
7121
 
7122
- #: app/libraries/main.php:5280
7123
  msgid "Saturday abbreviation"
7124
  msgstr ""
7125
 
7126
- #: app/libraries/main.php:5284
7127
  msgid "Others"
7128
  msgstr ""
7129
 
7130
- #: app/libraries/main.php:5286
7131
  msgid "Booking Success Message"
7132
  msgstr ""
7133
 
7134
- #: app/libraries/main.php:5286
7135
  msgid ""
7136
  "Thanks for your booking. Your tickets booked, booking verification might be "
7137
  "needed, please check your email."
@@ -7139,17 +7247,17 @@ msgstr ""
7139
  "Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
7140
  "reserva é necessária, por favor verifique seu e-mail."
7141
 
7142
- #: app/libraries/main.php:5287 app/widgets/single.php:131
7143
  msgid "Register Button"
7144
  msgstr ""
7145
 
7146
- #: app/libraries/main.php:5287 app/skins/available_spot/tpl.php:225
7147
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7148
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7149
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7150
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7151
- #: app/skins/masonry/render.php:188 app/skins/single.php:768
7152
- #: app/skins/single.php:771 app/skins/single/default.php:255
7153
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7154
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7155
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
@@ -7160,11 +7268,11 @@ msgstr ""
7160
  msgid "REGISTER"
7161
  msgstr "REGISTRAR"
7162
 
7163
- #: app/libraries/main.php:5288
7164
  msgid "View Detail Button"
7165
  msgstr ""
7166
 
7167
- #: app/libraries/main.php:5288 app/skins/carousel/render.php:160
7168
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7169
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7170
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
@@ -7175,85 +7283,85 @@ msgstr ""
7175
  msgid "View Detail"
7176
  msgstr "Ver Detalhes"
7177
 
7178
- #: app/libraries/main.php:5289
7179
  msgid "Event Detail Button"
7180
  msgstr ""
7181
 
7182
- #: app/libraries/main.php:5289 app/skins/countdown/tpl.php:244
7183
  msgid "Event Detail"
7184
  msgstr "Detalhes do Evento"
7185
 
7186
- #: app/libraries/main.php:5291
7187
  msgid "More Info Link"
7188
  msgstr ""
7189
 
7190
- #: app/libraries/main.php:5294
7191
  msgid "Ticket (Singular)"
7192
  msgstr ""
7193
 
7194
- #: app/libraries/main.php:5295
7195
  msgid "Tickets (Plural)"
7196
  msgstr ""
7197
 
7198
- #: app/libraries/main.php:5381
7199
  msgid "EventON"
7200
  msgstr ""
7201
 
7202
- #: app/libraries/main.php:5382
7203
  msgid "The Events Calendar"
7204
  msgstr ""
7205
 
7206
- #: app/libraries/main.php:5383
7207
  msgid "Events Schedule WP Plugin"
7208
  msgstr ""
7209
 
7210
- #: app/libraries/main.php:5384
7211
  msgid "Calendarize It"
7212
  msgstr ""
7213
 
7214
- #: app/libraries/main.php:5385
7215
  #, fuzzy
7216
  #| msgid "No Search Options"
7217
  msgid "Event Espresso"
7218
  msgstr "Sem Opções de Pesquisa"
7219
 
7220
- #: app/libraries/main.php:5386
7221
  #, fuzzy
7222
  #| msgid "Event Repeating"
7223
  msgid "Events Manager (Recurring)"
7224
  msgstr "Repetição de Eventos"
7225
 
7226
- #: app/libraries/main.php:5387
7227
  #, fuzzy
7228
  #| msgid "Modern Events Calendar"
7229
  msgid "Events Manager (Single)"
7230
  msgstr "Calendário de Eventos Moderno"
7231
 
7232
- #: app/libraries/main.php:5461 app/libraries/main.php:5481
7233
  msgid "Confirmed"
7234
  msgstr "Confirmado"
7235
 
7236
- #: app/libraries/main.php:5462 app/libraries/main.php:5489
7237
  msgid "Rejected"
7238
  msgstr "Recusado"
7239
 
7240
- #: app/libraries/main.php:5463 app/libraries/main.php:5485
7241
  msgid "Pending"
7242
  msgstr "Pendente"
7243
 
7244
- #: app/libraries/main.php:5511
7245
  msgid "Waiting"
7246
  msgstr "Aguardando"
7247
 
7248
- #: app/libraries/main.php:5716 app/libraries/render.php:378
7249
  msgid "Skin controller does not exist."
7250
  msgstr "Controlador de pele não existe."
7251
 
7252
- #: app/libraries/main.php:5830
7253
  msgid "Sold Out"
7254
  msgstr ""
7255
 
7256
- #: app/libraries/main.php:5838
7257
  #, fuzzy
7258
  #| msgid "Ticket"
7259
  msgid "Last Few Tickets"
@@ -7263,58 +7371,60 @@ msgstr "Bilhete"
7263
  msgid "Please verify your email."
7264
  msgstr "Por favor, verifique seu e-mail."
7265
 
7266
- #: app/libraries/notifications.php:142
7267
  msgid "Your booking is received."
7268
  msgstr ""
7269
 
7270
- #: app/libraries/notifications.php:249
7271
  msgid "Your booking is confirmed."
7272
  msgstr "Sua reserva foi confirmada."
7273
 
7274
- #: app/libraries/notifications.php:391
7275
  #, fuzzy
7276
  #| msgid "Your booking cannot be canceled."
7277
  msgid "booking canceled."
7278
  msgstr "Sua reserva não pôde ser cancelada."
7279
 
7280
- #: app/libraries/notifications.php:466
7281
  msgid "A new booking is received."
7282
  msgstr "Uma nova reserva foi recebida."
7283
 
7284
- #: app/libraries/notifications.php:657
7285
  msgid "A new event is added."
7286
  msgstr "Um novo evento foi adicionado."
7287
 
7288
- #: app/libraries/notifications.php:726
7289
  #, fuzzy
7290
  #| msgid "The event published."
7291
  msgid "Your event is published."
7292
  msgstr "O evento foi publicado."
7293
 
7294
- #: app/libraries/notifications.php:951 app/libraries/notifications.php:962
7295
- #: app/libraries/notifications.php:964
7296
  msgid "to"
7297
  msgstr ""
7298
 
7299
- #: app/libraries/notifications.php:979 app/modules/export/details.php:46
7300
  msgid "+ Add to Google Calendar"
7301
  msgstr "+ Adicionar ao Calendário do Google"
7302
 
7303
- #: app/libraries/notifications.php:980 app/modules/export/details.php:47
7304
  msgid "+ iCal export"
7305
  msgstr "+ Exportar para iCal"
7306
 
7307
- #: app/libraries/notifications.php:1043
7308
  msgid "Yes"
7309
  msgstr ""
7310
 
7311
- #: app/libraries/notifications.php:1043
7312
  msgid "No"
7313
  msgstr ""
7314
 
7315
- #: app/libraries/skins.php:1000
7316
- msgid "none"
7317
- msgstr ""
 
 
7318
 
7319
  #: app/modules/attendees-list/details.php:36
7320
  msgid "Event Attendees"
@@ -7351,12 +7461,18 @@ msgstr ""
7351
  msgid "Free Booking"
7352
  msgstr ""
7353
 
 
 
 
 
 
 
7354
  #: app/modules/booking/steps/form.php:165
7355
  msgid "Fill other attendees information like the first form."
7356
  msgstr ""
7357
 
7358
  #: app/modules/booking/steps/form.php:179
7359
- #: app/modules/booking/steps/tickets.php:78 app/skins/countdown/tpl.php:145
7360
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7361
  msgid "Next"
7362
  msgstr "Próximo"
@@ -7369,17 +7485,17 @@ msgstr "Obrigado por sua reserva."
7369
  msgid "Book Event"
7370
  msgstr "Reservas do Evento"
7371
 
7372
- #: app/modules/booking/steps/tickets.php:44
7373
  #, php-format
7374
  msgid "Available %s: <span>%s</span>"
7375
  msgstr ""
7376
 
7377
- #: app/modules/booking/steps/tickets.php:48
7378
  #, php-format
7379
- msgid "The %s ticket sales has stoped!"
7380
  msgstr ""
7381
 
7382
- #: app/modules/booking/steps/tickets.php:49
7383
  #, php-format
7384
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7385
  msgstr ""
@@ -7400,7 +7516,7 @@ msgstr "Endereço de..."
7400
  msgid "Get Directions"
7401
  msgstr ""
7402
 
7403
- #: app/modules/links/details.php:17 app/skins/single.php:455
7404
  msgid "Share this event"
7405
  msgstr "Compartilhar Este Evento"
7406
 
@@ -7427,7 +7543,7 @@ msgstr "Próxima Ocorrência"
7427
  msgid "Go to occurrence page"
7428
  msgstr "Ir para a página da ocorrência"
7429
 
7430
- #: app/modules/next-event/details.php:98 app/skins/single.php:741
7431
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7432
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7433
  msgid "Time"
@@ -7555,27 +7671,27 @@ msgstr "Sem Eventos"
7555
  msgid "Home"
7556
  msgstr ""
7557
 
7558
- #: app/skins/single.php:538 app/skins/single/default.php:51
7559
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7560
  #: app/skins/single/modern.php:265
7561
  msgid "Sold out!"
7562
  msgstr ""
7563
 
7564
- #: app/skins/single.php:816 app/skins/single.php:871
7565
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7566
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7567
  #: app/skins/single/modern.php:44
7568
  msgid "Phone"
7569
  msgstr "Fone"
7570
 
7571
- #: app/skins/single.php:830 app/skins/single.php:885
7572
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7573
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7574
  #: app/skins/single/modern.php:58
7575
  msgid "Website"
7576
  msgstr "Website"
7577
 
7578
- #: app/skins/single.php:955
7579
  #, fuzzy
7580
  #| msgid "No Search Options"
7581
  msgid "Speakers:"
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
6
+ "PO-Revision-Date: 2020-01-22 10:50+0330\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
277
  msgid "Add New Event"
278
  msgstr "Adicionar Novo Evento"
279
 
280
+ #: app/features/events.php:161 app/features/ix.php:3889
281
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
282
  msgid "No events found!"
283
  msgstr "Nenhum evento encontrado!"
312
  #: app/features/mec/meta_boxes/search_form.php:575
313
  #: app/features/mec/meta_boxes/search_form.php:672
314
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
315
+ #: app/features/search.php:67 app/libraries/main.php:5278
316
+ #: app/libraries/skins.php:858 app/skins/single.php:566
317
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
318
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
319
  #: app/skins/single/modern.php:113
322
 
323
  #: app/features/events.php:183 app/features/events.php:3275
324
  #: app/features/fes/form.php:757 app/features/mec.php:402
325
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
326
  msgid "Categories"
327
  msgstr "Categorias"
328
 
411
  msgstr "Repetição de Eventos"
412
 
413
  #: app/features/events.php:333 app/features/events.php:1286
414
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
415
  msgid "Hourly Schedule"
416
  msgstr "Horários da Programação"
417
 
429
 
430
  #: app/features/events.php:336 app/features/events.php:3322
431
  #: app/features/events.php:3513 app/features/events.php:3555
432
+ #: app/features/ix.php:3510 app/features/ix.php:3551
433
  #: app/features/mec/meta_boxes/display_options.php:960
434
  #: app/features/mec/meta_boxes/search_form.php:45
435
  #: app/features/mec/meta_boxes/search_form.php:107
446
  #: app/features/organizers.php:58 app/features/organizers.php:204
447
  #: app/features/organizers.php:260 app/features/organizers.php:262
448
  #: app/features/organizers.php:271 app/features/search.php:75
449
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
450
+ #: app/skins/single.php:812 app/skins/single/default.php:217
451
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
452
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
453
  msgid "Organizer"
454
  msgstr "Organizador"
455
 
456
  #: app/features/events.php:337 app/features/events.php:1172
457
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
458
+ #: app/skins/single.php:589 app/skins/single/default.php:126
459
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
460
  #: app/skins/single/modern.php:208
461
  msgid "Cost"
473
  #: app/features/events.php:3802 app/features/fes.php:223
474
  #: app/features/fes/form.php:689 app/features/labels.php:178
475
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
476
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
477
  #: app/modules/booking/steps/form.php:37
478
  msgid "Name"
479
  msgstr "Nome"
483
  #: app/features/fes.php:223 app/features/fes/form.php:685
484
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
485
  #: app/features/organizers.php:111 app/features/organizers.php:152
486
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
487
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
488
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
489
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
490
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
491
+ #: app/skins/single.php:884 app/skins/single/default.php:234
492
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
493
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
494
  msgid "Email"
501
  #: app/features/events.php:491 app/features/events.php:497
502
  #: app/features/events.php:3323 app/features/events.php:3513
503
  #: app/features/events.php:3555 app/features/fes/form.php:247
504
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
505
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
506
  #: app/features/mec/dashboard.php:400
507
  #: app/features/mec/meta_boxes/display_options.php:48
508
  #: app/features/mec/meta_boxes/display_options.php:228
539
  #: app/features/events.php:583 app/features/events.php:588
540
  #: app/features/events.php:3324 app/features/events.php:3513
541
  #: app/features/events.php:3555 app/features/fes/form.php:287
542
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
543
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
544
  #: app/features/mec/dashboard.php:401
545
  msgid "End Date"
546
  msgstr "Data de Término"
624
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
625
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
626
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
627
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
628
+ #: app/features/mec/notifications.php:277
629
+ #: app/features/mec/notifications.php:380
630
+ #: app/features/mec/notifications.php:486
631
+ #: app/features/mec/notifications.php:587
632
+ #: app/features/mec/notifications.php:598
633
+ #: app/features/mec/notifications.php:704
634
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
635
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
636
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
637
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
647
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
648
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
649
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
650
+ #: app/skins/single.php:674 app/skins/single/default.php:141
651
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
652
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
653
  msgid "Read More"
830
 
831
  #: app/features/events.php:1168 app/features/events.php:3513
832
  #: app/features/events.php:3555 app/features/fes/form.php:727
833
+ #: app/features/ix.php:3510 app/features/ix.php:3551
834
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
835
  #: app/widgets/single.php:103
836
  msgid "Event Cost"
837
  msgstr "Custo do Evento"
849
  #: app/features/events.php:1204 app/features/events.php:2541
850
  #: app/features/fes.php:223 app/features/mec/booking.php:491
851
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
852
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
853
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
854
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
855
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
856
  msgid "Date"
887
  #: app/features/events.php:1437 app/features/events.php:2322
888
  #: app/features/events.php:2369 app/features/events.php:3319
889
  #: app/features/events.php:3513 app/features/events.php:3555
890
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
891
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
892
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
893
  msgid "Title"
894
  msgstr "Título"
901
  #: app/features/events.php:2357 app/features/events.php:2399
902
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
903
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
904
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
905
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
906
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
907
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
908
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
909
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
910
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
911
  msgid "Remove"
912
  msgstr "Remover"
913
 
935
  #: app/features/events.php:1445 app/features/fes/form.php:851
936
  #: app/features/mec.php:410 app/features/mec/modules.php:52
937
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
938
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
939
  #: app/modules/speakers/details.php:18
940
  msgid "Speakers"
941
  msgstr ""
952
  msgstr "Links do Evento"
953
 
954
  #: app/features/events.php:1479 app/features/events.php:1485
955
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
956
  msgid "Event Link"
957
  msgstr "Link do Evento"
958
 
979
  msgstr ""
980
 
981
  #: app/features/events.php:1495 app/features/events.php:1508
982
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
983
+ #: app/skins/single.php:673 app/skins/single/default.php:140
984
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
985
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
986
  #: app/widgets/single.php:107
1013
 
1014
  #: app/features/events.php:1596 app/features/events.php:1849
1015
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1016
+ #: app/modules/booking/steps/tickets.php:40
1017
  #: app/skins/available_spot/tpl.php:160
1018
  msgid "Unlimited"
1019
  msgstr "Ilimitado"
1050
  msgstr ""
1051
 
1052
  #: app/features/events.php:1653 app/libraries/book.php:60
1053
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1054
  msgid "Tickets"
1055
  msgstr "Bilhetes"
1056
 
1073
 
1074
  #: app/features/events.php:1680 app/features/events.php:1955
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1077
  msgid "Start Time"
1078
  msgstr "Horário de Início"
1079
 
1080
  #: app/features/events.php:1739 app/features/events.php:1985
1081
  #: app/features/events.php:3513 app/features/events.php:3555
1082
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1083
  msgid "End Time"
1084
  msgstr "Horário de Término"
1085
 
1111
  msgid "Available Tickets"
1112
  msgstr "Bilhetes Disponíveis"
1113
 
1114
+ #: app/features/events.php:1853 app/features/events.php:2068
1115
  #, fuzzy
1116
  #| msgid "Maximum events"
1117
  msgid "Minimum Ticket e.g. 3"
1118
  msgstr "Máximo de eventos"
1119
 
1120
+ #: app/features/events.php:1856 app/features/events.php:2071
1121
  #, fuzzy
1122
  #| msgid "Maximum events"
1123
  msgid "MinimumTicket"
1124
  msgstr "Máximo de eventos"
1125
 
1126
+ #: app/features/events.php:1858 app/features/events.php:2073
1127
  msgid "Set a number for the minimum ticket reservation"
1128
  msgstr ""
1129
 
1130
+ #: app/features/events.php:1866 app/features/events.php:2081
1131
  msgid "e.g. 0"
1132
  msgstr ""
1133
 
1134
+ #: app/features/events.php:1868 app/features/events.php:2083
1135
  #, fuzzy
1136
  #| msgid "Daily"
1137
  msgid "Day"
1138
  msgstr "Diariamente"
1139
 
1140
+ #: app/features/events.php:1869 app/features/events.php:2084
1141
  msgid "Hour"
1142
  msgstr ""
1143
 
1144
+ #: app/features/events.php:1871 app/features/events.php:2086
1145
  #, php-format
1146
  msgid "Stop selling ticket %s before event start."
1147
  msgstr ""
1167
  #: app/features/mec/meta_boxes/search_form.php:610
1168
  #: app/features/mec/meta_boxes/search_form.php:707
1169
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1170
+ #: app/libraries/skins.php:988
1171
  msgid "Label"
1172
  msgstr "Etiqueta"
1173
 
1237
  msgstr ""
1238
 
1239
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1240
+ #: app/libraries/main.php:2767
1241
  #, fuzzy
1242
  #| msgid "Name"
1243
  msgid "MEC Name"
1244
  msgstr "Nome"
1245
 
1246
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1247
+ #: app/libraries/main.php:2796
1248
  #, fuzzy
1249
  #| msgid "Email"
1250
  msgid "MEC Email"
1251
  msgstr "E-mail"
1252
 
1253
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1254
+ #: app/libraries/main.php:2737
1255
  msgid "Text"
1256
  msgstr "Texto"
1257
 
1258
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1259
  #: app/features/organizers.php:103 app/features/organizers.php:148
1260
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1261
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1262
  msgid "Tel"
1263
  msgstr "Telefone"
1264
 
1265
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1266
+ #: app/libraries/main.php:2855
1267
  msgid "File"
1268
  msgstr ""
1269
 
1270
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1271
+ #: app/libraries/main.php:2942
1272
  msgid "Textarea"
1273
  msgstr "Área de texto"
1274
 
1275
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1276
+ #: app/libraries/main.php:2995
1277
  msgid "Checkboxes"
1278
  msgstr "Caixas de seleção"
1279
 
1280
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1281
+ #: app/libraries/main.php:3039
1282
  msgid "Radio Buttons"
1283
  msgstr "Botões Rádio"
1284
 
1358
  #: app/features/mec/meta_boxes/search_form.php:696
1359
  #: app/features/mec/meta_boxes/search_form.php:703
1360
  #: app/features/mec/meta_boxes/search_form.php:710
1361
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1362
  msgid "Dropdown"
1363
  msgstr "Suspenso"
1364
 
1365
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1366
+ #: app/libraries/main.php:3130
1367
  msgid "Agreement"
1368
  msgstr ""
1369
 
1370
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1371
+ #: app/libraries/main.php:2971
1372
  msgid "Paragraph"
1373
  msgstr "Parágrafo"
1374
 
1397
  msgstr "Participante"
1398
 
1399
  #: app/features/events.php:3321 app/features/events.php:3513
1400
+ #: app/features/events.php:3555 app/features/ix.php:3510
1401
+ #: app/features/ix.php:3551 app/features/locations.php:58
1402
  #: app/features/locations.php:230 app/features/locations.php:287
1403
  #: app/features/locations.php:289 app/features/locations.php:298
1404
  #: app/features/mec/meta_boxes/display_options.php:959
1415
  #: app/features/mec/meta_boxes/search_form.php:679
1416
  #: app/features/mec/settings.php:806 app/features/mec/single.php:212
1417
  #: app/features/search.php:71 app/libraries/main.php:2236
1418
+ #: app/libraries/main.php:5282 app/libraries/skins.php:884
1419
+ #: app/skins/single.php:493 app/skins/single.php:924
1420
  #: app/skins/single/default.php:176 app/skins/single/default.php:394
1421
  #: app/skins/single/m1.php:164 app/skins/single/m2.php:90
1422
  #: app/skins/single/modern.php:97
1457
  msgstr "Duplicar"
1458
 
1459
  #: app/features/events.php:3513 app/features/events.php:3555
1460
+ #: app/features/fes.php:223 app/features/ix.php:3510 app/features/ix.php:3551
1461
  #: app/features/labels.php:177 app/features/locations.php:229
1462
+ #: app/features/organizers.php:203 app/features/speakers.php:268
1463
  msgid "ID"
1464
  msgstr "ID"
1465
 
1466
  #: app/features/events.php:3513 app/features/events.php:3555
1467
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1468
  msgid "Link"
1469
  msgstr "Link"
1470
 
1480
 
1481
  #: app/features/events.php:3808 app/features/fes.php:223
1482
  #: app/features/profile/profile.php:186 app/libraries/main.php:2271
1483
+ #: app/libraries/main.php:5312
1484
  msgid "Ticket"
1485
  msgstr "Bilhete"
1486
 
1658
 
1659
  #: app/features/fes/form.php:783 app/features/labels.php:61
1660
  #: app/features/labels.php:221 app/features/mec.php:403
1661
+ #: app/features/mec/meta_boxes/filter.php:130 app/libraries/main.php:5279
1662
+ #: app/skins/single.php:702 app/skins/single/default.php:155
1663
  #: app/skins/single/default.php:373 app/skins/single/m1.php:73
1664
  #: app/skins/single/modern.php:223
1665
  msgid "Labels"
1738
  msgid "The events are imported successfully!"
1739
  msgstr ""
1740
 
1741
+ #: app/features/ix.php:943
1742
  msgid "Third Party plugin is not installed and activated!"
1743
  msgstr ""
1744
 
1745
+ #: app/features/ix.php:966
1746
  msgid "Third Party plugin is invalid!"
1747
  msgstr ""
1748
 
1749
+ #: app/features/ix.php:2717 app/features/ix.php:2775
1750
  msgid "Both of API key and Calendar ID are required!"
1751
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
1752
 
1753
+ #: app/features/ix.php:2770 app/features/ix.php:3189 app/features/ix.php:3896
1754
  msgid "Please select some events to import!"
1755
  msgstr "Por favor, selecione alguns eventos para importar!"
1756
 
1757
+ #: app/features/ix.php:3131 app/features/ix.php:3194
1758
  #, fuzzy
1759
  #| msgid "Both of API key and Calendar ID are required!"
1760
  msgid "Both of API key and Group URL are required!"
1761
  msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
1762
 
1763
+ #: app/features/ix.php:3433
1764
  msgid "Check at Meetup"
1765
  msgstr ""
1766
 
1767
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1768
  msgid "Organizer Tel"
1769
  msgstr "Telefone do Organizador"
1770
 
1771
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1772
  msgid "Organizer Email"
1773
  msgstr "E-mail do Organizador"
1774
 
1775
+ #: app/features/ix.php:3632
1776
  msgid "All of Client ID, Client Secret and Calendar ID are required!"
1777
  msgstr ""
1778
  "Todos os IDs do cliente, Segredo e ID do Calendário do Cliente são "
1779
  "obrigatórios!"
1780
 
1781
+ #: app/features/ix.php:3655
1782
  #, php-format
1783
  msgid "All seems good! Please click %s for authenticating your app."
1784
  msgstr "Tudo parece ótimo! Clique em %s para autenticar seu aplicativo."
1785
 
1786
+ #: app/features/ix.php:3709
1787
  msgid "All of Client App, Client Secret and Calendar ID are required!"
1788
  msgstr ""
1789
  "Todos os aplicativos, segredo e IDs do calendário do cliente são necessários!"
1790
 
1791
+ #: app/features/ix.php:3825
1792
  #, php-format
1793
  msgid "%s events added to Google Calendar successfully."
1794
  msgstr "Eventos %s adicionados ao Google Calendário com sucesso."
1795
 
1796
+ #: app/features/ix.php:3826
1797
  #, php-format
1798
  msgid "%s previously added events get updated."
1799
  msgstr "Os eventos %s adicionados anteriormente foram atualizados."
1800
 
1801
+ #: app/features/ix.php:3827
1802
  #, php-format
1803
  msgid "%s events failed to add for following reasons: %s"
1804
  msgstr "Os eventos %s não foram adicionados pelas seguintes razões: %s"
1805
 
1806
+ #: app/features/ix.php:3859
1807
  #, fuzzy
1808
  #| msgid "Please insert your facebook page's link."
1809
  msgid "Please insert your Facebook page's link."
1810
  msgstr "Insira o link da sua página do facebook."
1811
 
1812
+ #: app/features/ix.php:3868
1813
  #, fuzzy
1814
  #| msgid ""
1815
  #| "We couldn't recognize your Facebook page. Please check it and provide us "
1821
  "Não foi possível reconhecer sua página do Facebook. Confira e forneça um "
1822
  "link válido para a página do facebook."
1823
 
1824
+ #: app/features/ix.php:3900
1825
  msgid "Please insert your facebook page's link."
1826
  msgstr "Insira o link da sua página do facebook."
1827
 
1828
+ #: app/features/ix.php:3905
1829
  msgid ""
1830
  "We couldn't recognize your Facebook page. Please check it and provide us a "
1831
  "valid facebook page link."
2000
  #: app/features/ix/export_g_calendar.php:72
2001
  #: app/features/ix/export_g_calendar.php:147
2002
  #: app/features/ix/export_g_calendar.php:164
2003
+ #: app/features/mec/notifications.php:131
2004
+ #: app/features/mec/notifications.php:223
2005
+ #: app/features/mec/notifications.php:320
2006
+ #: app/features/mec/notifications.php:635
2007
  msgid "Add to Google Calendar"
2008
  msgstr "Adicionar ao Calendário do Google"
2009
 
2010
  #: app/features/ix/export_g_calendar.php:90 app/features/mec/booking.php:629
2011
+ #: app/features/mec/modules.php:397 app/features/mec/notifications.php:907
2012
  #: app/features/mec/settings.php:1046 app/features/mec/single.php:269
2013
  msgid "Checking ..."
2014
  msgstr "Verificando ...."
2280
 
2281
  #: app/features/ix/sync.php:32 app/features/ix/sync.php:41
2282
  #: app/features/ix/sync.php:52 app/features/ix/sync.php:63
2283
+ #: app/features/mec/notifications.php:540
2284
  #, fuzzy
2285
  msgid "Important Note"
2286
  msgstr "Importar / Exportar"
2462
  msgstr "Imagem Destacada"
2463
 
2464
  #: app/features/labels.php:118 app/features/labels.php:143
2465
+ #: app/libraries/main.php:5528 app/skins/agenda/render.php:43
2466
  #: app/skins/available_spot/tpl.php:43 app/skins/carousel/render.php:46
2467
  #: app/skins/countdown/tpl.php:32 app/skins/cover/tpl.php:33
2468
  #: app/skins/daily_view/render.php:29 app/skins/grid/render.php:53
2481
  msgstr ""
2482
 
2483
  #: app/features/labels.php:180 app/features/locations.php:232
2484
+ #: app/features/organizers.php:206 app/features/speakers.php:272
2485
  #: app/modules/booking/steps/tickets.php:38
2486
  msgid "Count"
2487
  msgstr "Contagem"
2498
 
2499
  #: app/features/locations.php:59 app/features/mec.php:404
2500
  #: app/features/mec/dashboard.php:270 app/features/mec/meta_boxes/filter.php:96
2501
+ #: app/libraries/main.php:5281
2502
  msgid "Locations"
2503
  msgstr "Localizações"
2504
 
2531
 
2532
  #: app/features/locations.php:138 app/features/locations.php:180
2533
  #: app/features/organizers.php:127 app/features/organizers.php:160
2534
+ #: app/features/speakers.php:167 app/features/speakers.php:216
2535
  msgid "Thumbnail"
2536
  msgstr "Miniatura"
2537
 
2538
  #: app/features/locations.php:143 app/features/locations.php:183
2539
  #: app/features/organizers.php:132 app/features/organizers.php:163
2540
+ #: app/features/speakers.php:172 app/features/speakers.php:219
2541
  msgid "Upload/Add image"
2542
  msgstr "Enviar/Adicionar imagem"
2543
 
2545
  #: app/features/locations.php:340 app/features/locations.php:347
2546
  #: app/features/organizers.php:133 app/features/organizers.php:164
2547
  #: app/features/organizers.php:299 app/features/organizers.php:306
2548
+ #: app/features/speakers.php:173 app/features/speakers.php:220
2549
  msgid "Remove image"
2550
  msgstr "Remover imagem"
2551
 
2605
  msgid "Don't show map in single event page"
2606
  msgstr "Não mostrar mapa na página de evento individual"
2607
 
2608
+ #: app/features/locations.php:356 app/libraries/main.php:5315
2609
  #, fuzzy
2610
  #| msgid "Search Locations"
2611
  msgid "Other Locations"
2630
  msgid "Troubleshooting"
2631
  msgstr ""
2632
 
2633
+ #: app/features/mec.php:255 app/libraries/notifications.php:933
2634
  #, php-format
2635
  msgid "%s to %s"
2636
  msgstr "%s para %s"
2666
 
2667
  #: app/features/mec.php:405 app/features/mec/dashboard.php:277
2668
  #: app/features/mec/meta_boxes/filter.php:113 app/features/organizers.php:59
2669
+ #: app/libraries/main.php:5283
2670
  msgid "Organizers"
2671
  msgstr "Organizadores"
2672
 
2788
  #: app/features/mec/modules.php:25 app/features/mec/modules.php:362
2789
  #: app/features/mec/modules.php:372 app/features/mec/modules.php:414
2790
  #: app/features/mec/modules.php:428 app/features/mec/notifications.php:14
2791
+ #: app/features/mec/notifications.php:816
2792
+ #: app/features/mec/notifications.php:828
2793
+ #: app/features/mec/notifications.php:924
2794
+ #: app/features/mec/notifications.php:938 app/features/mec/settings.php:39
2795
  #: app/features/mec/settings.php:995 app/features/mec/settings.php:1005
2796
  #: app/features/mec/settings.php:1063 app/features/mec/settings.php:1077
2797
  #: app/features/mec/single.php:17 app/features/mec/single.php:234
2912
  msgid "Enable Express Attendees Form"
2913
  msgstr ""
2914
 
2915
+ #: app/features/mec/booking.php:186
2916
  msgid "Attendees Form"
2917
  msgstr "Formulário de Participantes"
2918
 
2946
  msgid "Auto verification for paid bookings"
2947
  msgstr "Auto verificação para reservas pagas"
2948
 
2949
+ #: app/features/mec/booking.php:235 app/features/mec/notifications.php:230
2950
  #: app/libraries/main.php:579
2951
  msgid "Booking Confirmation"
2952
  msgstr "Confirmação de Reserva"
3014
  msgstr ""
3015
 
3016
  #: app/features/mec/booking.php:624 app/features/mec/messages.php:78
3017
+ #: app/features/mec/modules.php:392 app/features/mec/notifications.php:902
3018
  #: app/features/mec/settings.php:1041 app/features/mec/single.php:264
3019
  #: app/features/mec/styles.php:60 app/features/mec/styling.php:296
3020
  msgid "Saved"
3021
  msgstr "Salvo"
3022
 
3023
  #: app/features/mec/booking.php:625 app/features/mec/messages.php:79
3024
+ #: app/features/mec/modules.php:393 app/features/mec/notifications.php:903
3025
  #: app/features/mec/settings.php:1042 app/features/mec/single.php:265
3026
  #: app/features/mec/styles.php:61 app/features/mec/styling.php:297
3027
  msgid "Settings Saved!"
3029
 
3030
  #: app/features/mec/booking.php:627 app/features/mec/booking.php:649
3031
  #: app/features/mec/modules.php:395 app/features/mec/modules.php:417
3032
+ #: app/features/mec/notifications.php:905
3033
+ #: app/features/mec/notifications.php:927 app/features/mec/settings.php:1044
3034
  #: app/features/mec/settings.php:1066 app/features/mec/single.php:267
3035
+ #: app/features/mec/single.php:289 app/libraries/main.php:5527
3036
  msgid "Verified"
3037
  msgstr "Verificado"
3038
 
3039
  #: app/features/mec/booking.php:651 app/features/mec/modules.php:419
3040
+ #: app/features/mec/notifications.php:929 app/features/mec/settings.php:1068
3041
  #: app/features/mec/single.php:291
3042
  msgid "Please Refresh Page"
3043
  msgstr "Por favor, Atualize a Página"
4171
  #: app/features/mec/meta_boxes/search_form.php:693
4172
  #: app/features/mec/settings.php:819 app/features/mec/single.php:217
4173
  #: app/features/search.php:79 app/features/speakers.php:61
4174
+ #: app/features/speakers.php:269 app/libraries/main.php:5286
4175
+ #: app/libraries/skins.php:936
4176
  msgid "Speaker"
4177
  msgstr ""
4178
 
4188
  #: app/features/mec/meta_boxes/search_form.php:603
4189
  #: app/features/mec/meta_boxes/search_form.php:700
4190
  #: app/features/mec/settings.php:826 app/features/mec/single.php:226
4191
+ #: app/features/search.php:83 app/libraries/skins.php:962
4192
  #, fuzzy
4193
  #| msgid "Tags"
4194
  msgid "Tag"
4446
  msgid "It sends to attendee after booking for notifying him/her."
4447
  msgstr "Ele envia ao participante após a reserva para notificá-lo."
4448
 
4449
+ #: app/features/mec/notifications.php:44 app/features/mec/notifications.php:141
4450
+ #: app/features/mec/notifications.php:233
4451
+ #: app/features/mec/notifications.php:336
4452
+ #: app/features/mec/notifications.php:442
4453
+ #: app/features/mec/notifications.php:543
4454
+ #: app/features/mec/notifications.php:660
4455
+ #: app/features/mec/notifications.php:743 app/features/mec/report.php:49
4456
  msgid "Email Subject"
4457
  msgstr "Assunto do E-mail"
4458
 
4459
+ #: app/features/mec/notifications.php:50 app/features/mec/notifications.php:57
4460
+ #: app/features/mec/notifications.php:147
4461
+ #: app/features/mec/notifications.php:154
4462
+ #: app/features/mec/notifications.php:239
4463
+ #: app/features/mec/notifications.php:246
4464
+ #: app/features/mec/notifications.php:342
4465
+ #: app/features/mec/notifications.php:349
4466
+ #: app/features/mec/notifications.php:448
4467
+ #: app/features/mec/notifications.php:455
4468
+ #: app/features/mec/notifications.php:549
4469
+ #: app/features/mec/notifications.php:556
4470
+ #: app/features/mec/notifications.php:666
4471
+ #: app/features/mec/notifications.php:673
4472
+ #: app/features/mec/notifications.php:749
4473
+ #: app/features/mec/notifications.php:756
4474
+ msgid "Receiver Users"
4475
+ msgstr ""
4476
+
4477
+ #: app/features/mec/notifications.php:58 app/features/mec/notifications.php:155
4478
+ #: app/features/mec/notifications.php:247
4479
+ #: app/features/mec/notifications.php:350
4480
+ #: app/features/mec/notifications.php:456
4481
+ #: app/features/mec/notifications.php:557
4482
+ #: app/features/mec/notifications.php:674
4483
+ #: app/features/mec/notifications.php:757
4484
+ msgid "Select your desired users to send a copy of email to them!"
4485
+ msgstr ""
4486
+
4487
+ #: app/features/mec/notifications.php:67 app/features/mec/notifications.php:74
4488
+ #: app/features/mec/notifications.php:164
4489
+ #: app/features/mec/notifications.php:171
4490
+ #: app/features/mec/notifications.php:256
4491
+ #: app/features/mec/notifications.php:263
4492
+ #: app/features/mec/notifications.php:359
4493
+ #: app/features/mec/notifications.php:366
4494
+ #: app/features/mec/notifications.php:465
4495
+ #: app/features/mec/notifications.php:472
4496
+ #: app/features/mec/notifications.php:566
4497
+ #: app/features/mec/notifications.php:573
4498
+ #: app/features/mec/notifications.php:683
4499
+ #: app/features/mec/notifications.php:690
4500
+ #: app/features/mec/notifications.php:766
4501
+ #: app/features/mec/notifications.php:773
4502
+ msgid "Receiver Roles"
4503
+ msgstr ""
4504
+
4505
+ #: app/features/mec/notifications.php:75 app/features/mec/notifications.php:172
4506
+ #: app/features/mec/notifications.php:264
4507
+ #: app/features/mec/notifications.php:367
4508
+ #: app/features/mec/notifications.php:473
4509
+ #: app/features/mec/notifications.php:574
4510
+ #: app/features/mec/notifications.php:691
4511
+ #: app/features/mec/notifications.php:774
4512
+ msgid "Select users a specific role."
4513
+ msgstr ""
4514
+
4515
+ #: app/features/mec/notifications.php:83 app/features/mec/notifications.php:87
4516
+ #: app/features/mec/notifications.php:180
4517
+ #: app/features/mec/notifications.php:184
4518
+ #: app/features/mec/notifications.php:272
4519
+ #: app/features/mec/notifications.php:276
4520
+ #: app/features/mec/notifications.php:375
4521
+ #: app/features/mec/notifications.php:379
4522
+ #: app/features/mec/notifications.php:481
4523
+ #: app/features/mec/notifications.php:485
4524
+ #: app/features/mec/notifications.php:582
4525
+ #: app/features/mec/notifications.php:586
4526
+ #: app/features/mec/notifications.php:597
4527
+ #: app/features/mec/notifications.php:699
4528
+ #: app/features/mec/notifications.php:703
4529
+ #: app/features/mec/notifications.php:782
4530
+ #: app/features/mec/notifications.php:786
4531
  msgid "Custom Recipients"
4532
  msgstr "Personalizar Recipientes"
4533
 
4534
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
4535
+ #: app/features/mec/notifications.php:277
4536
+ #: app/features/mec/notifications.php:380
4537
+ #: app/features/mec/notifications.php:486
4538
+ #: app/features/mec/notifications.php:587
4539
+ #: app/features/mec/notifications.php:598
4540
+ #: app/features/mec/notifications.php:704
4541
+ #: app/features/mec/notifications.php:787
4542
  msgid "Insert comma separated emails for multiple recipients."
4543
  msgstr "Insira e-mails separados por vírgula para vários destinatários."
4544
 
4545
+ #: app/features/mec/notifications.php:95 app/features/mec/notifications.php:391
4546
+ #: app/features/mec/notifications.php:493
4547
  msgid "Send the email to event organizer"
4548
  msgstr "Envie o e-mail para organizador do evento"
4549
 
4550
+ #: app/features/mec/notifications.php:98 app/features/mec/notifications.php:191
4551
+ #: app/features/mec/notifications.php:287
4552
+ #: app/features/mec/notifications.php:398
4553
+ #: app/features/mec/notifications.php:496
4554
+ #: app/features/mec/notifications.php:604
4555
+ #: app/features/mec/notifications.php:710
4556
+ #: app/features/mec/notifications.php:793
4557
  msgid "Email Content"
4558
  msgstr "Conteúdo do E-mail"
4559
 
4560
+ #: app/features/mec/notifications.php:101
4561
+ #: app/features/mec/notifications.php:194
4562
+ #: app/features/mec/notifications.php:290
4563
+ #: app/features/mec/notifications.php:401
4564
+ #: app/features/mec/notifications.php:499
4565
+ #: app/features/mec/notifications.php:607
4566
+ #: app/features/mec/notifications.php:713
4567
+ #: app/features/mec/notifications.php:796 app/features/mec/report.php:51
4568
  msgid "You can use following placeholders"
4569
  msgstr "Você pode usar os seguintes espaços reservados"
4570
 
4571
+ #: app/features/mec/notifications.php:103
4572
+ #: app/features/mec/notifications.php:196
4573
+ #: app/features/mec/notifications.php:292
4574
+ #: app/features/mec/notifications.php:403
4575
+ #: app/features/mec/notifications.php:501
4576
+ #: app/features/mec/notifications.php:609
4577
  msgid "First name of attendee"
4578
  msgstr "Primeiro nome do participante"
4579
 
4580
+ #: app/features/mec/notifications.php:104
4581
+ #: app/features/mec/notifications.php:197
4582
+ #: app/features/mec/notifications.php:293
4583
+ #: app/features/mec/notifications.php:404
4584
+ #: app/features/mec/notifications.php:502
4585
+ #: app/features/mec/notifications.php:610
4586
  msgid "Last name of attendee"
4587
  msgstr "Último nome do participante"
4588
 
4589
+ #: app/features/mec/notifications.php:105
4590
+ #: app/features/mec/notifications.php:198
4591
+ #: app/features/mec/notifications.php:294
4592
+ #: app/features/mec/notifications.php:405
4593
+ #: app/features/mec/notifications.php:503
4594
+ #: app/features/mec/notifications.php:611
4595
  msgid "Email of attendee"
4596
  msgstr "E-mail do participante"
4597
 
4598
+ #: app/features/mec/notifications.php:106
4599
+ #: app/features/mec/notifications.php:199
4600
+ #: app/features/mec/notifications.php:295
4601
+ #: app/features/mec/notifications.php:406
4602
+ #: app/features/mec/notifications.php:504
4603
+ #: app/features/mec/notifications.php:612
4604
  msgid "Booked date of event"
4605
  msgstr "Data do evento reservado"
4606
 
4607
+ #: app/features/mec/notifications.php:107
4608
+ #: app/features/mec/notifications.php:200
4609
+ #: app/features/mec/notifications.php:296
4610
+ #: app/features/mec/notifications.php:407
4611
+ #: app/features/mec/notifications.php:505
4612
+ #: app/features/mec/notifications.php:613
4613
  #, fuzzy
4614
  #| msgid "Booked date of event"
4615
  msgid "Booked time of event"
4616
  msgstr "Data do evento reservado"
4617
 
4618
+ #: app/features/mec/notifications.php:108
4619
+ #: app/features/mec/notifications.php:201
4620
+ #: app/features/mec/notifications.php:297
4621
+ #: app/features/mec/notifications.php:408
4622
+ #: app/features/mec/notifications.php:506
4623
+ #: app/features/mec/notifications.php:614
4624
  msgid "Booking Price"
4625
  msgstr ""
4626
 
4627
+ #: app/features/mec/notifications.php:109
4628
+ #: app/features/mec/notifications.php:202
4629
+ #: app/features/mec/notifications.php:298
4630
+ #: app/features/mec/notifications.php:409
4631
+ #: app/features/mec/notifications.php:507
4632
+ #: app/features/mec/notifications.php:615
4633
  msgid "Date and time of placing booking"
4634
  msgstr ""
4635
 
4636
+ #: app/features/mec/notifications.php:110
4637
+ #: app/features/mec/notifications.php:203
4638
+ #: app/features/mec/notifications.php:299
4639
+ #: app/features/mec/notifications.php:410
4640
+ #: app/features/mec/notifications.php:508
4641
+ #: app/features/mec/notifications.php:616
4642
+ #: app/features/mec/notifications.php:721
4643
+ #: app/features/mec/notifications.php:804
4644
  msgid "Your website title"
4645
  msgstr "Título do seu site"
4646
 
4647
+ #: app/features/mec/notifications.php:111
4648
+ #: app/features/mec/notifications.php:204
4649
+ #: app/features/mec/notifications.php:300
4650
+ #: app/features/mec/notifications.php:411
4651
+ #: app/features/mec/notifications.php:509
4652
+ #: app/features/mec/notifications.php:617
4653
+ #: app/features/mec/notifications.php:722
4654
+ #: app/features/mec/notifications.php:805
4655
  msgid "Your website URL"
4656
  msgstr "URL do seu site"
4657
 
4658
+ #: app/features/mec/notifications.php:112
4659
+ #: app/features/mec/notifications.php:205
4660
+ #: app/features/mec/notifications.php:301
4661
+ #: app/features/mec/notifications.php:412
4662
+ #: app/features/mec/notifications.php:510
4663
+ #: app/features/mec/notifications.php:618
4664
+ #: app/features/mec/notifications.php:723
4665
+ #: app/features/mec/notifications.php:806
4666
  msgid "Your website description"
4667
  msgstr "Descrição do seu site"
4668
 
4669
+ #: app/features/mec/notifications.php:113
4670
+ #: app/features/mec/notifications.php:206
4671
+ #: app/features/mec/notifications.php:302
4672
+ #: app/features/mec/notifications.php:413
4673
+ #: app/features/mec/notifications.php:511
4674
+ #: app/features/mec/notifications.php:619
4675
  msgid "Event title"
4676
  msgstr "Título do evento"
4677
 
4678
+ #: app/features/mec/notifications.php:114
4679
+ #: app/features/mec/notifications.php:207
4680
+ #: app/features/mec/notifications.php:303
4681
+ #: app/features/mec/notifications.php:414
4682
+ #: app/features/mec/notifications.php:512
4683
+ #: app/features/mec/notifications.php:620
4684
  #, fuzzy
4685
  #| msgid "Event Link"
4686
  msgid "Event link"
4687
  msgstr "Link do Evento"
4688
 
4689
+ #: app/features/mec/notifications.php:115
4690
+ #: app/features/mec/notifications.php:208
4691
+ #: app/features/mec/notifications.php:304
4692
+ #: app/features/mec/notifications.php:717
4693
+ #: app/features/mec/notifications.php:800
4694
  #, fuzzy
4695
  #| msgid "Start Date"
4696
  msgid "Event Start Date"
4697
  msgstr "Data Inicial"
4698
 
4699
+ #: app/features/mec/notifications.php:116
4700
+ #: app/features/mec/notifications.php:209
4701
+ #: app/features/mec/notifications.php:305
4702
+ #: app/features/mec/notifications.php:718
4703
+ #: app/features/mec/notifications.php:801
4704
  #, fuzzy
4705
  #| msgid "End Date"
4706
  msgid "Event End Date"
4707
  msgstr "Data de Término"
4708
 
4709
+ #: app/features/mec/notifications.php:117
4710
+ #: app/features/mec/notifications.php:210
4711
+ #: app/features/mec/notifications.php:306
4712
+ #: app/features/mec/notifications.php:415
4713
+ #: app/features/mec/notifications.php:513
4714
+ #: app/features/mec/notifications.php:621
4715
  #, fuzzy
4716
  #| msgid "Organizer name of booked event"
4717
  msgid "Speaker name of booked event"
4718
  msgstr "Nome do organizador do evento reservado"
4719
 
4720
+ #: app/features/mec/notifications.php:118
4721
+ #: app/features/mec/notifications.php:211
4722
+ #: app/features/mec/notifications.php:307
4723
+ #: app/features/mec/notifications.php:416
4724
+ #: app/features/mec/notifications.php:514
4725
+ #: app/features/mec/notifications.php:622
4726
  msgid "Organizer name of booked event"
4727
  msgstr "Nome do organizador do evento reservado"
4728
 
4729
+ #: app/features/mec/notifications.php:119
4730
+ #: app/features/mec/notifications.php:212
4731
+ #: app/features/mec/notifications.php:308
4732
+ #: app/features/mec/notifications.php:417
4733
+ #: app/features/mec/notifications.php:515
4734
+ #: app/features/mec/notifications.php:623
4735
  msgid "Organizer tel of booked event"
4736
  msgstr "Telefone do organizador do evento reservado"
4737
 
4738
+ #: app/features/mec/notifications.php:120
4739
+ #: app/features/mec/notifications.php:213
4740
+ #: app/features/mec/notifications.php:309
4741
+ #: app/features/mec/notifications.php:418
4742
+ #: app/features/mec/notifications.php:516
4743
+ #: app/features/mec/notifications.php:624
4744
  msgid "Organizer email of booked event"
4745
  msgstr "E-mail do organizador do evento reservado"
4746
 
4747
+ #: app/features/mec/notifications.php:121
4748
+ #: app/features/mec/notifications.php:214
4749
+ #: app/features/mec/notifications.php:310
4750
+ #: app/features/mec/notifications.php:419
4751
+ #: app/features/mec/notifications.php:517
4752
+ #: app/features/mec/notifications.php:625
4753
  msgid "Location name of booked event"
4754
  msgstr "Nome da localização do evento reservado"
4755
 
4756
+ #: app/features/mec/notifications.php:122
4757
+ #: app/features/mec/notifications.php:215
4758
+ #: app/features/mec/notifications.php:311
4759
+ #: app/features/mec/notifications.php:420
4760
+ #: app/features/mec/notifications.php:518
4761
+ #: app/features/mec/notifications.php:626
4762
  msgid "Location address of booked event"
4763
  msgstr "Endereço da localização do evento reservado"
4764
 
4765
+ #: app/features/mec/notifications.php:123
4766
+ #: app/features/mec/notifications.php:216
4767
+ #: app/features/mec/notifications.php:312
4768
+ #: app/features/mec/notifications.php:421
4769
+ #: app/features/mec/notifications.php:519
4770
+ #: app/features/mec/notifications.php:627
4771
  #, fuzzy
4772
  #| msgid "Organizer name of booked event"
4773
  msgid "Featured image of booked event"
4774
  msgstr "Nome do organizador do evento reservado"
4775
 
4776
+ #: app/features/mec/notifications.php:124
4777
+ #: app/features/mec/notifications.php:423
4778
+ #: app/features/mec/notifications.php:521
4779
  msgid "Full Attendee info such as booking form data, name, email etc."
4780
  msgstr ""
4781
  "Informação completa do participante, tais como dados do formulário de "
4782
  "reserva, nome, e-mail etc."
4783
 
4784
+ #: app/features/mec/notifications.php:125
4785
+ #: app/features/mec/notifications.php:314
4786
+ #: app/features/mec/notifications.php:629
4787
  msgid "Invoice Link"
4788
  msgstr ""
4789
 
4790
+ #: app/features/mec/notifications.php:126
4791
+ #: app/features/mec/notifications.php:218
4792
+ #: app/features/mec/notifications.php:315
4793
+ #: app/features/mec/notifications.php:424
4794
+ #: app/features/mec/notifications.php:522
4795
+ #: app/features/mec/notifications.php:630
4796
  msgid "Total Attendees"
4797
  msgstr ""
4798
 
4799
+ #: app/features/mec/notifications.php:127
4800
+ #: app/features/mec/notifications.php:219
4801
+ #: app/features/mec/notifications.php:316
4802
+ #: app/features/mec/notifications.php:425
4803
+ #: app/features/mec/notifications.php:523
4804
+ #: app/features/mec/notifications.php:631
4805
+ #, fuzzy
4806
+ #| msgid "Tickets"
4807
+ msgid "Amount of Booked Tickets"
4808
+ msgstr "Bilhetes"
4809
+
4810
+ #: app/features/mec/notifications.php:128
4811
+ #: app/features/mec/notifications.php:220
4812
+ #: app/features/mec/notifications.php:317
4813
+ #: app/features/mec/notifications.php:632
4814
  #, fuzzy
4815
  #| msgid "Ticket Name"
4816
  msgid "Ticket name"
4817
  msgstr "Nome do Bilhete"
4818
 
4819
+ #: app/features/mec/notifications.php:129
4820
+ #: app/features/mec/notifications.php:221
4821
+ #: app/features/mec/notifications.php:318
4822
+ #: app/features/mec/notifications.php:633
4823
  #, fuzzy
4824
  #| msgid "Ticket Name"
4825
  msgid "Ticket time"
4826
  msgstr "Nome do Bilhete"
4827
 
4828
+ #: app/features/mec/notifications.php:130
4829
+ #: app/features/mec/notifications.php:222
4830
+ #: app/features/mec/notifications.php:319
4831
+ #: app/features/mec/notifications.php:634
4832
  msgid "Download ICS file"
4833
  msgstr ""
4834
 
4835
+ #: app/features/mec/notifications.php:138 app/libraries/main.php:578
4836
  msgid "Booking Verification"
4837
  msgstr "Verificação de Reserva"
4838
 
4839
+ #: app/features/mec/notifications.php:139
4840
  msgid "It sends to attendee email for verifying their booking/email."
4841
  msgstr ""
4842
  "Ele envia para o e-mail do participante para verificar sua reserva por e-"
4843
  "mail."
4844
 
4845
+ #: app/features/mec/notifications.php:217
4846
  msgid "Email/Booking verification link."
4847
  msgstr "Link do e-mail de confirmação de reserva."
4848
 
4849
+ #: app/features/mec/notifications.php:231
4850
  msgid "It sends to attendee after confirming the booking by admin."
4851
  msgstr ""
4852
  "Ele envia para o participante depois de confirmar a reserva pelo "
4853
  "administrador."
4854
 
4855
+ #: app/features/mec/notifications.php:284
4856
  msgid "Send One Single Email Only To First Attendee"
4857
  msgstr ""
4858
 
4859
+ #: app/features/mec/notifications.php:313
4860
+ #: app/features/mec/notifications.php:628
4861
  msgid "Booking cancellation link."
4862
  msgstr "Link de cancelamento da reserva."
4863
 
4864
+ #: app/features/mec/notifications.php:326 app/libraries/main.php:580
 
 
 
 
 
 
4865
  #, fuzzy
4866
  #| msgid "Booking cancellation link."
4867
  msgid "Booking Cancellation"
4868
  msgstr "Link de cancelamento da reserva."
4869
 
4870
+ #: app/features/mec/notifications.php:330
4871
  #, fuzzy
4872
  #| msgid "Enable new event notification"
4873
  msgid "Enable cancellation notification"
4874
  msgstr "Habilitar notificação de novo evento"
4875
 
4876
+ #: app/features/mec/notifications.php:334
4877
  #, fuzzy
4878
  #| msgid "It sends to attendee after booking for notifying him/her."
4879
  msgid ""
4881
  "them."
4882
  msgstr "Ele envia ao participante após a reserva para notificá-lo."
4883
 
4884
+ #: app/features/mec/notifications.php:387
4885
+ #: app/features/mec/notifications.php:654
4886
  #, fuzzy
4887
  #| msgid "Send the email to event organizer"
4888
  msgid "Send the email to admin"
4889
  msgstr "Envie o e-mail para organizador do evento"
4890
 
4891
+ #: app/features/mec/notifications.php:395
4892
  #, fuzzy
4893
  #| msgid "Send the email to event organizer"
4894
  msgid "Send the email to booking user"
4895
  msgstr "Envie o e-mail para organizador do evento"
4896
 
4897
+ #: app/features/mec/notifications.php:422
4898
+ #: app/features/mec/notifications.php:520
4899
  msgid "Admin booking management link."
4900
  msgstr "Gerenciamento do link da administração de reservas."
4901
 
4902
+ #: app/features/mec/notifications.php:432 app/libraries/main.php:582
4903
  msgid "Admin"
4904
  msgstr ""
4905
 
4906
+ #: app/features/mec/notifications.php:436
4907
  #, fuzzy
4908
  #| msgid "Enable new event notification"
4909
  msgid "Enable admin notification"
4910
  msgstr "Habilitar notificação de novo evento"
4911
 
4912
+ #: app/features/mec/notifications.php:440
4913
  msgid "It sends to admin to notify him/her that a new booking received."
4914
  msgstr ""
4915
  "Ele envia para administrador para notificá-lo que recebeu uma nova reserva."
4916
 
4917
+ #: app/features/mec/notifications.php:530 app/libraries/main.php:581
4918
+ #: app/libraries/notifications.php:603
4919
  msgid "Booking Reminder"
4920
  msgstr ""
4921
 
4922
+ #: app/features/mec/notifications.php:534
4923
  msgid "Enable booking reminder notification"
4924
  msgstr ""
4925
 
4926
+ #: app/features/mec/notifications.php:540
4927
  #, php-format
4928
  msgid ""
4929
  "Set a cronjob to call %s file once per day otherwise it won't send the "
4931
  "send the reminders multiple times."
4932
  msgstr ""
4933
 
4934
+ #: app/features/mec/notifications.php:540
4935
  msgid "only once per day"
4936
  msgstr ""
4937
 
4938
+ #: app/features/mec/notifications.php:593
4939
  msgid "Days"
4940
  msgstr ""
4941
 
4942
+ #: app/features/mec/notifications.php:644 app/features/mec/support-page.php:109
4943
  #: app/libraries/main.php:583
4944
  msgid "New Event"
4945
  msgstr "Novo Evento"
4946
 
4947
+ #: app/features/mec/notifications.php:648
4948
  msgid "Enable new event notification"
4949
  msgstr "Habilitar notificação de novo evento"
4950
 
4951
+ #: app/features/mec/notifications.php:658
4952
  msgid ""
4953
  "It sends after adding a new event from frontend event submission or from "
4954
  "website backend."
4956
  "Ele envia depois de adicionar um novo evento a partir da submissão do evento "
4957
  "no site ou a partir da administração do site."
4958
 
4959
+ #: app/features/mec/notifications.php:715
4960
+ #: app/features/mec/notifications.php:798
4961
  msgid "Title of event"
4962
  msgstr "Título do evento"
4963
 
4964
+ #: app/features/mec/notifications.php:716
4965
+ #: app/features/mec/notifications.php:799
4966
  #, fuzzy
4967
  #| msgid "Title of event"
4968
  msgid "Link of event"
4969
  msgstr "Título do evento"
4970
 
4971
+ #: app/features/mec/notifications.php:719
4972
+ #: app/features/mec/notifications.php:802
4973
  msgid "Status of event"
4974
  msgstr "Estado do evento"
4975
 
4976
+ #: app/features/mec/notifications.php:720
4977
+ #: app/features/mec/notifications.php:803 app/features/mec/settings.php:734
4978
  #: app/features/mec/settings.php:738
4979
  msgid "Event Note"
4980
  msgstr "Nota do Evento"
4981
 
4982
+ #: app/features/mec/notifications.php:724
4983
+ #: app/features/mec/notifications.php:807
4984
  msgid "Admin events management link."
4985
  msgstr "Link de gerenciamento da administração de eventos."
4986
 
4987
+ #: app/features/mec/notifications.php:733 app/libraries/main.php:584
4988
  #, fuzzy
4989
  #| msgid "The event published."
4990
  msgid "User Event Publishing"
4991
  msgstr "O evento foi publicado."
4992
 
4993
+ #: app/features/mec/notifications.php:737
4994
  #, fuzzy
4995
  #| msgid "Enable new event notification"
4996
  msgid "Enable user event publishing notification"
4997
  msgstr "Habilitar notificação de novo evento"
4998
 
4999
+ #: app/features/mec/notifications.php:741
5000
  #, fuzzy
5001
  #| msgid ""
5002
  #| "It sends after adding a new event from frontend event submission or from "
5176
  msgstr ""
5177
 
5178
  #: app/features/mec/settings.php:160 app/features/mec/settings.php:170
5179
+ #: app/libraries/main.php:5290
5180
  msgid "Weekdays"
5181
  msgstr "Dias da semana"
5182
 
6449
  msgid "eg. https://webnus.net"
6450
  msgstr "http://webnus.biz"
6451
 
6452
+ #: app/features/organizers.php:312 app/libraries/main.php:5314
6453
+ #: app/skins/single.php:862
6454
  msgid "Other Organizers"
6455
  msgstr ""
6456
 
6457
+ #: app/features/organizers.php:314
6458
  msgid ""
6459
  "You can select extra organizers in addition to main organizer if you like."
6460
  msgstr ""
6475
  msgid "#"
6476
  msgstr ""
6477
 
6478
+ #: app/features/profile/profile.php:56 app/libraries/main.php:3152
6479
  msgid "Status"
6480
  msgstr ""
6481
 
6510
  msgid "No bookings found!"
6511
  msgstr "Nenhuma reserva encontrada!"
6512
 
6513
+ #: app/features/search.php:87 app/libraries/main.php:5280
6514
  msgid "label"
6515
  msgstr ""
6516
 
6537
  msgstr ""
6538
 
6539
  #: app/features/search_bar/search_result.php:11
6540
+ #: app/libraries/notifications.php:947 app/libraries/render.php:448
6541
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:104
6542
+ #: app/skins/single.php:160 app/skins/single.php:753
6543
  #: app/skins/single/default.php:108 app/skins/single/default.php:326
6544
  #: app/skins/single/m1.php:43 app/skins/single/modern.php:193
6545
  msgid "All of the day"
6546
  msgstr "Durante o dia todo"
6547
 
6548
+ #: app/features/speakers.php:111 app/features/speakers.php:188
6549
+ #: app/features/speakers.php:270
6550
  #, fuzzy
6551
  #| msgid "Title"
6552
  msgid "Job Title"
6553
  msgstr "Título"
6554
 
6555
+ #: app/features/speakers.php:114 app/features/speakers.php:189
6556
  msgid "Insert speaker job title."
6557
  msgstr ""
6558
 
6559
+ #: app/features/speakers.php:122 app/features/speakers.php:193
6560
  #, fuzzy
6561
  #| msgid "Insert organizer phone number."
6562
  msgid "Insert speaker phone number."
6563
  msgstr "Insira o número de telefone do organizador."
6564
 
6565
+ #: app/features/speakers.php:130 app/features/speakers.php:197
6566
  #, fuzzy
6567
  #| msgid "Insert organizer email address."
6568
  msgid "Insert speaker email address."
6569
  msgstr "Insira o endereço de e-mail do organizador."
6570
 
6571
+ #: app/features/speakers.php:135 app/features/speakers.php:200
6572
  #, fuzzy
6573
  #| msgid "Facebook Page Link"
6574
  msgid "Facebook Page"
6575
  msgstr "Link da Página do Facebook"
6576
 
6577
+ #: app/features/speakers.php:138 app/features/speakers.php:201
6578
  #, fuzzy
6579
  #| msgid "Import from Facebook Calendar"
6580
  msgid "Insert URL of Facebook Page"
6581
  msgstr "Importar do Calendário do Facebook"
6582
 
6583
+ #: app/features/speakers.php:143 app/features/speakers.php:204
6584
  msgid "Instagram"
6585
  msgstr ""
6586
 
6587
+ #: app/features/speakers.php:146 app/features/speakers.php:205
6588
  #, fuzzy
6589
  #| msgid "Insert -1 for unlimited usage"
6590
  msgid "Insert URL of Instagram"
6591
  msgstr "Digite -1 para uso ilimitado"
6592
 
6593
+ #: app/features/speakers.php:151 app/features/speakers.php:208
6594
+ #, fuzzy
6595
+ #| msgid "Linkedin"
6596
+ msgid "LinkedIn"
6597
+ msgstr "Linkedin"
6598
+
6599
+ #: app/features/speakers.php:154
6600
+ #, fuzzy
6601
+ #| msgid "Insert -1 for unlimited usage"
6602
+ msgid "Insert URL of LinkedIn"
6603
+ msgstr "Digite -1 para uso ilimitado"
6604
+
6605
+ #: app/features/speakers.php:159 app/features/speakers.php:212
6606
  #, fuzzy
6607
  #| msgid "Twitter"
6608
  msgid "Twitter Page"
6609
  msgstr "Twitter"
6610
 
6611
+ #: app/features/speakers.php:162 app/features/speakers.php:213
6612
  #, fuzzy
6613
  #| msgid "Insert -1 for unlimited usage"
6614
  msgid "Insert URL of Twitter Page"
6615
  msgstr "Digite -1 para uso ilimitado"
6616
 
6617
+ #: app/features/speakers.php:209
6618
+ #, fuzzy
6619
+ #| msgid "Insert -1 for unlimited usage"
6620
+ msgid "Insert URL of linkedin"
6621
+ msgstr "Digite -1 para uso ilimitado"
6622
+
6623
+ #: app/features/speakers.php:330
6624
  msgid "Sorry, You must insert speaker name!"
6625
  msgstr ""
6626
 
6627
+ #: app/features/speakers.php:379
6628
  msgid ""
6629
  "Note: You can use the speakers in your event edit/add page > hourly schedule "
6630
  "section and speaker widget section!"
6782
  msgid "Tile View"
6783
  msgstr "Visualização do Slider"
6784
 
6785
+ #: app/libraries/main.php:385 app/libraries/main.php:5292
6786
  msgid "SU"
6787
  msgstr "DOM"
6788
 
6789
+ #: app/libraries/main.php:386 app/libraries/main.php:5293
6790
  msgid "MO"
6791
  msgstr "SEG"
6792
 
6793
+ #: app/libraries/main.php:387 app/libraries/main.php:5294
6794
  msgid "TU"
6795
  msgstr "TER"
6796
 
6797
+ #: app/libraries/main.php:388 app/libraries/main.php:5295
6798
  msgid "WE"
6799
  msgstr "QUA"
6800
 
6801
+ #: app/libraries/main.php:389 app/libraries/main.php:5296
6802
  msgid "TH"
6803
  msgstr "QUI"
6804
 
6805
+ #: app/libraries/main.php:390 app/libraries/main.php:5297
6806
  msgid "FR"
6807
  msgstr "SEX"
6808
 
6809
+ #: app/libraries/main.php:391 app/libraries/main.php:5298
6810
  msgid "SA"
6811
  msgstr "SAB"
6812
 
7073
  msgid "iCal export stopped!"
7074
  msgstr "A exportação iCal parou!"
7075
 
7076
+ #: app/libraries/main.php:2736 app/libraries/main.php:2766
7077
+ #: app/libraries/main.php:2795 app/libraries/main.php:2825
7078
+ #: app/libraries/main.php:2854 app/libraries/main.php:2883
7079
+ #: app/libraries/main.php:2912 app/libraries/main.php:2941
7080
+ #: app/libraries/main.php:2970 app/libraries/main.php:2994
7081
+ #: app/libraries/main.php:3038 app/libraries/main.php:3082
7082
+ #: app/libraries/main.php:3129 app/libraries/main.php:3176
7083
  msgid "Sort"
7084
  msgstr "Ordenar"
7085
 
7086
+ #: app/libraries/main.php:2742 app/libraries/main.php:2772
7087
+ #: app/libraries/main.php:2801 app/libraries/main.php:2831
7088
+ #: app/libraries/main.php:2860 app/libraries/main.php:2889
7089
+ #: app/libraries/main.php:2918 app/libraries/main.php:2947
7090
+ #: app/libraries/main.php:3000 app/libraries/main.php:3044
7091
+ #: app/libraries/main.php:3088 app/libraries/main.php:3135
7092
  msgid "Required Field"
7093
  msgstr "Campo Obrigatório"
7094
 
7095
+ #: app/libraries/main.php:2748 app/libraries/main.php:2778
7096
+ #: app/libraries/main.php:2807 app/libraries/main.php:2837
7097
+ #: app/libraries/main.php:2866 app/libraries/main.php:2895
7098
+ #: app/libraries/main.php:2924 app/libraries/main.php:2953
7099
+ #: app/libraries/main.php:3006 app/libraries/main.php:3050
7100
+ #: app/libraries/main.php:3094 app/libraries/main.php:3141
7101
  msgid "Insert a label for this field"
7102
  msgstr "Inserir uma etiqueta para este campo"
7103
 
7104
+ #: app/libraries/main.php:2976
7105
  msgid "HTML and shortcode are allowed."
7106
  msgstr "HTML e códigos curtos são permitidos."
7107
 
7108
+ #: app/libraries/main.php:3019 app/libraries/main.php:3063
7109
+ #: app/libraries/main.php:3107
7110
  msgid "Option"
7111
  msgstr "Opção"
7112
 
7113
+ #: app/libraries/main.php:3141
7114
  #, php-format
7115
  msgid "Instead of %s, the page title with a link will be show."
7116
  msgstr ""
7117
 
7118
+ #: app/libraries/main.php:3143
7119
  msgid "Agreement Page"
7120
  msgstr ""
7121
 
7122
+ #: app/libraries/main.php:3154
7123
  msgid "Checked by default"
7124
  msgstr ""
7125
 
7126
+ #: app/libraries/main.php:3155
7127
  msgid "Unchecked by default"
7128
  msgstr ""
7129
 
7130
+ #: app/libraries/main.php:3178
7131
  msgid "Insert a label for this option"
7132
  msgstr "Inserir uma etiqueta para esta opção"
7133
 
7134
+ #: app/libraries/main.php:3193
7135
  msgid "Free"
7136
  msgstr "Grátis"
7137
 
7138
+ #: app/libraries/main.php:3799 app/libraries/main.php:5542
7139
  #, fuzzy
7140
  #| msgid "M.E. Calendar"
7141
  msgid "M.E. Calender"
7142
  msgstr "Calendário E.M."
7143
 
7144
+ #: app/libraries/main.php:3954
7145
  #, php-format
7146
  msgid "Copy of %s"
7147
  msgstr "Cópia de %s"
7148
 
7149
+ #: app/libraries/main.php:4669
7150
  msgid "Booked an event."
7151
  msgstr "Um evento reservado."
7152
 
7153
+ #: app/libraries/main.php:4710
7154
  #, php-format
7155
  msgid "%s booked %s event."
7156
  msgstr "Evento %s reservado %s."
7157
 
7158
+ #: app/libraries/main.php:5275
7159
  msgid "Taxonomies"
7160
  msgstr ""
7161
 
7162
+ #: app/libraries/main.php:5277
7163
  msgid "Category Plural Label"
7164
  msgstr ""
7165
 
7166
+ #: app/libraries/main.php:5278
7167
  msgid "Category Singular Label"
7168
  msgstr ""
7169
 
7170
+ #: app/libraries/main.php:5279
7171
  msgid "Label Plural Label"
7172
  msgstr ""
7173
 
7174
+ #: app/libraries/main.php:5280
7175
  msgid "Label Singular Label"
7176
  msgstr ""
7177
 
7178
+ #: app/libraries/main.php:5281
7179
  msgid "Location Plural Label"
7180
  msgstr ""
7181
 
7182
+ #: app/libraries/main.php:5282
7183
  msgid "Location Singular Label"
7184
  msgstr ""
7185
 
7186
+ #: app/libraries/main.php:5283
7187
  msgid "Organizer Plural Label"
7188
  msgstr ""
7189
 
7190
+ #: app/libraries/main.php:5284
7191
  msgid "Organizer Singular Label"
7192
  msgstr ""
7193
 
7194
+ #: app/libraries/main.php:5285
7195
  #, fuzzy
7196
  #| msgid "Search Labels"
7197
  msgid "Speaker Plural Label"
7198
  msgstr "Pesquisar Etiquetas"
7199
 
7200
+ #: app/libraries/main.php:5286
7201
  #, fuzzy
7202
  #| msgid "Popular Labels"
7203
  msgid "Speaker Singular Label"
7204
  msgstr "Etiquetas Populares"
7205
 
7206
+ #: app/libraries/main.php:5292
7207
  msgid "Sunday abbreviation"
7208
  msgstr ""
7209
 
7210
+ #: app/libraries/main.php:5293
7211
  msgid "Monday abbreviation"
7212
  msgstr ""
7213
 
7214
+ #: app/libraries/main.php:5294
7215
  msgid "Tuesday abbreviation"
7216
  msgstr ""
7217
 
7218
+ #: app/libraries/main.php:5295
7219
  msgid "Wednesday abbreviation"
7220
  msgstr ""
7221
 
7222
+ #: app/libraries/main.php:5296
7223
  msgid "Thursday abbreviation"
7224
  msgstr ""
7225
 
7226
+ #: app/libraries/main.php:5297
7227
  msgid "Friday abbreviation"
7228
  msgstr ""
7229
 
7230
+ #: app/libraries/main.php:5298
7231
  msgid "Saturday abbreviation"
7232
  msgstr ""
7233
 
7234
+ #: app/libraries/main.php:5302
7235
  msgid "Others"
7236
  msgstr ""
7237
 
7238
+ #: app/libraries/main.php:5304
7239
  msgid "Booking Success Message"
7240
  msgstr ""
7241
 
7242
+ #: app/libraries/main.php:5304
7243
  msgid ""
7244
  "Thanks for your booking. Your tickets booked, booking verification might be "
7245
  "needed, please check your email."
7247
  "Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
7248
  "reserva é necessária, por favor verifique seu e-mail."
7249
 
7250
+ #: app/libraries/main.php:5305 app/widgets/single.php:131
7251
  msgid "Register Button"
7252
  msgstr ""
7253
 
7254
+ #: app/libraries/main.php:5305 app/skins/available_spot/tpl.php:225
7255
  #: app/skins/carousel/render.php:160 app/skins/carousel/render.php:197
7256
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:169
7257
  #: app/skins/grid/render.php:213 app/skins/grid/render.php:242
7258
  #: app/skins/list/render.php:108 app/skins/list/render.php:194
7259
+ #: app/skins/masonry/render.php:188 app/skins/single.php:774
7260
+ #: app/skins/single.php:777 app/skins/single/default.php:255
7261
  #: app/skins/single/default.php:257 app/skins/single/default.php:473
7262
  #: app/skins/single/default.php:475 app/skins/single/m1.php:135
7263
  #: app/skins/single/m1.php:137 app/skins/single/m2.php:61
7268
  msgid "REGISTER"
7269
  msgstr "REGISTRAR"
7270
 
7271
+ #: app/libraries/main.php:5306
7272
  msgid "View Detail Button"
7273
  msgstr ""
7274
 
7275
+ #: app/libraries/main.php:5306 app/skins/carousel/render.php:160
7276
  #: app/skins/carousel/render.php:197 app/skins/grid/render.php:122
7277
  #: app/skins/grid/render.php:169 app/skins/grid/render.php:213
7278
  #: app/skins/grid/render.php:242 app/skins/list/render.php:108
7283
  msgid "View Detail"
7284
  msgstr "Ver Detalhes"
7285
 
7286
+ #: app/libraries/main.php:5307
7287
  msgid "Event Detail Button"
7288
  msgstr ""
7289
 
7290
+ #: app/libraries/main.php:5307 app/skins/countdown/tpl.php:244
7291
  msgid "Event Detail"
7292
  msgstr "Detalhes do Evento"
7293
 
7294
+ #: app/libraries/main.php:5309
7295
  msgid "More Info Link"
7296
  msgstr ""
7297
 
7298
+ #: app/libraries/main.php:5312
7299
  msgid "Ticket (Singular)"
7300
  msgstr ""
7301
 
7302
+ #: app/libraries/main.php:5313
7303
  msgid "Tickets (Plural)"
7304
  msgstr ""
7305
 
7306
+ #: app/libraries/main.php:5399
7307
  msgid "EventON"
7308
  msgstr ""
7309
 
7310
+ #: app/libraries/main.php:5400
7311
  msgid "The Events Calendar"
7312
  msgstr ""
7313
 
7314
+ #: app/libraries/main.php:5401
7315
  msgid "Events Schedule WP Plugin"
7316
  msgstr ""
7317
 
7318
+ #: app/libraries/main.php:5402
7319
  msgid "Calendarize It"
7320
  msgstr ""
7321
 
7322
+ #: app/libraries/main.php:5403
7323
  #, fuzzy
7324
  #| msgid "No Search Options"
7325
  msgid "Event Espresso"
7326
  msgstr "Sem Opções de Pesquisa"
7327
 
7328
+ #: app/libraries/main.php:5404
7329
  #, fuzzy
7330
  #| msgid "Event Repeating"
7331
  msgid "Events Manager (Recurring)"
7332
  msgstr "Repetição de Eventos"
7333
 
7334
+ #: app/libraries/main.php:5405
7335
  #, fuzzy
7336
  #| msgid "Modern Events Calendar"
7337
  msgid "Events Manager (Single)"
7338
  msgstr "Calendário de Eventos Moderno"
7339
 
7340
+ #: app/libraries/main.php:5479 app/libraries/main.php:5499
7341
  msgid "Confirmed"
7342
  msgstr "Confirmado"
7343
 
7344
+ #: app/libraries/main.php:5480 app/libraries/main.php:5507
7345
  msgid "Rejected"
7346
  msgstr "Recusado"
7347
 
7348
+ #: app/libraries/main.php:5481 app/libraries/main.php:5503
7349
  msgid "Pending"
7350
  msgstr "Pendente"
7351
 
7352
+ #: app/libraries/main.php:5529
7353
  msgid "Waiting"
7354
  msgstr "Aguardando"
7355
 
7356
+ #: app/libraries/main.php:5734 app/libraries/render.php:378
7357
  msgid "Skin controller does not exist."
7358
  msgstr "Controlador de pele não existe."
7359
 
7360
+ #: app/libraries/main.php:5848
7361
  msgid "Sold Out"
7362
  msgstr ""
7363
 
7364
+ #: app/libraries/main.php:5856
7365
  #, fuzzy
7366
  #| msgid "Ticket"
7367
  msgid "Last Few Tickets"
7371
  msgid "Please verify your email."
7372
  msgstr "Por favor, verifique seu e-mail."
7373
 
7374
+ #: app/libraries/notifications.php:153
7375
  msgid "Your booking is received."
7376
  msgstr ""
7377
 
7378
+ #: app/libraries/notifications.php:271
7379
  msgid "Your booking is confirmed."
7380
  msgstr "Sua reserva foi confirmada."
7381
 
7382
+ #: app/libraries/notifications.php:435
7383
  #, fuzzy
7384
  #| msgid "Your booking cannot be canceled."
7385
  msgid "booking canceled."
7386
  msgstr "Sua reserva não pôde ser cancelada."
7387
 
7388
+ #: app/libraries/notifications.php:510
7389
  msgid "A new booking is received."
7390
  msgstr "Uma nova reserva foi recebida."
7391
 
7392
+ #: app/libraries/notifications.php:734
7393
  msgid "A new event is added."
7394
  msgstr "Um novo evento foi adicionado."
7395
 
7396
+ #: app/libraries/notifications.php:803
7397
  #, fuzzy
7398
  #| msgid "The event published."
7399
  msgid "Your event is published."
7400
  msgstr "O evento foi publicado."
7401
 
7402
+ #: app/libraries/notifications.php:1039 app/libraries/notifications.php:1050
7403
+ #: app/libraries/notifications.php:1052
7404
  msgid "to"
7405
  msgstr ""
7406
 
7407
+ #: app/libraries/notifications.php:1067 app/modules/export/details.php:46
7408
  msgid "+ Add to Google Calendar"
7409
  msgstr "+ Adicionar ao Calendário do Google"
7410
 
7411
+ #: app/libraries/notifications.php:1068 app/modules/export/details.php:47
7412
  msgid "+ iCal export"
7413
  msgstr "+ Exportar para iCal"
7414
 
7415
+ #: app/libraries/notifications.php:1131
7416
  msgid "Yes"
7417
  msgstr ""
7418
 
7419
+ #: app/libraries/notifications.php:1131
7420
  msgid "No"
7421
  msgstr ""
7422
 
7423
+ #: app/libraries/skins.php:1008
7424
+ #, fuzzy
7425
+ #| msgid "Select All"
7426
+ msgid "Select"
7427
+ msgstr "Selecionar Tudo"
7428
 
7429
  #: app/modules/attendees-list/details.php:36
7430
  msgid "Event Attendees"
7461
  msgid "Free Booking"
7462
  msgstr ""
7463
 
7464
+ #: app/modules/booking/steps/form.php:52
7465
+ #, fuzzy
7466
+ #| msgid "Attendees Form"
7467
+ msgid "Attendee's Form"
7468
+ msgstr "Formulário de Participantes"
7469
+
7470
  #: app/modules/booking/steps/form.php:165
7471
  msgid "Fill other attendees information like the first form."
7472
  msgstr ""
7473
 
7474
  #: app/modules/booking/steps/form.php:179
7475
+ #: app/modules/booking/steps/tickets.php:74 app/skins/countdown/tpl.php:145
7476
  #: app/skins/countdown/tpl.php:189 app/skins/countdown/tpl.php:234
7477
  msgid "Next"
7478
  msgstr "Próximo"
7485
  msgid "Book Event"
7486
  msgstr "Reservas do Evento"
7487
 
7488
+ #: app/modules/booking/steps/tickets.php:40
7489
  #, php-format
7490
  msgid "Available %s: <span>%s</span>"
7491
  msgstr ""
7492
 
7493
+ #: app/modules/booking/steps/tickets.php:44
7494
  #, php-format
7495
+ msgid "The %s ticket sales has stopped!"
7496
  msgstr ""
7497
 
7498
+ #: app/modules/booking/steps/tickets.php:45
7499
  #, php-format
7500
  msgid "The %s ticket is sold out. You can try another ticket or another date."
7501
  msgstr ""
7516
  msgid "Get Directions"
7517
  msgstr ""
7518
 
7519
+ #: app/modules/links/details.php:17 app/skins/single.php:461
7520
  msgid "Share this event"
7521
  msgstr "Compartilhar Este Evento"
7522
 
7543
  msgid "Go to occurrence page"
7544
  msgstr "Ir para a página da ocorrência"
7545
 
7546
+ #: app/modules/next-event/details.php:98 app/skins/single.php:747
7547
  #: app/skins/single/default.php:102 app/skins/single/default.php:320
7548
  #: app/skins/single/m1.php:37 app/skins/single/modern.php:187
7549
  msgid "Time"
7671
  msgid "Home"
7672
  msgstr ""
7673
 
7674
+ #: app/skins/single.php:544 app/skins/single/default.php:51
7675
  #: app/skins/single/m1.php:256 app/skins/single/m2.php:177
7676
  #: app/skins/single/modern.php:265
7677
  msgid "Sold out!"
7678
  msgstr ""
7679
 
7680
+ #: app/skins/single.php:822 app/skins/single.php:877
7681
  #: app/skins/single/default.php:227 app/skins/single/default.php:445
7682
  #: app/skins/single/m1.php:109 app/skins/single/m2.php:35
7683
  #: app/skins/single/modern.php:44
7684
  msgid "Phone"
7685
  msgstr "Fone"
7686
 
7687
+ #: app/skins/single.php:836 app/skins/single.php:891
7688
  #: app/skins/single/default.php:241 app/skins/single/default.php:459
7689
  #: app/skins/single/m1.php:123 app/skins/single/m2.php:49
7690
  #: app/skins/single/modern.php:58
7691
  msgid "Website"
7692
  msgstr "Website"
7693
 
7694
+ #: app/skins/single.php:961
7695
  #, fuzzy
7696
  #| msgid "No Search Options"
7697
  msgid "Speakers:"
languages/modern-events-calendar-lite-ru_RU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2020-01-14 10:00+0330\n"
5
- "PO-Revision-Date: 2020-01-14 10:04+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
@@ -275,7 +275,7 @@ msgstr "Добавить событие"
275
  msgid "Add New Event"
276
  msgstr "Добавить новое событие"
277
 
278
- #: app/features/events.php:161 app/features/ix.php:3752
279
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
280
  msgid "No events found!"
281
  msgstr "Не найдено ни одного события!"
@@ -310,8 +310,8 @@ msgstr "Событий в корзине не найдено!"
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
- #: app/features/search.php:67 app/libraries/main.php:5260
314
- #: app/libraries/skins.php:850 app/skins/single.php:560
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
317
  #: app/skins/single/modern.php:113
@@ -320,7 +320,7 @@ msgstr "Категория"
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
- #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5259
324
  msgid "Categories"
325
  msgstr "Категории"
326
 
@@ -409,7 +409,7 @@ msgid "Event Repeating"
409
  msgstr "Повторяющееся событие"
410
 
411
  #: app/features/events.php:333 app/features/events.php:1286
412
- #: app/features/mec/settings.php:710 app/skins/single.php:941
413
  msgid "Hourly Schedule"
414
  msgstr "Часовое расписание"
415
 
@@ -427,7 +427,7 @@ msgstr "Ссылки события"
427
 
428
  #: app/features/events.php:336 app/features/events.php:3322
429
  #: app/features/events.php:3513 app/features/events.php:3555
430
- #: app/features/ix.php:3373 app/features/ix.php:3414
431
  #: app/features/mec/meta_boxes/display_options.php:960
432
  #: app/features/mec/meta_boxes/search_form.php:45
433
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -444,16 +444,16 @@ msgstr "Ссылки события"
444
  #: app/features/organizers.php:58 app/features/organizers.php:204
445
  #: app/features/organizers.php:260 app/features/organizers.php:262
446
  #: app/features/organizers.php:271 app/features/search.php:75
447
- #: app/libraries/main.php:5266 app/libraries/skins.php:902
448
- #: app/skins/single.php:806 app/skins/single/default.php:217
449
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
450
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
451
  msgid "Organizer"
452
  msgstr "Организатор"
453
 
454
  #: app/features/events.php:337 app/features/events.php:1172
455
- #: app/features/fes/form.php:730 app/libraries/main.php:5293
456
- #: app/skins/single.php:583 app/skins/single/default.php:126
457
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
458
  #: app/skins/single/modern.php:208
459
  msgid "Cost"
@@ -471,7 +471,7 @@ msgstr ""
471
  #: app/features/events.php:3802 app/features/fes.php:223
472
  #: app/features/fes/form.php:689 app/features/labels.php:178
473
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
474
- #: app/features/profile/profile.php:180 app/libraries/notifications.php:1025
475
  #: app/modules/booking/steps/form.php:37
476
  msgid "Name"
477
  msgstr "Имя"
@@ -481,12 +481,12 @@ msgstr "Имя"
481
  #: app/features/fes.php:223 app/features/fes/form.php:685
482
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
483
  #: app/features/organizers.php:111 app/features/organizers.php:152
484
- #: app/features/profile/profile.php:183 app/features/speakers.php:126
485
- #: app/features/speakers.php:187 app/libraries/main.php:1539
486
- #: app/libraries/main.php:1608 app/libraries/main.php:2808
487
- #: app/libraries/notifications.php:1026 app/modules/booking/steps/form.php:46
488
- #: app/modules/booking/steps/form.php:83 app/skins/single.php:823
489
- #: app/skins/single.php:878 app/skins/single/default.php:234
490
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
491
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
492
  msgid "Email"
@@ -499,8 +499,8 @@ msgstr "Дата и время"
499
  #: app/features/events.php:491 app/features/events.php:497
500
  #: app/features/events.php:3323 app/features/events.php:3513
501
  #: app/features/events.php:3555 app/features/fes/form.php:247
502
- #: app/features/fes/form.php:251 app/features/ix.php:3373
503
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:38
504
  #: app/features/mec/dashboard.php:400
505
  #: app/features/mec/meta_boxes/display_options.php:48
506
  #: app/features/mec/meta_boxes/display_options.php:228
@@ -537,8 +537,8 @@ msgstr "PM"
537
  #: app/features/events.php:583 app/features/events.php:588
538
  #: app/features/events.php:3324 app/features/events.php:3513
539
  #: app/features/events.php:3555 app/features/fes/form.php:287
540
- #: app/features/fes/form.php:291 app/features/ix.php:3373
541
- #: app/features/ix.php:3414 app/features/ix/import_g_calendar.php:44
542
  #: app/features/mec/dashboard.php:401
543
  msgid "End Date"
544
  msgstr "Дата окончания"
@@ -622,14 +622,14 @@ msgstr ""
622
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
623
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
624
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
625
- #: app/features/mec/notifications.php:53 app/features/mec/notifications.php:114
626
- #: app/features/mec/notifications.php:170
627
- #: app/features/mec/notifications.php:238
628
- #: app/features/mec/notifications.php:308
629
- #: app/features/mec/notifications.php:373
630
- #: app/features/mec/notifications.php:384
631
- #: app/features/mec/notifications.php:454
632
- #: app/features/mec/notifications.php:502 app/features/mec/settings.php:70
633
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
634
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
635
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
@@ -645,7 +645,7 @@ msgstr ""
645
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
646
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
647
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
648
- #: app/skins/single.php:668 app/skins/single/default.php:141
649
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
650
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
651
  msgid "Read More"
@@ -824,8 +824,8 @@ msgstr ""
824
 
825
  #: app/features/events.php:1168 app/features/events.php:3513
826
  #: app/features/events.php:3555 app/features/fes/form.php:727
827
- #: app/features/ix.php:3373 app/features/ix.php:3414
828
- #: app/features/mec/settings.php:656 app/libraries/main.php:5292
829
  #: app/widgets/single.php:103
830
  msgid "Event Cost"
831
  msgstr "Цена события"
@@ -843,8 +843,8 @@ msgstr "Исключить определённые дни"
843
  #: app/features/events.php:1204 app/features/events.php:2541
844
  #: app/features/fes.php:223 app/features/mec/booking.php:491
845
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
846
- #: app/libraries/main.php:2866 app/modules/booking/steps/tickets.php:22
847
- #: app/modules/next-event/details.php:93 app/skins/single.php:642
848
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
849
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
850
  msgid "Date"
@@ -881,8 +881,8 @@ msgstr ""
881
  #: app/features/events.php:1437 app/features/events.php:2322
882
  #: app/features/events.php:2369 app/features/events.php:3319
883
  #: app/features/events.php:3513 app/features/events.php:3555
884
- #: app/features/fes/form.php:236 app/features/ix.php:3373
885
- #: app/features/ix.php:3414 app/features/mec/booking.php:375
886
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
887
  msgid "Title"
888
  msgstr "Заголовок"
@@ -895,13 +895,13 @@ msgstr "Заголовок"
895
  #: app/features/events.php:2357 app/features/events.php:2399
896
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
897
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
898
- #: app/libraries/main.php:2727 app/libraries/main.php:2757
899
- #: app/libraries/main.php:2786 app/libraries/main.php:2816
900
- #: app/libraries/main.php:2845 app/libraries/main.php:2874
901
- #: app/libraries/main.php:2903 app/libraries/main.php:2932
902
- #: app/libraries/main.php:2954 app/libraries/main.php:2985
903
- #: app/libraries/main.php:3029 app/libraries/main.php:3073
904
- #: app/libraries/main.php:3120 app/libraries/main.php:3159
905
  msgid "Remove"
906
  msgstr "Удалить"
907
 
@@ -929,7 +929,7 @@ msgstr "Описание"
929
  #: app/features/events.php:1445 app/features/fes/form.php:851
930
  #: app/features/mec.php:410 app/features/mec/modules.php:52
931
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
932
- #: app/libraries/main.php:565 app/libraries/main.php:5267
933
  #: app/modules/speakers/details.php:18
934
  msgid "Speakers"
935
  msgstr ""
@@ -946,7 +946,7 @@ msgid "Event Links"
946
  msgstr "Ссылки события"
947
 
948
  #: app/features/events.php:1479 app/features/events.php:1485
949
- #: app/features/fes/form.php:706 app/libraries/main.php:5290
950
  msgid "Event Link"
951
  msgstr "Ссылка события"
952
 
@@ -973,8 +973,8 @@ msgid "URL Shortener"
973
  msgstr ""
974
 
975
  #: app/features/events.php:1495 app/features/events.php:1508
976
- #: app/features/fes/form.php:711 app/libraries/main.php:5291
977
- #: app/skins/single.php:667 app/skins/single/default.php:140
978
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
979
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
980
  #: app/widgets/single.php:107
@@ -1007,7 +1007,7 @@ msgstr "Предел бронирования"
1007
 
1008
  #: app/features/events.php:1596 app/features/events.php:1849
1009
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1010
- #: app/modules/booking/steps/tickets.php:44
1011
  #: app/skins/available_spot/tpl.php:160
1012
  msgid "Unlimited"
1013
  msgstr "Без ограничений"
@@ -1044,7 +1044,7 @@ msgid "12"
1044
  msgstr ""
1045
 
1046
  #: app/features/events.php:1653 app/libraries/book.php:60
1047
- #: app/libraries/main.php:5295 app/modules/booking/steps/tickets.php:44
1048
  msgid "Tickets"
1049
  msgstr "Билеты"
1050
 
@@ -1067,13 +1067,13 @@ msgstr "Имя билета"
1067
 
1068
  #: app/features/events.php:1680 app/features/events.php:1955
1069
  #: app/features/events.php:3513 app/features/events.php:3555
1070
- #: app/features/ix.php:3373 app/features/ix.php:3414
1071
  msgid "Start Time"
1072
  msgstr ""
1073
 
1074
  #: app/features/events.php:1739 app/features/events.php:1985
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
- #: app/features/ix.php:3373 app/features/ix.php:3414
1077
  msgid "End Time"
1078
  msgstr ""
1079
 
@@ -1105,37 +1105,37 @@ msgstr "Для отображения для сайте. Напр. 15$"
1105
  msgid "Available Tickets"
1106
  msgstr "Доступные билеты"
1107
 
1108
- #: app/features/events.php:1855 app/features/events.php:2070
1109
  #, fuzzy
1110
  #| msgid "Maximum events"
1111
  msgid "Minimum Ticket e.g. 3"
1112
  msgstr "Макс. количество событий"
1113
 
1114
- #: app/features/events.php:1858 app/features/events.php:2073
1115
  #, fuzzy
1116
  #| msgid "Maximum events"
1117
  msgid "MinimumTicket"
1118
  msgstr "Макс. количество событий"
1119
 
1120
- #: app/features/events.php:1860 app/features/events.php:2075
1121
  msgid "Set a number for the minimum ticket reservation"
1122
  msgstr ""
1123
 
1124
- #: app/features/events.php:1868 app/features/events.php:2083
1125
  msgid "e.g. 0"
1126
  msgstr ""
1127
 
1128
- #: app/features/events.php:1870 app/features/events.php:2085
1129
  #, fuzzy
1130
  #| msgid "Daily"
1131
  msgid "Day"
1132
  msgstr "Ежедневно"
1133
 
1134
- #: app/features/events.php:1871 app/features/events.php:2086
1135
  msgid "Hour"
1136
  msgstr ""
1137
 
1138
- #: app/features/events.php:1873 app/features/events.php:2088
1139
  #, php-format
1140
  msgid "Stop selling ticket %s before event start."
1141
  msgstr ""
@@ -1161,7 +1161,7 @@ msgstr "Метка цены"
1161
  #: app/features/mec/meta_boxes/search_form.php:610
1162
  #: app/features/mec/meta_boxes/search_form.php:707
1163
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1164
- #: app/libraries/skins.php:980
1165
  msgid "Label"
1166
  msgstr "Метка"
1167
 
@@ -1231,48 +1231,48 @@ msgid "Maximum Per Ticket. Leave it blank for unlimited."
1231
  msgstr ""
1232
 
1233
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1234
- #: app/libraries/main.php:2749
1235
  #, fuzzy
1236
  #| msgid "Name"
1237
  msgid "MEC Name"
1238
  msgstr "Имя"
1239
 
1240
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1241
- #: app/libraries/main.php:2778
1242
  #, fuzzy
1243
  #| msgid "Email"
1244
  msgid "MEC Email"
1245
  msgstr "Электронная почта"
1246
 
1247
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1248
- #: app/libraries/main.php:2719
1249
  msgid "Text"
1250
  msgstr "Текст"
1251
 
1252
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1253
  #: app/features/organizers.php:103 app/features/organizers.php:148
1254
- #: app/features/speakers.php:118 app/features/speakers.php:183
1255
- #: app/features/speakers.php:256 app/libraries/main.php:2895
1256
  msgid "Tel"
1257
  msgstr "Тел."
1258
 
1259
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1260
- #: app/libraries/main.php:2837
1261
  msgid "File"
1262
  msgstr ""
1263
 
1264
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1265
- #: app/libraries/main.php:2924
1266
  msgid "Textarea"
1267
  msgstr "Текстовое поле"
1268
 
1269
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1270
- #: app/libraries/main.php:2977
1271
  msgid "Checkboxes"
1272
  msgstr "Флажок"
1273
 
1274
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1275
- #: app/libraries/main.php:3021
1276
  msgid "Radio Buttons"
1277
  msgstr "\"Радио\" переключатель"
1278
 
@@ -1352,17 +1352,17 @@ msgstr "\"Радио\" переключатель"
1352
  #: app/features/mec/meta_boxes/search_form.php:696
1353
  #: app/features/mec/meta_boxes/search_form.php:703
1354
  #: app/features/mec/meta_boxes/search_form.php:710
1355
- #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3065
1356
  msgid "Dropdown"
1357
  msgstr "Выпадающий список"
1358
 
1359
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1360
- #: app/libraries/main.php:3112
1361
  msgid "Agreement"
1362
  msgstr ""
1363
 
1364
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1365
- #: app/libraries/main.php:2953
1366
  msgid "Paragraph"
1367
  msgstr "Параграф"
1368
 
@@ -1391,8 +1391,8 @@ msgid "Attendees List"
1391
  msgstr "Участник"
1392
 
1393
  #: app/features/events.php:3321 app/features/events.php:3513
1394
- #: app/features/events.php:3555 app/features/ix.php:3373
1395
- #: app/features/ix.php:3414 app/features/locations.php:58
1396
  #: app/features/locations.php:230 app/features/locations.php:287
1397
  #: app/features/locations.php:289 ap
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2020-01-22 10:47+0330\n"
5
+ "PO-Revision-Date: 2020-01-22 10:50+0330\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
275
  msgid "Add New Event"
276
  msgstr "Добавить новое событие"
277
 
278
+ #: app/features/events.php:161 app/features/ix.php:3889
279
  #: app/features/ix/thirdparty.php:42 app/skins/map/tpl.php:58
280
  msgid "No events found!"
281
  msgstr "Не найдено ни одного события!"
310
  #: app/features/mec/meta_boxes/search_form.php:575
311
  #: app/features/mec/meta_boxes/search_form.php:672
312
  #: app/features/mec/settings.php:800 app/features/mec/single.php:204
313
+ #: app/features/search.php:67 app/libraries/main.php:5278
314
+ #: app/libraries/skins.php:858 app/skins/single.php:566
315
  #: app/skins/single/default.php:192 app/skins/single/default.php:410
316
  #: app/skins/single/m1.php:179 app/skins/single/m2.php:105
317
  #: app/skins/single/modern.php:113
320
 
321
  #: app/features/events.php:183 app/features/events.php:3275
322
  #: app/features/fes/form.php:757 app/features/mec.php:402
323
+ #: app/features/mec/meta_boxes/filter.php:79 app/libraries/main.php:5277
324
  msgid "Categories"
325
  msgstr "Категории"
326
 
409
  msgstr "Повторяющееся событие"
410
 
411
  #: app/features/events.php:333 app/features/events.php:1286
412
+ #: app/features/mec/settings.php:710 app/skins/single.php:947
413
  msgid "Hourly Schedule"
414
  msgstr "Часовое расписание"
415
 
427
 
428
  #: app/features/events.php:336 app/features/events.php:3322
429
  #: app/features/events.php:3513 app/features/events.php:3555
430
+ #: app/features/ix.php:3510 app/features/ix.php:3551
431
  #: app/features/mec/meta_boxes/display_options.php:960
432
  #: app/features/mec/meta_boxes/search_form.php:45
433
  #: app/features/mec/meta_boxes/search_form.php:107
444
  #: app/features/organizers.php:58 app/features/organizers.php:204
445
  #: app/features/organizers.php:260 app/features/organizers.php:262
446
  #: app/features/organizers.php:271 app/features/search.php:75
447
+ #: app/libraries/main.php:5284 app/libraries/skins.php:910
448
+ #: app/skins/single.php:812 app/skins/single/default.php:217
449
  #: app/skins/single/default.php:435 app/skins/single/m1.php:99
450
  #: app/skins/single/m2.php:25 app/skins/single/modern.php:34
451
  msgid "Organizer"
452
  msgstr "Организатор"
453
 
454
  #: app/features/events.php:337 app/features/events.php:1172
455
+ #: app/features/fes/form.php:730 app/libraries/main.php:5311
456
+ #: app/skins/single.php:589 app/skins/single/default.php:126
457
  #: app/skins/single/default.php:344 app/skins/single/m1.php:58
458
  #: app/skins/single/modern.php:208
459
  msgid "Cost"
471
  #: app/features/events.php:3802 app/features/fes.php:223
472
  #: app/features/fes/form.php:689 app/features/labels.php:178
473
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
474
+ #: app/features/profile/profile.php:180 app/libraries/notifications.php:1113
475
  #: app/modules/booking/steps/form.php:37
476
  msgid "Name"
477
  msgstr "Имя"
481
  #: app/features/fes.php:223 app/features/fes/form.php:685
482
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:490
483
  #: app/features/organizers.php:111 app/features/organizers.php:152
484
+ #: app/features/profile/profile.php:183 app/features/speakers.php:127
485
+ #: app/features/speakers.php:196 app/libraries/main.php:1539
486
+ #: app/libraries/main.php:1608 app/libraries/main.php:2826
487
+ #: app/libraries/notifications.php:1114 app/modules/booking/steps/form.php:46
488
+ #: app/modules/booking/steps/form.php:83 app/skins/single.php:829
489
+ #: app/skins/single.php:884 app/skins/single/default.php:234
490
  #: app/skins/single/default.php:452 app/skins/single/m1.php:116
491
  #: app/skins/single/m2.php:42 app/skins/single/modern.php:51
492
  msgid "Email"
499
  #: app/features/events.php:491 app/features/events.php:497
500
  #: app/features/events.php:3323 app/features/events.php:3513
501
  #: app/features/events.php:3555 app/features/fes/form.php:247
502
+ #: app/features/fes/form.php:251 app/features/ix.php:3510
503
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:38
504
  #: app/features/mec/dashboard.php:400
505
  #: app/features/mec/meta_boxes/display_options.php:48
506
  #: app/features/mec/meta_boxes/display_options.php:228
537
  #: app/features/events.php:583 app/features/events.php:588
538
  #: app/features/events.php:3324 app/features/events.php:3513
539
  #: app/features/events.php:3555 app/features/fes/form.php:287
540
+ #: app/features/fes/form.php:291 app/features/ix.php:3510
541
+ #: app/features/ix.php:3551 app/features/ix/import_g_calendar.php:44
542
  #: app/features/mec/dashboard.php:401
543
  msgid "End Date"
544
  msgstr "Дата окончания"
622
  #: app/features/mec/modules.php:53 app/features/mec/modules.php:86
623
  #: app/features/mec/modules.php:103 app/features/mec/modules.php:138
624
  #: app/features/mec/modules.php:154 app/features/mec/modules.php:317
625
+ #: app/features/mec/notifications.php:88 app/features/mec/notifications.php:185
626
+ #: app/features/mec/notifications.php:277
627
+ #: app/features/mec/notifications.php:380
628
+ #: app/features/mec/notifications.php:486
629
+ #: app/features/mec/notifications.php:587
630
+ #: app/features/mec/notifications.php:598
631
+ #: app/features/mec/notifications.php:704
632
+ #: app/features/mec/notifications.php:787 app/features/mec/settings.php:70
633
  #: app/features/mec/settings.php:89 app/features/mec/settings.php:136
634
  #: app/features/mec/settings.php:171 app/features/mec/settings.php:192
635
  #: app/features/mec/settings.php:214 app/features/mec/settings.php:233
645
  #: app/features/mec/single.php:124 app/features/mec/single.php:162
646
  #: app/features/mec/styling.php:203 app/features/mec/styling.php:220
647
  #: app/features/mec/styling.php:233 app/features/organizers.php:272
648
+ #: app/skins/single.php:674 app/skins/single/default.php:141
649
  #: app/skins/single/default.php:359 app/skins/single/m1.php:201
650
  #: app/skins/single/m2.php:128 app/skins/single/modern.php:136
651
  msgid "Read More"
824
 
825
  #: app/features/events.php:1168 app/features/events.php:3513
826
  #: app/features/events.php:3555 app/features/fes/form.php:727
827
+ #: app/features/ix.php:3510 app/features/ix.php:3551
828
+ #: app/features/mec/settings.php:656 app/libraries/main.php:5310
829
  #: app/widgets/single.php:103
830
  msgid "Event Cost"
831
  msgstr "Цена события"
843
  #: app/features/events.php:1204 app/features/events.php:2541
844
  #: app/features/fes.php:223 app/features/mec/booking.php:491
845
  #: app/features/profile/profile.php:53 app/libraries/main.php:2242
846
+ #: app/libraries/main.php:2884 app/modules/booking/steps/tickets.php:22
847
+ #: app/modules/next-event/details.php:93 app/skins/single.php:648
848
  #: app/skins/single/default.php:85 app/skins/single/default.php:303
849
  #: app/skins/single/m1.php:20 app/skins/single/modern.php:170
850
  msgid "Date"
881
  #: app/features/events.php:1437 app/features/events.php:2322
882
  #: app/features/events.php:2369 app/features/events.php:3319
883
  #: app/features/events.php:3513 app/features/events.php:3555
884
+ #: app/features/fes/form.php:236 app/features/ix.php:3510
885
+ #: app/features/ix.php:3551 app/features/mec/booking.php:375
886
  #: app/features/mec/booking.php:407 app/features/mec/styling.php:115
887
  msgid "Title"
888
  msgstr "Заголовок"
895
  #: app/features/events.php:2357 app/features/events.php:2399
896
  #: app/features/mec/booking.php:318 app/features/mec/booking.php:347
897
  #: app/features/mec/booking.php:398 app/features/mec/booking.php:430
898
+ #: app/libraries/main.php:2745 app/libraries/main.php:2775
899
+ #: app/libraries/main.php:2804 app/libraries/main.php:2834
900
+ #: app/libraries/main.php:2863 app/libraries/main.php:2892
901
+ #: app/libraries/main.php:2921 app/libraries/main.php:2950
902
+ #: app/libraries/main.php:2972 app/libraries/main.php:3003
903
+ #: app/libraries/main.php:3047 app/libraries/main.php:3091
904
+ #: app/libraries/main.php:3138 app/libraries/main.php:3177
905
  msgid "Remove"
906
  msgstr "Удалить"
907
 
929
  #: app/features/events.php:1445 app/features/fes/form.php:851
930
  #: app/features/mec.php:410 app/features/mec/modules.php:52
931
  #: app/features/mec/settings.php:704 app/features/speakers.php:62
932
+ #: app/libraries/main.php:565 app/libraries/main.php:5285
933
  #: app/modules/speakers/details.php:18
934
  msgid "Speakers"
935
  msgstr ""
946
  msgstr "Ссылки события"
947
 
948
  #: app/features/events.php:1479 app/features/events.php:1485
949
+ #: app/features/fes/form.php:706 app/libraries/main.php:5308
950
  msgid "Event Link"
951
  msgstr "Ссылка события"
952
 
973
  msgstr ""
974
 
975
  #: app/features/events.php:1495 app/features/events.php:1508
976
+ #: app/features/fes/form.php:711 app/libraries/main.php:5309
977
+ #: app/skins/single.php:673 app/skins/single/default.php:140
978
  #: app/skins/single/default.php:358 app/skins/single/m1.php:200
979
  #: app/skins/single/m2.php:127 app/skins/single/modern.php:135
980
  #: app/widgets/single.php:107
1007
 
1008
  #: app/features/events.php:1596 app/features/events.php:1849
1009
  #: app/features/events.php:2064 app/modules/booking/default.php:85
1010
+ #: app/modules/booking/steps/tickets.php:40
1011
  #: app/skins/available_spot/tpl.php:160
1012
  msgid "Unlimited"
1013
  msgstr "Без ограничений"
1044
  msgstr ""
1045
 
1046
  #: app/features/events.php:1653 app/libraries/book.php:60
1047
+ #: app/libraries/main.php:5313 app/modules/booking/steps/tickets.php:40
1048
  msgid "Tickets"
1049
  msgstr "Билеты"
1050
 
1067
 
1068
  #: app/features/events.php:1680 app/features/events.php:1955
1069
  #: app/features/events.php:3513 app/features/events.php:3555
1070
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1071
  msgid "Start Time"
1072
  msgstr ""
1073
 
1074
  #: app/features/events.php:1739 app/features/events.php:1985
1075
  #: app/features/events.php:3513 app/features/events.php:3555
1076
+ #: app/features/ix.php:3510 app/features/ix.php:3551
1077
  msgid "End Time"
1078
  msgstr ""
1079
 
1105
  msgid "Available Tickets"
1106
  msgstr "Доступные билеты"
1107
 
1108
+ #: app/features/events.php:1853 app/features/events.php:2068
1109
  #, fuzzy
1110
  #| msgid "Maximum events"
1111
  msgid "Minimum Ticket e.g. 3"
1112
  msgstr "Макс. количество событий"
1113
 
1114
+ #: app/features/events.php:1856 app/features/events.php:2071
1115
  #, fuzzy
1116
  #| msgid "Maximum events"
1117
  msgid "MinimumTicket"
1118
  msgstr "Макс. количество событий"
1119
 
1120
+ #: app/features/events.php:1858 app/features/events.php:2073
1121
  msgid "Set a number for the minimum ticket reservation"
1122
  msgstr ""
1123
 
1124
+ #: app/features/events.php:1866 app/features/events.php:2081
1125
  msgid "e.g. 0"
1126
  msgstr ""
1127
 
1128
+ #: app/features/events.php:1868 app/features/events.php:2083
1129
  #, fuzzy
1130
  #| msgid "Daily"
1131
  msgid "Day"
1132
  msgstr "Ежедневно"
1133
 
1134
+ #: app/features/events.php:1869 app/features/events.php:2084
1135
  msgid "Hour"
1136
  msgstr ""
1137
 
1138
+ #: app/features/events.php:1871 app/features/events.php:2086
1139
  #, php-format
1140
  msgid "Stop selling ticket %s before event start."
1141
  msgstr ""
1161
  #: app/features/mec/meta_boxes/search_form.php:610
1162
  #: app/features/mec/meta_boxes/search_form.php:707
1163
  #: app/features/mec/settings.php:832 app/features/mec/single.php:222
1164
+ #: app/libraries/skins.php:988
1165
  msgid "Label"
1166
  msgstr "Метка"
1167
 
1231
  msgstr ""
1232
 
1233
  #: app/features/events.php:2537 app/features/mec/booking.php:487
1234
+ #: app/libraries/main.php:2767
1235
  #, fuzzy
1236
  #| msgid "Name"
1237
  msgid "MEC Name"
1238
  msgstr "Имя"
1239
 
1240
  #: app/features/events.php:2538 app/features/mec/booking.php:488
1241
+ #: app/libraries/main.php:2796
1242
  #, fuzzy
1243
  #| msgid "Email"
1244
  msgid "MEC Email"
1245
  msgstr "Электронная почта"
1246
 
1247
  #: app/features/events.php:2539 app/features/mec/booking.php:489
1248
+ #: app/libraries/main.php:2737
1249
  msgid "Text"
1250
  msgstr "Текст"
1251
 
1252
  #: app/features/events.php:2542 app/features/mec/booking.php:492
1253
  #: app/features/organizers.php:103 app/features/organizers.php:148
1254
+ #: app/features/speakers.php:119 app/features/speakers.php:192
1255
+ #: app/features/speakers.php:271 app/libraries/main.php:2913
1256
  msgid "Tel"
1257
  msgstr "Тел."
1258
 
1259
  #: app/features/events.php:2543 app/features/mec/booking.php:493
1260
+ #: app/libraries/main.php:2855
1261
  msgid "File"
1262
  msgstr ""
1263
 
1264
  #: app/features/events.php:2544 app/features/mec/booking.php:494
1265
+ #: app/libraries/main.php:2942
1266
  msgid "Textarea"
1267
  msgstr "Текстовое поле"
1268
 
1269
  #: app/features/events.php:2545 app/features/mec/booking.php:495
1270
+ #: app/libraries/main.php:2995
1271
  msgid "Checkboxes"
1272
  msgstr "Флажок"
1273
 
1274
  #: app/features/events.php:2546 app/features/mec/booking.php:496
1275
+ #: app/libraries/main.php:3039
1276
  msgid "Radio Buttons"
1277
  msgstr "\"Радио\" переключатель"
1278
 
1352
  #: app/features/mec/meta_boxes/search_form.php:696
1353
  #: app/features/mec/meta_boxes/search_form.php:703
1354
  #: app/features/mec/meta_boxes/search_form.php:710
1355
+ #: app/features/mec/meta_boxes/search_form.php:717 app/libraries/main.php:3083
1356
  msgid "Dropdown"
1357
  msgstr "Выпадающий список"
1358
 
1359
  #: app/features/events.php:2548 app/features/mec/booking.php:498
1360
+ #: app/libraries/main.php:3130
1361
  msgid "Agreement"
1362
  msgstr ""
1363
 
1364
  #: app/features/events.php:2549 app/features/mec/booking.php:499
1365
+ #: app/libraries/main.php:2971
1366
  msgid "Paragraph"
1367
  msgstr "Параграф"
1368
 
1391
  msgstr "Участник"
1392
 
1393
  #: app/features/events.php:3321 app/features/events.php:3513
1394
+ #: app/features/events.php:3555 app/features/ix.php:3510
1395
+ #: app/features/ix.php:3551 app/features/locations.php:58
1396
  #: app/features/locations.php:230 app/features/locations.php:287
1397
  #: app/features/locations.php:289 ap