Modern Events Calendar Lite - Version 3.1.5

Version Description

  • Fixed: Issue on showing multiple events in unwanted months when the repeat is set to yearly
  • Preparation for Gutenberg Editor
Download this release

Release Info

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

Code changes from version 3.1.4 to 3.1.5

app/features/events.php CHANGED
@@ -1255,6 +1255,10 @@ class MEC_feature_events extends MEC_base
1255
 
1256
  $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
1257
  }
 
 
 
 
1258
 
1259
  $month = ','.implode(',', array_unique($_months)).',';
1260
  $day = ','.implode(',', array_unique($_days)).',';
1255
 
1256
  $s = date('Y-m-d', strtotime('+1 Day', strtotime($s)));
1257
  }
1258
+
1259
+ $_months = array_unique($_months);
1260
+
1261
+ $month = ','.implode(',', array($_months[0])).',';
1262
 
1263
  $month = ','.implode(',', array_unique($_months)).',';
1264
  $day = ','.implode(',', array_unique($_days)).',';
app/features/mec.php CHANGED
@@ -96,6 +96,9 @@ class MEC_feature_mec extends MEC_base
96
 
97
  // MEC Post Type Name
98
  $this->PT = $this->main->get_main_post_type();
 
 
 
99
  }
100
 
101
  /**
@@ -561,4 +564,16 @@ class MEC_feature_mec extends MEC_base
561
  </div>
562
  </div>';
563
  }
 
 
 
 
 
 
 
 
 
 
 
 
564
  }
96
 
97
  // MEC Post Type Name
98
  $this->PT = $this->main->get_main_post_type();
99
+
100
+ // Disable Gutenberg
101
+ $this->factory->filter('gutenberg_can_edit_post_type', array($this, 'gutenberg'), 10, 2);
102
  }
103
 
104
  /**
564
  </div>
565
  </div>';
566
  }
567
+
568
+ /**
569
+ * Disable Gutenberg Editor for MEC Post Types
570
+ * @param boolean $status
571
+ * @param string $post_type
572
+ * @return bool
573
+ */
574
+ public function gutenberg($status, $post_type)
575
+ {
576
+ if(in_array($post_type, array($this->PT, $this->main->get_book_post_type(), $this->main->get_shortcode_post_type()))) return false;
577
+ return $status;
578
+ }
579
  }
app/libraries/book.php CHANGED
@@ -56,7 +56,7 @@ class MEC_book extends MEC_base
56
  $total = $total+($t_price*$count);
57
  }
58
 
59
- $details[] = array('amount'=>$total, 'description'=>sprintf(__('%s Price', 'mec'), $this->main->m('tickets', __('Tickets', 'mec'))), 'type'=>'tickets');
60
 
61
  // Default fee amount
62
  $total_fee_amount = 0;
@@ -75,7 +75,7 @@ class MEC_book extends MEC_base
75
  elseif($fee['type'] == 'amount') $fee_amount += ($total_tickets_count*$fee['amount']);
76
  elseif($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
77
 
78
- $details[] = array('amount'=>$fee_amount, 'description'=>__($fee['title'], 'mec'), 'type'=>'fee');
79
 
80
  $total_fee_amount += $fee_amount;
81
  }
@@ -513,7 +513,7 @@ class MEC_book extends MEC_base
513
  $after_discount = $total - $discount;
514
 
515
  $transaction['price_details']['total'] = $after_discount;
516
- $transaction['price_details']['details'][] = array('amount'=>$discount, 'description'=>__('Discount', 'mec'), 'type'=>'discount');
517
 
518
  $transaction['discount'] = $discount;
519
  $transaction['price'] = $after_discount;
@@ -601,7 +601,7 @@ class MEC_book extends MEC_base
601
  if(!$transaction) return NULL;
602
 
603
  $book = $this->getBook();
604
- return '<a href="'.$book->get_invoice_link($transaction).'" target="_blank">'.__('Download Invoice', 'mec').'</a>';
605
  }
606
 
607
  public function get_total_attendees($book_id)
56
  $total = $total+($t_price*$count);
57
  }
58
 
59
+ $details[] = array('amount'=>$total, 'description'=>sprintf(__('%s Price', 'modern-events-calendar-lite'), $this->main->m('tickets', __('Tickets', 'modern-events-calendar-lite'))), 'type'=>'tickets');
60
 
61
  // Default fee amount
62
  $total_fee_amount = 0;
75
  elseif($fee['type'] == 'amount') $fee_amount += ($total_tickets_count*$fee['amount']);
76
  elseif($fee['type'] == 'amount_per_booking') $fee_amount += $fee['amount'];
77
 
78
+ $details[] = array('amount'=>$fee_amount, 'description'=>__($fee['title'], 'modern-events-calendar-lite'), 'type'=>'fee');
79
 
80
  $total_fee_amount += $fee_amount;
81
  }
513
  $after_discount = $total - $discount;
514
 
515
  $transaction['price_details']['total'] = $after_discount;
516
+ $transaction['price_details']['details'][] = array('amount'=>$discount, 'description'=>__('Discount', 'modern-events-calendar-lite'), 'type'=>'discount');
517
 
518
  $transaction['discount'] = $discount;
519
  $transaction['price'] = $after_discount;
601
  if(!$transaction) return NULL;
602
 
603
  $book = $this->getBook();
604
+ return '<a href="'.$book->get_invoice_link($transaction).'" target="_blank">'.__('Download Invoice', 'modern-events-calendar-lite').'</a>';
605
  }
606
 
607
  public function get_total_attendees($book_id)
app/libraries/main.php CHANGED
@@ -320,22 +320,22 @@ class MEC_main extends MEC_base
320
  {
321
  $skins = array
322
  (
323
- 'list'=>__('List View', 'mec'),
324
- 'grid'=>__('Grid View', 'mec'),
325
- 'agenda'=>__('Agenda View', 'mec'),
326
- 'full_calendar'=>__('Full Calendar', 'mec'),
327
- 'yearly_view'=>__('Yearly View', 'mec'),
328
- 'monthly_view'=>__('Calendar/Monthly View', 'mec'),
329
- 'daily_view'=>__('Daily View', 'mec'),
330
- 'weekly_view'=>__('Weekly View', 'mec'),
331
- 'timetable'=>__('Timetable View', 'mec'),
332
- 'masonry'=>__('Masonry View', 'mec'),
333
- 'map'=>__('Map View', 'mec'),
334
- 'cover'=>__('Cover View', 'mec'),
335
- 'countdown'=>__('Countdown View', 'mec'),
336
- 'available_spot'=>__('Available Spot', 'mec'),
337
- 'carousel'=>__('Carousel View', 'mec'),
338
- 'slider'=>__('Slider View', 'mec')
339
  );
340
 
341
  return apply_filters('mec_calendar_skins', $skins);
@@ -372,13 +372,13 @@ class MEC_main extends MEC_base
372
  {
373
  $week_start = $this->get_first_day_of_week();
374
  $raw = array(
375
- $this->m('weekdays_su', __('SU', 'mec')),
376
- $this->m('weekdays_mo', __('MO', 'mec')),
377
- $this->m('weekdays_tu', __('TU', 'mec')),
378
- $this->m('weekdays_we', __('WE', 'mec')),
379
- $this->m('weekdays_th', __('TH', 'mec')),
380
- $this->m('weekdays_fr', __('FR', 'mec')),
381
- $this->m('weekdays_sa', __('SA', 'mec'))
382
  );
383
 
384
  $labels = array_slice($raw, $week_start);
@@ -397,7 +397,7 @@ class MEC_main extends MEC_base
397
  public function get_weekday_i18n_labels()
398
  {
399
  $week_start = $this->get_first_day_of_week();
400
- $raw = array(array(7, __('Sunday', 'mec')), array(1, __('Monday', 'mec')), array(2, __('Tuesday', 'mec')), array(3, __('Wednesday', 'mec')), array(4, __('Thursday', 'mec')), array(5, __('Friday', 'mec')), array(6, __('Saturday', 'mec')));
401
 
402
  $labels = array_slice($raw, $week_start);
403
  $rest = array_slice($raw, 0, $week_start);
@@ -978,7 +978,7 @@ class MEC_main extends MEC_base
978
  /**
979
  * Get marker infowindow for showing on the map
980
  * @author Webnus <info@webnus.biz>
981
- * @param object $event
982
  * @return string
983
  */
984
  public function get_marker_infowindow($marker)
@@ -989,7 +989,7 @@ class MEC_main extends MEC_base
989
  <div class="mec-marker-infowindow-wp">
990
  <div class="mec-marker-infowindow-count">'.$count.'</div>
991
  <div class="mec-marker-infowindow-content">
992
- <span>'.($count > 1 ? __('Events at this location', 'mec') : __('Event at this location', 'mec')).'</span>
993
  <span>'.(trim($marker['address']) ? $marker['address'] : $marker['name']).'</span>
994
  </div>
995
  </div>';
@@ -1030,12 +1030,12 @@ class MEC_main extends MEC_base
1030
  public function get_social_networks()
1031
  {
1032
  $social_networks = array(
1033
- 'facebook'=>array('id'=>'facebook', 'name'=>__('Facebook', 'mec'), 'function'=>array($this, 'sn_facebook')),
1034
- 'gplus'=>array('id'=>'gplus', 'name'=>__('Google+', 'mec'), 'function'=>array($this, 'sn_gplus')),
1035
- 'twitter'=>array('id'=>'twitter', 'name'=>__('Twitter', 'mec'), 'function'=>array($this, 'sn_twitter')),
1036
- 'linkedin'=>array('id'=>'linkedin', 'name'=>__('Linkedin', 'mec'), 'function'=>array($this, 'sn_linkedin')),
1037
- 'vk'=>array('id'=>'vk', 'name'=>__('VK', 'mec'), 'function'=>array($this, 'sn_vk')),
1038
- 'email'=>array('id'=>'email', 'name'=>__('Email', 'mec'), 'function'=>array($this, 'sn_email')),
1039
  );
1040
 
1041
  return apply_filters('mec_social_networks', $social_networks);
@@ -1050,7 +1050,7 @@ class MEC_main extends MEC_base
1050
  */
1051
  public function sn_facebook($url, $event)
1052
  {
1053
- return '<li class="mec-event-social-icon"><a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=600\'); return false;" title="'.__('Share on Facebook', 'mec').'"><i class="mec-fa-facebook"></i></a></li>';
1054
  }
1055
 
1056
  /**
@@ -1062,7 +1062,7 @@ class MEC_main extends MEC_base
1062
  */
1063
  public function sn_gplus($url, $event)
1064
  {
1065
- return '<li class="mec-event-social-icon"><a class="google" href="https://plus.google.com/share?url='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=500\'); return false;" title="'.__('Google Plus', 'mec').'"><i class="mec-fa-google-plus"></i></a></li>';
1066
  }
1067
 
1068
  /**
@@ -1074,7 +1074,7 @@ class MEC_main extends MEC_base
1074
  */
1075
  public function sn_twitter($url, $event)
1076
  {
1077
- return '<li class="mec-event-social-icon"><a class="twitter" href="https://twitter.com/share?url='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=500\'); return false;" target="_blank" title="'.__('Tweet', 'mec').'"><i class="mec-fa-twitter"></i></a></li>';
1078
  }
1079
 
1080
  /**
@@ -1086,7 +1086,7 @@ class MEC_main extends MEC_base
1086
  */
1087
  public function sn_linkedin($url, $event)
1088
  {
1089
- return '<li class="mec-event-social-icon"><a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=500\'); return false;" target="_blank" title="'.__('Linkedin', 'mec').'"><i class="mec-fa-linkedin"></i></a></li>';
1090
  }
1091
 
1092
  /**
@@ -1100,7 +1100,7 @@ class MEC_main extends MEC_base
1100
  {
1101
  $event->data->title = str_replace( '&' , '%26' , $event->data->title );
1102
  $event->data->title = str_replace( '#038;' , '' , $event->data->title );
1103
- return '<li class="mec-event-social-icon"><a class="email" href="mailto:?subject='.$event->data->title.'&body='.rawurlencode($url).'" title="'.__('Email', 'mec').'"><i class="mec-fa-envelope"></i></a></li>';
1104
  }
1105
 
1106
  /**
@@ -1112,7 +1112,7 @@ class MEC_main extends MEC_base
1112
  */
1113
  public function sn_vk($url, $event)
1114
  {
1115
- return '<li class="mec-event-social-icon"><a class="vk" href=" http://vk.com/share.php?url='.rawurlencode($url).'" title="'.__('VK', 'mec').'" target="_blank"><i class="mec-fa-vk"></i></a></li>';
1116
  }
1117
 
1118
  /**
@@ -1123,17 +1123,17 @@ class MEC_main extends MEC_base
1123
  public function get_archive_skins()
1124
  {
1125
  $archive_skins = array(
1126
- array('skin'=>'full_calendar', 'name'=>__('Full Calendar', 'mec')),
1127
- array('skin'=>'yearly_view', 'name'=>__('Yearly View', 'mec')),
1128
- array('skin'=>'monthly_view', 'name'=>__('Calendar/Monthly View', 'mec')),
1129
- array('skin'=>'weekly_view', 'name'=>__('Weekly View', 'mec')),
1130
- array('skin'=>'daily_view', 'name'=>__('Daily View', 'mec')),
1131
- array('skin'=>'timetable', 'name'=>__('Timetable View', 'mec')),
1132
- array('skin'=>'masonry', 'name'=>__('Masonry View', 'mec')),
1133
- array('skin'=>'list', 'name'=>__('List View', 'mec')),
1134
- array('skin'=>'grid', 'name'=>__('Grid View', 'mec')),
1135
- array('skin'=>'agenda', 'name'=>__('Agenda View', 'mec')),
1136
- array('skin'=>'map', 'name'=>__('Map View', 'mec')),
1137
  );
1138
 
1139
  return apply_filters('mec_archive_skins', $archive_skins);
@@ -1205,7 +1205,7 @@ class MEC_main extends MEC_base
1205
  $formatted = '';
1206
  if($hour_format == '12')
1207
  {
1208
- $formatted = sprintf("%02d", $hour).':'.sprintf("%02d", $minutes).' '.__($ampm, 'mec');
1209
  }
1210
  elseif($hour_format == '24')
1211
  {
@@ -1468,8 +1468,8 @@ class MEC_main extends MEC_base
1468
  if(!$book_id) return false;
1469
 
1470
  $book = $this->getBook();
1471
- if($book->verify($book_id)) echo '<p class="mec-success">'.__('Your booking successfully verified.', 'mec').'</p>';
1472
- else echo '<p class="mec-error">'.__('Your booking cannot verify!', 'mec').'</p>';
1473
  }
1474
  elseif(get_query_var('cancel'))
1475
  {
@@ -1481,16 +1481,16 @@ class MEC_main extends MEC_base
1481
  if(!$book_id) return false;
1482
 
1483
  $book = $this->getBook();
1484
- if($book->cancel($book_id)) echo '<p class="mec-success">'.__('Your booking successfully canceled.', 'mec').'</p>';
1485
- else echo '<p class="mec-error">'.__('Your booking cannot be canceled.', 'mec').'</p>';
1486
  }
1487
  elseif(get_query_var('gateway-cancel'))
1488
  {
1489
- echo '<p class="mec-success">'.__('You canceled the payment successfully.', 'mec').'</p>';
1490
  }
1491
  elseif(get_query_var('gateway-return'))
1492
  {
1493
- echo '<p class="mec-success">'.__('You returned from payment gateway successfully.', 'mec').'</p>';
1494
  }
1495
  elseif(get_query_var('gateway-notify'))
1496
  {
@@ -1514,7 +1514,7 @@ class MEC_main extends MEC_base
1514
 
1515
  if(!$event_id)
1516
  {
1517
- wp_die(__('Cannot find the booking!', 'mec'), __('Booking is invalid.', 'mec'), array('back_link'=>true));
1518
  exit;
1519
  }
1520
 
@@ -1535,7 +1535,7 @@ class MEC_main extends MEC_base
1535
  $pdf->AddFont('DejaVu', '', 'DejaVuSansCondensed.ttf', true);
1536
  $pdf->AddFont('DejaVuBold', '', 'DejaVuSansCondensed-Bold.ttf', true);
1537
 
1538
- $pdf->SetTitle(sprintf(__('%s Invoice', 'mec'), $transaction_id));
1539
  $pdf->SetAuthor(get_bloginfo('name'), true);
1540
 
1541
  // Event Information
@@ -1544,19 +1544,19 @@ class MEC_main extends MEC_base
1544
  $pdf->Ln();
1545
 
1546
  $pdf->SetFont('DejaVuBold', '', 12);
1547
- $pdf->Write(6, __('Location', 'mec').': ');
1548
  $pdf->SetFont('DejaVu', '', 12);
1549
  $pdf->Write(6, $location);
1550
  $pdf->Ln();
1551
 
1552
  $pdf->SetFont('DejaVuBold', '', 12);
1553
- $pdf->Write(6, __('Date', 'mec').': ');
1554
  $pdf->SetFont('DejaVu', '', 12);
1555
  $pdf->Write(6, trim($dates[0].' '.(isset($event->time['start']) ? $event->time['start'] : '').' - '.(($dates[0] != $dates[1]) ? $dates[1].' ' : '').(isset($event->time['end']) ? $event->time['end'] : ''), '- '));
1556
  $pdf->Ln();
1557
 
1558
  $pdf->SetFont('DejaVuBold', '', 12);
1559
- $pdf->Write(6, __('Transaction ID', 'mec').': ');
1560
  $pdf->SetFont('DejaVu', '', 12);
1561
  $pdf->Write(6, $transaction_id);
1562
  $pdf->Ln();
@@ -1565,13 +1565,13 @@ class MEC_main extends MEC_base
1565
  if(isset($transaction['tickets']) and is_array($transaction['tickets']) and count($transaction['tickets']))
1566
  {
1567
  $pdf->SetFont('DejaVuBold', '', 16);
1568
- $pdf->Write(20, __('Attendees', 'mec'));
1569
  $pdf->Ln();
1570
 
1571
  $pdf->SetFont('DejaVuBold', '', 12);
1572
- $pdf->Cell(50, 10, __('Name', 'mec'), 1, 0);
1573
- $pdf->Cell(70, 10, __('Email', 'mec'), 1, 0);
1574
- $pdf->Cell(70, 10, __('Ticket', 'mec'), 1, 0);
1575
  $pdf->Ln();
1576
 
1577
  $pdf->SetFont('DejaVu', '', 10);
@@ -1587,7 +1587,7 @@ class MEC_main extends MEC_base
1587
  if(isset($transaction['price_details']) and isset($transaction['price_details']['details']) and is_array($transaction['price_details']['details']) and count($transaction['price_details']['details']))
1588
  {
1589
  $pdf->SetFont('DejaVuBold', '', 16);
1590
- $pdf->Write(20, __('Billing', 'mec'));
1591
  $pdf->Ln();
1592
 
1593
  $pdf->SetFont('DejaVu', '', 12);
@@ -1598,7 +1598,7 @@ class MEC_main extends MEC_base
1598
  }
1599
 
1600
  $pdf->SetFont('DejaVuBold', '', 12);
1601
- $pdf->Write(10, __('Total', 'mec').': ');
1602
  $pdf->Write(10, $this->render_price($transaction['price']));
1603
  $pdf->Ln();
1604
  }
@@ -1631,7 +1631,7 @@ class MEC_main extends MEC_base
1631
 
1632
  if(!wp_verify_nonce($wpnonce, 'mec_ical_export'))
1633
  {
1634
- wp_die(__('Security nonce is not valid.', 'mec'), __('iCal export stopped!', 'mec'), array('back_link'=>true));
1635
  exit;
1636
  }
1637
 
@@ -1841,6 +1841,16 @@ class MEC_main extends MEC_base
1841
  {
1842
  return apply_filters('mec_book_post_type_name', 'mec-books');
1843
  }
 
 
 
 
 
 
 
 
 
 
1844
 
1845
  /**
1846
  * Show text field options in booking form
@@ -1852,19 +1862,19 @@ class MEC_main extends MEC_base
1852
  public function field_text($key, $values = array())
1853
  {
1854
  $field = '<li id="mec_reg_fields_'.$key.'">
1855
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
1856
- <span class="mec_reg_field_type">'.__('Text', 'mec').'</span>
1857
  <p class="mec_reg_field_options">
1858
  <label for="mec_reg_fields_'.$key.'_mandatory">
1859
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1860
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1861
- '.__('Required Field', 'mec').'
1862
  </label>
1863
  </p>
1864
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
1865
  <div>
1866
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="text" />
1867
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1868
  </div>
1869
  </li>';
1870
 
@@ -1881,19 +1891,19 @@ class MEC_main extends MEC_base
1881
  public function field_email($key, $values = array())
1882
  {
1883
  $field = '<li id="mec_reg_fields_'.$key.'">
1884
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
1885
- <span class="mec_reg_field_type">'.__('Email', 'mec').'</span>
1886
  <p class="mec_reg_field_options">
1887
  <label for="mec_reg_fields_'.$key.'_mandatory">
1888
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1889
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1890
- '.__('Required Field', 'mec').'
1891
  </label>
1892
  </p>
1893
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
1894
  <div>
1895
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="email" />
1896
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1897
  </div>
1898
  </li>';
1899
 
@@ -1910,19 +1920,19 @@ class MEC_main extends MEC_base
1910
  public function field_tel($key, $values = array())
1911
  {
1912
  $field = '<li id="mec_reg_fields_'.$key.'">
1913
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
1914
- <span class="mec_reg_field_type">'.__('Tel', 'mec').'</span>
1915
  <p class="mec_reg_field_options">
1916
  <label for="mec_reg_fields_'.$key.'_mandatory">
1917
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1918
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1919
- '.__('Required Field', 'mec').'
1920
  </label>
1921
  </p>
1922
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
1923
  <div>
1924
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="tel" />
1925
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1926
  </div>
1927
  </li>';
1928
 
@@ -1939,19 +1949,19 @@ class MEC_main extends MEC_base
1939
  public function field_textarea($key, $values = array())
1940
  {
1941
  $field = '<li id="mec_reg_fields_'.$key.'">
1942
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
1943
- <span class="mec_reg_field_type">'.__('Textarea', 'mec').'</span>
1944
  <p class="mec_reg_field_options">
1945
  <label for="mec_reg_fields_'.$key.'_mandatory">
1946
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1947
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1948
- '.__('Required Field', 'mec').'
1949
  </label>
1950
  </p>
1951
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
1952
  <div>
1953
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="textarea" />
1954
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1955
  </div>
1956
  </li>';
1957
 
@@ -1968,9 +1978,9 @@ class MEC_main extends MEC_base
1968
  public function field_p($key, $values = array())
1969
  {
1970
  $field = '<li id="mec_reg_fields_'.$key.'">
1971
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
1972
- <span class="mec_reg_field_type">'.__('Paragraph', 'mec').'</span>
1973
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
1974
  <div>
1975
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="p" />
1976
  <textarea name="mec[reg_fields]['.$key.'][content]">'.(isset($values['content']) ? htmlentities($values['content']) : '').'</textarea>
@@ -1992,19 +2002,19 @@ class MEC_main extends MEC_base
1992
  {
1993
  $i = 0;
1994
  $field = '<li id="mec_reg_fields_'.$key.'">
1995
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
1996
- <span class="mec_reg_field_type">'.__('Checkboxes', 'mec').'</span>
1997
  <p class="mec_reg_field_options">
1998
  <label for="mec_reg_fields_'.$key.'_mandatory">
1999
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2000
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
2001
- '.__('Required Field', 'mec').'
2002
  </label>
2003
  </p>
2004
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
2005
  <div>
2006
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="checkbox" />
2007
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
2008
  <ul id="mec_reg_fields_'.$key.'_options_container" class="mec_reg_fields_options_container">';
2009
 
2010
  if(isset($values['options']) and is_array($values['options']) and count($values['options']))
@@ -2017,7 +2027,7 @@ class MEC_main extends MEC_base
2017
  }
2018
 
2019
  $field .= '</ul>
2020
- <button type="button" class="mec-reg-field-add-option" data-field-id="'.$key.'">'.__('Option', 'mec').'</button>
2021
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
2022
  </div>
2023
  </li>';
@@ -2036,19 +2046,19 @@ class MEC_main extends MEC_base
2036
  {
2037
  $i = 0;
2038
  $field = '<li id="mec_reg_fields_'.$key.'">
2039
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
2040
- <span class="mec_reg_field_type">'.__('Radio Buttons', 'mec').'</span>
2041
  <p class="mec_reg_field_options">
2042
  <label for="mec_reg_fields_'.$key.'_mandatory">
2043
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2044
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
2045
- '.__('Required Field', 'mec').'
2046
  </label>
2047
  </p>
2048
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
2049
  <div>
2050
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="radio" />
2051
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
2052
  <ul id="mec_reg_fields_'.$key.'_options_container" class="mec_reg_fields_options_container">';
2053
 
2054
  if(isset($values['options']) and is_array($values['options']) and count($values['options']))
@@ -2061,7 +2071,7 @@ class MEC_main extends MEC_base
2061
  }
2062
 
2063
  $field .= '</ul>
2064
- <button type="button" class="mec-reg-field-add-option" data-field-id="'.$key.'">'.__('Option', 'mec').'</button>
2065
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
2066
  </div>
2067
  </li>';
@@ -2080,19 +2090,19 @@ class MEC_main extends MEC_base
2080
  {
2081
  $i = 0;
2082
  $field = '<li id="mec_reg_fields_'.$key.'">
2083
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
2084
- <span class="mec_reg_field_type">'.__('Dropdown', 'mec').'</span>
2085
  <p class="mec_reg_field_options">
2086
  <label for="mec_reg_fields_'.$key.'_mandatory">
2087
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2088
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
2089
- '.__('Required Field', 'mec').'
2090
  </label>
2091
  </p>
2092
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
2093
  <div>
2094
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="select" />
2095
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
2096
  <ul id="mec_reg_fields_'.$key.'_options_container" class="mec_reg_fields_options_container">';
2097
 
2098
  if(isset($values['options']) and is_array($values['options']) and count($values['options']))
@@ -2105,7 +2115,7 @@ class MEC_main extends MEC_base
2105
  }
2106
 
2107
  $field .= '</ul>
2108
- <button type="button" class="mec-reg-field-add-option" data-field-id="'.$key.'">'.__('Option', 'mec').'</button>
2109
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
2110
  </div>
2111
  </li>';
@@ -2127,21 +2137,21 @@ class MEC_main extends MEC_base
2127
 
2128
  $i = 0;
2129
  $field = '<li id="mec_reg_fields_'.$key.'">
2130
- <span class="mec_reg_field_sort">'.__('Sort', 'mec').'</span>
2131
- <span class="mec_reg_field_type">'.__('Agreement', 'mec').'</span>
2132
  <p class="mec_reg_field_options">
2133
  <label for="mec_reg_fields_'.$key.'_mandatory">
2134
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2135
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((!isset($values['mandatory']) or (isset($values['mandatory']) and $values['mandatory'])) ? 'checked="checked"' : '').' />
2136
- '.__('Required Field', 'mec').'
2137
  </label>
2138
  </p>
2139
- <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
2140
  <div>
2141
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="agreement" />
2142
- <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'mec').'" value="'.(isset($values['label']) ? $values['label'] : 'I agree with %s').'" /><p class="description">'.__('Instead of %s, the page title with a link will be show.', 'mec').'</p>
2143
  <div>
2144
- <label for="mec_reg_fields_'.$key.'_page">'.__('Agreement Page', 'mec').'</label>
2145
  <select id="mec_reg_fields_'.$key.'_page" name="mec[reg_fields]['.$key.'][page]">';
2146
 
2147
  $page_options = '';
@@ -2150,10 +2160,10 @@ class MEC_main extends MEC_base
2150
  $field .= $page_options.'</select>
2151
  </div>
2152
  <div>
2153
- <label for="mec_reg_fields_'.$key.'_status">'.__('Status', 'mec').'</label>
2154
  <select id="mec_reg_fields_'.$key.'_status" name="mec[reg_fields]['.$key.'][status]">
2155
- <option value="checked" '.((isset($values['status']) and $values['status'] == 'checked') ? 'selected="selected"' : '').'>'.__('Checked by default', 'mec').'</option>
2156
- <option value="unchecked" '.((isset($values['status']) and $values['status'] == 'unchecked') ? 'selected="selected"' : '').'>'.__('Unchecked by default', 'mec').'</option>
2157
  </select>
2158
  </div>
2159
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
@@ -2173,9 +2183,9 @@ class MEC_main extends MEC_base
2173
  public function field_option($field_key, $key, $values = array())
2174
  {
2175
  $field = '<li id="mec_reg_fields_option_'.$field_key.'_'.$key.'">
2176
- <span class="mec_reg_field_option_sort">'.__('Sort', 'mec').'</span>
2177
- <span onclick="mec_reg_fields_option_remove('.$field_key.','.$key.');" class="mec_reg_field_remove">'.__('Remove', 'mec').'</span>
2178
- <input type="text" name="mec[reg_fields]['.$field_key.'][options]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this option', 'mec').'" value="'.((isset($values['options']) and isset($values['options'][$key])) ? $values['options'][$key]['label'] : '').'" />
2179
  </li>';
2180
 
2181
  return $field;
@@ -2190,7 +2200,7 @@ class MEC_main extends MEC_base
2190
  public function render_price($price)
2191
  {
2192
  // return Free if price is 0
2193
- if($price == '0') return __('Free', 'mec');
2194
 
2195
  $thousand_separator = $this->get_thousand_separator();
2196
  $decimal_separator = $this->get_decimal_separator();
@@ -2654,7 +2664,7 @@ class MEC_main extends MEC_base
2654
  */
2655
  public function get_current_language()
2656
  {
2657
- return apply_filters('plugin_locale', get_locale(), 'mec');
2658
  }
2659
 
2660
  /**
@@ -2842,7 +2852,7 @@ class MEC_main extends MEC_base
2842
  'post_parent'=>$post->post_parent,
2843
  'post_password'=>$post->post_password,
2844
  'post_status'=>'draft',
2845
- 'post_title'=>sprintf(__('Copy of %s', 'mec'), $post->post_title),
2846
  'post_type'=>$post->post_type,
2847
  'to_ping'=>$post->to_ping,
2848
  'menu_order'=>$post->menu_order
@@ -3479,7 +3489,7 @@ class MEC_main extends MEC_base
3479
  bp_activity_set_action(
3480
  'mec',
3481
  'booked_event',
3482
- __('Booked an event.', 'mec')
3483
  );
3484
  }
3485
 
@@ -3520,7 +3530,7 @@ class MEC_main extends MEC_base
3520
  $activity_id = bp_activity_add(array
3521
  (
3522
  'id'=>$bp_activity_id,
3523
- 'action'=>sprintf(__('%s booked %s event.', 'mec'), $profile_link, '<a href="'.$event_link.'">'.$event_title.'</a>'),
3524
  'component'=>'mec',
3525
  'type'=>'booked_event',
3526
  'primary_link'=>$event_link,
@@ -3962,44 +3972,44 @@ class MEC_main extends MEC_base
3962
  {
3963
  $messages = array(
3964
  'taxonomies'=>array(
3965
- 'category'=>array('name'=>__('Taxonomies', 'mec')),
3966
  'messages'=>array(
3967
- 'taxonomy_categories'=>array('label'=>__('Category Plural Label', 'mec'), 'default'=>__('Categories', 'mec')),
3968
- 'taxonomy_category'=>array('label'=>__('Category Singular Label', 'mec'), 'default'=>__('Category', 'mec')),
3969
- 'taxonomy_labels'=>array('label'=>__('Label Plural Label', 'mec'), 'default'=>__('Labels', 'mec')),
3970
- 'taxonomy_label'=>array('label'=>__('Label Singular Label', 'mec'), 'default'=>__('label', 'mec')),
3971
- 'taxonomy_locations'=>array('label'=>__('Location Plural Label', 'mec'), 'default'=>__('Locations', 'mec')),
3972
- 'taxonomy_location'=>array('label'=>__('Location Singular Label', 'mec'), 'default'=>__('Location', 'mec')),
3973
- 'taxonomy_organizers'=>array('label'=>__('Organizer Plural Label', 'mec'), 'default'=>__('Organizers', 'mec')),
3974
- 'taxonomy_organizer'=>array('label'=>__('Organizer Singular Label', 'mec'), 'default'=>__('Organizer', 'mec')),
3975
  )
3976
  ),
3977
  'weekdays'=>array(
3978
- 'category'=>array('name'=>__('Weekdays', 'mec')),
3979
  'messages'=>array(
3980
- 'weekdays_su'=>array('label'=>__('Sunday abbreviation', 'mec'), 'default'=>__('SU', 'mec')),
3981
- 'weekdays_mo'=>array('label'=>__('Monday abbreviation', 'mec'), 'default'=>__('MO', 'mec')),
3982
- 'weekdays_tu'=>array('label'=>__('Tuesday abbreviation', 'mec'), 'default'=>__('TU', 'mec')),
3983
- 'weekdays_we'=>array('label'=>__('Wednesday abbreviation', 'mec'), 'default'=>__('WE', 'mec')),
3984
- 'weekdays_th'=>array('label'=>__('Thursday abbreviation', 'mec'), 'default'=>__('TH', 'mec')),
3985
- 'weekdays_fr'=>array('label'=>__('Friday abbreviation', 'mec'), 'default'=>__('FR', 'mec')),
3986
- 'weekdays_sa'=>array('label'=>__('Saturday abbreviation', 'mec'), 'default'=>__('SA', 'mec')),
3987
  )
3988
  ),
3989
  'others'=>array(
3990
- 'category'=>array('name'=>__('Others', 'mec')),
3991
  'messages'=>array(
3992
- 'book_success_message'=>array('label'=>__('Booking Success Message', 'mec'), 'default'=>__('Thanks for your booking. Your tickets booked, booking verification might be needed, please check your email.', 'mec')),
3993
- 'register_button'=>array('label'=>__('Register Button', 'mec'), 'default'=>__('REGISTER', 'mec')),
3994
- 'view_detail'=>array('label'=>__('View Detail Button', 'mec'), 'default'=>__('View Detail', 'mec')),
3995
- 'event_detail'=>array('label'=>__('Event Detail Button', 'mec'), 'default'=>__('Event Detail', 'mec')),
3996
- 'read_more_link'=>array('label'=>__('Event Link', 'mec'), 'default'=>__('Event Link', 'mec')),
3997
- 'more_info_link'=>array('label'=>__('More Info Link', 'mec'), 'default'=>__('More Info', 'mec')),
3998
- 'event_cost'=>array('label'=>__('Event Cost', 'mec'), 'default'=>__('Event Cost', 'mec')),
3999
- 'cost'=>array('label'=>__('Cost', 'mec'), 'default'=>__('Cost', 'mec')),
4000
- 'ticket'=>array('label'=>__('Ticket (Singular)', 'mec'), 'default'=>__('Ticket', 'mec')),
4001
- 'tickets'=>array('label'=>__('Tickets (Plural)', 'mec'), 'default'=>__('Tickets', 'mec')),
4002
- 'other_organizers'=>array('label'=>__('Other Organizers', 'mec'), 'default'=>__('Other Organizers', 'mec')),
4003
  )
4004
  ),
4005
  );
@@ -4064,10 +4074,10 @@ class MEC_main extends MEC_base
4064
  public function get_integrated_plugins_for_import()
4065
  {
4066
  return array(
4067
- 'eventon' => __('EventON', 'mec'),
4068
- 'the-events-calendar' => __('The Events Calendar', 'mec'),
4069
- 'weekly-class' => __('Events Schedule WP Plugin', 'mec'),
4070
- 'calendarize-it' => __('Calendarize It', 'mec'),
4071
  );
4072
  }
4073
 
320
  {
321
  $skins = array
322
  (
323
+ 'list'=>__('List View', 'modern-events-calendar-lite'),
324
+ 'grid'=>__('Grid View', 'modern-events-calendar-lite'),
325
+ 'agenda'=>__('Agenda View', 'modern-events-calendar-lite'),
326
+ 'full_calendar'=>__('Full Calendar', 'modern-events-calendar-lite'),
327
+ 'yearly_view'=>__('Yearly View', 'modern-events-calendar-lite'),
328
+ 'monthly_view'=>__('Calendar/Monthly View', 'modern-events-calendar-lite'),
329
+ 'daily_view'=>__('Daily View', 'modern-events-calendar-lite'),
330
+ 'weekly_view'=>__('Weekly View', 'modern-events-calendar-lite'),
331
+ 'timetable'=>__('Timetable View', 'modern-events-calendar-lite'),
332
+ 'masonry'=>__('Masonry View', 'modern-events-calendar-lite'),
333
+ 'map'=>__('Map View', 'modern-events-calendar-lite'),
334
+ 'cover'=>__('Cover View', 'modern-events-calendar-lite'),
335
+ 'countdown'=>__('Countdown View', 'modern-events-calendar-lite'),
336
+ 'available_spot'=>__('Available Spot', 'modern-events-calendar-lite'),
337
+ 'carousel'=>__('Carousel View', 'modern-events-calendar-lite'),
338
+ 'slider'=>__('Slider View', 'modern-events-calendar-lite')
339
  );
340
 
341
  return apply_filters('mec_calendar_skins', $skins);
372
  {
373
  $week_start = $this->get_first_day_of_week();
374
  $raw = array(
375
+ $this->m('weekdays_su', __('SU', 'modern-events-calendar-lite')),
376
+ $this->m('weekdays_mo', __('MO', 'modern-events-calendar-lite')),
377
+ $this->m('weekdays_tu', __('TU', 'modern-events-calendar-lite')),
378
+ $this->m('weekdays_we', __('WE', 'modern-events-calendar-lite')),
379
+ $this->m('weekdays_th', __('TH', 'modern-events-calendar-lite')),
380
+ $this->m('weekdays_fr', __('FR', 'modern-events-calendar-lite')),
381
+ $this->m('weekdays_sa', __('SA', 'modern-events-calendar-lite'))
382
  );
383
 
384
  $labels = array_slice($raw, $week_start);
397
  public function get_weekday_i18n_labels()
398
  {
399
  $week_start = $this->get_first_day_of_week();
400
+ $raw = array(array(7, __('Sunday', 'modern-events-calendar-lite')), array(1, __('Monday', 'modern-events-calendar-lite')), array(2, __('Tuesday', 'modern-events-calendar-lite')), array(3, __('Wednesday', 'modern-events-calendar-lite')), array(4, __('Thursday', 'modern-events-calendar-lite')), array(5, __('Friday', 'modern-events-calendar-lite')), array(6, __('Saturday', 'modern-events-calendar-lite')));
401
 
402
  $labels = array_slice($raw, $week_start);
403
  $rest = array_slice($raw, 0, $week_start);
978
  /**
979
  * Get marker infowindow for showing on the map
980
  * @author Webnus <info@webnus.biz>
981
+ * @param array $marker
982
  * @return string
983
  */
984
  public function get_marker_infowindow($marker)
989
  <div class="mec-marker-infowindow-wp">
990
  <div class="mec-marker-infowindow-count">'.$count.'</div>
991
  <div class="mec-marker-infowindow-content">
992
+ <span>'.($count > 1 ? __('Events at this location', 'modern-events-calendar-lite') : __('Event at this location', 'modern-events-calendar-lite')).'</span>
993
  <span>'.(trim($marker['address']) ? $marker['address'] : $marker['name']).'</span>
994
  </div>
995
  </div>';
1030
  public function get_social_networks()
1031
  {
1032
  $social_networks = array(
1033
+ 'facebook'=>array('id'=>'facebook', 'name'=>__('Facebook', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_facebook')),
1034
+ 'gplus'=>array('id'=>'gplus', 'name'=>__('Google+', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_gplus')),
1035
+ 'twitter'=>array('id'=>'twitter', 'name'=>__('Twitter', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_twitter')),
1036
+ 'linkedin'=>array('id'=>'linkedin', 'name'=>__('Linkedin', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_linkedin')),
1037
+ 'vk'=>array('id'=>'vk', 'name'=>__('VK', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_vk')),
1038
+ 'email'=>array('id'=>'email', 'name'=>__('Email', 'modern-events-calendar-lite'), 'function'=>array($this, 'sn_email')),
1039
  );
1040
 
1041
  return apply_filters('mec_social_networks', $social_networks);
1050
  */
1051
  public function sn_facebook($url, $event)
1052
  {
1053
+ return '<li class="mec-event-social-icon"><a class="facebook" href="https://www.facebook.com/sharer/sharer.php?u='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=500,width=600\'); return false;" title="'.__('Share on Facebook', 'modern-events-calendar-lite').'"><i class="mec-fa-facebook"></i></a></li>';
1054
  }
1055
 
1056
  /**
1062
  */
1063
  public function sn_gplus($url, $event)
1064
  {
1065
+ return '<li class="mec-event-social-icon"><a class="google" href="https://plus.google.com/share?url='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=500\'); return false;" title="'.__('Google Plus', 'modern-events-calendar-lite').'"><i class="mec-fa-google-plus"></i></a></li>';
1066
  }
1067
 
1068
  /**
1074
  */
1075
  public function sn_twitter($url, $event)
1076
  {
1077
+ return '<li class="mec-event-social-icon"><a class="twitter" href="https://twitter.com/share?url='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=500\'); return false;" target="_blank" title="'.__('Tweet', 'modern-events-calendar-lite').'"><i class="mec-fa-twitter"></i></a></li>';
1078
  }
1079
 
1080
  /**
1086
  */
1087
  public function sn_linkedin($url, $event)
1088
  {
1089
+ return '<li class="mec-event-social-icon"><a class="linkedin" href="https://www.linkedin.com/shareArticle?mini=true&url='.esc_attr($url).'" onclick="javascript:window.open(this.href, \'\', \'menubar=no,toolbar=no,resizable=yes,scrollbars=yes,height=600,width=500\'); return false;" target="_blank" title="'.__('Linkedin', 'modern-events-calendar-lite').'"><i class="mec-fa-linkedin"></i></a></li>';
1090
  }
1091
 
1092
  /**
1100
  {
1101
  $event->data->title = str_replace( '&' , '%26' , $event->data->title );
1102
  $event->data->title = str_replace( '#038;' , '' , $event->data->title );
1103
+ return '<li class="mec-event-social-icon"><a class="email" href="mailto:?subject='.$event->data->title.'&body='.rawurlencode($url).'" title="'.__('Email', 'modern-events-calendar-lite').'"><i class="mec-fa-envelope"></i></a></li>';
1104
  }
1105
 
1106
  /**
1112
  */
1113
  public function sn_vk($url, $event)
1114
  {
1115
+ return '<li class="mec-event-social-icon"><a class="vk" href=" http://vk.com/share.php?url='.rawurlencode($url).'" title="'.__('VK', 'modern-events-calendar-lite').'" target="_blank"><i class="mec-fa-vk"></i></a></li>';
1116
  }
1117
 
1118
  /**
1123
  public function get_archive_skins()
1124
  {
1125
  $archive_skins = array(
1126
+ array('skin'=>'full_calendar', 'name'=>__('Full Calendar', 'modern-events-calendar-lite')),
1127
+ array('skin'=>'yearly_view', 'name'=>__('Yearly View', 'modern-events-calendar-lite')),
1128
+ array('skin'=>'monthly_view', 'name'=>__('Calendar/Monthly View', 'modern-events-calendar-lite')),
1129
+ array('skin'=>'weekly_view', 'name'=>__('Weekly View', 'modern-events-calendar-lite')),
1130
+ array('skin'=>'daily_view', 'name'=>__('Daily View', 'modern-events-calendar-lite')),
1131
+ array('skin'=>'timetable', 'name'=>__('Timetable View', 'modern-events-calendar-lite')),
1132
+ array('skin'=>'masonry', 'name'=>__('Masonry View', 'modern-events-calendar-lite')),
1133
+ array('skin'=>'list', 'name'=>__('List View', 'modern-events-calendar-lite')),
1134
+ array('skin'=>'grid', 'name'=>__('Grid View', 'modern-events-calendar-lite')),
1135
+ array('skin'=>'agenda', 'name'=>__('Agenda View', 'modern-events-calendar-lite')),
1136
+ array('skin'=>'map', 'name'=>__('Map View', 'modern-events-calendar-lite')),
1137
  );
1138
 
1139
  return apply_filters('mec_archive_skins', $archive_skins);
1205
  $formatted = '';
1206
  if($hour_format == '12')
1207
  {
1208
+ $formatted = sprintf("%02d", $hour).':'.sprintf("%02d", $minutes).' '.__($ampm, 'modern-events-calendar-lite');
1209
  }
1210
  elseif($hour_format == '24')
1211
  {
1468
  if(!$book_id) return false;
1469
 
1470
  $book = $this->getBook();
1471
+ if($book->verify($book_id)) echo '<p class="mec-success">'.__('Your booking successfully verified.', 'modern-events-calendar-lite').'</p>';
1472
+ else echo '<p class="mec-error">'.__('Your booking cannot verify!', 'modern-events-calendar-lite').'</p>';
1473
  }
1474
  elseif(get_query_var('cancel'))
1475
  {
1481
  if(!$book_id) return false;
1482
 
1483
  $book = $this->getBook();
1484
+ if($book->cancel($book_id)) echo '<p class="mec-success">'.__('Your booking successfully canceled.', 'modern-events-calendar-lite').'</p>';
1485
+ else echo '<p class="mec-error">'.__('Your booking cannot be canceled.', 'modern-events-calendar-lite').'</p>';
1486
  }
1487
  elseif(get_query_var('gateway-cancel'))
1488
  {
1489
+ echo '<p class="mec-success">'.__('You canceled the payment successfully.', 'modern-events-calendar-lite').'</p>';
1490
  }
1491
  elseif(get_query_var('gateway-return'))
1492
  {
1493
+ echo '<p class="mec-success">'.__('You returned from payment gateway successfully.', 'modern-events-calendar-lite').'</p>';
1494
  }
1495
  elseif(get_query_var('gateway-notify'))
1496
  {
1514
 
1515
  if(!$event_id)
1516
  {
1517
+ wp_die(__('Cannot find the booking!', 'modern-events-calendar-lite'), __('Booking is invalid.', 'modern-events-calendar-lite'), array('back_link'=>true));
1518
  exit;
1519
  }
1520
 
1535
  $pdf->AddFont('DejaVu', '', 'DejaVuSansCondensed.ttf', true);
1536
  $pdf->AddFont('DejaVuBold', '', 'DejaVuSansCondensed-Bold.ttf', true);
1537
 
1538
+ $pdf->SetTitle(sprintf(__('%s Invoice', 'modern-events-calendar-lite'), $transaction_id));
1539
  $pdf->SetAuthor(get_bloginfo('name'), true);
1540
 
1541
  // Event Information
1544
  $pdf->Ln();
1545
 
1546
  $pdf->SetFont('DejaVuBold', '', 12);
1547
+ $pdf->Write(6, __('Location', 'modern-events-calendar-lite').': ');
1548
  $pdf->SetFont('DejaVu', '', 12);
1549
  $pdf->Write(6, $location);
1550
  $pdf->Ln();
1551
 
1552
  $pdf->SetFont('DejaVuBold', '', 12);
1553
+ $pdf->Write(6, __('Date', 'modern-events-calendar-lite').': ');
1554
  $pdf->SetFont('DejaVu', '', 12);
1555
  $pdf->Write(6, trim($dates[0].' '.(isset($event->time['start']) ? $event->time['start'] : '').' - '.(($dates[0] != $dates[1]) ? $dates[1].' ' : '').(isset($event->time['end']) ? $event->time['end'] : ''), '- '));
1556
  $pdf->Ln();
1557
 
1558
  $pdf->SetFont('DejaVuBold', '', 12);
1559
+ $pdf->Write(6, __('Transaction ID', 'modern-events-calendar-lite').': ');
1560
  $pdf->SetFont('DejaVu', '', 12);
1561
  $pdf->Write(6, $transaction_id);
1562
  $pdf->Ln();
1565
  if(isset($transaction['tickets']) and is_array($transaction['tickets']) and count($transaction['tickets']))
1566
  {
1567
  $pdf->SetFont('DejaVuBold', '', 16);
1568
+ $pdf->Write(20, __('Attendees', 'modern-events-calendar-lite'));
1569
  $pdf->Ln();
1570
 
1571
  $pdf->SetFont('DejaVuBold', '', 12);
1572
+ $pdf->Cell(50, 10, __('Name', 'modern-events-calendar-lite'), 1, 0);
1573
+ $pdf->Cell(70, 10, __('Email', 'modern-events-calendar-lite'), 1, 0);
1574
+ $pdf->Cell(70, 10, __('Ticket', 'modern-events-calendar-lite'), 1, 0);
1575
  $pdf->Ln();
1576
 
1577
  $pdf->SetFont('DejaVu', '', 10);
1587
  if(isset($transaction['price_details']) and isset($transaction['price_details']['details']) and is_array($transaction['price_details']['details']) and count($transaction['price_details']['details']))
1588
  {
1589
  $pdf->SetFont('DejaVuBold', '', 16);
1590
+ $pdf->Write(20, __('Billing', 'modern-events-calendar-lite'));
1591
  $pdf->Ln();
1592
 
1593
  $pdf->SetFont('DejaVu', '', 12);
1598
  }
1599
 
1600
  $pdf->SetFont('DejaVuBold', '', 12);
1601
+ $pdf->Write(10, __('Total', 'modern-events-calendar-lite').': ');
1602
  $pdf->Write(10, $this->render_price($transaction['price']));
1603
  $pdf->Ln();
1604
  }
1631
 
1632
  if(!wp_verify_nonce($wpnonce, 'mec_ical_export'))
1633
  {
1634
+ wp_die(__('Security nonce is not valid.', 'modern-events-calendar-lite'), __('iCal export stopped!', 'modern-events-calendar-lite'), array('back_link'=>true));
1635
  exit;
1636
  }
1637
 
1841
  {
1842
  return apply_filters('mec_book_post_type_name', 'mec-books');
1843
  }
1844
+
1845
+ /**
1846
+ * Returns shortcode post type slug
1847
+ * @author Webnus <info@webnus.biz>
1848
+ * @return string
1849
+ */
1850
+ public function get_shortcode_post_type()
1851
+ {
1852
+ return apply_filters('mec_shortcode_post_type_name', 'mec_calendars');
1853
+ }
1854
 
1855
  /**
1856
  * Show text field options in booking form
1862
  public function field_text($key, $values = array())
1863
  {
1864
  $field = '<li id="mec_reg_fields_'.$key.'">
1865
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
1866
+ <span class="mec_reg_field_type">'.__('Text', 'modern-events-calendar-lite').'</span>
1867
  <p class="mec_reg_field_options">
1868
  <label for="mec_reg_fields_'.$key.'_mandatory">
1869
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1870
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1871
+ '.__('Required Field', 'modern-events-calendar-lite').'
1872
  </label>
1873
  </p>
1874
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
1875
  <div>
1876
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="text" />
1877
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1878
  </div>
1879
  </li>';
1880
 
1891
  public function field_email($key, $values = array())
1892
  {
1893
  $field = '<li id="mec_reg_fields_'.$key.'">
1894
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
1895
+ <span class="mec_reg_field_type">'.__('Email', 'modern-events-calendar-lite').'</span>
1896
  <p class="mec_reg_field_options">
1897
  <label for="mec_reg_fields_'.$key.'_mandatory">
1898
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1899
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1900
+ '.__('Required Field', 'modern-events-calendar-lite').'
1901
  </label>
1902
  </p>
1903
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
1904
  <div>
1905
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="email" />
1906
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1907
  </div>
1908
  </li>';
1909
 
1920
  public function field_tel($key, $values = array())
1921
  {
1922
  $field = '<li id="mec_reg_fields_'.$key.'">
1923
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
1924
+ <span class="mec_reg_field_type">'.__('Tel', 'modern-events-calendar-lite').'</span>
1925
  <p class="mec_reg_field_options">
1926
  <label for="mec_reg_fields_'.$key.'_mandatory">
1927
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1928
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1929
+ '.__('Required Field', 'modern-events-calendar-lite').'
1930
  </label>
1931
  </p>
1932
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
1933
  <div>
1934
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="tel" />
1935
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1936
  </div>
1937
  </li>';
1938
 
1949
  public function field_textarea($key, $values = array())
1950
  {
1951
  $field = '<li id="mec_reg_fields_'.$key.'">
1952
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
1953
+ <span class="mec_reg_field_type">'.__('Textarea', 'modern-events-calendar-lite').'</span>
1954
  <p class="mec_reg_field_options">
1955
  <label for="mec_reg_fields_'.$key.'_mandatory">
1956
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
1957
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
1958
+ '.__('Required Field', 'modern-events-calendar-lite').'
1959
  </label>
1960
  </p>
1961
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
1962
  <div>
1963
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="textarea" />
1964
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
1965
  </div>
1966
  </li>';
1967
 
1978
  public function field_p($key, $values = array())
1979
  {
1980
  $field = '<li id="mec_reg_fields_'.$key.'">
1981
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
1982
+ <span class="mec_reg_field_type">'.__('Paragraph', 'modern-events-calendar-lite').'</span>
1983
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
1984
  <div>
1985
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="p" />
1986
  <textarea name="mec[reg_fields]['.$key.'][content]">'.(isset($values['content']) ? htmlentities($values['content']) : '').'</textarea>
2002
  {
2003
  $i = 0;
2004
  $field = '<li id="mec_reg_fields_'.$key.'">
2005
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
2006
+ <span class="mec_reg_field_type">'.__('Checkboxes', 'modern-events-calendar-lite').'</span>
2007
  <p class="mec_reg_field_options">
2008
  <label for="mec_reg_fields_'.$key.'_mandatory">
2009
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2010
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
2011
+ '.__('Required Field', 'modern-events-calendar-lite').'
2012
  </label>
2013
  </p>
2014
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2015
  <div>
2016
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="checkbox" />
2017
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
2018
  <ul id="mec_reg_fields_'.$key.'_options_container" class="mec_reg_fields_options_container">';
2019
 
2020
  if(isset($values['options']) and is_array($values['options']) and count($values['options']))
2027
  }
2028
 
2029
  $field .= '</ul>
2030
+ <button type="button" class="mec-reg-field-add-option" data-field-id="'.$key.'">'.__('Option', 'modern-events-calendar-lite').'</button>
2031
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
2032
  </div>
2033
  </li>';
2046
  {
2047
  $i = 0;
2048
  $field = '<li id="mec_reg_fields_'.$key.'">
2049
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
2050
+ <span class="mec_reg_field_type">'.__('Radio Buttons', 'modern-events-calendar-lite').'</span>
2051
  <p class="mec_reg_field_options">
2052
  <label for="mec_reg_fields_'.$key.'_mandatory">
2053
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2054
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
2055
+ '.__('Required Field', 'modern-events-calendar-lite').'
2056
  </label>
2057
  </p>
2058
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2059
  <div>
2060
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="radio" />
2061
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
2062
  <ul id="mec_reg_fields_'.$key.'_options_container" class="mec_reg_fields_options_container">';
2063
 
2064
  if(isset($values['options']) and is_array($values['options']) and count($values['options']))
2071
  }
2072
 
2073
  $field .= '</ul>
2074
+ <button type="button" class="mec-reg-field-add-option" data-field-id="'.$key.'">'.__('Option', 'modern-events-calendar-lite').'</button>
2075
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
2076
  </div>
2077
  </li>';
2090
  {
2091
  $i = 0;
2092
  $field = '<li id="mec_reg_fields_'.$key.'">
2093
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
2094
+ <span class="mec_reg_field_type">'.__('Dropdown', 'modern-events-calendar-lite').'</span>
2095
  <p class="mec_reg_field_options">
2096
  <label for="mec_reg_fields_'.$key.'_mandatory">
2097
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2098
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((isset($values['mandatory']) and $values['mandatory']) ? 'checked="checked"' : '').' />
2099
+ '.__('Required Field', 'modern-events-calendar-lite').'
2100
  </label>
2101
  </p>
2102
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2103
  <div>
2104
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="select" />
2105
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : '').'" />
2106
  <ul id="mec_reg_fields_'.$key.'_options_container" class="mec_reg_fields_options_container">';
2107
 
2108
  if(isset($values['options']) and is_array($values['options']) and count($values['options']))
2115
  }
2116
 
2117
  $field .= '</ul>
2118
+ <button type="button" class="mec-reg-field-add-option" data-field-id="'.$key.'">'.__('Option', 'modern-events-calendar-lite').'</button>
2119
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
2120
  </div>
2121
  </li>';
2137
 
2138
  $i = 0;
2139
  $field = '<li id="mec_reg_fields_'.$key.'">
2140
+ <span class="mec_reg_field_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
2141
+ <span class="mec_reg_field_type">'.__('Agreement', 'modern-events-calendar-lite').'</span>
2142
  <p class="mec_reg_field_options">
2143
  <label for="mec_reg_fields_'.$key.'_mandatory">
2144
  <input type="hidden" name="mec[reg_fields]['.$key.'][mandatory]" value="0" />
2145
  <input type="checkbox" name="mec[reg_fields]['.$key.'][mandatory]" value="1" id="mec_reg_fields_'.$key.'_mandatory" '.((!isset($values['mandatory']) or (isset($values['mandatory']) and $values['mandatory'])) ? 'checked="checked"' : '').' />
2146
+ '.__('Required Field', 'modern-events-calendar-lite').'
2147
  </label>
2148
  </p>
2149
+ <span onclick="mec_reg_fields_remove('.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2150
  <div>
2151
  <input type="hidden" name="mec[reg_fields]['.$key.'][type]" value="agreement" />
2152
+ <input type="text" name="mec[reg_fields]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this field', 'modern-events-calendar-lite').'" value="'.(isset($values['label']) ? $values['label'] : 'I agree with %s').'" /><p class="description">'.__('Instead of %s, the page title with a link will be show.', 'modern-events-calendar-lite').'</p>
2153
  <div>
2154
+ <label for="mec_reg_fields_'.$key.'_page">'.__('Agreement Page', 'modern-events-calendar-lite').'</label>
2155
  <select id="mec_reg_fields_'.$key.'_page" name="mec[reg_fields]['.$key.'][page]">';
2156
 
2157
  $page_options = '';
2160
  $field .= $page_options.'</select>
2161
  </div>
2162
  <div>
2163
+ <label for="mec_reg_fields_'.$key.'_status">'.__('Status', 'modern-events-calendar-lite').'</label>
2164
  <select id="mec_reg_fields_'.$key.'_status" name="mec[reg_fields]['.$key.'][status]">
2165
+ <option value="checked" '.((isset($values['status']) and $values['status'] == 'checked') ? 'selected="selected"' : '').'>'.__('Checked by default', 'modern-events-calendar-lite').'</option>
2166
+ <option value="unchecked" '.((isset($values['status']) and $values['status'] == 'unchecked') ? 'selected="selected"' : '').'>'.__('Unchecked by default', 'modern-events-calendar-lite').'</option>
2167
  </select>
2168
  </div>
2169
  <input type="hidden" id="mec_new_reg_field_option_key_'.$key.'" value="'.($i+1).'" />
2183
  public function field_option($field_key, $key, $values = array())
2184
  {
2185
  $field = '<li id="mec_reg_fields_option_'.$field_key.'_'.$key.'">
2186
+ <span class="mec_reg_field_option_sort">'.__('Sort', 'modern-events-calendar-lite').'</span>
2187
+ <span onclick="mec_reg_fields_option_remove('.$field_key.','.$key.');" class="mec_reg_field_remove">'.__('Remove', 'modern-events-calendar-lite').'</span>
2188
+ <input type="text" name="mec[reg_fields]['.$field_key.'][options]['.$key.'][label]" placeholder="'.esc_attr__('Insert a label for this option', 'modern-events-calendar-lite').'" value="'.((isset($values['options']) and isset($values['options'][$key])) ? $values['options'][$key]['label'] : '').'" />
2189
  </li>';
2190
 
2191
  return $field;
2200
  public function render_price($price)
2201
  {
2202
  // return Free if price is 0
2203
+ if($price == '0') return __('Free', 'modern-events-calendar-lite');
2204
 
2205
  $thousand_separator = $this->get_thousand_separator();
2206
  $decimal_separator = $this->get_decimal_separator();
2664
  */
2665
  public function get_current_language()
2666
  {
2667
+ return apply_filters('plugin_locale', get_locale(), 'modern-events-calendar-lite');
2668
  }
2669
 
2670
  /**
2852
  'post_parent'=>$post->post_parent,
2853
  'post_password'=>$post->post_password,
2854
  'post_status'=>'draft',
2855
+ 'post_title'=>sprintf(__('Copy of %s', 'modern-events-calendar-lite'), $post->post_title),
2856
  'post_type'=>$post->post_type,
2857
  'to_ping'=>$post->to_ping,
2858
  'menu_order'=>$post->menu_order
3489
  bp_activity_set_action(
3490
  'mec',
3491
  'booked_event',
3492
+ __('Booked an event.', 'modern-events-calendar-lite')
3493
  );
3494
  }
3495
 
3530
  $activity_id = bp_activity_add(array
3531
  (
3532
  'id'=>$bp_activity_id,
3533
+ 'action'=>sprintf(__('%s booked %s event.', 'modern-events-calendar-lite'), $profile_link, '<a href="'.$event_link.'">'.$event_title.'</a>'),
3534
  'component'=>'mec',
3535
  'type'=>'booked_event',
3536
  'primary_link'=>$event_link,
3972
  {
3973
  $messages = array(
3974
  'taxonomies'=>array(
3975
+ 'category'=>array('name'=>__('Taxonomies', 'modern-events-calendar-lite')),
3976
  'messages'=>array(
3977
+ 'taxonomy_categories'=>array('label'=>__('Category Plural Label', 'modern-events-calendar-lite'), 'default'=>__('Categories', 'modern-events-calendar-lite')),
3978
+ 'taxonomy_category'=>array('label'=>__('Category Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Category', 'modern-events-calendar-lite')),
3979
+ 'taxonomy_labels'=>array('label'=>__('Label Plural Label', 'modern-events-calendar-lite'), 'default'=>__('Labels', 'modern-events-calendar-lite')),
3980
+ 'taxonomy_label'=>array('label'=>__('Label Singular Label', 'modern-events-calendar-lite'), 'default'=>__('label', 'modern-events-calendar-lite')),
3981
+ 'taxonomy_locations'=>array('label'=>__('Location Plural Label', 'modern-events-calendar-lite'), 'default'=>__('Locations', 'modern-events-calendar-lite')),
3982
+ 'taxonomy_location'=>array('label'=>__('Location Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Location', 'modern-events-calendar-lite')),
3983
+ 'taxonomy_organizers'=>array('label'=>__('Organizer Plural Label', 'modern-events-calendar-lite'), 'default'=>__('Organizers', 'modern-events-calendar-lite')),
3984
+ 'taxonomy_organizer'=>array('label'=>__('Organizer Singular Label', 'modern-events-calendar-lite'), 'default'=>__('Organizer', 'modern-events-calendar-lite')),
3985
  )
3986
  ),
3987
  'weekdays'=>array(
3988
+ 'category'=>array('name'=>__('Weekdays', 'modern-events-calendar-lite')),
3989
  'messages'=>array(
3990
+ 'weekdays_su'=>array('label'=>__('Sunday abbreviation', 'modern-events-calendar-lite'), 'default'=>__('SU', 'modern-events-calendar-lite')),
3991
+ 'weekdays_mo'=>array('label'=>__('Monday abbreviation', 'modern-events-calendar-lite'), 'default'=>__('MO', 'modern-events-calendar-lite')),
3992
+ 'weekdays_tu'=>array('label'=>__('Tuesday abbreviation', 'modern-events-calendar-lite'), 'default'=>__('TU', 'modern-events-calendar-lite')),
3993
+ 'weekdays_we'=>array('label'=>__('Wednesday abbreviation', 'modern-events-calendar-lite'), 'default'=>__('WE', 'modern-events-calendar-lite')),
3994
+ 'weekdays_th'=>array('label'=>__('Thursday abbreviation', 'modern-events-calendar-lite'), 'default'=>__('TH', 'modern-events-calendar-lite')),
3995
+ 'weekdays_fr'=>array('label'=>__('Friday abbreviation', 'modern-events-calendar-lite'), 'default'=>__('FR', 'modern-events-calendar-lite')),
3996
+ 'weekdays_sa'=>array('label'=>__('Saturday abbreviation', 'modern-events-calendar-lite'), 'default'=>__('SA', 'modern-events-calendar-lite')),
3997
  )
3998
  ),
3999
  'others'=>array(
4000
+ 'category'=>array('name'=>__('Others', 'modern-events-calendar-lite')),
4001
  'messages'=>array(
4002
+ 'book_success_message'=>array('label'=>__('Booking Success Message', 'modern-events-calendar-lite'), 'default'=>__('Thanks for your booking. Your tickets booked, booking verification might be needed, please check your email.', 'modern-events-calendar-lite')),
4003
+ 'register_button'=>array('label'=>__('Register Button', 'modern-events-calendar-lite'), 'default'=>__('REGISTER', 'modern-events-calendar-lite')),
4004
+ 'view_detail'=>array('label'=>__('View Detail Button', 'modern-events-calendar-lite'), 'default'=>__('View Detail', 'modern-events-calendar-lite')),
4005
+ 'event_detail'=>array('label'=>__('Event Detail Button', 'modern-events-calendar-lite'), 'default'=>__('Event Detail', 'modern-events-calendar-lite')),
4006
+ 'read_more_link'=>array('label'=>__('Event Link', 'modern-events-calendar-lite'), 'default'=>__('Event Link', 'modern-events-calendar-lite')),
4007
+ 'more_info_link'=>array('label'=>__('More Info Link', 'modern-events-calendar-lite'), 'default'=>__('More Info', 'modern-events-calendar-lite')),
4008
+ 'event_cost'=>array('label'=>__('Event Cost', 'modern-events-calendar-lite'), 'default'=>__('Event Cost', 'modern-events-calendar-lite')),
4009
+ 'cost'=>array('label'=>__('Cost', 'modern-events-calendar-lite'), 'default'=>__('Cost', 'modern-events-calendar-lite')),
4010
+ 'ticket'=>array('label'=>__('Ticket (Singular)', 'modern-events-calendar-lite'), 'default'=>__('Ticket', 'modern-events-calendar-lite')),
4011
+ 'tickets'=>array('label'=>__('Tickets (Plural)', 'modern-events-calendar-lite'), 'default'=>__('Tickets', 'modern-events-calendar-lite')),
4012
+ 'other_organizers'=>array('label'=>__('Other Organizers', 'modern-events-calendar-lite'), 'default'=>__('Other Organizers', 'modern-events-calendar-lite')),
4013
  )
4014
  ),
4015
  );
4074
  public function get_integrated_plugins_for_import()
4075
  {
4076
  return array(
4077
+ 'eventon' => __('EventON', 'modern-events-calendar-lite'),
4078
+ 'the-events-calendar' => __('The Events Calendar', 'modern-events-calendar-lite'),
4079
+ 'weekly-class' => __('Events Schedule WP Plugin', 'modern-events-calendar-lite'),
4080
+ 'calendarize-it' => __('Calendarize It', 'modern-events-calendar-lite'),
4081
  );
4082
  }
4083
 
app/modules/booking/default.php CHANGED
@@ -79,7 +79,7 @@ function mec_get_tickets_availability'.$uniqueid.'(event_id, date)
79
  if(limit == "-1")
80
  {
81
  jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max", "");
82
- jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-available span").html("'.esc_html__("Unlimited", 'mec').'");
83
  }
84
  else
85
  {
@@ -271,7 +271,7 @@ function mec_book_form_submit'.$uniqueid.'()
271
  // Show Invoice Link
272
  if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
273
  {
274
- jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'mec')).'</a>");
275
  }
276
 
277
  // Redirect to thank you page
@@ -366,7 +366,7 @@ function mec_book_free'.$uniqueid.'()
366
  // Show Invoice Link
367
  if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
368
  {
369
- jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'mec')).'</a>");
370
  }
371
 
372
  // Redirect to thank you page
79
  if(limit == "-1")
80
  {
81
  jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-book-ticket-limit").attr("max", "");
82
+ jQuery("#mec_booking'.$uniqueid.' #mec_event_ticket"+ticket_id+" .mec-event-ticket-available span").html("'.esc_html__("Unlimited", 'modern-events-calendar-lite').'");
83
  }
84
  else
85
  {
271
  // Show Invoice Link
272
  if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
273
  {
274
+ jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'modern-events-calendar-lite')).'</a>");
275
  }
276
 
277
  // Redirect to thank you page
366
  // Show Invoice Link
367
  if(typeof data.data.invoice_link != "undefined" && data.data.invoice_link != "")
368
  {
369
+ jQuery("#mec_booking'.$uniqueid.'").append("<a class=\"mec-invoice-download\" href=\""+data.data.invoice_link+"\">'.esc_js(__('Download Invoice', 'modern-events-calendar-lite')).'</a>");
370
  }
371
 
372
  // Redirect to thank you page
changelog.txt CHANGED
@@ -1,4 +1,8 @@
1
- v 3.1.428 August 2018
 
 
 
 
2
  - Added: VK social sharing
3
  - Fixed: Titles containing '&' when shared via email
4
  - Fixed: Sold-out message when '0' is set for ticket numbers
1
+ v 3.1.59 September 2018
2
+ - Fixed: Issue on showing multiple events in unwanted months when the repeat is set to yearly
3
+ - Preparation for Gutenberg Editor
4
+
5
+ v 3.1.4 – 28 August 2018
6
  - Added: VK social sharing
7
  - Fixed: Titles containing '&' when shared via email
8
  - Fixed: Sold-out message when '0' is set for ticket numbers
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: 2018-07-24 11:57+0430\n"
6
- "PO-Revision-Date: 2018-08-21 16:24+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -17,7 +17,6 @@ msgstr ""
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
20
- #. Plugin Name of the plugin/theme
21
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
22
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
23
  #: app/widgets/MEC.php:23
@@ -28,8 +27,8 @@ msgstr "Moderner Event Kalender "
28
  msgid "Content"
29
  msgstr "Inhalt"
30
 
31
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
32
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
33
  msgid "Shortcode"
34
  msgstr "Shortcode"
35
 
@@ -37,374 +36,29 @@ msgstr "Shortcode"
37
  msgid "Select from predefined shortcodes"
38
  msgstr "Wählen Sie aus vordefinierten Shortcodes"
39
 
40
- #: app/crons/booking-reminder.php:33
41
- msgid "Booking reminder notification is not enabled!"
42
- msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
43
-
44
- #: app/crons/booking-reminder.php:43
45
- msgid "Booking module is not enabled!"
46
- msgstr "Buchungsmodul ist nicht aktiviert!"
47
-
48
- #: app/crons/booking-reminder.php:52
49
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
50
- msgstr ""
51
- "Eingefügte Tage sind nicht gültig. Bitte versuchen Sie 1,3 als gültigen Wert!"
52
-
53
- #: app/crons/booking-reminder.php:104
54
- #, php-format
55
- msgid "%s reminders sent."
56
- msgstr "% s Erinnerungen gesendet."
57
-
58
- #: app/crons/f-import.php:32
59
- msgid "Auto Facebook import is disabled!"
60
- msgstr "Auto Facebook-Import ist deaktiviert!"
61
-
62
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
63
- msgid "Please insert your facebook page's link."
64
- msgstr "Bitte Ihren Facebook Seitenlink eingeben."
65
-
66
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
67
- msgid ""
68
- "We couldn't recognize your Facebook page. Please check it and provide us a "
69
- "valid facebook page link."
70
- msgstr ""
71
- "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
72
- "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
73
-
74
- #: app/crons/f-import.php:198
75
- #, php-format
76
- msgid "%s facebook events imported/updated."
77
- msgstr "%s facebook events importiert / aktualisiert."
78
-
79
- #: app/crons/g-export.php:37 app/features/ix.php:2527
80
- msgid "All of Client App, Client Secret and Calendar ID are required!"
81
- msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
82
-
83
- #: app/crons/g-export.php:234 app/features/ix.php:2722
84
- #, php-format
85
- msgid "%s events added to Google Calendar successfully."
86
- msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
87
-
88
- #: app/crons/g-export.php:235 app/features/ix.php:2723
89
- #, php-format
90
- msgid "%s previously added events get updated."
91
- msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
92
-
93
- #: app/crons/g-export.php:236 app/features/ix.php:2724
94
- #, php-format
95
- msgid "%s events failed to add for following reasons: %s"
96
- msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
97
-
98
- #: app/crons/g-import.php:32
99
- msgid "Auto Google Calendar import is disabled!"
100
- msgstr "Auto Google Kalender-Import ist deaktiviert!"
101
-
102
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
103
- msgid "Both of API key and Calendar ID are required!"
104
- msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
105
-
106
- #: app/crons/g-import.php:370
107
- #, php-format
108
- msgid "%s google events imported/updated."
109
- msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
110
-
111
- #: app/features/books.php:105 app/features/books.php:110
112
- #: app/features/ix/export.php:37
113
- msgid "Bookings"
114
- msgstr "Buchungen / Reservierungen"
115
-
116
- #: app/features/books.php:106 app/features/books.php:328
117
- #: app/features/contextual.php:308 app/features/events.php:253
118
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
119
- msgid "Booking"
120
- msgstr "Buchung / Reservierung"
121
-
122
- #: app/features/books.php:107 app/features/books.php:108
123
- msgid "Add Booking"
124
- msgstr "Buchung hinzufügen"
125
-
126
- #: app/features/books.php:109
127
- msgid "No bookings found!"
128
- msgstr "Keine Buchungen gefunden"
129
-
130
- #: app/features/books.php:111
131
- msgid "Edit Bookings"
132
- msgstr "Buchungen ändern"
133
-
134
- #: app/features/books.php:112
135
- msgid "No bookings found in Trash!"
136
- msgstr "Keine Buchungen im Papierkorb gefunden"
137
-
138
- #: app/features/books.php:149
139
- msgid "Book Details"
140
- msgstr "Buchungsdetails"
141
-
142
- #: app/features/books.php:150
143
- msgid "Status & Invoice"
144
- msgstr "Status und Rechnung"
145
-
146
- #: app/features/books.php:176 app/features/books.php:387
147
- #: app/features/books.php:576 app/features/books.php:651
148
- #: app/features/books.php:709
149
- msgid "Confirmation"
150
- msgstr "Bestätigung"
151
-
152
- #: app/features/books.php:178 app/features/books.php:578
153
- #: app/features/books.php:602 app/features/books.php:894
154
- msgid "Pending"
155
- msgstr "Ausstehend"
156
-
157
- #: app/features/books.php:179 app/features/books.php:577
158
- #: app/features/books.php:892
159
- msgid "Confirmed"
160
- msgstr "Bestätigt"
161
-
162
- #: app/features/books.php:180 app/features/books.php:579
163
- #: app/features/books.php:893
164
- msgid "Rejected"
165
- msgstr "Abgelehnt"
166
-
167
- #: app/features/books.php:184 app/features/books.php:388
168
- #: app/features/books.php:585 app/features/books.php:651
169
- #: app/features/books.php:709
170
- msgid "Verification"
171
- msgstr "Verifizierung"
172
-
173
- #: app/features/books.php:186 app/features/books.php:587
174
- #: app/features/books.php:909
175
- msgid "Waiting"
176
- msgstr "in Bearbeitung"
177
-
178
- #: app/features/books.php:187 app/features/books.php:586
179
- #: app/features/books.php:907 app/features/mec/settings.php:1173
180
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
181
- msgid "Verified"
182
- msgstr "Verifiziert"
183
-
184
- #: app/features/books.php:188 app/features/books.php:588
185
- #: app/features/books.php:908
186
- msgid "Canceled"
187
- msgstr "Abgesagt"
188
-
189
- #: app/features/books.php:203
190
- #, php-format
191
- msgid "Here, you can %s invoice of %s transaction."
192
- msgstr "Hier können Sie% s Rechnung von% s Transaktion."
193
-
194
- #: app/features/books.php:203
195
- msgid "download"
196
- msgstr "Download"
197
-
198
- #: app/features/books.php:246
199
- msgid "It will create a new booking under \"Pay Locally\" gateway."
200
- msgstr "Es wird eine neue Buchung unter \"Pay Locally\" Gateway erstellt."
201
-
202
- #: app/features/books.php:248 app/features/contextual.php:62
203
- #: app/features/events.php:910 app/features/mec/gateways.php:29
204
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
205
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
206
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
207
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
208
- msgid "Booking Form"
209
- msgstr "Buchungsformular"
210
-
211
- #: app/features/books.php:251 app/features/books.php:330
212
- #: app/features/books.php:385 app/features/books.php:569
213
- #: app/features/books.php:651 app/features/books.php:709
214
- #: app/features/events.php:123
215
- #: app/features/mec/meta_boxes/display_options.php:678
216
- #: app/features/mec/meta_boxes/display_options.php:716
217
- #: app/features/mec/meta_boxes/display_options.php:745
218
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
219
- #: app/skins/yearly_view/tpl.php:69
220
- msgid "Event"
221
- msgstr "Veranstaltung"
222
-
223
- #: app/features/books.php:315
224
- msgid "Payment"
225
- msgstr "Bezahlung"
226
-
227
- #: app/features/books.php:317 app/features/books.php:386
228
- #: app/features/events.php:756 app/features/events.php:788
229
- msgid "Price"
230
- msgstr "Preis"
231
-
232
- #: app/features/books.php:321 app/features/gateways.php:148
233
- msgid "Gateway"
234
- msgstr "Gateway"
235
-
236
- #: app/features/books.php:322 app/features/books.php:326
237
- #: app/features/books.php:331 app/features/books.php:335
238
- #: app/features/books.php:352 app/features/books.php:690
239
- #: app/features/books.php:748
240
- msgid "Unknown"
241
- msgstr "Unbekannt"
242
-
243
- #: app/features/books.php:325 app/features/books.php:389
244
- #: app/features/books.php:651 app/features/books.php:709
245
- #: app/libraries/main.php:1544
246
- msgid "Transaction ID"
247
- msgstr "Transaktions-ID"
248
-
249
- #: app/features/books.php:334 app/features/books.php:651
250
- #: app/features/books.php:709 app/features/books.php:1099
251
- #: app/features/events.php:508 app/features/events.php:580
252
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
253
- #: app/modules/booking/steps/tickets.php:20
254
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
255
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
256
- #: app/skins/single/modern.php:146
257
- msgid "Date"
258
- msgstr "Datum"
259
-
260
- #: app/features/books.php:335
261
- #, php-format
262
- msgid "%s to %s"
263
- msgstr "%s zu %s"
264
-
265
- #: app/features/books.php:338 app/features/mec/notifications.php:140
266
- #: app/features/mec/notifications.php:177
267
- #: app/features/mec/notifications.php:214
268
- #: app/features/mec/notifications.php:255
269
- #: app/features/mec/notifications.php:307
270
- msgid "Total Attendees"
271
- msgstr ""
272
-
273
- #: app/features/books.php:341 app/features/books.php:384
274
- #: app/libraries/main.php:1553
275
- msgid "Attendees"
276
- msgstr "Teilnehmer"
277
-
278
- #: app/features/books.php:347 app/features/books.php:651
279
- #: app/features/books.php:709 app/features/books.php:1114
280
- #: app/features/events.php:371 app/features/events.php:945
281
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
282
- #: app/features/organizers.php:110 app/features/organizers.php:150
283
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
284
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
285
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
286
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
287
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
288
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
289
- #: app/skins/single/modern.php:38
290
- msgid "Email"
291
- msgstr "Email"
292
-
293
- #: app/features/books.php:351 app/features/books.php:431
294
- #: app/features/books.php:651 app/features/books.php:709
295
- #: app/features/books.php:1106 app/libraries/main.php:1559
296
- #: app/libraries/main.php:3985
297
- msgid "Ticket"
298
- msgstr "Ticket"
299
-
300
- #: app/features/books.php:358 app/libraries/notifications.php:516
301
- msgid "Yes"
302
- msgstr "Ja"
303
-
304
- #: app/features/books.php:358 app/libraries/notifications.php:516
305
- msgid "No"
306
- msgstr "Nein"
307
-
308
- #: app/features/books.php:390
309
- msgid "Book Date"
310
- msgstr "Buchungsdatum"
311
-
312
- #: app/features/books.php:602
313
- msgid "Confirm"
314
- msgstr "Bestätigen"
315
-
316
- #: app/features/books.php:602
317
- msgid "Reject"
318
- msgstr "Ablehnen"
319
-
320
- #: app/features/books.php:602 app/features/events.php:1569
321
- #: app/features/events.php:1570
322
- msgid "CSV Export"
323
- msgstr "CSV Export"
324
-
325
- #: app/features/books.php:602 app/features/events.php:1572
326
- #: app/features/events.php:1573
327
- msgid "MS Excel Export"
328
- msgstr "MS Excel Export"
329
-
330
- #: app/features/books.php:651 app/features/books.php:709
331
- #: app/features/events.php:1631 app/features/events.php:1675
332
- #: app/features/ix.php:2328 app/features/ix.php:2369
333
- #: app/features/labels.php:150 app/features/locations.php:228
334
- #: app/features/organizers.php:198
335
- msgid "ID"
336
- msgstr "ID"
337
-
338
- #: app/features/books.php:651 app/features/books.php:709
339
- msgid "Total Price"
340
- msgstr ""
341
-
342
- #: app/features/books.php:651 app/features/books.php:709
343
- #: app/features/books.php:1113 app/features/events.php:370
344
- #: app/features/fes/form.php:441 app/features/gateways.php:503
345
- #: app/features/labels.php:151 app/features/organizers.php:268
346
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
347
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
348
- msgid "Name"
349
- msgstr "Name"
350
-
351
- #: app/features/books.php:923
352
- msgid "Security nonce is missing."
353
- msgstr "Sicherheits-Nonce fehlt."
354
-
355
- #: app/features/books.php:926
356
- msgid "Security nonce is invalid."
357
- msgstr ""
358
- "Sicherheits-Nonce ungültig\n"
359
- " "
360
-
361
- #: app/features/books.php:935
362
- msgid "Invalid request."
363
- msgstr "Ungültige Anforderung"
364
-
365
- #: app/features/books.php:963
366
- msgid "Please select some tickets!"
367
- msgstr "Bitte wählen Sie einige Tickets!"
368
-
369
- #: app/features/books.php:969
370
- msgid "Captcha is invalid. Please try again."
371
- msgstr "Das eingegebene Captchas ist ungültig! Bitte versuchen Sie es erneut."
372
-
373
- #: app/features/books.php:1015
374
- msgid "Please fill the form correctly. Email and Name fields are required!"
375
- msgstr ""
376
- "Bitte füllen Sie das Formular korrekt aus. Email und Name Felder sind "
377
- "Pflichtfelder!"
378
-
379
- #: app/features/books.php:1085
380
- msgid "Event is invalid. Please select an event."
381
- msgstr "Das Event ist ungültig. Bitte wählen Sie eine Veranstaltung."
382
-
383
- #: app/features/books.php:1093
384
- msgid ""
385
- "No ticket ro future dates found for this event! Please try another event."
386
- msgstr ""
387
- "Kein Ticket für zukünftige Termine für dieses Event gefunden! Bitte "
388
- "versuchen Sie eine andere Veranstaltung."
389
-
390
- #: app/features/books.php:1175
391
- msgid "Attendee Information"
392
- msgstr "Teilnehmerinformationen"
393
-
394
  #: app/features/colors.php:50 app/features/fes/form.php:566
395
- #: app/features/mec/settings.php:842
396
  msgid "Event Color"
397
  msgstr "Farbe der Veranstaltung"
398
 
399
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
400
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
401
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
402
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
403
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
404
- #: app/features/mec/support.php:18
405
  msgid "Settings"
406
  msgstr "Einstellungen"
407
 
 
 
 
 
 
 
 
 
 
408
  #: app/features/contextual.php:63
409
  msgid ""
410
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -422,7 +76,7 @@ msgstr ""
422
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
423
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
424
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
425
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
426
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
427
  msgid "Payment Gateways"
428
  msgstr "Zahlungs-Gateways"
@@ -440,7 +94,7 @@ msgstr ""
440
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
441
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
442
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
443
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
444
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
445
  msgid "Notifications"
446
  msgstr "Benachrichtigungen"
@@ -517,234 +171,102 @@ msgstr ""
517
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
518
  "\"0\" allowfullscreen></iframe>"
519
 
520
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
521
- #: app/features/mec/settings.php:247
522
  msgid "General Options"
523
  msgstr "Allgemeine Einstellungen"
524
 
525
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
526
- #: app/features/mec/settings.php:399
527
  msgid "Slugs/Permalinks"
528
  msgstr "Slug/Permalinks"
529
 
530
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
531
- #: app/features/mec/settings.php:419
532
  msgid "Event Details/Single Event Page"
533
  msgstr "Event Details / Einzelveranstaltungsseite"
534
 
535
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
536
- #: app/features/mec/settings.php:451
537
  msgid "Currency Options"
538
  msgstr "Währungseinstellungen"
539
 
540
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
541
- #: app/features/mec/settings.php:503
542
  msgid "Google Maps Options"
543
  msgstr "Google Maps Einstellungen"
544
 
545
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
546
- #: app/features/mec/settings.php:577
547
  msgid "Google Recaptcha Options"
548
  msgstr "Google Recaptcha Einstellungen"
549
 
550
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
551
- #: app/features/mec/settings.php:695
552
  msgid "Countdown Options"
553
  msgstr "Countdown Einstellungsoptionen"
554
 
555
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
556
- #: app/features/mec/settings.php:716
557
  msgid "Social Networks"
558
  msgstr "Soziale Netzwerke"
559
 
560
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
561
- #: app/features/mec/settings.php:741
562
  msgid "Next Event Module"
563
  msgstr "Nächstes Veranstaltung Modul"
564
 
565
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
566
- #: app/features/mec/settings.php:769
567
  msgid "Frontend Event Submission"
568
  msgstr "Erstellung von Veranstaltungen im Frontend"
569
 
570
  #: app/features/contextual.php:298 app/features/events.php:570
571
- #: app/features/mec/settings.php:126
572
  msgid "Exceptional Days"
573
  msgstr "Herausgenommene Tage "
574
 
575
- #: app/features/contextual.php:318 app/features/coupons.php:76
576
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
577
- #: app/features/mec/settings.php:1014
 
 
 
 
578
  msgid "Coupons"
579
  msgstr "Gutscheine"
580
 
581
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
582
- #: app/features/mec/settings.php:1096
583
  msgid "BuddyPress Integration"
584
  msgstr "Buddy Press Integration"
585
 
586
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
587
- #: app/features/mec/settings.php:1126
588
  msgid "Mailchimp Integration"
589
  msgstr "Mailchimp Integration"
590
 
591
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
592
- #: app/features/mec/settings.php:1162
593
  msgid "MEC Activation"
594
  msgstr "MEC Aktivierung"
595
 
596
- #: app/features/coupons.php:79
597
- msgid "Coupon"
598
- msgstr "Gutschein"
599
-
600
- #: app/features/coupons.php:80
601
- msgid "All Coupons"
602
- msgstr "Alle Gutscheine"
603
-
604
- #: app/features/coupons.php:81
605
- msgid "Edit Coupon"
606
- msgstr "Gutschein ändern"
607
-
608
- #: app/features/coupons.php:82
609
- msgid "View Coupon"
610
- msgstr "Gutschein anzeigen"
611
-
612
- #: app/features/coupons.php:83
613
- msgid "Update Coupon"
614
- msgstr "Gutschein aktualisieren"
615
-
616
- #: app/features/coupons.php:84
617
- msgid "Add New Coupon"
618
- msgstr "Gutschein hinzufügen"
619
-
620
- #: app/features/coupons.php:85
621
- msgid "New Coupon Name"
622
- msgstr "Neue Bezeichnung für Gutschein"
623
-
624
- #: app/features/coupons.php:86
625
- msgid "Popular Coupons"
626
- msgstr "Beliebte Gutscheine"
627
-
628
- #: app/features/coupons.php:87
629
- msgid "Search Coupons"
630
- msgstr "Gutscheine suchen"
631
-
632
- #: app/features/coupons.php:116 app/features/coupons.php:177
633
- msgid "Discount Type"
634
- msgstr "Rabatt-Art"
635
-
636
- #: app/features/coupons.php:120 app/features/coupons.php:179
637
- #: app/features/events.php:854 app/features/events.php:879
638
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
639
- msgid "Percent"
640
- msgstr "Prozent"
641
-
642
- #: app/features/coupons.php:121 app/features/coupons.php:180
643
- #: app/features/events.php:849 app/features/events.php:874
644
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
645
- msgid "Amount"
646
- msgstr "Betrag"
647
-
648
- #: app/features/coupons.php:127 app/features/coupons.php:184
649
- #: app/features/coupons.php:248 app/features/coupons.php:322
650
- #: app/libraries/book.php:505
651
- msgid "Discount"
652
- msgstr "Rabatt"
653
-
654
- #: app/features/coupons.php:131 app/features/coupons.php:186
655
- msgid ""
656
- "Discount percent, considered as amount if you set the discount type to amount"
657
- msgstr ""
658
- "Rabattprozentsatz, gilt als Betrag, wenn Sie den Rabatttyp auf Betrag "
659
- "festlegen"
660
-
661
- #: app/features/coupons.php:136 app/features/coupons.php:189
662
- msgid "Usage Limit"
663
- msgstr "Nutzungslimit"
664
-
665
- #: app/features/coupons.php:140 app/features/coupons.php:191
666
- msgid "Insert -1 for unlimited usage"
667
- msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
668
-
669
- #: app/features/coupons.php:145 app/features/coupons.php:194
670
- #: app/features/gateways.php:1202
671
- msgid "Expiration Date"
672
- msgstr "Ablaufdatum"
673
-
674
- #: app/features/coupons.php:149 app/features/coupons.php:196
675
- msgid "Leave it empty for no expiration!"
676
- msgstr "Lassen Sie es leer für keine Verfallszeit!"
677
-
678
- #: app/features/coupons.php:154 app/features/coupons.php:199
679
- msgid "Target Event"
680
- msgstr "Zielevent"
681
-
682
- #: app/features/coupons.php:158 app/features/coupons.php:201
683
- #: app/features/events.php:127
684
- msgid "All Events"
685
- msgstr "Alle Veranstaltungen"
686
-
687
- #: app/features/coupons.php:246
688
- msgid "Name/Code"
689
- msgstr "Name/Code"
690
-
691
- #: app/features/coupons.php:247 app/features/events.php:632
692
- #: app/features/events.php:644 app/features/events.php:752
693
- #: app/features/events.php:784
694
- msgid "Description"
695
- msgstr "Beschreibung"
696
-
697
- #: app/features/coupons.php:249
698
- #: app/features/mec/meta_boxes/display_options.php:85
699
- #: app/features/mec/meta_boxes/display_options.php:194
700
- #: app/features/mec/meta_boxes/display_options.php:244
701
- #: app/features/mec/meta_boxes/display_options.php:632
702
- #: app/features/mec/meta_boxes/display_options.php:806
703
- #: app/features/mec/meta_boxes/display_options.php:877
704
- msgid "Limit"
705
- msgstr "Limit"
706
-
707
- #: app/features/coupons.php:250 app/features/labels.php:153
708
- #: app/features/locations.php:231 app/features/organizers.php:201
709
- #: app/modules/booking/steps/tickets.php:36
710
- msgid "Count"
711
- msgstr "Zähler"
712
-
713
- #: app/features/coupons.php:280 app/features/events.php:715
714
- #: app/features/events.php:769 app/features/events.php:801
715
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
716
- #: app/skins/available_spot/tpl.php:84
717
- msgid "Unlimited"
718
- msgstr "Unlimitiert"
719
-
720
- #: app/features/coupons.php:309
721
- msgid "Discount coupon is invalid!"
722
- msgstr "Der Rabattgutschein ist ungültig!"
723
-
724
- #: app/features/coupons.php:311
725
- msgid "Discount coupon usage limit reached!"
726
- msgstr "Die Anzahl der Nutzungen für den Gutschein ist überschritten!"
727
-
728
- #: app/features/coupons.php:313
729
- msgid "Discount coupon is expired!"
730
- msgstr "Rabattgutschein ist abgelaufen!"
731
-
732
- #: app/features/coupons.php:315
733
- msgid "Discount is not valid for this event!"
734
- msgstr "Rabatt ist für diese Veranstaltung nicht gültig!"
735
-
736
- #: app/features/coupons.php:326
737
- #, php-format
738
- msgid "Coupon is valid and you get %s discount."
739
- msgstr "Der Gutschein ist gültig. Sie erhalten %s Rabatt"
740
-
741
  #: app/features/events.php:122 app/features/ix/export.php:33
742
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
743
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
744
  msgid "Events"
745
  msgstr "Veranstaltungen"
746
 
747
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
748
  msgid "Add Event"
749
  msgstr "Veranstaltung hinzufügen"
750
 
@@ -757,6 +279,10 @@ msgstr "Neue Veranstaltung hinzufügen"
757
  msgid "No events found!"
758
  msgstr "Keine Veranstaltungen gefunden!"
759
 
 
 
 
 
760
  #: app/features/events.php:128
761
  msgid "Edit Event"
762
  msgstr ""
@@ -779,7 +305,7 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
779
  #: app/features/mec/meta_boxes/search_form.php:285
780
  #: app/features/mec/meta_boxes/search_form.php:325
781
  #: app/features/mec/meta_boxes/search_form.php:372
782
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
783
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
784
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
785
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -787,8 +313,8 @@ msgid "Category"
787
  msgstr "Kategorie"
788
 
789
  #: app/features/events.php:143 app/features/fes/form.php:518
790
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
791
- #: app/libraries/main.php:3952
792
  msgid "Categories"
793
  msgstr "Kategorien"
794
 
@@ -855,13 +381,13 @@ msgstr "Veranstaltungsdetails"
855
  #: app/features/events.php:286 app/features/events.php:1631
856
  #: app/features/events.php:1675 app/features/fes/form.php:479
857
  #: app/features/ix.php:2328 app/features/ix.php:2369
858
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
859
  msgid "Event Cost"
860
  msgstr ""
861
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
862
 
863
  #: app/features/events.php:289 app/features/fes/form.php:482
864
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
865
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
866
  #: app/skins/single/modern.php:179
867
  msgid "Cost"
@@ -875,6 +401,26 @@ msgstr "Zusätzliche Anmerkungen zum Event "
875
  msgid "Guest Data"
876
  msgstr "Gäste Daten"
877
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
878
  #: app/features/events.php:375 app/features/fes/form.php:221
879
  msgid "Date and Time"
880
  msgstr "Datum und Uhrzeit"
@@ -884,7 +430,7 @@ msgstr "Datum und Uhrzeit"
884
  #: app/features/events.php:1675 app/features/fes/form.php:225
885
  #: app/features/fes/form.php:229 app/features/ix.php:2328
886
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
887
- #: app/features/mec/dashboard.php:262
888
  #: app/features/mec/meta_boxes/display_options.php:42
889
  #: app/features/mec/meta_boxes/display_options.php:129
890
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -916,7 +462,7 @@ msgstr "PM"
916
  #: app/features/events.php:1675 app/features/fes/form.php:265
917
  #: app/features/fes/form.php:269 app/features/ix.php:2328
918
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
919
- #: app/features/mec/dashboard.php:263
920
  msgid "End Date"
921
  msgstr "Ende Datum"
922
 
@@ -953,7 +499,7 @@ msgid "Repeats"
953
  msgstr "Wiederholend"
954
 
955
  #: app/features/events.php:481 app/features/fes/form.php:327
956
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
957
  msgid "Daily"
958
  msgstr "Täglich"
959
 
@@ -975,12 +521,12 @@ msgid "Weekly"
975
  msgstr "Wöchentlich"
976
 
977
  #: app/features/events.php:486 app/features/fes/form.php:332
978
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
979
  msgid "Monthly"
980
  msgstr "Monatlich"
981
 
982
  #: app/features/events.php:487 app/features/fes/form.php:333
983
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
984
  msgid "Yearly"
985
  msgstr "Jährlich"
986
 
@@ -1035,6 +581,15 @@ msgstr "Samstag"
1035
  msgid "Sunday"
1036
  msgstr "Sonntag"
1037
 
 
 
 
 
 
 
 
 
 
1038
  #: app/features/events.php:509 app/features/events.php:581
1039
  #: app/features/events.php:623 app/features/events.php:743
1040
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1083,7 +638,7 @@ msgstr ""
1083
  "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
1084
  "Eventwiederholungen, oder um das Wochenende auszuschließen"
1085
 
1086
- #: app/features/events.php:620 app/features/mec/settings.php:866
1087
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1088
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1089
  msgid "Hourly Schedule"
@@ -1104,33 +659,35 @@ msgstr "bis zum Beispiel 08:45 Uhr"
1104
  #: app/features/events.php:631 app/features/events.php:643
1105
  #: app/features/events.php:1449 app/features/events.php:1631
1106
  #: app/features/events.php:1675 app/features/fes/form.php:214
1107
- #: app/features/gateways.php:550 app/features/gateways.php:617
1108
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1109
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1110
- #: app/features/ix.php:2369
1111
  msgid "Title"
1112
  msgstr "Titel"
1113
 
 
 
 
 
 
1114
  #: app/features/events.php:633 app/features/events.php:645
1115
  #: app/features/events.php:771 app/features/events.php:803
1116
  #: app/features/events.php:859 app/features/events.php:884
1117
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1118
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1119
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1120
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1121
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1122
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1123
- #: app/libraries/main.php:2162
1124
  msgid "Remove"
1125
  msgstr "Entfernen"
1126
 
1127
  #: app/features/events.php:665 app/features/fes/form.php:456
1128
- #: app/features/mec/settings.php:812
1129
  msgid "Event Links"
1130
  msgstr "Veranstaltungslinks"
1131
 
1132
  #: app/features/events.php:667 app/features/fes/form.php:458
1133
- #: app/libraries/main.php:3981
1134
  msgid "Event Link"
1135
  msgstr "Veranstaltungslink"
1136
 
@@ -1149,7 +706,7 @@ msgstr ""
1149
  "einschließlich http(s)://"
1150
 
1151
  #: app/features/events.php:672 app/features/fes/form.php:463
1152
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1153
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1154
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1155
  msgid "More Info"
@@ -1182,12 +739,18 @@ msgstr ""
1182
  msgid "Total booking limits"
1183
  msgstr "Gesamt Verfügbare Plätze"
1184
 
 
 
 
 
 
 
1185
  #: app/features/events.php:717
1186
  msgid "100"
1187
  msgstr "z.B. 100"
1188
 
1189
  #: app/features/events.php:735 app/libraries/book.php:59
1190
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1191
  msgid "Tickets"
1192
  msgstr "Tickets"
1193
 
@@ -1202,6 +765,10 @@ msgstr ""
1202
  msgid "Ticket Name"
1203
  msgstr "Ticket Name"
1204
 
 
 
 
 
1205
  #: app/features/events.php:757 app/features/events.php:789
1206
  msgid "Insert 0 for free ticket. Only numbers please."
1207
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
@@ -1227,12 +794,17 @@ msgid "Inherit from global options"
1227
  msgstr "Aus den globalen Einstellungen übernehmen"
1228
 
1229
  #: app/features/events.php:845 app/features/events.php:870
1230
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1231
  msgid "Fee Title"
1232
  msgstr "Gebühren Name"
1233
 
 
 
 
 
 
1234
  #: app/features/events.php:850 app/features/events.php:875
1235
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1236
  msgid ""
1237
  "Fee amount, considered as fixed amount if you set the type to amount "
1238
  "otherwise considered as percentage"
@@ -1240,39 +812,44 @@ msgstr ""
1240
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
1241
  "sonst als Prozentsatz"
1242
 
 
 
 
 
 
1243
  #: app/features/events.php:855 app/features/events.php:880
1244
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1245
  msgid "Amount (Per Ticket)"
1246
  msgstr "Betrag (pro Ticket)"
1247
 
1248
  #: app/features/events.php:856 app/features/events.php:881
1249
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1250
  msgid "Amount (Per Booking)"
1251
  msgstr "Betrag (pro Buchung)"
1252
 
1253
  #: app/features/events.php:944 app/features/mec/regform.php:117
1254
- #: app/libraries/main.php:1841
1255
  msgid "Text"
1256
  msgstr "Text"
1257
 
1258
  #: app/features/events.php:946 app/features/mec/regform.php:119
1259
  #: app/features/organizers.php:102 app/features/organizers.php:146
1260
- #: app/libraries/main.php:1899
1261
  msgid "Tel"
1262
  msgstr "Tel"
1263
 
1264
  #: app/features/events.php:947 app/features/mec/regform.php:120
1265
- #: app/libraries/main.php:1928
1266
  msgid "Textarea"
1267
  msgstr "Textbereich"
1268
 
1269
  #: app/features/events.php:948 app/features/mec/regform.php:121
1270
- #: app/libraries/main.php:1981
1271
  msgid "Checkboxes"
1272
  msgstr "Checkboxes"
1273
 
1274
  #: app/features/events.php:949 app/features/mec/regform.php:122
1275
- #: app/libraries/main.php:2025
1276
  msgid "Radio Buttons"
1277
  msgstr "Radio Buttons"
1278
 
@@ -1321,17 +898,17 @@ msgstr "Radio Buttons"
1321
  #: app/features/mec/meta_boxes/search_form.php:436
1322
  #: app/features/mec/meta_boxes/search_form.php:443
1323
  #: app/features/mec/meta_boxes/search_form.php:450
1324
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1325
  msgid "Dropdown"
1326
  msgstr "Dropdown"
1327
 
1328
  #: app/features/events.php:951 app/features/mec/regform.php:124
1329
- #: app/libraries/main.php:2116
1330
  msgid "Agreement"
1331
  msgstr "Zustimmung"
1332
 
1333
  #: app/features/events.php:952 app/features/mec/regform.php:125
1334
- #: app/libraries/main.php:1957
1335
  msgid "Paragraph"
1336
  msgstr "Absatz"
1337
 
@@ -1357,7 +934,7 @@ msgstr "Veranstalter"
1357
  #: app/features/events.php:1675 app/features/ix.php:2328
1358
  #: app/features/ix.php:2369 app/features/locations.php:58
1359
  #: app/features/locations.php:229 app/features/locations.php:281
1360
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1361
  #: app/features/mec/meta_boxes/display_options.php:641
1362
  #: app/features/mec/meta_boxes/search_form.php:38
1363
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1367,8 +944,8 @@ msgstr "Veranstalter"
1367
  #: app/features/mec/meta_boxes/search_form.php:292
1368
  #: app/features/mec/meta_boxes/search_form.php:332
1369
  #: app/features/mec/meta_boxes/search_form.php:379
1370
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1371
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1372
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1373
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1374
  #: app/skins/single/modern.php:77
@@ -1377,7 +954,7 @@ msgstr "Ort"
1377
 
1378
  #: app/features/events.php:1451 app/features/events.php:1631
1379
  #: app/features/events.php:1675 app/features/ix.php:2328
1380
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1381
  #: app/features/mec/meta_boxes/display_options.php:642
1382
  #: app/features/mec/meta_boxes/search_form.php:45
1383
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1390,7 +967,7 @@ msgstr "Ort"
1390
  #: app/features/mec/meta_boxes/search_form.php:433
1391
  #: app/features/organizers.php:58 app/features/organizers.php:199
1392
  #: app/features/organizers.php:255 app/features/organizers.php:257
1393
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1394
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1395
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1396
  #: app/skins/single/modern.php:21
@@ -1409,6 +986,14 @@ msgstr "Autor"
1409
  msgid "iCal Export"
1410
  msgstr "ical Export"
1411
 
 
 
 
 
 
 
 
 
1412
  #: app/features/events.php:1575 app/features/events.php:1576
1413
  msgid "XML Export"
1414
  msgstr "XML Export"
@@ -1421,6 +1006,13 @@ msgstr "JSON Export"
1421
  msgid "Duplicate"
1422
  msgstr "Kopie"
1423
 
 
 
 
 
 
 
 
1424
  #: app/features/events.php:1631 app/features/events.php:1675
1425
  #: app/features/ix.php:2328 app/features/ix.php:2369
1426
  msgid "Start Time"
@@ -1510,7 +1102,6 @@ msgid "Note to reviewer"
1510
  msgstr "Zusätzliche Anmerkungen zum Event "
1511
 
1512
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1513
- #: app/features/gateways.php:695
1514
  msgid "Submit"
1515
  msgstr "Buchung abschließen"
1516
 
@@ -1526,7 +1117,7 @@ msgstr "z.B. IhrName@ihrewebseite.de"
1526
  msgid "eg. John Smith"
1527
  msgstr "z.B. Max Mustermann"
1528
 
1529
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1530
  msgid "Featured Image"
1531
  msgstr "Ausgewähltes Bild"
1532
 
@@ -1535,14 +1126,14 @@ msgid "Remove Image"
1535
  msgstr "Bild entfernen"
1536
 
1537
  #: app/features/fes/form.php:543 app/features/labels.php:61
1538
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1539
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1540
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1541
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1542
  msgid "Labels"
1543
  msgstr "Labels"
1544
 
1545
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1546
  #: app/features/mec/meta_boxes/filter.php:138
1547
  msgid "Tags"
1548
  msgstr "Schlagworte"
@@ -1569,292 +1160,6 @@ msgstr "Anzeigen"
1569
  msgid "No events found! %s"
1570
  msgstr "Keine Veranstaltungen gefunden! %s"
1571
 
1572
- #: app/features/gateways.php:70 app/features/gateways.php:327
1573
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1574
- #: app/features/gateways.php:1396
1575
- msgid "Request is invalid!"
1576
- msgstr "Die Anfrage ist ungültig!"
1577
-
1578
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1579
- msgid "Thanks for your booking."
1580
- msgstr "Vielen Dank für Ihre Buchung."
1581
-
1582
- #: app/features/gateways.php:307 app/features/gateways.php:545
1583
- msgid "Stripe"
1584
- msgstr "Stripe"
1585
-
1586
- #: app/features/gateways.php:342 app/features/gateways.php:716
1587
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1588
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1589
- msgid "There is no attendee for booking!"
1590
- msgstr "Es gibt keinen Teilnehmer für die Buchung!"
1591
-
1592
- #: app/features/gateways.php:373 app/features/gateways.php:743
1593
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1594
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1595
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1596
- msgid ""
1597
- "Thanks for your booking. Your tickets booked, booking verification might be "
1598
- "needed, please check your email."
1599
- msgstr ""
1600
- "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
1601
- "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
1602
-
1603
- #: app/features/gateways.php:390
1604
- #, php-format
1605
- msgid "MEC Transaction ID: %s"
1606
- msgstr "Transaktions-ID: %s"
1607
-
1608
- #: app/features/gateways.php:473 app/features/gateways.php:668
1609
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1610
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1611
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1612
- msgid "Download Invoice"
1613
- msgstr "Download Rechnung\n"
1614
-
1615
- #: app/features/gateways.php:509
1616
- msgid "Card Number"
1617
- msgstr "Kartennummer"
1618
-
1619
- #: app/features/gateways.php:515
1620
- msgid "CVC"
1621
- msgstr "CVC"
1622
-
1623
- #: app/features/gateways.php:521
1624
- msgid "Expiration (MM/YYYY)"
1625
- msgstr "Ablauf (MM/JJJJ)"
1626
-
1627
- #: app/features/gateways.php:522
1628
- msgid "Month"
1629
- msgstr "Monat "
1630
-
1631
- #: app/features/gateways.php:524
1632
- msgid "Year"
1633
- msgstr "Jahr"
1634
-
1635
- #: app/features/gateways.php:532 app/features/gateways.php:919
1636
- #: app/features/gateways.php:1223
1637
- msgid "Pay"
1638
- msgstr "Bezahlen"
1639
-
1640
- #: app/features/gateways.php:556 app/features/gateways.php:623
1641
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1642
- #: app/features/gateways.php:1621
1643
- msgid "Comment"
1644
- msgstr "Kommentar"
1645
-
1646
- #: app/features/gateways.php:559 app/features/gateways.php:626
1647
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1648
- #: app/features/gateways.php:1624
1649
- msgid "HTML allowed."
1650
- msgstr "HTML erlaubt"
1651
-
1652
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1653
- msgid "Secret Key"
1654
- msgstr "Geheimschlüssel"
1655
-
1656
- #: app/features/gateways.php:569
1657
- msgid "Publishable Key"
1658
- msgstr "publizierbarer Schlüssel"
1659
-
1660
- #: app/features/gateways.php:598 app/features/gateways.php:612
1661
- msgid "Pay Locally"
1662
- msgstr "Vor Ort bezahlen"
1663
-
1664
- #: app/features/gateways.php:766 app/features/gateways.php:780
1665
- msgid "PayPal Express"
1666
- msgstr "PayPal Express"
1667
-
1668
- #: app/features/gateways.php:798
1669
- msgid "Business Account"
1670
- msgstr "Kundenkonto"
1671
-
1672
- #: app/features/gateways.php:801
1673
- msgid "Normally PayPal Email."
1674
- msgstr "Normale PayPal Email."
1675
-
1676
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1677
- msgid "Mode"
1678
- msgstr "Modus"
1679
-
1680
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1681
- msgid "Live"
1682
- msgstr "Live"
1683
-
1684
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1685
- msgid "Sandbox"
1686
- msgstr "Sandbox"
1687
-
1688
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1689
- msgid "Waiting for getting response from gateway."
1690
- msgstr "Warte auf Antwort des Gateways."
1691
-
1692
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1693
- msgid "Payment was invalid! Booking failed."
1694
- msgstr "Die Transaktion war ungültig. Die Buchung wurde nicht durchgeführt."
1695
-
1696
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1697
- msgid "PayPal Credit Card"
1698
- msgstr "PayPal Kreditkarte"
1699
-
1700
- #: app/features/gateways.php:1089
1701
- msgid "API Username"
1702
- msgstr "API Nutzername"
1703
-
1704
- #: app/features/gateways.php:1095
1705
- msgid "API Password"
1706
- msgstr "API Passwort"
1707
-
1708
- #: app/features/gateways.php:1101
1709
- msgid "API Signature"
1710
- msgstr "API Signatur"
1711
-
1712
- #: app/features/gateways.php:1181
1713
- msgid "First name"
1714
- msgstr "Vorname"
1715
-
1716
- #: app/features/gateways.php:1185
1717
- msgid "Last name"
1718
- msgstr "Nachname"
1719
-
1720
- #: app/features/gateways.php:1189
1721
- msgid "Card Type"
1722
- msgstr "Kartentyp"
1723
-
1724
- #: app/features/gateways.php:1191
1725
- msgid "Visa"
1726
- msgstr "Visa"
1727
-
1728
- #: app/features/gateways.php:1192
1729
- msgid "MasterCard"
1730
- msgstr "MasterCard"
1731
-
1732
- #: app/features/gateways.php:1193
1733
- msgid "Discover"
1734
- msgstr "Discover"
1735
-
1736
- #: app/features/gateways.php:1194
1737
- msgid "American Express"
1738
- msgstr "American Express"
1739
-
1740
- #: app/features/gateways.php:1198
1741
- msgid "CC Number"
1742
- msgstr "Kartennummer"
1743
-
1744
- #: app/features/gateways.php:1215
1745
- msgid "CVV2"
1746
- msgstr "Kartenprüfnummer (CVV)"
1747
-
1748
- #: app/features/gateways.php:1248
1749
- msgid "Payment is invalid."
1750
- msgstr "Die Zahlung ist ungültig."
1751
-
1752
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1753
- msgid "Pay by WooCommerce"
1754
- msgstr "Zahlung über WooCommerce"
1755
-
1756
- #: app/features/gateways.php:1418
1757
- #, php-format
1758
- msgid "Booking fee for %s"
1759
- msgstr "Buchungsgebühr für% s"
1760
-
1761
- #: app/features/gateways.php:1429
1762
- msgid "Your order is created. Please proceed with checkout."
1763
- msgstr "Ihre Buchung ist erstellt. Bitte fortfahren mit checkout."
1764
-
1765
- #: app/features/gateways.php:1591
1766
- msgid "Add to Cart"
1767
- msgstr "in den Warenkorb legen"
1768
-
1769
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1770
- msgid "Checkout"
1771
- msgstr "Zur Kasse gehen"
1772
-
1773
- #: app/features/gateways.php:1612
1774
- msgid "WooCommerce must be installed and activated first."
1775
- msgstr "WooCommerce muss installiert werden und erst aktiviert werden."
1776
-
1777
- #: app/features/gateways.php:1628
1778
- msgid "Automatically complete WC orders"
1779
- msgstr "WC-Aufträge automatisch abschließen"
1780
-
1781
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1782
- msgid "Enabled"
1783
- msgstr "Aktiviert"
1784
-
1785
- #: app/features/gateways.php:1632
1786
- #: app/features/mec/meta_boxes/search_form.php:33
1787
- #: app/features/mec/meta_boxes/search_form.php:40
1788
- #: app/features/mec/meta_boxes/search_form.php:47
1789
- #: app/features/mec/meta_boxes/search_form.php:54
1790
- #: app/features/mec/meta_boxes/search_form.php:61
1791
- #: app/features/mec/meta_boxes/search_form.php:68
1792
- #: app/features/mec/meta_boxes/search_form.php:80
1793
- #: app/features/mec/meta_boxes/search_form.php:87
1794
- #: app/features/mec/meta_boxes/search_form.php:94
1795
- #: app/features/mec/meta_boxes/search_form.php:101
1796
- #: app/features/mec/meta_boxes/search_form.php:108
1797
- #: app/features/mec/meta_boxes/search_form.php:115
1798
- #: app/features/mec/meta_boxes/search_form.php:127
1799
- #: app/features/mec/meta_boxes/search_form.php:134
1800
- #: app/features/mec/meta_boxes/search_form.php:141
1801
- #: app/features/mec/meta_boxes/search_form.php:148
1802
- #: app/features/mec/meta_boxes/search_form.php:155
1803
- #: app/features/mec/meta_boxes/search_form.php:162
1804
- #: app/features/mec/meta_boxes/search_form.php:174
1805
- #: app/features/mec/meta_boxes/search_form.php:181
1806
- #: app/features/mec/meta_boxes/search_form.php:193
1807
- #: app/features/mec/meta_boxes/search_form.php:200
1808
- #: app/features/mec/meta_boxes/search_form.php:207
1809
- #: app/features/mec/meta_boxes/search_form.php:214
1810
- #: app/features/mec/meta_boxes/search_form.php:221
1811
- #: app/features/mec/meta_boxes/search_form.php:228
1812
- #: app/features/mec/meta_boxes/search_form.php:240
1813
- #: app/features/mec/meta_boxes/search_form.php:247
1814
- #: app/features/mec/meta_boxes/search_form.php:254
1815
- #: app/features/mec/meta_boxes/search_form.php:261
1816
- #: app/features/mec/meta_boxes/search_form.php:268
1817
- #: app/features/mec/meta_boxes/search_form.php:275
1818
- #: app/features/mec/meta_boxes/search_form.php:287
1819
- #: app/features/mec/meta_boxes/search_form.php:294
1820
- #: app/features/mec/meta_boxes/search_form.php:301
1821
- #: app/features/mec/meta_boxes/search_form.php:308
1822
- #: app/features/mec/meta_boxes/search_form.php:315
1823
- #: app/features/mec/meta_boxes/search_form.php:327
1824
- #: app/features/mec/meta_boxes/search_form.php:334
1825
- #: app/features/mec/meta_boxes/search_form.php:341
1826
- #: app/features/mec/meta_boxes/search_form.php:348
1827
- #: app/features/mec/meta_boxes/search_form.php:355
1828
- #: app/features/mec/meta_boxes/search_form.php:362
1829
- #: app/features/mec/meta_boxes/search_form.php:374
1830
- #: app/features/mec/meta_boxes/search_form.php:381
1831
- #: app/features/mec/meta_boxes/search_form.php:388
1832
- #: app/features/mec/meta_boxes/search_form.php:395
1833
- #: app/features/mec/meta_boxes/search_form.php:402
1834
- #: app/features/mec/meta_boxes/search_form.php:409
1835
- #: app/features/mec/meta_boxes/search_form.php:421
1836
- #: app/features/mec/meta_boxes/search_form.php:428
1837
- #: app/features/mec/meta_boxes/search_form.php:435
1838
- #: app/features/mec/meta_boxes/search_form.php:442
1839
- #: app/features/mec/meta_boxes/search_form.php:449
1840
- #: app/features/mec/meta_boxes/search_form.php:456
1841
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1842
- #: app/features/mec/settings.php:549
1843
- msgid "Disabled"
1844
- msgstr "Deaktiviert"
1845
-
1846
- #: app/features/gateways.php:1634
1847
- msgid "It applies only to the orders that are related to MEC."
1848
- msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
1849
-
1850
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1851
- msgid "Free"
1852
- msgstr "kostenfrei"
1853
-
1854
- #: app/features/gateways.php:1744
1855
- msgid "This booking is not free!"
1856
- msgstr "Diese Buchung ist nicht kostenlos!"
1857
-
1858
  #: app/features/ix.php:95
1859
  msgid "MEC - Import / Export"
1860
  msgstr "MEC - Import / Export"
@@ -1887,6 +1192,10 @@ msgstr "Drittanbieter-Plugin ist nicht installiert und aktiviert!"
1887
  msgid "Third Party plugin is invalid!"
1888
  msgstr "Drittanbieter-Plugin ist ungültig!"
1889
 
 
 
 
 
1890
  #: app/features/ix.php:1961 app/features/ix.php:2791
1891
  msgid "Please select some events to import!"
1892
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
@@ -1909,6 +1218,37 @@ msgid "All seems good! Please click %s for authenticating your app."
1909
  msgstr ""
1910
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1911
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1912
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1913
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1914
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1956,7 +1296,7 @@ msgstr ""
1956
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1957
  "exportieren."
1958
 
1959
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1960
  msgid "iCal"
1961
  msgstr "iCal"
1962
 
@@ -1998,6 +1338,10 @@ msgstr ""
1998
  "Wir haben Events für %s Seite gefunden. Bitte wählen Sie Ihre gewünschten "
1999
  "Events zum importieren."
2000
 
 
 
 
 
2001
  #: app/features/ix/export_g_calendar.php:25
2002
  msgid "Add events to Google Calendar"
2003
  msgstr "Events zum Google Kalender hinzufügen"
@@ -2055,7 +1399,7 @@ msgstr "Umschalten"
2055
  msgid "Add to Google Calendar"
2056
  msgstr "Zum Google Kalender hinzufügen"
2057
 
2058
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
2059
  msgid "Checking ..."
2060
  msgstr "Überprüfung"
2061
 
@@ -2097,10 +1441,10 @@ msgstr ""
2097
  msgid "ICS Feed"
2098
  msgstr ""
2099
 
2100
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2101
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2102
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2103
- #: app/features/mec/settings.php:1034
2104
  #, php-format
2105
  msgid "%s is required to use this feature."
2106
  msgstr ""
@@ -2112,10 +1456,10 @@ msgstr ""
2112
  #: app/features/mec/meta_boxes/display_options.php:558
2113
  #: app/features/mec/meta_boxes/display_options.php:608
2114
  #: app/features/mec/meta_boxes/display_options.php:734
2115
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2116
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2117
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2118
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2119
  msgid "Pro version of Modern Events Calendar"
2120
  msgstr ""
2121
 
@@ -2353,6 +1697,11 @@ msgstr "Farbe"
2353
  msgid "Select label color"
2354
  msgstr "Wähle Label Farbe"
2355
 
 
 
 
 
 
2356
  #: app/features/labels.php:154 app/features/locations.php:232
2357
  #: app/features/organizers.php:202
2358
  msgid "Slug"
@@ -2363,8 +1712,8 @@ msgstr "Slug"
2363
  msgid "Event %s"
2364
  msgstr "Event %s"
2365
 
2366
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2367
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2368
  msgid "Locations"
2369
  msgstr "Orte"
2370
 
@@ -2435,7 +1784,7 @@ msgstr ""
2435
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
2436
  "Westfalenhalle"
2437
 
2438
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2439
  msgid "Event Location"
2440
  msgstr "Veranstaltungsort"
2441
 
@@ -2467,91 +1816,91 @@ msgstr "Bild wählen"
2467
  msgid "Don't show map in single event page"
2468
  msgstr "Karte in Einzelansicht nicht anzeigen"
2469
 
2470
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2471
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2472
  msgid "Organizers"
2473
  msgstr "Veranstalter"
2474
 
2475
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2476
- #: app/features/mec/dashboard.php:92
2477
  msgid "Shortcodes"
2478
  msgstr "Shortcodes"
2479
 
2480
- #: app/features/modern-events-calendar-lite.php:195
2481
  msgid "MEC - Settings"
2482
  msgstr "MEC - Einstellungen"
2483
 
2484
- #: app/features/modern-events-calendar-lite.php:210
2485
  msgid "Add Shortcode"
2486
  msgstr "Shortcode hinzufügen"
2487
 
2488
- #: app/features/modern-events-calendar-lite.php:211
2489
  msgid "Add New Shortcode"
2490
  msgstr "Neuen Shortcode hinzufügen"
2491
 
2492
- #: app/features/modern-events-calendar-lite.php:212
2493
  msgid "No shortcodes found!"
2494
  msgstr "Keine Shortcodes gefunden!"
2495
 
2496
- #: app/features/modern-events-calendar-lite.php:213
2497
  msgid "All Shortcodes"
2498
  msgstr "Alle Shortcodes"
2499
 
2500
- #: app/features/modern-events-calendar-lite.php:214
2501
  msgid "Edit shortcodes"
2502
  msgstr "Shortcode ändern"
2503
 
2504
- #: app/features/modern-events-calendar-lite.php:215
2505
  msgid "No shortcodes found in Trash!"
2506
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
2507
 
2508
- #: app/features/modern-events-calendar-lite.php:262
2509
  msgid "Display Options"
2510
  msgstr "Darstellungsoptionen"
2511
 
2512
- #: app/features/modern-events-calendar-lite.php:263
2513
  msgid "Filter Options"
2514
  msgstr "Filteroptionen"
2515
 
2516
- #: app/features/modern-events-calendar-lite.php:265
2517
  msgid "Search Form"
2518
  msgstr "Suche Formular"
2519
 
2520
- #: app/features/modern-events-calendar-lite.php:556
2521
  msgid "Single Event Display Method"
2522
  msgstr "Single Event Anzeigemethode"
2523
 
2524
- #: app/features/modern-events-calendar-lite.php:561
2525
  msgid "Separate Window"
2526
  msgstr "Separates Fenster"
2527
 
2528
- #: app/features/modern-events-calendar-lite.php:562
2529
  msgid "Modal 1"
2530
  msgstr "Modal 1"
2531
 
2532
- #: app/features/mec/dashboard.php:54
2533
  #, php-format
2534
  msgid "Welcome %s"
2535
  msgstr "Willkommen %s"
2536
 
2537
- #: app/features/mec/dashboard.php:57
2538
  #, php-format
2539
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2540
  msgstr ""
2541
 
2542
- #: app/features/mec/dashboard.php:57
2543
  msgid "Modern Event Calendar"
2544
  msgstr ""
2545
 
2546
- #: app/features/mec/dashboard.php:57
2547
  msgid "Modern Event Calendar (Lite)"
2548
  msgstr ""
2549
 
2550
- #: app/features/mec/dashboard.php:66
2551
  msgid "Version"
2552
  msgstr "Version"
2553
 
2554
- #: app/features/mec/dashboard.php:75
2555
  #, php-format
2556
  msgid ""
2557
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2559,19 +1908,19 @@ msgid ""
2559
  "Spots, etc you should %s to the Pro version."
2560
  msgstr ""
2561
 
2562
- #: app/features/mec/dashboard.php:75
2563
  msgid "lite"
2564
  msgstr ""
2565
 
2566
- #: app/features/mec/dashboard.php:75
2567
  msgid "upgrade"
2568
  msgstr ""
2569
 
2570
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2571
  msgid "Documentation"
2572
  msgstr "Dokumentation"
2573
 
2574
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2575
  msgid ""
2576
  "Our documentation is simple and functional with full details and cover all "
2577
  "essential aspects from beginning to the most advanced parts."
@@ -2580,22 +1929,22 @@ msgstr ""
2580
  "deckt alle essentiellen Dinge vom Beginn bis zu den fortgeschrittenen Teilen "
2581
  "ab."
2582
 
2583
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2584
  msgid "DOCUMENTATION"
2585
  msgstr "Dokumentation"
2586
 
2587
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2588
  msgid "Support Forum"
2589
  msgstr "Support Forum"
2590
 
2591
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2592
  msgid ""
2593
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2594
  "If you want to use this service you need to upgrade your plugin to Pro "
2595
  "version. Click on the following button."
2596
  msgstr ""
2597
 
2598
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2599
  msgid ""
2600
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2601
  "If you have any issues please don't hesitate to contact us, we will reply as "
@@ -2605,80 +1954,80 @@ msgstr ""
2605
  "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
2606
  "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
2607
 
2608
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2609
  msgid "GO PREMIUM"
2610
  msgstr ""
2611
 
2612
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2613
  msgid "OPEN A TICKET"
2614
  msgstr "Ein Ticket eröffnen"
2615
 
2616
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2617
  msgid "Upcoming Events"
2618
  msgstr "Kommende Veranstaltungen"
2619
 
2620
- #: app/features/mec/dashboard.php:177
2621
  msgid "Popular Gateways"
2622
  msgstr "Beliebte Zahlungsgateways"
2623
 
2624
- #: app/features/mec/dashboard.php:228
2625
  msgid "Total Bookings"
2626
  msgstr "Gesamte Buchungen"
2627
 
2628
- #: app/features/mec/dashboard.php:255
2629
  msgid "This Month"
2630
  msgstr "Diesen Monat"
2631
 
2632
- #: app/features/mec/dashboard.php:256
2633
  msgid "Last Month"
2634
  msgstr "Letzten Monat"
2635
 
2636
- #: app/features/mec/dashboard.php:257
2637
  msgid "This Year"
2638
  msgstr "Diese Jahr"
2639
 
2640
- #: app/features/mec/dashboard.php:258
2641
  msgid "Last Year"
2642
  msgstr "Letztes Jahr"
2643
 
2644
- #: app/features/mec/dashboard.php:270
2645
  msgid "Bar"
2646
  msgstr "Bar"
2647
 
2648
- #: app/features/mec/dashboard.php:271
2649
  msgid "Line"
2650
  msgstr "Linie"
2651
 
2652
- #: app/features/mec/dashboard.php:273
2653
  msgid "Filter"
2654
  msgstr "Filter"
2655
 
2656
- #: app/features/mec/dashboard.php:289
2657
  #, php-format
2658
  msgid "Total Sells (%s)"
2659
  msgstr "Alle Verkäufe (%s)"
2660
 
2661
- #: app/features/mec/dashboard.php:310
2662
  msgid "Change Log"
2663
  msgstr "Änderungsprotokoll"
2664
 
2665
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2666
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2667
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2668
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2669
  msgid "Styling Options"
2670
  msgstr "Styling-Optionen"
2671
 
2672
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2673
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2674
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2675
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2676
  msgid "Custom CSS"
2677
  msgstr "Custom CSS"
2678
 
2679
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2680
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2681
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2682
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2683
  #: app/features/mec/support.php:64
2684
  msgid "Messages"
@@ -2686,7 +2035,7 @@ msgstr "Nachrichten"
2686
 
2687
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2688
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2689
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2690
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2691
  #: app/features/mec/support.php:84
2692
  msgid "Support"
@@ -2699,24 +2048,25 @@ msgstr "Support"
2699
  #: app/features/mec/notifications.php:409
2700
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2701
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2702
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2703
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2704
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2705
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2706
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2707
  msgid "Save Changes"
2708
  msgstr "Änderungen sichern"
2709
 
2710
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2711
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2712
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2713
  #: app/features/mec/styling.php:313
2714
  msgid "Saved"
2715
  msgstr "Gesichert"
2716
 
2717
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2718
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2719
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2720
  #: app/features/mec/styling.php:314
2721
  msgid "Settings Saved!"
2722
  msgstr ""
@@ -2927,6 +2277,15 @@ msgstr "Standard Wert ist \"M T\""
2927
  msgid "Default values are d and F"
2928
  msgstr "Die Standardwerte sind d and F"
2929
 
 
 
 
 
 
 
 
 
 
2930
  #: app/features/mec/meta_boxes/display_options.php:86
2931
  #: app/features/mec/meta_boxes/display_options.php:195
2932
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -3006,13 +2365,13 @@ msgstr "Standardansicht"
3006
 
3007
  #: app/features/mec/meta_boxes/display_options.php:287
3008
  #: app/features/mec/meta_boxes/display_options.php:296
3009
- #: app/libraries/main.php:323 app/libraries/main.php:1118
3010
  msgid "List View"
3011
  msgstr "Listenansicht"
3012
 
3013
  #: app/features/mec/meta_boxes/display_options.php:288
3014
  #: app/features/mec/meta_boxes/display_options.php:306
3015
- #: app/libraries/main.php:327 app/libraries/main.php:1112
3016
  msgid "Yearly View"
3017
  msgstr "Jahresansicht"
3018
 
@@ -3023,13 +2382,13 @@ msgstr "Monatliche Kalenderansicht"
3023
 
3024
  #: app/features/mec/meta_boxes/display_options.php:290
3025
  #: app/features/mec/meta_boxes/display_options.php:326
3026
- #: app/libraries/main.php:330 app/libraries/main.php:1114
3027
  msgid "Weekly View"
3028
  msgstr "Wochenansicht"
3029
 
3030
  #: app/features/mec/meta_boxes/display_options.php:291
3031
  #: app/features/mec/meta_boxes/display_options.php:336
3032
- #: app/libraries/main.php:329 app/libraries/main.php:1115
3033
  msgid "Daily View"
3034
  msgstr "Tagesansicht"
3035
 
@@ -3273,6 +2632,66 @@ msgstr "Zeigt nur laufende Events auf Listen und Raster/Grid Skins"
3273
  msgid "Show Search Form"
3274
  msgstr "Such Formular anzeigen"
3275
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3276
  #: app/features/mec/meta_boxes/search_form.php:59
3277
  #: app/features/mec/meta_boxes/search_form.php:106
3278
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3511,6 +2930,14 @@ msgstr ""
3511
  msgid "Invoice Link"
3512
  msgstr "Rechnungslink"
3513
 
 
 
 
 
 
 
 
 
3514
  #: app/features/mec/notifications.php:145
3515
  msgid "Booking Verification"
3516
  msgstr "Verifizierung der Buchung"
@@ -3529,7 +2956,7 @@ msgstr "Mehrere Empfänger einfügen, durch Komma getrennt."
3529
  msgid "Email/Booking verification link."
3530
  msgstr "Bestätigungslink für Email/Buchung"
3531
 
3532
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3533
  msgid "Booking Confirmation"
3534
  msgstr "Buchungsbestätigung"
3535
 
@@ -3618,7 +3045,7 @@ msgstr "Titel der Veranstaltung"
3618
  msgid "Status of event"
3619
  msgstr "Status der Veranstaltung"
3620
 
3621
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3622
  msgid "Event Note"
3623
  msgstr "Veranstaltungsnotiz"
3624
 
@@ -3626,90 +3053,90 @@ msgstr "Veranstaltungsnotiz"
3626
  msgid "Admin events management link."
3627
  msgstr "Admin-link zur Veranstaltungsverwaltung"
3628
 
3629
- #: app/features/mec/settings.php:42
3630
  msgid "Archive Page Options"
3631
  msgstr ""
3632
 
3633
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3634
  msgid "Export Module Options"
3635
  msgstr "Optionen für Export-Module"
3636
 
3637
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3638
  msgid "Local Time Module"
3639
  msgstr "Lokales Zeitmodul"
3640
 
3641
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3642
  msgid "QR Code Module"
3643
  msgstr "QR Code Module"
3644
 
3645
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3646
  msgid "Weather Module"
3647
  msgstr "Wettermodul"
3648
 
3649
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3650
  msgid "Additional Organizers"
3651
  msgstr "Zusätzliche Organisatoren"
3652
 
3653
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3654
  msgid "Taxes / Fees"
3655
  msgstr "Steuern/Gebühren"
3656
 
3657
- #: app/features/mec/settings.php:250
3658
  msgid "Time Format"
3659
  msgstr "Zeitformat"
3660
 
3661
- #: app/features/mec/settings.php:253
3662
  msgid "12 hours format with AM/PM"
3663
  msgstr "12-Stunden-Format mit AM/FM"
3664
 
3665
- #: app/features/mec/settings.php:254
3666
  msgid "24 hours format"
3667
  msgstr "24-Stunden-Format"
3668
 
3669
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3670
  msgid ""
3671
  "This option is for showing start/end time of events on frontend of website."
3672
  msgstr ""
3673
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3674
  "anzuzeigen"
3675
 
3676
- #: app/features/mec/settings.php:261
3677
  msgid "Hide Events"
3678
  msgstr "Events verbergen"
3679
 
3680
- #: app/features/mec/settings.php:264
3681
  msgid "On Event Start"
3682
  msgstr "Am Event Start"
3683
 
3684
- #: app/features/mec/settings.php:265
3685
  msgid "+1 Hour after start"
3686
  msgstr "+1 Stunde nach dem Start"
3687
 
3688
- #: app/features/mec/settings.php:266
3689
  msgid "+2 Hours after start"
3690
  msgstr "+2 Stunden nach dem Start"
3691
 
3692
- #: app/features/mec/settings.php:267
3693
  msgid "On Event End"
3694
  msgstr "Am Event Ende"
3695
 
3696
- #: app/features/mec/settings.php:275
3697
  msgid "Multiple Day Events"
3698
  msgstr "Mehrtagesveranstaltung"
3699
 
3700
- #: app/features/mec/settings.php:278
3701
  msgid "Show only first day on List/Grid/Slider skins"
3702
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3703
 
3704
- #: app/features/mec/settings.php:279
3705
  msgid "Show only first day on all skins"
3706
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3707
 
3708
- #: app/features/mec/settings.php:280
3709
  msgid "Show all days"
3710
  msgstr "Alle Tage anzeigen"
3711
 
3712
- #: app/features/mec/settings.php:282
3713
  msgid ""
3714
  "For showing all days of multiple day events on frontend or only show the "
3715
  "first day."
@@ -3717,23 +3144,27 @@ msgstr ""
3717
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3718
  "den ersten Tag anzeigen"
3719
 
3720
- #: app/features/mec/settings.php:288
3721
  msgid "Remove MEC Data on Plugin Uninstall"
3722
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3723
 
3724
- #: app/features/mec/settings.php:298
 
 
 
 
3725
  msgid "Exclude Date Suffix"
3726
  msgstr "Ausschlussdatum Suffix"
3727
 
3728
- #: app/features/mec/settings.php:301
3729
  msgid "Remove suffix from calendars"
3730
  msgstr "Suffix aus den Kalendern entfernen"
3731
 
3732
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3733
  msgid "Weekdays"
3734
  msgstr "Wochentage"
3735
 
3736
- #: app/features/mec/settings.php:316
3737
  msgid ""
3738
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3739
  "and Friday."
@@ -3741,63 +3172,63 @@ msgstr ""
3741
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3742
  "Donnerstag und Freitag gesetzt."
3743
 
3744
- #: app/features/mec/settings.php:323
3745
  msgid "Weekends"
3746
  msgstr "Wochenenden"
3747
 
3748
- #: app/features/mec/settings.php:331
3749
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3750
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3751
 
3752
- #: app/features/mec/settings.php:339
3753
  msgid "Archive Pages"
3754
  msgstr ""
3755
 
3756
- #: app/features/mec/settings.php:342
3757
  msgid "Archive Page Title"
3758
  msgstr "Titel der Archivseite"
3759
 
3760
- #: app/features/mec/settings.php:345
3761
  msgid "Default value is Events"
3762
  msgstr "Der Standardwert ist Ereignisse (Events)"
3763
 
3764
- #: app/features/mec/settings.php:350
3765
  msgid "Archive Page Skin"
3766
  msgstr "Skin Seite Archiv"
3767
 
3768
- #: app/features/mec/settings.php:357
3769
  msgid "Default value is Calendar/Monthly View"
3770
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3771
 
3772
- #: app/features/mec/settings.php:362
3773
  msgid "Category Page Skin"
3774
  msgstr "Kategorie Seiten Skin"
3775
 
3776
- #: app/features/mec/settings.php:369
3777
  msgid "Default value is List View"
3778
  msgstr "Standardwert ist Listenansicht"
3779
 
3780
- #: app/features/mec/settings.php:374
3781
  msgid "Category Events Method"
3782
  msgstr ""
3783
 
3784
- #: app/features/mec/settings.php:378
3785
  msgid "Expired Events"
3786
  msgstr ""
3787
 
3788
- #: app/features/mec/settings.php:380
3789
  msgid "Default value is Upcoming Events"
3790
  msgstr ""
3791
 
3792
- #: app/features/mec/settings.php:385
3793
  msgid "Events Archive Status"
3794
  msgstr "Events Archiv Status"
3795
 
3796
- #: app/features/mec/settings.php:388
3797
  msgid "Enabled (Recommended)"
3798
  msgstr "Ist aktiviert (empfohlen)"
3799
 
3800
- #: app/features/mec/settings.php:391
3801
  msgid ""
3802
  "If you disable it, then you should create a page as archive page of MEC. "
3803
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -3807,11 +3238,11 @@ msgstr ""
3807
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3808
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3809
 
3810
- #: app/features/mec/settings.php:401
3811
  msgid "Main Slug"
3812
  msgstr "Main Slug"
3813
 
3814
- #: app/features/mec/settings.php:404
3815
  msgid ""
3816
  "Default value is events. Valid characters are lowercase a-z, - character and "
3817
  "numbers."
@@ -3819,11 +3250,11 @@ msgstr ""
3819
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3820
  "und Zahlen."
3821
 
3822
- #: app/features/mec/settings.php:408
3823
  msgid "Category Slug"
3824
  msgstr "Category Slug"
3825
 
3826
- #: app/features/mec/settings.php:411
3827
  msgid ""
3828
  "It's slug of MEC categories, you can change it to events-cat or something "
3829
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
@@ -3835,104 +3266,104 @@ msgstr ""
3835
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3836
  "category"
3837
 
3838
- #: app/features/mec/settings.php:421
3839
  msgid "Single Event Date Format"
3840
  msgstr "Einzelveranstaltung Datumformat"
3841
 
3842
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3843
  msgid "Default is M d Y"
3844
  msgstr "Standardwert ist M-T-J"
3845
 
3846
- #: app/features/mec/settings.php:428
3847
  msgid "Date Method"
3848
  msgstr "Datum Methode"
3849
 
3850
- #: app/features/mec/settings.php:431
3851
  msgid "Next occurrence date"
3852
  msgstr "Nächstes vorkommende Datum"
3853
 
3854
- #: app/features/mec/settings.php:432
3855
  msgid "Referred date"
3856
  msgstr "Gewünschtes Datum"
3857
 
3858
- #: app/features/mec/settings.php:434
3859
  msgid ""
3860
  "\"Referred date\" shows the event date based on referred date in event list."
3861
  msgstr ""
3862
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3863
  "Datum in der Eventliste an."
3864
 
3865
- #: app/features/mec/settings.php:438
3866
  msgid "Single Event Style"
3867
  msgstr "Single Event Stil"
3868
 
3869
- #: app/features/mec/settings.php:441
3870
  msgid "Default Style"
3871
  msgstr "Standardstil voreingestellt"
3872
 
3873
- #: app/features/mec/settings.php:442
3874
  msgid "Modern Style"
3875
  msgstr "Moderner Stil"
3876
 
3877
- #: app/features/mec/settings.php:444
3878
  msgid "Choose your single event style."
3879
  msgstr "Wählen Sie Ihren Single Event Stil"
3880
 
3881
- #: app/features/mec/settings.php:453
3882
  msgid "Currency"
3883
  msgstr "Währung"
3884
 
3885
- #: app/features/mec/settings.php:463
3886
  msgid "Currency Sign"
3887
  msgstr "Währungssymbol"
3888
 
3889
- #: app/features/mec/settings.php:466
3890
  msgid "Default value will be \"currency\" if you leave it empty."
3891
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3892
 
3893
- #: app/features/mec/settings.php:470
3894
  msgid "Currency Position"
3895
  msgstr "Position des Währungssymbols"
3896
 
3897
- #: app/features/mec/settings.php:473
3898
  msgid "Before $10"
3899
  msgstr "Vor $10"
3900
 
3901
- #: app/features/mec/settings.php:474
3902
  msgid "After 10$"
3903
  msgstr "Nach 10$"
3904
 
3905
- #: app/features/mec/settings.php:479
3906
  msgid "Thousand Separator"
3907
  msgstr "Tausendertrennzeichen"
3908
 
3909
- #: app/features/mec/settings.php:485
3910
  msgid "Decimal Separator"
3911
  msgstr "Dezimaltrennzeichen"
3912
 
3913
- #: app/features/mec/settings.php:495
3914
  msgid "No decimal"
3915
  msgstr "Keine Dezimale"
3916
 
3917
- #: app/features/mec/settings.php:511
3918
  msgid "Show Google Maps on event page"
3919
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3920
 
3921
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3922
- #: app/features/mec/settings.php:1135
3923
  msgid "API Key"
3924
  msgstr "API Schlüssel"
3925
 
3926
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3927
- #: app/features/mec/settings.php:1145
3928
  msgid "Required!"
3929
  msgstr "Erforderlich (Pflichtfeld)"
3930
 
3931
- #: app/features/mec/settings.php:523
3932
  msgid "Zoom level"
3933
  msgstr "Zoom"
3934
 
3935
- #: app/features/mec/settings.php:530
3936
  msgid ""
3937
  "For Google Maps module in single event page. In Google Maps skin, it will "
3938
  "caculate the zoom level automatically based on event boundaries."
@@ -3941,188 +3372,192 @@ msgstr ""
3941
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3942
  "Angrenzungen"
3943
 
3944
- #: app/features/mec/settings.php:534
3945
  msgid "Google Maps Style"
3946
  msgstr "Google Maps Stil"
3947
 
3948
- #: app/features/mec/settings.php:538
3949
  msgid "Default"
3950
  msgstr "Standardeinstellung"
3951
 
3952
- #: app/features/mec/settings.php:546
3953
  msgid "Direction on single event"
3954
  msgstr "Richtung auf einzelne Veranstaltung"
3955
 
3956
- #: app/features/mec/settings.php:550
3957
  msgid "Simple Method"
3958
  msgstr "Einfache Methode"
3959
 
3960
- #: app/features/mec/settings.php:551
3961
  msgid "Advanced Method"
3962
  msgstr "Fortgeschrittene Methode"
3963
 
3964
- #: app/features/mec/settings.php:556
3965
  msgid "Lightbox Date Format"
3966
  msgstr "Leuchtkasten Datumsformat"
3967
 
3968
- #: app/features/mec/settings.php:559
3969
  msgid "Default value is M d Y"
3970
  msgstr "Standardwert ist M T J"
3971
 
3972
- #: app/features/mec/settings.php:563
3973
  msgid "Google Maps API"
3974
  msgstr "Google Maps API"
3975
 
3976
- #: app/features/mec/settings.php:567
3977
  msgid "Don't load Google Maps API library"
3978
  msgstr "Google Maps API Bibliothek nicht laden"
3979
 
3980
- #: app/features/mec/settings.php:569
3981
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3982
  msgstr ""
3983
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3984
 
3985
- #: app/features/mec/settings.php:581
3986
  msgid "Enable Google Recaptcha"
3987
  msgstr "Google Recaptcha aktivieren"
3988
 
3989
- #: app/features/mec/settings.php:588
3990
  msgid "Enable on booking form"
3991
  msgstr "Auf dem Buchungsformular aktivieren"
3992
 
3993
- #: app/features/mec/settings.php:594
3994
  msgid "Enable on \"Frontend Event Submittion\" form"
3995
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3996
 
3997
- #: app/features/mec/settings.php:598
3998
  msgid "Site Key"
3999
  msgstr "Site Key (Seitenschlüssel)"
4000
 
4001
- #: app/features/mec/settings.php:618
 
 
 
 
4002
  msgid ""
4003
  "Show export module (iCal export and add to Google calendars) on event page"
4004
  msgstr ""
4005
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
4006
  "Google calendars)"
4007
 
4008
- #: app/features/mec/settings.php:625
4009
  msgid "Google Calendar"
4010
  msgstr "Google Calendar"
4011
 
4012
- #: app/features/mec/settings.php:645
4013
  msgid "Show event time based on local time of visitor on event page"
4014
  msgstr ""
4015
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
4016
  "Eventseite"
4017
 
4018
- #: app/features/mec/settings.php:661
4019
  msgid "Show QR code of event in details page and booking invoice"
4020
  msgstr ""
4021
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
4022
  "an"
4023
 
4024
- #: app/features/mec/settings.php:679
4025
  msgid "Show weather module on event page"
4026
  msgstr "Wettermodul auf der Eventseite anzeigen"
4027
 
4028
- #: app/features/mec/settings.php:687
4029
  #, php-format
4030
  msgid "You can get a free API Key from %s"
4031
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
4032
 
4033
- #: app/features/mec/settings.php:699
4034
  msgid "Show countdown module on event page"
4035
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
4036
 
4037
- #: app/features/mec/settings.php:704
4038
  msgid "Countdown Style"
4039
  msgstr "Countdown Stil"
4040
 
4041
- #: app/features/mec/settings.php:707
4042
  msgid "Plain Style"
4043
  msgstr "Einfacher schlichter Stil"
4044
 
4045
- #: app/features/mec/settings.php:708
4046
  msgid "Flip Style"
4047
  msgstr "Flip Stil"
4048
 
4049
- #: app/features/mec/settings.php:720
4050
  msgid "Show social network module"
4051
  msgstr "Modul für Soziale Netzwerke anzeigen"
4052
 
4053
- #: app/features/mec/settings.php:745
4054
  msgid "Show next event module on event page"
4055
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
4056
 
4057
- #: app/features/mec/settings.php:750
4058
  msgid "Method"
4059
  msgstr "Methode"
4060
 
4061
- #: app/features/mec/settings.php:753
4062
  msgid "Next Occurrence of Current Event"
4063
  msgstr "Nächstes Auftreten des aktuellen Events"
4064
 
4065
- #: app/features/mec/settings.php:754
4066
  msgid "Next Occurrence of Other Events"
4067
  msgstr "Nächstes Auftreten von anderen Events."
4068
 
4069
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
4070
  msgid "Date Format"
4071
  msgstr "Datumsformat"
4072
 
4073
- #: app/features/mec/settings.php:771
4074
  msgid "Events List Page"
4075
  msgstr "Seite Liste der Veranstaltungen"
4076
 
4077
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
4078
  #, php-format
4079
  msgid "Put %s shortcode into the page."
4080
  msgstr "%s shortcode in die Seite einfügen"
4081
 
4082
- #: app/features/mec/settings.php:783
4083
  msgid "Add/Edit Events Page"
4084
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
4085
 
4086
- #: app/features/mec/settings.php:797
4087
  msgid "Enable event submission by guest (Not logged-in) users"
4088
  msgstr ""
4089
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
4090
  "erlauben"
4091
 
4092
- #: app/features/mec/settings.php:804
4093
  msgid "Enable mandatory email and name for guest user"
4094
  msgstr ""
4095
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
4096
 
4097
- #: app/features/mec/settings.php:808
4098
  msgid "Frontend Event Submission Sections"
4099
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
4100
 
4101
- #: app/features/mec/settings.php:830
4102
  msgid "Event Categories"
4103
  msgstr "Veranstaltungskategorien"
4104
 
4105
- #: app/features/mec/settings.php:836
4106
  msgid "Event Labels"
4107
  msgstr "Event Labels"
4108
 
4109
- #: app/features/mec/settings.php:848
4110
  msgid "Event Tags"
4111
  msgstr "Event Schlagworte"
4112
 
4113
- #: app/features/mec/settings.php:860
4114
  msgid "Event Organizer"
4115
  msgstr "Veranstaltungsmanager"
4116
 
4117
- #: app/features/mec/settings.php:872
4118
  msgid "Booking Options"
4119
  msgstr "Buchungsoptionen"
4120
 
4121
- #: app/features/mec/settings.php:878
4122
  msgid "Fees/Taxes Options"
4123
  msgstr "Gebühren/Steuer Optionen"
4124
 
4125
- #: app/features/mec/settings.php:886
4126
  #, php-format
4127
  msgid ""
4128
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4134,35 +3569,35 @@ msgstr ""
4134
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
4135
  "erhalten."
4136
 
4137
- #: app/features/mec/settings.php:890
4138
  msgid "Visibility of Note"
4139
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
4140
 
4141
- #: app/features/mec/settings.php:893
4142
  msgid "Always"
4143
  msgstr "Immer"
4144
 
4145
- #: app/features/mec/settings.php:894
4146
  msgid "While event is not published"
4147
  msgstr "Das Ereignis wird nicht veröffentlicht"
4148
 
4149
- #: app/features/mec/settings.php:897
4150
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4151
  msgstr ""
4152
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
4153
  "Ereignis im Backend bearbeitet."
4154
 
4155
- #: app/features/mec/settings.php:903
4156
  msgid "Exceptional days"
4157
  msgstr "Ausgesuchte ausnehmende Tage"
4158
 
4159
- #: app/features/mec/settings.php:907
4160
  msgid "Show exceptional days option on Add/Edit events page"
4161
  msgstr ""
4162
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
4163
  "(Show exceptional days option on Add/Edit events page)"
4164
 
4165
- #: app/features/mec/settings.php:908
4166
  msgid ""
4167
  "Using this option you can include/exclude certain days to/from event "
4168
  "occurrence dates."
@@ -4170,7 +3605,7 @@ msgstr ""
4170
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
4171
  "ausschließen."
4172
 
4173
- #: app/features/mec/settings.php:918
4174
  msgid ""
4175
  "Show additional organizers option on Add/Edit events page and single event "
4176
  "page."
@@ -4178,27 +3613,27 @@ msgstr ""
4178
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
4179
  "bearbeiten und auf der Seite für einzelne Events an."
4180
 
4181
- #: app/features/mec/settings.php:932
4182
  msgid "Enable booking module"
4183
  msgstr "Buchungsmodul aktivieren"
4184
 
4185
- #: app/features/mec/settings.php:940
4186
  msgid "Default is Y-m-d"
4187
  msgstr "Voreinstellung ist J-M-T"
4188
 
4189
- #: app/features/mec/settings.php:944
4190
  msgid "Maximum Dates"
4191
  msgstr "Maximale Anzahl von Daten"
4192
 
4193
- #: app/features/mec/settings.php:946
4194
  msgid "Default is 6"
4195
  msgstr "Die Voreinstellung ist 6"
4196
 
4197
- #: app/features/mec/settings.php:950
4198
  msgid "Thank You Page"
4199
  msgstr "Danke Seite"
4200
 
4201
- #: app/features/mec/settings.php:958
4202
  msgid ""
4203
  "User redirects to this page after booking. Leave it empty if you want to "
4204
  "disable it."
@@ -4206,11 +3641,11 @@ msgstr ""
4206
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
4207
  "es leer, wenn Sie es deaktivieren möchten."
4208
 
4209
- #: app/features/mec/settings.php:966
4210
  msgid "Enable Express Attendees Form"
4211
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
4212
 
4213
- #: app/features/mec/settings.php:968
4214
  msgid ""
4215
  "Users are able to apply first attendee information for other attendees in "
4216
  "the booking form."
@@ -4218,77 +3653,77 @@ msgstr ""
4218
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
4219
  "Buchungsformular anwenden."
4220
 
4221
- #: app/features/mec/settings.php:971
4222
  msgid "Email verification"
4223
  msgstr "Email-Verifizierung"
4224
 
4225
- #: app/features/mec/settings.php:977
4226
  msgid "Auto verification for free bookings"
4227
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
4228
 
4229
- #: app/features/mec/settings.php:986
4230
  msgid "Auto verification for paid bookings"
4231
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
4232
 
4233
- #: app/features/mec/settings.php:996
4234
  msgid "Auto confirmation for free bookings"
4235
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
4236
 
4237
- #: app/features/mec/settings.php:1005
4238
  msgid "Auto confirmation for paid bookings"
4239
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
4240
 
4241
- #: app/features/mec/settings.php:1022
4242
  msgid "Enable coupons module"
4243
  msgstr "Gutscheinmodul aktivieren"
4244
 
4245
- #: app/features/mec/settings.php:1039
4246
  msgid "Enable taxes / fees module"
4247
  msgstr "Modul für Gebühren/Steuern aktivieren"
4248
 
4249
- #: app/features/mec/settings.php:1044
4250
  msgid "Add Fee"
4251
  msgstr "Gebühr hinzufügen"
4252
 
4253
- #: app/features/mec/settings.php:1100
4254
  msgid "Enable BuddyPress Integration"
4255
  msgstr "Buddy Press Integration deaktivieren"
4256
 
4257
- #: app/features/mec/settings.php:1107
4258
  msgid "Show \"Attendees Module\" in event details page"
4259
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
4260
 
4261
- #: app/features/mec/settings.php:1111
4262
  msgid "Attendees Limit"
4263
  msgstr "Teilnehmer Limit, maximale Anzahl"
4264
 
4265
- #: app/features/mec/settings.php:1119
4266
  msgid "Add booking activity to user profile"
4267
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
4268
 
4269
- #: app/features/mec/settings.php:1130
4270
  msgid "Enable Mailchimp Integration"
4271
  msgstr "Mailchimp Integration deaktivieren"
4272
 
4273
- #: app/features/mec/settings.php:1142
4274
  msgid "List ID"
4275
  msgstr "List ID"
4276
 
4277
- #: app/features/mec/settings.php:1149
4278
  msgid "Subscription Status"
4279
  msgstr "Buchungsstatus"
4280
 
4281
- #: app/features/mec/settings.php:1152
4282
  msgid "Subscribe automatically"
4283
  msgstr "automatisch Anmelden/Abonnieren"
4284
 
4285
- #: app/features/mec/settings.php:1153
4286
  msgid "Subscribe by verification"
4287
  msgstr ""
4288
  "Anmelden/Abonnieren durch Bestätigung\n"
4289
  " "
4290
 
4291
- #: app/features/mec/settings.php:1155
4292
  msgid ""
4293
  "If you choose \"Subscribe by verification\" then an email will send to user "
4294
  "by mailchimp for subscription verification."
@@ -4296,20 +3731,25 @@ msgstr ""
4296
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
4297
  "Benutzer per Mailchimp zur Bestätigung gesendet."
4298
 
4299
- #: app/features/mec/settings.php:1165
4300
  #, php-format
4301
  msgid "%s is required to use this section."
4302
  msgstr ""
4303
 
4304
- #: app/features/mec/settings.php:1168
4305
  msgid "Purchase Code"
4306
  msgstr "Kaufcode"
4307
 
4308
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4309
  msgid "UnVerified"
4310
  msgstr "Unbestätigt"
4311
 
4312
- #: app/features/mec/settings.php:1177
4313
  msgid ""
4314
  "Please insert your purchase code validation. read documentation for more "
4315
  "information."
@@ -4317,31 +3757,31 @@ msgstr ""
4317
  "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
4318
  "Dokumentation für mehr Informationen."
4319
 
4320
- #: app/features/mec/settings.php:1180
4321
  msgid "Product Name"
4322
  msgstr ""
4323
 
4324
- #: app/features/mec/settings.php:1183
4325
  msgid "1 License for MEC Plugin"
4326
  msgstr ""
4327
 
4328
- #: app/features/mec/settings.php:1184
4329
  msgid "5 License for MEC Plugin"
4330
  msgstr ""
4331
 
4332
- #: app/features/mec/settings.php:1185
4333
  msgid "10 License for MEC Plugin"
4334
  msgstr ""
4335
 
4336
- #: app/features/mec/settings.php:1192
4337
  msgid "MEC Deactivation"
4338
  msgstr "MEC Deaktivierung"
4339
 
4340
- #: app/features/mec/settings.php:1194
4341
  msgid "Deactivate"
4342
  msgstr "Deaktivieren"
4343
 
4344
- #: app/features/mec/settings.php:1196
4345
  msgid ""
4346
  "For deactivation first delete your purchase from above field then press save "
4347
  "after that click on deactivate for deactivate this purchase code from this "
@@ -4352,7 +3792,7 @@ msgstr ""
4352
  "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
4353
  "Domain aktivieren."
4354
 
4355
- #: app/features/mec/settings.php:1257
4356
  msgid "Please Refresh Page"
4357
  msgstr "Bitte Seiten Refresh vornehmen"
4358
 
@@ -4512,7 +3952,7 @@ msgstr "z.B.. max@mustermann.com"
4512
  msgid "eg. https://webnus.net"
4513
  msgstr "z.B.. http://ihreseite.com/maxmustermann"
4514
 
4515
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4516
  #: app/skins/single.php:194
4517
  msgid "Other Organizers"
4518
  msgstr "Andere Veranstalter"
@@ -4529,22 +3969,24 @@ msgstr ""
4529
  msgid "%s Price"
4530
  msgstr "%s Preis"
4531
 
 
 
 
 
 
 
 
 
 
4532
  #: app/libraries/factory.php:148
4533
  msgid "M.E. Calendar"
4534
  msgstr "M.E. Calender"
4535
 
4536
  #: app/libraries/factory.php:187
4537
- msgctxt "plugin link"
4538
  msgid "Upgrade to Pro Version"
4539
  msgstr ""
4540
 
4541
- #: app/libraries/factory.php:203
4542
- msgctxt "plugin link"
4543
- msgid "Settings"
4544
- msgstr ""
4545
-
4546
  #: app/libraries/factory.php:208
4547
- msgctxt "plugin link"
4548
  msgid "Upgrade"
4549
  msgstr ""
4550
 
@@ -4602,31 +4044,31 @@ msgstr ""
4602
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
4603
  "Beitrag handelt."
4604
 
4605
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4606
  msgid "Grid View"
4607
  msgstr "Rasterdarstellung"
4608
 
4609
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4610
  msgid "Agenda View"
4611
  msgstr "Agendaansicht"
4612
 
4613
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4614
  msgid "Full Calendar"
4615
  msgstr "Ganzer Kalender"
4616
 
4617
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4618
  msgid "Calendar/Monthly View"
4619
  msgstr "Kalender-/Monatsansicht"
4620
 
4621
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4622
  msgid "Timetable View"
4623
  msgstr "Stundenplan"
4624
 
4625
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4626
  msgid "Masonry View"
4627
  msgstr "Kachel Ansicht"
4628
 
4629
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4630
  msgid "Map View"
4631
  msgstr "Kartenansicht"
4632
 
@@ -4650,31 +4092,31 @@ msgstr "Karussellansicht"
4650
  msgid "Slider View"
4651
  msgstr "Slideransicht"
4652
 
4653
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4654
  msgid "SU"
4655
  msgstr "SO"
4656
 
4657
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4658
  msgid "MO"
4659
  msgstr "MO"
4660
 
4661
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4662
  msgid "TU"
4663
  msgstr "DI"
4664
 
4665
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4666
  msgid "WE"
4667
  msgstr "MI"
4668
 
4669
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4670
  msgid "TH"
4671
  msgstr "DO"
4672
 
4673
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4674
  msgid "FR"
4675
  msgstr "FR"
4676
 
4677
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4678
  msgid "SA"
4679
  msgstr "SA"
4680
 
@@ -4698,226 +4140,254 @@ msgstr "Google+"
4698
  msgid "Twitter"
4699
  msgstr "Twitter"
4700
 
4701
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4702
  msgid "Linkedin"
4703
  msgstr "Linkedin"
4704
 
4705
- #: app/libraries/main.php:1052
 
 
 
 
4706
  msgid "Share on Facebook"
4707
  msgstr "Teilen auf Facebook"
4708
 
4709
- #: app/libraries/main.php:1064
4710
  msgid "Google Plus"
4711
  msgstr "Google Plus"
4712
 
4713
- #: app/libraries/main.php:1076
4714
  msgid "Tweet"
4715
  msgstr "Tweet"
4716
 
4717
- #: app/libraries/main.php:1456
4718
  msgid "Your booking successfully verified."
4719
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
4720
 
4721
- #: app/libraries/main.php:1457
4722
  msgid "Your booking cannot verify!"
4723
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
4724
 
4725
- #: app/libraries/main.php:1469
4726
  msgid "Your booking successfully canceled."
4727
  msgstr "Ihre Buchung wurde erfolgreich storniert."
4728
 
4729
- #: app/libraries/main.php:1470
4730
  msgid "Your booking cannot be canceled."
4731
  msgstr "Ihre Buchung kann nicht storniert werden."
4732
 
4733
- #: app/libraries/main.php:1474
4734
  msgid "You canceled the payment successfully."
4735
  msgstr "Sie haben die Zahlung erfolgreich storniert."
4736
 
4737
- #: app/libraries/main.php:1478
4738
  msgid "You returned from payment gateway successfully."
4739
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
4740
 
4741
- #: app/libraries/main.php:1502
4742
  msgid "Cannot find the booking!"
4743
  msgstr "Kann die Buchung nicht finden!"
4744
 
4745
- #: app/libraries/main.php:1502
4746
  msgid "Booking is invalid."
4747
  msgstr "Buchung ist ungültig."
4748
 
4749
- #: app/libraries/main.php:1523
4750
  #, php-format
4751
  msgid "%s Invoice"
4752
  msgstr "% s Rechnung"
4753
 
4754
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4755
  msgid "Billing"
4756
  msgstr "Abrechnung"
4757
 
4758
- #: app/libraries/main.php:1586
4759
  msgid "Total"
4760
  msgstr "Gesamt"
4761
 
4762
- #: app/libraries/main.php:1619
4763
  msgid "Security nonce is not valid."
4764
  msgstr "Sicherheits-Nonce ist ungültig."
4765
 
4766
- #: app/libraries/main.php:1619
4767
  msgid "iCal export stopped!"
4768
  msgstr "iCal Export wurde unterbrochen!"
4769
 
4770
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4771
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4772
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4773
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4774
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4775
  msgid "Sort"
4776
  msgstr "Sortieren"
4777
 
4778
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4779
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4780
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4781
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4782
  msgid "Required Field"
4783
  msgstr "Pflichtfeld"
4784
 
4785
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4786
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4787
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4788
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4789
  msgid "Insert a label for this field"
4790
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
4791
 
4792
- #: app/libraries/main.php:1962
4793
  msgid "HTML and shortcode are allowed."
4794
  msgstr "HTML und shortcodes sind erlaubt."
4795
 
4796
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4797
- #: app/libraries/main.php:2093
4798
  msgid "Option"
4799
  msgstr "Option"
4800
 
4801
- #: app/libraries/main.php:2127
4802
  #, php-format
4803
  msgid "Instead of %s, the page title with a link will be show."
4804
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
4805
 
4806
- #: app/libraries/main.php:2129
4807
  msgid "Agreement Page"
4808
  msgstr "Zustimmungsseite"
4809
 
4810
- #: app/libraries/main.php:2138
4811
  msgid "Status"
4812
  msgstr ""
4813
 
4814
- #: app/libraries/main.php:2140
4815
  msgid "Checked by default"
4816
  msgstr ""
4817
 
4818
- #: app/libraries/main.php:2141
4819
  msgid "Unchecked by default"
4820
  msgstr ""
4821
 
4822
- #: app/libraries/main.php:2163
4823
  msgid "Insert a label for this option"
4824
  msgstr "Ein neues Label für diese Option einfügen"
4825
 
4826
- #: app/libraries/main.php:2830
 
 
 
 
4827
  #, php-format
4828
  msgid "Copy of %s"
4829
  msgstr "Kopie von %s"
4830
 
4831
- #: app/libraries/main.php:3467
4832
  msgid "Booked an event."
4833
  msgstr "Eine Veranstaltung wurde gebucht."
4834
 
4835
- #: app/libraries/main.php:3508
4836
  #, php-format
4837
  msgid "%s booked %s event."
4838
  msgstr "%s gebuchtes %s Event"
4839
 
4840
- #: app/libraries/main.php:3950
4841
  msgid "Taxonomies"
4842
  msgstr "Klassifizierung "
4843
 
4844
- #: app/libraries/main.php:3952
4845
  msgid "Category Plural Label"
4846
  msgstr "Kategorien"
4847
 
4848
- #: app/libraries/main.php:3953
4849
  msgid "Category Singular Label"
4850
  msgstr "Kategorie"
4851
 
4852
- #: app/libraries/main.php:3954
4853
  msgid "Label Plural Label"
4854
  msgstr "Labels"
4855
 
4856
- #: app/libraries/main.php:3955
4857
  msgid "Label Singular Label"
4858
  msgstr "Label"
4859
 
4860
- #: app/libraries/main.php:3955
4861
  msgid "label"
4862
  msgstr "label"
4863
 
4864
- #: app/libraries/main.php:3956
4865
  msgid "Location Plural Label"
4866
  msgstr "Veranstaltungsorte"
4867
 
4868
- #: app/libraries/main.php:3957
4869
  msgid "Location Singular Label"
4870
  msgstr "Veranstaltungsort"
4871
 
4872
- #: app/libraries/main.php:3958
4873
  msgid "Organizer Plural Label"
4874
  msgstr "Veranstalter"
4875
 
4876
- #: app/libraries/main.php:3959
4877
  msgid "Organizer Singular Label"
4878
  msgstr "Veranstalter"
4879
 
4880
- #: app/libraries/main.php:3965
4881
  msgid "Sunday abbreviation"
4882
  msgstr "Sonntag Abkürzung"
4883
 
4884
- #: app/libraries/main.php:3966
4885
  msgid "Monday abbreviation"
4886
  msgstr "Montag Abkürzung"
4887
 
4888
- #: app/libraries/main.php:3967
4889
  msgid "Tuesday abbreviation"
4890
  msgstr "Dienstag Abkürzung"
4891
 
4892
- #: app/libraries/main.php:3968
4893
  msgid "Wednesday abbreviation"
4894
  msgstr "Mittwoch Abkürzung"
4895
 
4896
- #: app/libraries/main.php:3969
4897
  msgid "Thursday abbreviation"
4898
  msgstr "Donnerstag Abkürzung"
4899
 
4900
- #: app/libraries/main.php:3970
4901
  msgid "Friday abbreviation"
4902
  msgstr "Freitag Abkürzung"
4903
 
4904
- #: app/libraries/main.php:3971
4905
  msgid "Saturday abbreviation"
4906
  msgstr "Samstag Abkürzung "
4907
 
4908
- #: app/libraries/main.php:3975
4909
  msgid "Others"
4910
  msgstr "Andere"
4911
 
4912
- #: app/libraries/main.php:3977
4913
  msgid "Booking Success Message"
4914
  msgstr "Buchung erfolgreich Mitteilung"
4915
 
4916
- #: app/libraries/main.php:3978
 
 
 
 
 
 
 
 
4917
  msgid "Register Button"
4918
  msgstr "Register Button"
4919
 
4920
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4921
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4922
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4923
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4931,11 +4401,11 @@ msgstr "Register Button"
4931
  msgid "REGISTER"
4932
  msgstr "ANMELDEN"
4933
 
4934
- #: app/libraries/main.php:3979
4935
  msgid "View Detail Button"
4936
  msgstr "Ansicht Detail Button"
4937
 
4938
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4939
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4940
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4941
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4946,39 +4416,39 @@ msgstr "Ansicht Detail Button"
4946
  msgid "View Detail"
4947
  msgstr "Details "
4948
 
4949
- #: app/libraries/main.php:3980
4950
  msgid "Event Detail Button"
4951
  msgstr "Event Detail Button"
4952
 
4953
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4954
  msgid "Event Detail"
4955
  msgstr "Veranstaltungsdetails"
4956
 
4957
- #: app/libraries/main.php:3982
4958
  msgid "More Info Link"
4959
  msgstr "Link Mehr Informationen"
4960
 
4961
- #: app/libraries/main.php:3985
4962
  msgid "Ticket (Singular)"
4963
  msgstr "Ticket"
4964
 
4965
- #: app/libraries/main.php:3986
4966
  msgid "Tickets (Plural)"
4967
  msgstr "Tickets"
4968
 
4969
- #: app/libraries/main.php:4052
4970
  msgid "EventON"
4971
  msgstr "EventON"
4972
 
4973
- #: app/libraries/main.php:4053
4974
  msgid "The Events Calendar"
4975
  msgstr "The Events Calendar"
4976
 
4977
- #: app/libraries/main.php:4054
4978
  msgid "Events Schedule WP Plugin"
4979
  msgstr "Event Zeitplan WP-Plugin"
4980
 
4981
- #: app/libraries/main.php:4055
4982
  msgid "Calendarize It"
4983
  msgstr ""
4984
 
@@ -5002,6 +4472,14 @@ msgstr "Eine neue Buchung ist eingegangen."
5002
  msgid "A new event is added."
5003
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
5004
 
 
 
 
 
 
 
 
 
5005
  #: app/libraries/render.php:337
5006
  msgid "Skin controller does not exist."
5007
  msgstr "Skin contoller existiert nicht."
@@ -5030,6 +4508,10 @@ msgstr "Keine Teilnehmer gefunden! Seien Sie der erste Teilnehmer der bucht!"
5030
  msgid "%s tickets"
5031
  msgstr "%s tickets"
5032
 
 
 
 
 
5033
  #: app/modules/booking/steps/checkout.php:33
5034
  msgid "Discount Coupon"
5035
  msgstr "Rabattgutschein"
@@ -5057,6 +4539,10 @@ msgstr ""
5057
  msgid "Next"
5058
  msgstr "Weiter"
5059
 
 
 
 
 
5060
  #: app/modules/booking/steps/tickets.php:18
5061
  msgid "Book Event"
5062
  msgstr "Veranstaltung buchen"
@@ -5349,21 +4835,346 @@ msgstr "Google Karte:"
5349
  msgid "QR Code : "
5350
  msgstr ""
5351
 
5352
- #. Plugin URI of the plugin/theme
5353
- msgid "http://webnus.net/plugins/modern-events-calendar/"
5354
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5355
 
5356
- #. Description of the plugin/theme
5357
- msgid "An awesome plugin for events calendar"
5358
- msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
5359
 
5360
- #. Author of the plugin/theme
5361
- msgid "Webnus Team"
5362
- msgstr "Webnus Team"
5363
 
5364
- #. Author URI of the plugin/theme
5365
- msgid "http://webnus.net"
5366
- msgstr "http://webnus.net"
5367
 
5368
  #~ msgid "Attendee"
5369
  #~ msgstr "Teilnehmer"
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-09-09 16:06+0430\n"
6
+ "PO-Revision-Date: 2018-09-09 16:06+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
17
  "Plural-Forms: nplurals=2; plural=n != 1;\n"
18
  "X-Poedit-SearchPath-0: .\n"
19
 
 
20
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
21
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
22
  #: app/widgets/MEC.php:23
27
  msgid "Content"
28
  msgstr "Inhalt"
29
 
30
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
31
+ #: app/features/mec.php:238 app/features/mec.php:264
32
  msgid "Shortcode"
33
  msgstr "Shortcode"
34
 
36
  msgid "Select from predefined shortcodes"
37
  msgstr "Wählen Sie aus vordefinierten Shortcodes"
38
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
39
  #: app/features/colors.php:50 app/features/fes/form.php:566
40
+ #: app/features/mec/settings.php:847
41
  msgid "Event Color"
42
  msgstr "Farbe der Veranstaltung"
43
 
44
+ #: app/features/contextual.php:55 app/features/mec.php:195
45
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
46
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
47
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
48
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
49
+ #: app/features/mec/support.php:18 app/libraries/factory.php:203
50
  msgid "Settings"
51
  msgstr "Einstellungen"
52
 
53
+ #: app/features/contextual.php:62 app/features/events.php:910
54
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
55
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
56
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
57
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
58
+ #: app/features/mec/support.php:27
59
+ msgid "Booking Form"
60
+ msgstr "Buchungsformular"
61
+
62
  #: app/features/contextual.php:63
63
  msgid ""
64
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
76
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
77
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
78
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
79
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
80
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
81
  msgid "Payment Gateways"
82
  msgstr "Zahlungs-Gateways"
94
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
95
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
96
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
97
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
98
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
99
  msgid "Notifications"
100
  msgstr "Benachrichtigungen"
171
  "height=\"420\" src=\"https://www.youtube.com/embed/dqgt1b8X8hs\" frameborder="
172
  "\"0\" allowfullscreen></iframe>"
173
 
174
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
175
+ #: app/features/mec/settings.php:252
176
  msgid "General Options"
177
  msgstr "Allgemeine Einstellungen"
178
 
179
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
180
+ #: app/features/mec/settings.php:404
181
  msgid "Slugs/Permalinks"
182
  msgstr "Slug/Permalinks"
183
 
184
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
185
+ #: app/features/mec/settings.php:424
186
  msgid "Event Details/Single Event Page"
187
  msgstr "Event Details / Einzelveranstaltungsseite"
188
 
189
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
190
+ #: app/features/mec/settings.php:456
191
  msgid "Currency Options"
192
  msgstr "Währungseinstellungen"
193
 
194
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
195
+ #: app/features/mec/settings.php:508
196
  msgid "Google Maps Options"
197
  msgstr "Google Maps Einstellungen"
198
 
199
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
200
+ #: app/features/mec/settings.php:582
201
  msgid "Google Recaptcha Options"
202
  msgstr "Google Recaptcha Einstellungen"
203
 
204
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
205
+ #: app/features/mec/settings.php:700
206
  msgid "Countdown Options"
207
  msgstr "Countdown Einstellungsoptionen"
208
 
209
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
210
+ #: app/features/mec/settings.php:721
211
  msgid "Social Networks"
212
  msgstr "Soziale Netzwerke"
213
 
214
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
215
+ #: app/features/mec/settings.php:746
216
  msgid "Next Event Module"
217
  msgstr "Nächstes Veranstaltung Modul"
218
 
219
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
220
+ #: app/features/mec/settings.php:774
221
  msgid "Frontend Event Submission"
222
  msgstr "Erstellung von Veranstaltungen im Frontend"
223
 
224
  #: app/features/contextual.php:298 app/features/events.php:570
225
+ #: app/features/mec/settings.php:131
226
  msgid "Exceptional Days"
227
  msgstr "Herausgenommene Tage "
228
 
229
+ #: app/features/contextual.php:308 app/features/events.php:253
230
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
231
+ msgid "Booking"
232
+ msgstr "Buchung / Reservierung"
233
+
234
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
235
+ #: app/features/mec/settings.php:1019
236
  msgid "Coupons"
237
  msgstr "Gutscheine"
238
 
239
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
240
+ #: app/features/mec/settings.php:1101
241
  msgid "BuddyPress Integration"
242
  msgstr "Buddy Press Integration"
243
 
244
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
245
+ #: app/features/mec/settings.php:1131
246
  msgid "Mailchimp Integration"
247
  msgstr "Mailchimp Integration"
248
 
249
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
250
+ #: app/features/mec/settings.php:1167
251
  msgid "MEC Activation"
252
  msgstr "MEC Aktivierung"
253
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
254
  #: app/features/events.php:122 app/features/ix/export.php:33
255
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
256
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
257
  msgid "Events"
258
  msgstr "Veranstaltungen"
259
 
260
+ #: app/features/events.php:123
261
+ #: app/features/mec/meta_boxes/display_options.php:678
262
+ #: app/features/mec/meta_boxes/display_options.php:716
263
+ #: app/features/mec/meta_boxes/display_options.php:745
264
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
265
+ #: app/skins/yearly_view/tpl.php:69
266
+ msgid "Event"
267
+ msgstr "Veranstaltung"
268
+
269
+ #: app/features/events.php:124 app/features/mec.php:188
270
  msgid "Add Event"
271
  msgstr "Veranstaltung hinzufügen"
272
 
279
  msgid "No events found!"
280
  msgstr "Keine Veranstaltungen gefunden!"
281
 
282
+ #: app/features/events.php:127
283
+ msgid "All Events"
284
+ msgstr "Alle Veranstaltungen"
285
+
286
  #: app/features/events.php:128
287
  msgid "Edit Event"
288
  msgstr ""
305
  #: app/features/mec/meta_boxes/search_form.php:285
306
  #: app/features/mec/meta_boxes/search_form.php:325
307
  #: app/features/mec/meta_boxes/search_form.php:372
308
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
309
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
310
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
311
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
313
  msgstr "Kategorie"
314
 
315
  #: app/features/events.php:143 app/features/fes/form.php:518
316
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
317
+ #: app/libraries/main.php:3967
318
  msgid "Categories"
319
  msgstr "Kategorien"
320
 
381
  #: app/features/events.php:286 app/features/events.php:1631
382
  #: app/features/events.php:1675 app/features/fes/form.php:479
383
  #: app/features/ix.php:2328 app/features/ix.php:2369
384
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
385
  msgid "Event Cost"
386
  msgstr ""
387
  "Bruttopreis des Events in Euro, 0 für kostenlos oder z.B. 39, ohne €-Zeichen"
388
 
389
  #: app/features/events.php:289 app/features/fes/form.php:482
390
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
391
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
392
  #: app/skins/single/modern.php:179
393
  msgid "Cost"
401
  msgid "Guest Data"
402
  msgstr "Gäste Daten"
403
 
404
+ #: app/features/events.php:370 app/features/fes/form.php:441
405
+ #: app/features/labels.php:151 app/features/organizers.php:268
406
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
407
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
408
+ msgid "Name"
409
+ msgstr "Name"
410
+
411
+ #: app/features/events.php:371 app/features/events.php:945
412
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
413
+ #: app/features/organizers.php:110 app/features/organizers.php:150
414
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
415
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
416
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
417
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
418
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
419
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
420
+ #: app/skins/single/modern.php:38
421
+ msgid "Email"
422
+ msgstr "Email"
423
+
424
  #: app/features/events.php:375 app/features/fes/form.php:221
425
  msgid "Date and Time"
426
  msgstr "Datum und Uhrzeit"
430
  #: app/features/events.php:1675 app/features/fes/form.php:225
431
  #: app/features/fes/form.php:229 app/features/ix.php:2328
432
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
433
+ #: app/features/mec/dashboard.php:266
434
  #: app/features/mec/meta_boxes/display_options.php:42
435
  #: app/features/mec/meta_boxes/display_options.php:129
436
  #: app/features/mec/meta_boxes/display_options.php:225
462
  #: app/features/events.php:1675 app/features/fes/form.php:265
463
  #: app/features/fes/form.php:269 app/features/ix.php:2328
464
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
465
+ #: app/features/mec/dashboard.php:267
466
  msgid "End Date"
467
  msgstr "Ende Datum"
468
 
499
  msgstr "Wiederholend"
500
 
501
  #: app/features/events.php:481 app/features/fes/form.php:327
502
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
503
  msgid "Daily"
504
  msgstr "Täglich"
505
 
521
  msgstr "Wöchentlich"
522
 
523
  #: app/features/events.php:486 app/features/fes/form.php:332
524
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
525
  msgid "Monthly"
526
  msgstr "Monatlich"
527
 
528
  #: app/features/events.php:487 app/features/fes/form.php:333
529
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
530
  msgid "Yearly"
531
  msgstr "Jährlich"
532
 
581
  msgid "Sunday"
582
  msgstr "Sonntag"
583
 
584
+ #: app/features/events.php:508 app/features/events.php:580
585
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
586
+ #: app/modules/booking/steps/tickets.php:20
587
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
588
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
589
+ #: app/skins/single/modern.php:146
590
+ msgid "Date"
591
+ msgstr "Datum"
592
+
593
  #: app/features/events.php:509 app/features/events.php:581
594
  #: app/features/events.php:623 app/features/events.php:743
595
  #: app/features/events.php:839 app/features/fes/form.php:355
638
  "Ausschliessen bestimmter Tage von den Eventdaten z.B. bei regelmäßigen "
639
  "Eventwiederholungen, oder um das Wochenende auszuschließen"
640
 
641
+ #: app/features/events.php:620 app/features/mec/settings.php:871
642
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
643
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
644
  msgid "Hourly Schedule"
659
  #: app/features/events.php:631 app/features/events.php:643
660
  #: app/features/events.php:1449 app/features/events.php:1631
661
  #: app/features/events.php:1675 app/features/fes/form.php:214
662
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
663
  msgid "Title"
664
  msgstr "Titel"
665
 
666
+ #: app/features/events.php:632 app/features/events.php:644
667
+ #: app/features/events.php:752 app/features/events.php:784
668
+ msgid "Description"
669
+ msgstr "Beschreibung"
670
+
671
  #: app/features/events.php:633 app/features/events.php:645
672
  #: app/features/events.php:771 app/features/events.php:803
673
  #: app/features/events.php:859 app/features/events.php:884
674
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
675
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
676
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
677
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
678
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
679
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
680
+ #: app/libraries/main.php:2177
681
  msgid "Remove"
682
  msgstr "Entfernen"
683
 
684
  #: app/features/events.php:665 app/features/fes/form.php:456
685
+ #: app/features/mec/settings.php:817
686
  msgid "Event Links"
687
  msgstr "Veranstaltungslinks"
688
 
689
  #: app/features/events.php:667 app/features/fes/form.php:458
690
+ #: app/libraries/main.php:3996
691
  msgid "Event Link"
692
  msgstr "Veranstaltungslink"
693
 
706
  "einschließlich http(s)://"
707
 
708
  #: app/features/events.php:672 app/features/fes/form.php:463
709
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
710
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
711
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
712
  msgid "More Info"
739
  msgid "Total booking limits"
740
  msgstr "Gesamt Verfügbare Plätze"
741
 
742
+ #: app/features/events.php:715 app/features/events.php:769
743
+ #: app/features/events.php:801 app/modules/booking/default.php:82
744
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
745
+ msgid "Unlimited"
746
+ msgstr "Unlimitiert"
747
+
748
  #: app/features/events.php:717
749
  msgid "100"
750
  msgstr "z.B. 100"
751
 
752
  #: app/features/events.php:735 app/libraries/book.php:59
753
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
754
  msgid "Tickets"
755
  msgstr "Tickets"
756
 
765
  msgid "Ticket Name"
766
  msgstr "Ticket Name"
767
 
768
+ #: app/features/events.php:756 app/features/events.php:788
769
+ msgid "Price"
770
+ msgstr "Preis"
771
+
772
  #: app/features/events.php:757 app/features/events.php:789
773
  msgid "Insert 0 for free ticket. Only numbers please."
774
  msgstr "Bitte 0 für kostenloses Ticket eingeben. Bitte nur Zahlen eintragen"
794
  msgstr "Aus den globalen Einstellungen übernehmen"
795
 
796
  #: app/features/events.php:845 app/features/events.php:870
797
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
798
  msgid "Fee Title"
799
  msgstr "Gebühren Name"
800
 
801
+ #: app/features/events.php:849 app/features/events.php:874
802
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
803
+ msgid "Amount"
804
+ msgstr "Betrag"
805
+
806
  #: app/features/events.php:850 app/features/events.php:875
807
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
808
  msgid ""
809
  "Fee amount, considered as fixed amount if you set the type to amount "
810
  "otherwise considered as percentage"
812
  "Gebührenbetrag, gilt als fester Betrag, wenn Sie die Art auf Betrag setzen, "
813
  "sonst als Prozentsatz"
814
 
815
+ #: app/features/events.php:854 app/features/events.php:879
816
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
817
+ msgid "Percent"
818
+ msgstr "Prozent"
819
+
820
  #: app/features/events.php:855 app/features/events.php:880
821
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
822
  msgid "Amount (Per Ticket)"
823
  msgstr "Betrag (pro Ticket)"
824
 
825
  #: app/features/events.php:856 app/features/events.php:881
826
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
827
  msgid "Amount (Per Booking)"
828
  msgstr "Betrag (pro Buchung)"
829
 
830
  #: app/features/events.php:944 app/features/mec/regform.php:117
831
+ #: app/libraries/main.php:1856
832
  msgid "Text"
833
  msgstr "Text"
834
 
835
  #: app/features/events.php:946 app/features/mec/regform.php:119
836
  #: app/features/organizers.php:102 app/features/organizers.php:146
837
+ #: app/libraries/main.php:1914
838
  msgid "Tel"
839
  msgstr "Tel"
840
 
841
  #: app/features/events.php:947 app/features/mec/regform.php:120
842
+ #: app/libraries/main.php:1943
843
  msgid "Textarea"
844
  msgstr "Textbereich"
845
 
846
  #: app/features/events.php:948 app/features/mec/regform.php:121
847
+ #: app/libraries/main.php:1996
848
  msgid "Checkboxes"
849
  msgstr "Checkboxes"
850
 
851
  #: app/features/events.php:949 app/features/mec/regform.php:122
852
+ #: app/libraries/main.php:2040
853
  msgid "Radio Buttons"
854
  msgstr "Radio Buttons"
855
 
898
  #: app/features/mec/meta_boxes/search_form.php:436
899
  #: app/features/mec/meta_boxes/search_form.php:443
900
  #: app/features/mec/meta_boxes/search_form.php:450
901
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
902
  msgid "Dropdown"
903
  msgstr "Dropdown"
904
 
905
  #: app/features/events.php:951 app/features/mec/regform.php:124
906
+ #: app/libraries/main.php:2131
907
  msgid "Agreement"
908
  msgstr "Zustimmung"
909
 
910
  #: app/features/events.php:952 app/features/mec/regform.php:125
911
+ #: app/libraries/main.php:1972
912
  msgid "Paragraph"
913
  msgstr "Absatz"
914
 
934
  #: app/features/events.php:1675 app/features/ix.php:2328
935
  #: app/features/ix.php:2369 app/features/locations.php:58
936
  #: app/features/locations.php:229 app/features/locations.php:281
937
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
938
  #: app/features/mec/meta_boxes/display_options.php:641
939
  #: app/features/mec/meta_boxes/search_form.php:38
940
  #: app/features/mec/meta_boxes/search_form.php:85
944
  #: app/features/mec/meta_boxes/search_form.php:292
945
  #: app/features/mec/meta_boxes/search_form.php:332
946
  #: app/features/mec/meta_boxes/search_form.php:379
947
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
948
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
949
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
950
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
951
  #: app/skins/single/modern.php:77
954
 
955
  #: app/features/events.php:1451 app/features/events.php:1631
956
  #: app/features/events.php:1675 app/features/ix.php:2328
957
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
958
  #: app/features/mec/meta_boxes/display_options.php:642
959
  #: app/features/mec/meta_boxes/search_form.php:45
960
  #: app/features/mec/meta_boxes/search_form.php:92
967
  #: app/features/mec/meta_boxes/search_form.php:433
968
  #: app/features/organizers.php:58 app/features/organizers.php:199
969
  #: app/features/organizers.php:255 app/features/organizers.php:257
970
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
971
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
972
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
973
  #: app/skins/single/modern.php:21
986
  msgid "iCal Export"
987
  msgstr "ical Export"
988
 
989
+ #: app/features/events.php:1569 app/features/events.php:1570
990
+ msgid "CSV Export"
991
+ msgstr "CSV Export"
992
+
993
+ #: app/features/events.php:1572 app/features/events.php:1573
994
+ msgid "MS Excel Export"
995
+ msgstr "MS Excel Export"
996
+
997
  #: app/features/events.php:1575 app/features/events.php:1576
998
  msgid "XML Export"
999
  msgstr "XML Export"
1006
  msgid "Duplicate"
1007
  msgstr "Kopie"
1008
 
1009
+ #: app/features/events.php:1631 app/features/events.php:1675
1010
+ #: app/features/ix.php:2328 app/features/ix.php:2369
1011
+ #: app/features/labels.php:150 app/features/locations.php:228
1012
+ #: app/features/organizers.php:198
1013
+ msgid "ID"
1014
+ msgstr "ID"
1015
+
1016
  #: app/features/events.php:1631 app/features/events.php:1675
1017
  #: app/features/ix.php:2328 app/features/ix.php:2369
1018
  msgid "Start Time"
1102
  msgstr "Zusätzliche Anmerkungen zum Event "
1103
 
1104
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1105
  msgid "Submit"
1106
  msgstr "Buchung abschließen"
1107
 
1117
  msgid "eg. John Smith"
1118
  msgstr "z.B. Max Mustermann"
1119
 
1120
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1121
  msgid "Featured Image"
1122
  msgstr "Ausgewähltes Bild"
1123
 
1126
  msgstr "Bild entfernen"
1127
 
1128
  #: app/features/fes/form.php:543 app/features/labels.php:61
1129
+ #: app/features/labels.php:194 app/features/mec.php:191
1130
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1131
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1132
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1133
  msgid "Labels"
1134
  msgstr "Labels"
1135
 
1136
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1137
  #: app/features/mec/meta_boxes/filter.php:138
1138
  msgid "Tags"
1139
  msgstr "Schlagworte"
1160
  msgid "No events found! %s"
1161
  msgstr "Keine Veranstaltungen gefunden! %s"
1162
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1163
  #: app/features/ix.php:95
1164
  msgid "MEC - Import / Export"
1165
  msgstr "MEC - Import / Export"
1192
  msgid "Third Party plugin is invalid!"
1193
  msgstr "Drittanbieter-Plugin ist ungültig!"
1194
 
1195
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1196
+ msgid "Both of API key and Calendar ID are required!"
1197
+ msgstr "Beide, API Schlüssel und Calender ID wird benötigt"
1198
+
1199
  #: app/features/ix.php:1961 app/features/ix.php:2791
1200
  msgid "Please select some events to import!"
1201
  msgstr "Bitte wählen Sie einige Veranstaltungen aus zum importieren"
1218
  msgstr ""
1219
  "Alles scheint gut zu sein! Bitte klicken %s um Ihre App zu authentifizieren."
1220
 
1221
+ #: app/features/ix.php:2527
1222
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1223
+ msgstr "Dies wird alles benötigt: Client ID, Client Secret und Calender ID!"
1224
+
1225
+ #: app/features/ix.php:2722
1226
+ #, php-format
1227
+ msgid "%s events added to Google Calendar successfully."
1228
+ msgstr "%s Events wurden erfolgreich zum Google Kalender hinzugefügt."
1229
+
1230
+ #: app/features/ix.php:2723
1231
+ #, php-format
1232
+ msgid "%s previously added events get updated."
1233
+ msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
1234
+
1235
+ #: app/features/ix.php:2724
1236
+ #, php-format
1237
+ msgid "%s events failed to add for following reasons: %s"
1238
+ msgstr "%s Events wurde aus folgenden Gründen nicht hinzugefügt: %s"
1239
+
1240
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1241
+ msgid "Please insert your facebook page's link."
1242
+ msgstr "Bitte Ihren Facebook Seitenlink eingeben."
1243
+
1244
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1245
+ msgid ""
1246
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1247
+ "valid facebook page link."
1248
+ msgstr ""
1249
+ "Wir konnten Ihre Facebookseite nicht erkennen. Bitte checken Sie das und "
1250
+ "stellen Sie uns einen gültigen Facebookseitenlink zur Verfügung."
1251
+
1252
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1253
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1254
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1296
  "Dies wird alle Ihre Eventdaten von der Webseite in Ihr gewünschtes Format "
1297
  "exportieren."
1298
 
1299
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1300
  msgid "iCal"
1301
  msgstr "iCal"
1302
 
1338
  "Wir haben Events für %s Seite gefunden. Bitte wählen Sie Ihre gewünschten "
1339
  "Events zum importieren."
1340
 
1341
+ #: app/features/ix/export.php:37
1342
+ msgid "Bookings"
1343
+ msgstr "Buchungen / Reservierungen"
1344
+
1345
  #: app/features/ix/export_g_calendar.php:25
1346
  msgid "Add events to Google Calendar"
1347
  msgstr "Events zum Google Kalender hinzufügen"
1399
  msgid "Add to Google Calendar"
1400
  msgstr "Zum Google Kalender hinzufügen"
1401
 
1402
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1403
  msgid "Checking ..."
1404
  msgstr "Überprüfung"
1405
 
1441
  msgid "ICS Feed"
1442
  msgstr ""
1443
 
1444
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1445
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1446
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1447
+ #: app/features/mec/settings.php:1039
1448
  #, php-format
1449
  msgid "%s is required to use this feature."
1450
  msgstr ""
1456
  #: app/features/mec/meta_boxes/display_options.php:558
1457
  #: app/features/mec/meta_boxes/display_options.php:608
1458
  #: app/features/mec/meta_boxes/display_options.php:734
1459
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1460
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1461
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1462
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1463
  msgid "Pro version of Modern Events Calendar"
1464
  msgstr ""
1465
 
1697
  msgid "Select label color"
1698
  msgstr "Wähle Label Farbe"
1699
 
1700
+ #: app/features/labels.php:153 app/features/locations.php:231
1701
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1702
+ msgid "Count"
1703
+ msgstr "Zähler"
1704
+
1705
  #: app/features/labels.php:154 app/features/locations.php:232
1706
  #: app/features/organizers.php:202
1707
  msgid "Slug"
1712
  msgid "Event %s"
1713
  msgstr "Event %s"
1714
 
1715
+ #: app/features/locations.php:59 app/features/mec.php:192
1716
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1717
  msgid "Locations"
1718
  msgstr "Orte"
1719
 
1784
  "z.B. Karlsruhe Schlosshotel oder Frankfurt Allianz oder Dortmund "
1785
  "Westfalenhalle"
1786
 
1787
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1788
  msgid "Event Location"
1789
  msgstr "Veranstaltungsort"
1790
 
1816
  msgid "Don't show map in single event page"
1817
  msgstr "Karte in Einzelansicht nicht anzeigen"
1818
 
1819
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1820
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1821
  msgid "Organizers"
1822
  msgstr "Veranstalter"
1823
 
1824
+ #: app/features/mec.php:194 app/features/mec.php:208
1825
+ #: app/features/mec/dashboard.php:96
1826
  msgid "Shortcodes"
1827
  msgstr "Shortcodes"
1828
 
1829
+ #: app/features/mec.php:195
1830
  msgid "MEC - Settings"
1831
  msgstr "MEC - Einstellungen"
1832
 
1833
+ #: app/features/mec.php:210
1834
  msgid "Add Shortcode"
1835
  msgstr "Shortcode hinzufügen"
1836
 
1837
+ #: app/features/mec.php:211
1838
  msgid "Add New Shortcode"
1839
  msgstr "Neuen Shortcode hinzufügen"
1840
 
1841
+ #: app/features/mec.php:212
1842
  msgid "No shortcodes found!"
1843
  msgstr "Keine Shortcodes gefunden!"
1844
 
1845
+ #: app/features/mec.php:213
1846
  msgid "All Shortcodes"
1847
  msgstr "Alle Shortcodes"
1848
 
1849
+ #: app/features/mec.php:214
1850
  msgid "Edit shortcodes"
1851
  msgstr "Shortcode ändern"
1852
 
1853
+ #: app/features/mec.php:215
1854
  msgid "No shortcodes found in Trash!"
1855
  msgstr "Keine Shortcodes im Papierkorb gefunden!"
1856
 
1857
+ #: app/features/mec.php:262
1858
  msgid "Display Options"
1859
  msgstr "Darstellungsoptionen"
1860
 
1861
+ #: app/features/mec.php:263
1862
  msgid "Filter Options"
1863
  msgstr "Filteroptionen"
1864
 
1865
+ #: app/features/mec.php:265
1866
  msgid "Search Form"
1867
  msgstr "Suche Formular"
1868
 
1869
+ #: app/features/mec.php:553
1870
  msgid "Single Event Display Method"
1871
  msgstr "Single Event Anzeigemethode"
1872
 
1873
+ #: app/features/mec.php:558
1874
  msgid "Separate Window"
1875
  msgstr "Separates Fenster"
1876
 
1877
+ #: app/features/mec.php:559
1878
  msgid "Modal 1"
1879
  msgstr "Modal 1"
1880
 
1881
+ #: app/features/mec/dashboard.php:58
1882
  #, php-format
1883
  msgid "Welcome %s"
1884
  msgstr "Willkommen %s"
1885
 
1886
+ #: app/features/mec/dashboard.php:61
1887
  #, php-format
1888
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1889
  msgstr ""
1890
 
1891
+ #: app/features/mec/dashboard.php:61
1892
  msgid "Modern Event Calendar"
1893
  msgstr ""
1894
 
1895
+ #: app/features/mec/dashboard.php:61
1896
  msgid "Modern Event Calendar (Lite)"
1897
  msgstr ""
1898
 
1899
+ #: app/features/mec/dashboard.php:70
1900
  msgid "Version"
1901
  msgstr "Version"
1902
 
1903
+ #: app/features/mec/dashboard.php:79
1904
  #, php-format
1905
  msgid ""
1906
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1908
  "Spots, etc you should %s to the Pro version."
1909
  msgstr ""
1910
 
1911
+ #: app/features/mec/dashboard.php:79
1912
  msgid "lite"
1913
  msgstr ""
1914
 
1915
+ #: app/features/mec/dashboard.php:79
1916
  msgid "upgrade"
1917
  msgstr ""
1918
 
1919
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1920
  msgid "Documentation"
1921
  msgstr "Dokumentation"
1922
 
1923
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1924
  msgid ""
1925
  "Our documentation is simple and functional with full details and cover all "
1926
  "essential aspects from beginning to the most advanced parts."
1929
  "deckt alle essentiellen Dinge vom Beginn bis zu den fortgeschrittenen Teilen "
1930
  "ab."
1931
 
1932
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1933
  msgid "DOCUMENTATION"
1934
  msgstr "Dokumentation"
1935
 
1936
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1937
  msgid "Support Forum"
1938
  msgstr "Support Forum"
1939
 
1940
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1941
  msgid ""
1942
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1943
  "If you want to use this service you need to upgrade your plugin to Pro "
1944
  "version. Click on the following button."
1945
  msgstr ""
1946
 
1947
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1948
  msgid ""
1949
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1950
  "If you have any issues please don't hesitate to contact us, we will reply as "
1954
  "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
1955
  "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
1956
 
1957
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1958
  msgid "GO PREMIUM"
1959
  msgstr ""
1960
 
1961
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1962
  msgid "OPEN A TICKET"
1963
  msgstr "Ein Ticket eröffnen"
1964
 
1965
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1966
  msgid "Upcoming Events"
1967
  msgstr "Kommende Veranstaltungen"
1968
 
1969
+ #: app/features/mec/dashboard.php:181
1970
  msgid "Popular Gateways"
1971
  msgstr "Beliebte Zahlungsgateways"
1972
 
1973
+ #: app/features/mec/dashboard.php:232
1974
  msgid "Total Bookings"
1975
  msgstr "Gesamte Buchungen"
1976
 
1977
+ #: app/features/mec/dashboard.php:259
1978
  msgid "This Month"
1979
  msgstr "Diesen Monat"
1980
 
1981
+ #: app/features/mec/dashboard.php:260
1982
  msgid "Last Month"
1983
  msgstr "Letzten Monat"
1984
 
1985
+ #: app/features/mec/dashboard.php:261
1986
  msgid "This Year"
1987
  msgstr "Diese Jahr"
1988
 
1989
+ #: app/features/mec/dashboard.php:262
1990
  msgid "Last Year"
1991
  msgstr "Letztes Jahr"
1992
 
1993
+ #: app/features/mec/dashboard.php:274
1994
  msgid "Bar"
1995
  msgstr "Bar"
1996
 
1997
+ #: app/features/mec/dashboard.php:275
1998
  msgid "Line"
1999
  msgstr "Linie"
2000
 
2001
+ #: app/features/mec/dashboard.php:277
2002
  msgid "Filter"
2003
  msgstr "Filter"
2004
 
2005
+ #: app/features/mec/dashboard.php:293
2006
  #, php-format
2007
  msgid "Total Sells (%s)"
2008
  msgstr "Alle Verkäufe (%s)"
2009
 
2010
+ #: app/features/mec/dashboard.php:314
2011
  msgid "Change Log"
2012
  msgstr "Änderungsprotokoll"
2013
 
2014
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2015
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2016
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
2017
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2018
  msgid "Styling Options"
2019
  msgstr "Styling-Optionen"
2020
 
2021
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2022
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2023
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
2024
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2025
  msgid "Custom CSS"
2026
  msgstr "Custom CSS"
2027
 
2028
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2029
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2030
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
2031
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2032
  #: app/features/mec/support.php:64
2033
  msgid "Messages"
2035
 
2036
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2037
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2038
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
2039
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2040
  #: app/features/mec/support.php:84
2041
  msgid "Support"
2048
  #: app/features/mec/notifications.php:409
2049
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2050
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2051
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
2052
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
2053
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
2054
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2055
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2056
+ #: app/features/mec/styling.php:335
2057
  msgid "Save Changes"
2058
  msgstr "Änderungen sichern"
2059
 
2060
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2061
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2062
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
2063
  #: app/features/mec/styling.php:313
2064
  msgid "Saved"
2065
  msgstr "Gesichert"
2066
 
2067
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2068
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2069
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
2070
  #: app/features/mec/styling.php:314
2071
  msgid "Settings Saved!"
2072
  msgstr ""
2277
  msgid "Default values are d and F"
2278
  msgstr "Die Standardwerte sind d and F"
2279
 
2280
+ #: app/features/mec/meta_boxes/display_options.php:85
2281
+ #: app/features/mec/meta_boxes/display_options.php:194
2282
+ #: app/features/mec/meta_boxes/display_options.php:244
2283
+ #: app/features/mec/meta_boxes/display_options.php:632
2284
+ #: app/features/mec/meta_boxes/display_options.php:806
2285
+ #: app/features/mec/meta_boxes/display_options.php:877
2286
+ msgid "Limit"
2287
+ msgstr "Limit"
2288
+
2289
  #: app/features/mec/meta_boxes/display_options.php:86
2290
  #: app/features/mec/meta_boxes/display_options.php:195
2291
  #: app/features/mec/meta_boxes/display_options.php:245
2365
 
2366
  #: app/features/mec/meta_boxes/display_options.php:287
2367
  #: app/features/mec/meta_boxes/display_options.php:296
2368
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2369
  msgid "List View"
2370
  msgstr "Listenansicht"
2371
 
2372
  #: app/features/mec/meta_boxes/display_options.php:288
2373
  #: app/features/mec/meta_boxes/display_options.php:306
2374
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2375
  msgid "Yearly View"
2376
  msgstr "Jahresansicht"
2377
 
2382
 
2383
  #: app/features/mec/meta_boxes/display_options.php:290
2384
  #: app/features/mec/meta_boxes/display_options.php:326
2385
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2386
  msgid "Weekly View"
2387
  msgstr "Wochenansicht"
2388
 
2389
  #: app/features/mec/meta_boxes/display_options.php:291
2390
  #: app/features/mec/meta_boxes/display_options.php:336
2391
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2392
  msgid "Daily View"
2393
  msgstr "Tagesansicht"
2394
 
2632
  msgid "Show Search Form"
2633
  msgstr "Such Formular anzeigen"
2634
 
2635
+ #: app/features/mec/meta_boxes/search_form.php:33
2636
+ #: app/features/mec/meta_boxes/search_form.php:40
2637
+ #: app/features/mec/meta_boxes/search_form.php:47
2638
+ #: app/features/mec/meta_boxes/search_form.php:54
2639
+ #: app/features/mec/meta_boxes/search_form.php:61
2640
+ #: app/features/mec/meta_boxes/search_form.php:68
2641
+ #: app/features/mec/meta_boxes/search_form.php:80
2642
+ #: app/features/mec/meta_boxes/search_form.php:87
2643
+ #: app/features/mec/meta_boxes/search_form.php:94
2644
+ #: app/features/mec/meta_boxes/search_form.php:101
2645
+ #: app/features/mec/meta_boxes/search_form.php:108
2646
+ #: app/features/mec/meta_boxes/search_form.php:115
2647
+ #: app/features/mec/meta_boxes/search_form.php:127
2648
+ #: app/features/mec/meta_boxes/search_form.php:134
2649
+ #: app/features/mec/meta_boxes/search_form.php:141
2650
+ #: app/features/mec/meta_boxes/search_form.php:148
2651
+ #: app/features/mec/meta_boxes/search_form.php:155
2652
+ #: app/features/mec/meta_boxes/search_form.php:162
2653
+ #: app/features/mec/meta_boxes/search_form.php:174
2654
+ #: app/features/mec/meta_boxes/search_form.php:181
2655
+ #: app/features/mec/meta_boxes/search_form.php:193
2656
+ #: app/features/mec/meta_boxes/search_form.php:200
2657
+ #: app/features/mec/meta_boxes/search_form.php:207
2658
+ #: app/features/mec/meta_boxes/search_form.php:214
2659
+ #: app/features/mec/meta_boxes/search_form.php:221
2660
+ #: app/features/mec/meta_boxes/search_form.php:228
2661
+ #: app/features/mec/meta_boxes/search_form.php:240
2662
+ #: app/features/mec/meta_boxes/search_form.php:247
2663
+ #: app/features/mec/meta_boxes/search_form.php:254
2664
+ #: app/features/mec/meta_boxes/search_form.php:261
2665
+ #: app/features/mec/meta_boxes/search_form.php:268
2666
+ #: app/features/mec/meta_boxes/search_form.php:275
2667
+ #: app/features/mec/meta_boxes/search_form.php:287
2668
+ #: app/features/mec/meta_boxes/search_form.php:294
2669
+ #: app/features/mec/meta_boxes/search_form.php:301
2670
+ #: app/features/mec/meta_boxes/search_form.php:308
2671
+ #: app/features/mec/meta_boxes/search_form.php:315
2672
+ #: app/features/mec/meta_boxes/search_form.php:327
2673
+ #: app/features/mec/meta_boxes/search_form.php:334
2674
+ #: app/features/mec/meta_boxes/search_form.php:341
2675
+ #: app/features/mec/meta_boxes/search_form.php:348
2676
+ #: app/features/mec/meta_boxes/search_form.php:355
2677
+ #: app/features/mec/meta_boxes/search_form.php:362
2678
+ #: app/features/mec/meta_boxes/search_form.php:374
2679
+ #: app/features/mec/meta_boxes/search_form.php:381
2680
+ #: app/features/mec/meta_boxes/search_form.php:388
2681
+ #: app/features/mec/meta_boxes/search_form.php:395
2682
+ #: app/features/mec/meta_boxes/search_form.php:402
2683
+ #: app/features/mec/meta_boxes/search_form.php:409
2684
+ #: app/features/mec/meta_boxes/search_form.php:421
2685
+ #: app/features/mec/meta_boxes/search_form.php:428
2686
+ #: app/features/mec/meta_boxes/search_form.php:435
2687
+ #: app/features/mec/meta_boxes/search_form.php:442
2688
+ #: app/features/mec/meta_boxes/search_form.php:449
2689
+ #: app/features/mec/meta_boxes/search_form.php:456
2690
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2691
+ #: app/features/mec/settings.php:554
2692
+ msgid "Disabled"
2693
+ msgstr "Deaktiviert"
2694
+
2695
  #: app/features/mec/meta_boxes/search_form.php:59
2696
  #: app/features/mec/meta_boxes/search_form.php:106
2697
  #: app/features/mec/meta_boxes/search_form.php:153
2930
  msgid "Invoice Link"
2931
  msgstr "Rechnungslink"
2932
 
2933
+ #: app/features/mec/notifications.php:140
2934
+ #: app/features/mec/notifications.php:177
2935
+ #: app/features/mec/notifications.php:214
2936
+ #: app/features/mec/notifications.php:255
2937
+ #: app/features/mec/notifications.php:307
2938
+ msgid "Total Attendees"
2939
+ msgstr ""
2940
+
2941
  #: app/features/mec/notifications.php:145
2942
  msgid "Booking Verification"
2943
  msgstr "Verifizierung der Buchung"
2956
  msgid "Email/Booking verification link."
2957
  msgstr "Bestätigungslink für Email/Buchung"
2958
 
2959
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2960
  msgid "Booking Confirmation"
2961
  msgstr "Buchungsbestätigung"
2962
 
3045
  msgid "Status of event"
3046
  msgstr "Status der Veranstaltung"
3047
 
3048
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
3049
  msgid "Event Note"
3050
  msgstr "Veranstaltungsnotiz"
3051
 
3053
  msgid "Admin events management link."
3054
  msgstr "Admin-link zur Veranstaltungsverwaltung"
3055
 
3056
+ #: app/features/mec/settings.php:47
3057
  msgid "Archive Page Options"
3058
  msgstr ""
3059
 
3060
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
3061
  msgid "Export Module Options"
3062
  msgstr "Optionen für Export-Module"
3063
 
3064
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
3065
  msgid "Local Time Module"
3066
  msgstr "Lokales Zeitmodul"
3067
 
3068
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
3069
  msgid "QR Code Module"
3070
  msgstr "QR Code Module"
3071
 
3072
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
3073
  msgid "Weather Module"
3074
  msgstr "Wettermodul"
3075
 
3076
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
3077
  msgid "Additional Organizers"
3078
  msgstr "Zusätzliche Organisatoren"
3079
 
3080
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
3081
  msgid "Taxes / Fees"
3082
  msgstr "Steuern/Gebühren"
3083
 
3084
+ #: app/features/mec/settings.php:255
3085
  msgid "Time Format"
3086
  msgstr "Zeitformat"
3087
 
3088
+ #: app/features/mec/settings.php:258
3089
  msgid "12 hours format with AM/PM"
3090
  msgstr "12-Stunden-Format mit AM/FM"
3091
 
3092
+ #: app/features/mec/settings.php:259
3093
  msgid "24 hours format"
3094
  msgstr "24-Stunden-Format"
3095
 
3096
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3097
  msgid ""
3098
  "This option is for showing start/end time of events on frontend of website."
3099
  msgstr ""
3100
  "Diese Option ist um die Start/Endezeit von Events im Frontend der Webseite "
3101
  "anzuzeigen"
3102
 
3103
+ #: app/features/mec/settings.php:266
3104
  msgid "Hide Events"
3105
  msgstr "Events verbergen"
3106
 
3107
+ #: app/features/mec/settings.php:269
3108
  msgid "On Event Start"
3109
  msgstr "Am Event Start"
3110
 
3111
+ #: app/features/mec/settings.php:270
3112
  msgid "+1 Hour after start"
3113
  msgstr "+1 Stunde nach dem Start"
3114
 
3115
+ #: app/features/mec/settings.php:271
3116
  msgid "+2 Hours after start"
3117
  msgstr "+2 Stunden nach dem Start"
3118
 
3119
+ #: app/features/mec/settings.php:272
3120
  msgid "On Event End"
3121
  msgstr "Am Event Ende"
3122
 
3123
+ #: app/features/mec/settings.php:280
3124
  msgid "Multiple Day Events"
3125
  msgstr "Mehrtagesveranstaltung"
3126
 
3127
+ #: app/features/mec/settings.php:283
3128
  msgid "Show only first day on List/Grid/Slider skins"
3129
  msgstr "Zeige nur den ersten Tag auf Listen/Raster(Grid)/Slider skins."
3130
 
3131
+ #: app/features/mec/settings.php:284
3132
  msgid "Show only first day on all skins"
3133
  msgstr "Nur den ersten Tag in allen Ansichten zeigen"
3134
 
3135
+ #: app/features/mec/settings.php:285
3136
  msgid "Show all days"
3137
  msgstr "Alle Tage anzeigen"
3138
 
3139
+ #: app/features/mec/settings.php:287
3140
  msgid ""
3141
  "For showing all days of multiple day events on frontend or only show the "
3142
  "first day."
3144
  "Um alle Tage anzuzeigen bei Events über mehrere Tage im Frontend oder nur "
3145
  "den ersten Tag anzeigen"
3146
 
3147
+ #: app/features/mec/settings.php:293
3148
  msgid "Remove MEC Data on Plugin Uninstall"
3149
  msgstr "Entfernen von MEC Data auf dem Plugin Deinstallierer"
3150
 
3151
+ #: app/features/mec/settings.php:297
3152
+ msgid "Enabled"
3153
+ msgstr "Aktiviert"
3154
+
3155
+ #: app/features/mec/settings.php:303
3156
  msgid "Exclude Date Suffix"
3157
  msgstr "Ausschlussdatum Suffix"
3158
 
3159
+ #: app/features/mec/settings.php:306
3160
  msgid "Remove suffix from calendars"
3161
  msgstr "Suffix aus den Kalendern entfernen"
3162
 
3163
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3164
  msgid "Weekdays"
3165
  msgstr "Wochentage"
3166
 
3167
+ #: app/features/mec/settings.php:321
3168
  msgid ""
3169
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3170
  "and Friday."
3172
  "Vorsichtig vorgehen. Standardwert ist auf Montag, Dienstag, Mittwoch, "
3173
  "Donnerstag und Freitag gesetzt."
3174
 
3175
+ #: app/features/mec/settings.php:328
3176
  msgid "Weekends"
3177
  msgstr "Wochenenden"
3178
 
3179
+ #: app/features/mec/settings.php:336
3180
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3181
  msgstr "Vorsichtig vorgehen. Standardwert ist auf Samstag und Sonntag gesetzt."
3182
 
3183
+ #: app/features/mec/settings.php:344
3184
  msgid "Archive Pages"
3185
  msgstr ""
3186
 
3187
+ #: app/features/mec/settings.php:347
3188
  msgid "Archive Page Title"
3189
  msgstr "Titel der Archivseite"
3190
 
3191
+ #: app/features/mec/settings.php:350
3192
  msgid "Default value is Events"
3193
  msgstr "Der Standardwert ist Ereignisse (Events)"
3194
 
3195
+ #: app/features/mec/settings.php:355
3196
  msgid "Archive Page Skin"
3197
  msgstr "Skin Seite Archiv"
3198
 
3199
+ #: app/features/mec/settings.php:362
3200
  msgid "Default value is Calendar/Monthly View"
3201
  msgstr "Der Standardwert ist Kalender / Monatsansicht"
3202
 
3203
+ #: app/features/mec/settings.php:367
3204
  msgid "Category Page Skin"
3205
  msgstr "Kategorie Seiten Skin"
3206
 
3207
+ #: app/features/mec/settings.php:374
3208
  msgid "Default value is List View"
3209
  msgstr "Standardwert ist Listenansicht"
3210
 
3211
+ #: app/features/mec/settings.php:379
3212
  msgid "Category Events Method"
3213
  msgstr ""
3214
 
3215
+ #: app/features/mec/settings.php:383
3216
  msgid "Expired Events"
3217
  msgstr ""
3218
 
3219
+ #: app/features/mec/settings.php:385
3220
  msgid "Default value is Upcoming Events"
3221
  msgstr ""
3222
 
3223
+ #: app/features/mec/settings.php:390
3224
  msgid "Events Archive Status"
3225
  msgstr "Events Archiv Status"
3226
 
3227
+ #: app/features/mec/settings.php:393
3228
  msgid "Enabled (Recommended)"
3229
  msgstr "Ist aktiviert (empfohlen)"
3230
 
3231
+ #: app/features/mec/settings.php:396
3232
  msgid ""
3233
  "If you disable it, then you should create a page as archive page of MEC. "
3234
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3238
  "erstellen. Page´s slug muss gleich sein wie \"Main Slug\" von MEC. Außerdem "
3239
  "werden alle MEC-Rewrite-Regeln deaktiviert."
3240
 
3241
+ #: app/features/mec/settings.php:406
3242
  msgid "Main Slug"
3243
  msgstr "Main Slug"
3244
 
3245
+ #: app/features/mec/settings.php:409
3246
  msgid ""
3247
  "Default value is events. Valid characters are lowercase a-z, - character and "
3248
  "numbers."
3250
  "Standardwert ist Events. Gültige Zeichen sind Kleinbuchstaben a-z, - Zeichen "
3251
  "und Zahlen."
3252
 
3253
+ #: app/features/mec/settings.php:413
3254
  msgid "Category Slug"
3255
  msgstr "Category Slug"
3256
 
3257
+ #: app/features/mec/settings.php:416
3258
  msgid ""
3259
  "It's slug of MEC categories, you can change it to events-cat or something "
3260
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3266
  "für den link. Zum Beispiel example.com/events-cat oder example.com/mec-"
3267
  "category"
3268
 
3269
+ #: app/features/mec/settings.php:426
3270
  msgid "Single Event Date Format"
3271
  msgstr "Einzelveranstaltung Datumformat"
3272
 
3273
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3274
  msgid "Default is M d Y"
3275
  msgstr "Standardwert ist M-T-J"
3276
 
3277
+ #: app/features/mec/settings.php:433
3278
  msgid "Date Method"
3279
  msgstr "Datum Methode"
3280
 
3281
+ #: app/features/mec/settings.php:436
3282
  msgid "Next occurrence date"
3283
  msgstr "Nächstes vorkommende Datum"
3284
 
3285
+ #: app/features/mec/settings.php:437
3286
  msgid "Referred date"
3287
  msgstr "Gewünschtes Datum"
3288
 
3289
+ #: app/features/mec/settings.php:439
3290
  msgid ""
3291
  "\"Referred date\" shows the event date based on referred date in event list."
3292
  msgstr ""
3293
  "\"Gewünschtes Datum\" zeigt das Ereignisdatum basierend auf dem angegebenen "
3294
  "Datum in der Eventliste an."
3295
 
3296
+ #: app/features/mec/settings.php:443
3297
  msgid "Single Event Style"
3298
  msgstr "Single Event Stil"
3299
 
3300
+ #: app/features/mec/settings.php:446
3301
  msgid "Default Style"
3302
  msgstr "Standardstil voreingestellt"
3303
 
3304
+ #: app/features/mec/settings.php:447
3305
  msgid "Modern Style"
3306
  msgstr "Moderner Stil"
3307
 
3308
+ #: app/features/mec/settings.php:449
3309
  msgid "Choose your single event style."
3310
  msgstr "Wählen Sie Ihren Single Event Stil"
3311
 
3312
+ #: app/features/mec/settings.php:458
3313
  msgid "Currency"
3314
  msgstr "Währung"
3315
 
3316
+ #: app/features/mec/settings.php:468
3317
  msgid "Currency Sign"
3318
  msgstr "Währungssymbol"
3319
 
3320
+ #: app/features/mec/settings.php:471
3321
  msgid "Default value will be \"currency\" if you leave it empty."
3322
  msgstr "Standardwert wird \"currency\" sein wenn Sie es leer lassen"
3323
 
3324
+ #: app/features/mec/settings.php:475
3325
  msgid "Currency Position"
3326
  msgstr "Position des Währungssymbols"
3327
 
3328
+ #: app/features/mec/settings.php:478
3329
  msgid "Before $10"
3330
  msgstr "Vor $10"
3331
 
3332
+ #: app/features/mec/settings.php:479
3333
  msgid "After 10$"
3334
  msgstr "Nach 10$"
3335
 
3336
+ #: app/features/mec/settings.php:484
3337
  msgid "Thousand Separator"
3338
  msgstr "Tausendertrennzeichen"
3339
 
3340
+ #: app/features/mec/settings.php:490
3341
  msgid "Decimal Separator"
3342
  msgstr "Dezimaltrennzeichen"
3343
 
3344
+ #: app/features/mec/settings.php:500
3345
  msgid "No decimal"
3346
  msgstr "Keine Dezimale"
3347
 
3348
+ #: app/features/mec/settings.php:516
3349
  msgid "Show Google Maps on event page"
3350
  msgstr "Google Maps auf der Veranstaltungsseite anzeigen"
3351
 
3352
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3353
+ #: app/features/mec/settings.php:1140
3354
  msgid "API Key"
3355
  msgstr "API Schlüssel"
3356
 
3357
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3358
+ #: app/features/mec/settings.php:1150
3359
  msgid "Required!"
3360
  msgstr "Erforderlich (Pflichtfeld)"
3361
 
3362
+ #: app/features/mec/settings.php:528
3363
  msgid "Zoom level"
3364
  msgstr "Zoom"
3365
 
3366
+ #: app/features/mec/settings.php:535
3367
  msgid ""
3368
  "For Google Maps module in single event page. In Google Maps skin, it will "
3369
  "caculate the zoom level automatically based on event boundaries."
3372
  "es die Zoom-Ebene automatisch kalkulieren, basierend auf den Eventort "
3373
  "Angrenzungen"
3374
 
3375
+ #: app/features/mec/settings.php:539
3376
  msgid "Google Maps Style"
3377
  msgstr "Google Maps Stil"
3378
 
3379
+ #: app/features/mec/settings.php:543
3380
  msgid "Default"
3381
  msgstr "Standardeinstellung"
3382
 
3383
+ #: app/features/mec/settings.php:551
3384
  msgid "Direction on single event"
3385
  msgstr "Richtung auf einzelne Veranstaltung"
3386
 
3387
+ #: app/features/mec/settings.php:555
3388
  msgid "Simple Method"
3389
  msgstr "Einfache Methode"
3390
 
3391
+ #: app/features/mec/settings.php:556
3392
  msgid "Advanced Method"
3393
  msgstr "Fortgeschrittene Methode"
3394
 
3395
+ #: app/features/mec/settings.php:561
3396
  msgid "Lightbox Date Format"
3397
  msgstr "Leuchtkasten Datumsformat"
3398
 
3399
+ #: app/features/mec/settings.php:564
3400
  msgid "Default value is M d Y"
3401
  msgstr "Standardwert ist M T J"
3402
 
3403
+ #: app/features/mec/settings.php:568
3404
  msgid "Google Maps API"
3405
  msgstr "Google Maps API"
3406
 
3407
+ #: app/features/mec/settings.php:572
3408
  msgid "Don't load Google Maps API library"
3409
  msgstr "Google Maps API Bibliothek nicht laden"
3410
 
3411
+ #: app/features/mec/settings.php:574
3412
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3413
  msgstr ""
3414
  "Checken Sie es nur wenn ein anderes plugin/Thema die Google Maps API lädt."
3415
 
3416
+ #: app/features/mec/settings.php:586
3417
  msgid "Enable Google Recaptcha"
3418
  msgstr "Google Recaptcha aktivieren"
3419
 
3420
+ #: app/features/mec/settings.php:593
3421
  msgid "Enable on booking form"
3422
  msgstr "Auf dem Buchungsformular aktivieren"
3423
 
3424
+ #: app/features/mec/settings.php:599
3425
  msgid "Enable on \"Frontend Event Submittion\" form"
3426
  msgstr "Aktivieren auf dem \"Frontend Event Submittion\" Formular"
3427
 
3428
+ #: app/features/mec/settings.php:603
3429
  msgid "Site Key"
3430
  msgstr "Site Key (Seitenschlüssel)"
3431
 
3432
+ #: app/features/mec/settings.php:609
3433
+ msgid "Secret Key"
3434
+ msgstr "Geheimschlüssel"
3435
+
3436
+ #: app/features/mec/settings.php:623
3437
  msgid ""
3438
  "Show export module (iCal export and add to Google calendars) on event page"
3439
  msgstr ""
3440
  "Exportmodule auf Veranstaltungsseite anzeigen (iCal export und hinzufügen zu "
3441
  "Google calendars)"
3442
 
3443
+ #: app/features/mec/settings.php:630
3444
  msgid "Google Calendar"
3445
  msgstr "Google Calendar"
3446
 
3447
+ #: app/features/mec/settings.php:650
3448
  msgid "Show event time based on local time of visitor on event page"
3449
  msgstr ""
3450
  "Zeige die Eventzeit basierend auf der Ortszeit des Besuchers auf der "
3451
  "Eventseite"
3452
 
3453
+ #: app/features/mec/settings.php:666
3454
  msgid "Show QR code of event in details page and booking invoice"
3455
  msgstr ""
3456
  "Zeigen Sie QR-Code des Events in der Detailseite und in der Buchungsrechnung "
3457
  "an"
3458
 
3459
+ #: app/features/mec/settings.php:684
3460
  msgid "Show weather module on event page"
3461
  msgstr "Wettermodul auf der Eventseite anzeigen"
3462
 
3463
+ #: app/features/mec/settings.php:692
3464
  #, php-format
3465
  msgid "You can get a free API Key from %s"
3466
  msgstr "Sie können einen kostenlosen API-Schlüssel von% s erhalten"
3467
 
3468
+ #: app/features/mec/settings.php:704
3469
  msgid "Show countdown module on event page"
3470
  msgstr "Countdownmodul auf Veranstaltungsseite anzeigen"
3471
 
3472
+ #: app/features/mec/settings.php:709
3473
  msgid "Countdown Style"
3474
  msgstr "Countdown Stil"
3475
 
3476
+ #: app/features/mec/settings.php:712
3477
  msgid "Plain Style"
3478
  msgstr "Einfacher schlichter Stil"
3479
 
3480
+ #: app/features/mec/settings.php:713
3481
  msgid "Flip Style"
3482
  msgstr "Flip Stil"
3483
 
3484
+ #: app/features/mec/settings.php:725
3485
  msgid "Show social network module"
3486
  msgstr "Modul für Soziale Netzwerke anzeigen"
3487
 
3488
+ #: app/features/mec/settings.php:750
3489
  msgid "Show next event module on event page"
3490
  msgstr "Nächstes Event Modul auf der Eventseite anzeigen"
3491
 
3492
+ #: app/features/mec/settings.php:755
3493
  msgid "Method"
3494
  msgstr "Methode"
3495
 
3496
+ #: app/features/mec/settings.php:758
3497
  msgid "Next Occurrence of Current Event"
3498
  msgstr "Nächstes Auftreten des aktuellen Events"
3499
 
3500
+ #: app/features/mec/settings.php:759
3501
  msgid "Next Occurrence of Other Events"
3502
  msgstr "Nächstes Auftreten von anderen Events."
3503
 
3504
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3505
  msgid "Date Format"
3506
  msgstr "Datumsformat"
3507
 
3508
+ #: app/features/mec/settings.php:776
3509
  msgid "Events List Page"
3510
  msgstr "Seite Liste der Veranstaltungen"
3511
 
3512
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3513
  #, php-format
3514
  msgid "Put %s shortcode into the page."
3515
  msgstr "%s shortcode in die Seite einfügen"
3516
 
3517
+ #: app/features/mec/settings.php:788
3518
  msgid "Add/Edit Events Page"
3519
  msgstr "Veranstaltungsseite hinzufügen/bearbeiten"
3520
 
3521
+ #: app/features/mec/settings.php:802
3522
  msgid "Enable event submission by guest (Not logged-in) users"
3523
  msgstr ""
3524
  "Das Erstellen von Veranstaltungen durch Gäste (nicht angemeldete Nutzer) "
3525
  "erlauben"
3526
 
3527
+ #: app/features/mec/settings.php:809
3528
  msgid "Enable mandatory email and name for guest user"
3529
  msgstr ""
3530
  "Aktivieren Sie die obligatorische E-Mail und den Namen für Gastbenutzer"
3531
 
3532
+ #: app/features/mec/settings.php:813
3533
  msgid "Frontend Event Submission Sections"
3534
  msgstr "Frontend Veranstaltungen Einreichung Sektionen"
3535
 
3536
+ #: app/features/mec/settings.php:835
3537
  msgid "Event Categories"
3538
  msgstr "Veranstaltungskategorien"
3539
 
3540
+ #: app/features/mec/settings.php:841
3541
  msgid "Event Labels"
3542
  msgstr "Event Labels"
3543
 
3544
+ #: app/features/mec/settings.php:853
3545
  msgid "Event Tags"
3546
  msgstr "Event Schlagworte"
3547
 
3548
+ #: app/features/mec/settings.php:865
3549
  msgid "Event Organizer"
3550
  msgstr "Veranstaltungsmanager"
3551
 
3552
+ #: app/features/mec/settings.php:877
3553
  msgid "Booking Options"
3554
  msgstr "Buchungsoptionen"
3555
 
3556
+ #: app/features/mec/settings.php:883
3557
  msgid "Fees/Taxes Options"
3558
  msgstr "Gebühren/Steuer Optionen"
3559
 
3560
+ #: app/features/mec/settings.php:891
3561
  #, php-format
3562
  msgid ""
3563
  "Users can put a note for editors while they're submitting the event. Also "
3569
  "Eventbenachrichtigung setzen, um die Notizen der Benutzer in der E-Mail zu "
3570
  "erhalten."
3571
 
3572
+ #: app/features/mec/settings.php:895
3573
  msgid "Visibility of Note"
3574
  msgstr "Sichtbarkeit der Anmerkungen zum Event "
3575
 
3576
+ #: app/features/mec/settings.php:898
3577
  msgid "Always"
3578
  msgstr "Immer"
3579
 
3580
+ #: app/features/mec/settings.php:899
3581
  msgid "While event is not published"
3582
  msgstr "Das Ereignis wird nicht veröffentlicht"
3583
 
3584
+ #: app/features/mec/settings.php:902
3585
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3586
  msgstr ""
3587
  "Die Ereignisnotiz wird im Frontend-Einreichungsformular angezeigt und das "
3588
  "Ereignis im Backend bearbeitet."
3589
 
3590
+ #: app/features/mec/settings.php:908
3591
  msgid "Exceptional days"
3592
  msgstr "Ausgesuchte ausnehmende Tage"
3593
 
3594
+ #: app/features/mec/settings.php:912
3595
  msgid "Show exceptional days option on Add/Edit events page"
3596
  msgstr ""
3597
  "Ausnehmende Tage anzeigen auf der Seite Ereignisse hinzufügen / bearbeiten "
3598
  "(Show exceptional days option on Add/Edit events page)"
3599
 
3600
+ #: app/features/mec/settings.php:913
3601
  msgid ""
3602
  "Using this option you can include/exclude certain days to/from event "
3603
  "occurrence dates."
3605
  "Mit dieser Option können Sie bestimmte Tage von vorkommenden Eventdaten ein-/"
3606
  "ausschließen."
3607
 
3608
+ #: app/features/mec/settings.php:923
3609
  msgid ""
3610
  "Show additional organizers option on Add/Edit events page and single event "
3611
  "page."
3613
  "Zeigen Sie zusätzliche Organisatoren auf der Seite Events hinzufügen / "
3614
  "bearbeiten und auf der Seite für einzelne Events an."
3615
 
3616
+ #: app/features/mec/settings.php:937
3617
  msgid "Enable booking module"
3618
  msgstr "Buchungsmodul aktivieren"
3619
 
3620
+ #: app/features/mec/settings.php:945
3621
  msgid "Default is Y-m-d"
3622
  msgstr "Voreinstellung ist J-M-T"
3623
 
3624
+ #: app/features/mec/settings.php:949
3625
  msgid "Maximum Dates"
3626
  msgstr "Maximale Anzahl von Daten"
3627
 
3628
+ #: app/features/mec/settings.php:951
3629
  msgid "Default is 6"
3630
  msgstr "Die Voreinstellung ist 6"
3631
 
3632
+ #: app/features/mec/settings.php:955
3633
  msgid "Thank You Page"
3634
  msgstr "Danke Seite"
3635
 
3636
+ #: app/features/mec/settings.php:963
3637
  msgid ""
3638
  "User redirects to this page after booking. Leave it empty if you want to "
3639
  "disable it."
3641
  "Benutzer werden auf diese Seite nach der Buchung weitergeleitet. Lassen Sie "
3642
  "es leer, wenn Sie es deaktivieren möchten."
3643
 
3644
+ #: app/features/mec/settings.php:971
3645
  msgid "Enable Express Attendees Form"
3646
  msgstr "Aktivieren Sie das Express-Teilnehmerformular"
3647
 
3648
+ #: app/features/mec/settings.php:973
3649
  msgid ""
3650
  "Users are able to apply first attendee information for other attendees in "
3651
  "the booking form."
3653
  "Benutzer können erste Teilnehmerinformationen für andere Teilnehmer im "
3654
  "Buchungsformular anwenden."
3655
 
3656
+ #: app/features/mec/settings.php:976
3657
  msgid "Email verification"
3658
  msgstr "Email-Verifizierung"
3659
 
3660
+ #: app/features/mec/settings.php:982
3661
  msgid "Auto verification for free bookings"
3662
  msgstr "Automatische Verifizierung für kostenlose Buchungen"
3663
 
3664
+ #: app/features/mec/settings.php:991
3665
  msgid "Auto verification for paid bookings"
3666
  msgstr "Automatische Verifizierung für kostenpflichtige Buchungen"
3667
 
3668
+ #: app/features/mec/settings.php:1001
3669
  msgid "Auto confirmation for free bookings"
3670
  msgstr "Automatische Bestätigung für kostenlose Buchungen"
3671
 
3672
+ #: app/features/mec/settings.php:1010
3673
  msgid "Auto confirmation for paid bookings"
3674
  msgstr "Automatische Bestätigung für kostenpflichtige Buchungen"
3675
 
3676
+ #: app/features/mec/settings.php:1027
3677
  msgid "Enable coupons module"
3678
  msgstr "Gutscheinmodul aktivieren"
3679
 
3680
+ #: app/features/mec/settings.php:1044
3681
  msgid "Enable taxes / fees module"
3682
  msgstr "Modul für Gebühren/Steuern aktivieren"
3683
 
3684
+ #: app/features/mec/settings.php:1049
3685
  msgid "Add Fee"
3686
  msgstr "Gebühr hinzufügen"
3687
 
3688
+ #: app/features/mec/settings.php:1105
3689
  msgid "Enable BuddyPress Integration"
3690
  msgstr "Buddy Press Integration deaktivieren"
3691
 
3692
+ #: app/features/mec/settings.php:1112
3693
  msgid "Show \"Attendees Module\" in event details page"
3694
  msgstr "Zeigt \"Teilnehmermodul\" in Event Details Seite"
3695
 
3696
+ #: app/features/mec/settings.php:1116
3697
  msgid "Attendees Limit"
3698
  msgstr "Teilnehmer Limit, maximale Anzahl"
3699
 
3700
+ #: app/features/mec/settings.php:1124
3701
  msgid "Add booking activity to user profile"
3702
  msgstr "Fügt Buchungsaktivitäten dem Benutzerprofil hinzu"
3703
 
3704
+ #: app/features/mec/settings.php:1135
3705
  msgid "Enable Mailchimp Integration"
3706
  msgstr "Mailchimp Integration deaktivieren"
3707
 
3708
+ #: app/features/mec/settings.php:1147
3709
  msgid "List ID"
3710
  msgstr "List ID"
3711
 
3712
+ #: app/features/mec/settings.php:1154
3713
  msgid "Subscription Status"
3714
  msgstr "Buchungsstatus"
3715
 
3716
+ #: app/features/mec/settings.php:1157
3717
  msgid "Subscribe automatically"
3718
  msgstr "automatisch Anmelden/Abonnieren"
3719
 
3720
+ #: app/features/mec/settings.php:1158
3721
  msgid "Subscribe by verification"
3722
  msgstr ""
3723
  "Anmelden/Abonnieren durch Bestätigung\n"
3724
  " "
3725
 
3726
+ #: app/features/mec/settings.php:1160
3727
  msgid ""
3728
  "If you choose \"Subscribe by verification\" then an email will send to user "
3729
  "by mailchimp for subscription verification."
3731
  "Wenn Sie \"Anmelden durch Verifizierung\" wählen, wird eine E-Mail an den "
3732
  "Benutzer per Mailchimp zur Bestätigung gesendet."
3733
 
3734
+ #: app/features/mec/settings.php:1170
3735
  #, php-format
3736
  msgid "%s is required to use this section."
3737
  msgstr ""
3738
 
3739
+ #: app/features/mec/settings.php:1173
3740
  msgid "Purchase Code"
3741
  msgstr "Kaufcode"
3742
 
3743
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3744
+ #: app/features/mec/settings.php:1262
3745
+ msgid "Verified"
3746
+ msgstr "Verifiziert"
3747
+
3748
+ #: app/features/mec/settings.php:1180
3749
  msgid "UnVerified"
3750
  msgstr "Unbestätigt"
3751
 
3752
+ #: app/features/mec/settings.php:1182
3753
  msgid ""
3754
  "Please insert your purchase code validation. read documentation for more "
3755
  "information."
3757
  "Bite geben Sie Ihre KaufCode Validierung ein. Bitte lesen Sie die "
3758
  "Dokumentation für mehr Informationen."
3759
 
3760
+ #: app/features/mec/settings.php:1185
3761
  msgid "Product Name"
3762
  msgstr ""
3763
 
3764
+ #: app/features/mec/settings.php:1188
3765
  msgid "1 License for MEC Plugin"
3766
  msgstr ""
3767
 
3768
+ #: app/features/mec/settings.php:1189
3769
  msgid "5 License for MEC Plugin"
3770
  msgstr ""
3771
 
3772
+ #: app/features/mec/settings.php:1190
3773
  msgid "10 License for MEC Plugin"
3774
  msgstr ""
3775
 
3776
+ #: app/features/mec/settings.php:1197
3777
  msgid "MEC Deactivation"
3778
  msgstr "MEC Deaktivierung"
3779
 
3780
+ #: app/features/mec/settings.php:1199
3781
  msgid "Deactivate"
3782
  msgstr "Deaktivieren"
3783
 
3784
+ #: app/features/mec/settings.php:1201
3785
  msgid ""
3786
  "For deactivation first delete your purchase from above field then press save "
3787
  "after that click on deactivate for deactivate this purchase code from this "
3792
  "Kaufcode aus dieser Domain zu deaktivieren, dann können Sie eine andere "
3793
  "Domain aktivieren."
3794
 
3795
+ #: app/features/mec/settings.php:1264
3796
  msgid "Please Refresh Page"
3797
  msgstr "Bitte Seiten Refresh vornehmen"
3798
 
3952
  msgid "eg. https://webnus.net"
3953
  msgstr "z.B.. http://ihreseite.com/maxmustermann"
3954
 
3955
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3956
  #: app/skins/single.php:194
3957
  msgid "Other Organizers"
3958
  msgstr "Andere Veranstalter"
3969
  msgid "%s Price"
3970
  msgstr "%s Preis"
3971
 
3972
+ #: app/libraries/book.php:516
3973
+ msgid "Discount"
3974
+ msgstr "Rabatt"
3975
+
3976
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3977
+ #: app/modules/booking/default.php:369
3978
+ msgid "Download Invoice"
3979
+ msgstr "Download Rechnung\n"
3980
+
3981
  #: app/libraries/factory.php:148
3982
  msgid "M.E. Calendar"
3983
  msgstr "M.E. Calender"
3984
 
3985
  #: app/libraries/factory.php:187
 
3986
  msgid "Upgrade to Pro Version"
3987
  msgstr ""
3988
 
 
 
 
 
 
3989
  #: app/libraries/factory.php:208
 
3990
  msgid "Upgrade"
3991
  msgstr ""
3992
 
4044
  "Eine Vorschau kann nicht angezeit werden, da es sich um einen geschützen "
4045
  "Beitrag handelt."
4046
 
4047
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
4048
  msgid "Grid View"
4049
  msgstr "Rasterdarstellung"
4050
 
4051
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
4052
  msgid "Agenda View"
4053
  msgstr "Agendaansicht"
4054
 
4055
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
4056
  msgid "Full Calendar"
4057
  msgstr "Ganzer Kalender"
4058
 
4059
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
4060
  msgid "Calendar/Monthly View"
4061
  msgstr "Kalender-/Monatsansicht"
4062
 
4063
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
4064
  msgid "Timetable View"
4065
  msgstr "Stundenplan"
4066
 
4067
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
4068
  msgid "Masonry View"
4069
  msgstr "Kachel Ansicht"
4070
 
4071
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
4072
  msgid "Map View"
4073
  msgstr "Kartenansicht"
4074
 
4092
  msgid "Slider View"
4093
  msgstr "Slideransicht"
4094
 
4095
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
4096
  msgid "SU"
4097
  msgstr "SO"
4098
 
4099
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
4100
  msgid "MO"
4101
  msgstr "MO"
4102
 
4103
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
4104
  msgid "TU"
4105
  msgstr "DI"
4106
 
4107
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
4108
  msgid "WE"
4109
  msgstr "MI"
4110
 
4111
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
4112
  msgid "TH"
4113
  msgstr "DO"
4114
 
4115
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
4116
  msgid "FR"
4117
  msgstr "FR"
4118
 
4119
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
4120
  msgid "SA"
4121
  msgstr "SA"
4122
 
4140
  msgid "Twitter"
4141
  msgstr "Twitter"
4142
 
4143
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
4144
  msgid "Linkedin"
4145
  msgstr "Linkedin"
4146
 
4147
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
4148
+ msgid "VK"
4149
+ msgstr ""
4150
+
4151
+ #: app/libraries/main.php:1053
4152
  msgid "Share on Facebook"
4153
  msgstr "Teilen auf Facebook"
4154
 
4155
+ #: app/libraries/main.php:1065
4156
  msgid "Google Plus"
4157
  msgstr "Google Plus"
4158
 
4159
+ #: app/libraries/main.php:1077
4160
  msgid "Tweet"
4161
  msgstr "Tweet"
4162
 
4163
+ #: app/libraries/main.php:1471
4164
  msgid "Your booking successfully verified."
4165
  msgstr "Ihre Buchung wurde erfolgreich verifiziert."
4166
 
4167
+ #: app/libraries/main.php:1472
4168
  msgid "Your booking cannot verify!"
4169
  msgstr "Ihre Buchung kann nicht verifiziert werden!"
4170
 
4171
+ #: app/libraries/main.php:1484
4172
  msgid "Your booking successfully canceled."
4173
  msgstr "Ihre Buchung wurde erfolgreich storniert."
4174
 
4175
+ #: app/libraries/main.php:1485
4176
  msgid "Your booking cannot be canceled."
4177
  msgstr "Ihre Buchung kann nicht storniert werden."
4178
 
4179
+ #: app/libraries/main.php:1489
4180
  msgid "You canceled the payment successfully."
4181
  msgstr "Sie haben die Zahlung erfolgreich storniert."
4182
 
4183
+ #: app/libraries/main.php:1493
4184
  msgid "You returned from payment gateway successfully."
4185
  msgstr "Sie sind vom Bezahlungs-Gateway erfolgreich zurückgekehrt."
4186
 
4187
+ #: app/libraries/main.php:1517
4188
  msgid "Cannot find the booking!"
4189
  msgstr "Kann die Buchung nicht finden!"
4190
 
4191
+ #: app/libraries/main.php:1517
4192
  msgid "Booking is invalid."
4193
  msgstr "Buchung ist ungültig."
4194
 
4195
+ #: app/libraries/main.php:1538
4196
  #, php-format
4197
  msgid "%s Invoice"
4198
  msgstr "% s Rechnung"
4199
 
4200
+ #: app/libraries/main.php:1559
4201
+ msgid "Transaction ID"
4202
+ msgstr "Transaktions-ID"
4203
+
4204
+ #: app/libraries/main.php:1568
4205
+ msgid "Attendees"
4206
+ msgstr "Teilnehmer"
4207
+
4208
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4209
+ msgid "Ticket"
4210
+ msgstr "Ticket"
4211
+
4212
+ #: app/libraries/main.php:1590
4213
  msgid "Billing"
4214
  msgstr "Abrechnung"
4215
 
4216
+ #: app/libraries/main.php:1601
4217
  msgid "Total"
4218
  msgstr "Gesamt"
4219
 
4220
+ #: app/libraries/main.php:1634
4221
  msgid "Security nonce is not valid."
4222
  msgstr "Sicherheits-Nonce ist ungültig."
4223
 
4224
+ #: app/libraries/main.php:1634
4225
  msgid "iCal export stopped!"
4226
  msgstr "iCal Export wurde unterbrochen!"
4227
 
4228
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4229
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4230
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4231
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4232
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4233
  msgid "Sort"
4234
  msgstr "Sortieren"
4235
 
4236
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4237
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4238
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4239
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4240
  msgid "Required Field"
4241
  msgstr "Pflichtfeld"
4242
 
4243
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4244
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4245
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4246
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4247
  msgid "Insert a label for this field"
4248
  msgstr "Geben Sie eine Bezeichnung (Label) für dieses Feld ein."
4249
 
4250
+ #: app/libraries/main.php:1977
4251
  msgid "HTML and shortcode are allowed."
4252
  msgstr "HTML und shortcodes sind erlaubt."
4253
 
4254
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4255
+ #: app/libraries/main.php:2108
4256
  msgid "Option"
4257
  msgstr "Option"
4258
 
4259
+ #: app/libraries/main.php:2142
4260
  #, php-format
4261
  msgid "Instead of %s, the page title with a link will be show."
4262
  msgstr "Anstelle von %s, wird der Seitentitel mit einem Link gezeigt"
4263
 
4264
+ #: app/libraries/main.php:2144
4265
  msgid "Agreement Page"
4266
  msgstr "Zustimmungsseite"
4267
 
4268
+ #: app/libraries/main.php:2153
4269
  msgid "Status"
4270
  msgstr ""
4271
 
4272
+ #: app/libraries/main.php:2155
4273
  msgid "Checked by default"
4274
  msgstr ""
4275
 
4276
+ #: app/libraries/main.php:2156
4277
  msgid "Unchecked by default"
4278
  msgstr ""
4279
 
4280
+ #: app/libraries/main.php:2178
4281
  msgid "Insert a label for this option"
4282
  msgstr "Ein neues Label für diese Option einfügen"
4283
 
4284
+ #: app/libraries/main.php:2193
4285
+ msgid "Free"
4286
+ msgstr "kostenfrei"
4287
+
4288
+ #: app/libraries/main.php:2845
4289
  #, php-format
4290
  msgid "Copy of %s"
4291
  msgstr "Kopie von %s"
4292
 
4293
+ #: app/libraries/main.php:3482
4294
  msgid "Booked an event."
4295
  msgstr "Eine Veranstaltung wurde gebucht."
4296
 
4297
+ #: app/libraries/main.php:3523
4298
  #, php-format
4299
  msgid "%s booked %s event."
4300
  msgstr "%s gebuchtes %s Event"
4301
 
4302
+ #: app/libraries/main.php:3965
4303
  msgid "Taxonomies"
4304
  msgstr "Klassifizierung "
4305
 
4306
+ #: app/libraries/main.php:3967
4307
  msgid "Category Plural Label"
4308
  msgstr "Kategorien"
4309
 
4310
+ #: app/libraries/main.php:3968
4311
  msgid "Category Singular Label"
4312
  msgstr "Kategorie"
4313
 
4314
+ #: app/libraries/main.php:3969
4315
  msgid "Label Plural Label"
4316
  msgstr "Labels"
4317
 
4318
+ #: app/libraries/main.php:3970
4319
  msgid "Label Singular Label"
4320
  msgstr "Label"
4321
 
4322
+ #: app/libraries/main.php:3970
4323
  msgid "label"
4324
  msgstr "label"
4325
 
4326
+ #: app/libraries/main.php:3971
4327
  msgid "Location Plural Label"
4328
  msgstr "Veranstaltungsorte"
4329
 
4330
+ #: app/libraries/main.php:3972
4331
  msgid "Location Singular Label"
4332
  msgstr "Veranstaltungsort"
4333
 
4334
+ #: app/libraries/main.php:3973
4335
  msgid "Organizer Plural Label"
4336
  msgstr "Veranstalter"
4337
 
4338
+ #: app/libraries/main.php:3974
4339
  msgid "Organizer Singular Label"
4340
  msgstr "Veranstalter"
4341
 
4342
+ #: app/libraries/main.php:3980
4343
  msgid "Sunday abbreviation"
4344
  msgstr "Sonntag Abkürzung"
4345
 
4346
+ #: app/libraries/main.php:3981
4347
  msgid "Monday abbreviation"
4348
  msgstr "Montag Abkürzung"
4349
 
4350
+ #: app/libraries/main.php:3982
4351
  msgid "Tuesday abbreviation"
4352
  msgstr "Dienstag Abkürzung"
4353
 
4354
+ #: app/libraries/main.php:3983
4355
  msgid "Wednesday abbreviation"
4356
  msgstr "Mittwoch Abkürzung"
4357
 
4358
+ #: app/libraries/main.php:3984
4359
  msgid "Thursday abbreviation"
4360
  msgstr "Donnerstag Abkürzung"
4361
 
4362
+ #: app/libraries/main.php:3985
4363
  msgid "Friday abbreviation"
4364
  msgstr "Freitag Abkürzung"
4365
 
4366
+ #: app/libraries/main.php:3986
4367
  msgid "Saturday abbreviation"
4368
  msgstr "Samstag Abkürzung "
4369
 
4370
+ #: app/libraries/main.php:3990
4371
  msgid "Others"
4372
  msgstr "Andere"
4373
 
4374
+ #: app/libraries/main.php:3992
4375
  msgid "Booking Success Message"
4376
  msgstr "Buchung erfolgreich Mitteilung"
4377
 
4378
+ #: app/libraries/main.php:3992
4379
+ msgid ""
4380
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4381
+ "needed, please check your email."
4382
+ msgstr ""
4383
+ "Vielen Dank für Ihre Buchung. Für die gebuchten Tickets ist ggf. eine "
4384
+ "Bestätigung durch Sie erforderlich. Bitte überprüfen Sie Ihre Emails."
4385
+
4386
+ #: app/libraries/main.php:3993
4387
  msgid "Register Button"
4388
  msgstr "Register Button"
4389
 
4390
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4391
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4392
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4393
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4401
  msgid "REGISTER"
4402
  msgstr "ANMELDEN"
4403
 
4404
+ #: app/libraries/main.php:3994
4405
  msgid "View Detail Button"
4406
  msgstr "Ansicht Detail Button"
4407
 
4408
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4409
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4410
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4411
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4416
  msgid "View Detail"
4417
  msgstr "Details "
4418
 
4419
+ #: app/libraries/main.php:3995
4420
  msgid "Event Detail Button"
4421
  msgstr "Event Detail Button"
4422
 
4423
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4424
  msgid "Event Detail"
4425
  msgstr "Veranstaltungsdetails"
4426
 
4427
+ #: app/libraries/main.php:3997
4428
  msgid "More Info Link"
4429
  msgstr "Link Mehr Informationen"
4430
 
4431
+ #: app/libraries/main.php:4000
4432
  msgid "Ticket (Singular)"
4433
  msgstr "Ticket"
4434
 
4435
+ #: app/libraries/main.php:4001
4436
  msgid "Tickets (Plural)"
4437
  msgstr "Tickets"
4438
 
4439
+ #: app/libraries/main.php:4067
4440
  msgid "EventON"
4441
  msgstr "EventON"
4442
 
4443
+ #: app/libraries/main.php:4068
4444
  msgid "The Events Calendar"
4445
  msgstr "The Events Calendar"
4446
 
4447
+ #: app/libraries/main.php:4069
4448
  msgid "Events Schedule WP Plugin"
4449
  msgstr "Event Zeitplan WP-Plugin"
4450
 
4451
+ #: app/libraries/main.php:4070
4452
  msgid "Calendarize It"
4453
  msgstr ""
4454
 
4472
  msgid "A new event is added."
4473
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
4474
 
4475
+ #: app/libraries/notifications.php:516
4476
+ msgid "Yes"
4477
+ msgstr "Ja"
4478
+
4479
+ #: app/libraries/notifications.php:516
4480
+ msgid "No"
4481
+ msgstr "Nein"
4482
+
4483
  #: app/libraries/render.php:337
4484
  msgid "Skin controller does not exist."
4485
  msgstr "Skin contoller existiert nicht."
4508
  msgid "%s tickets"
4509
  msgstr "%s tickets"
4510
 
4511
+ #: app/modules/booking/steps/checkout.php:16
4512
+ msgid "Checkout"
4513
+ msgstr "Zur Kasse gehen"
4514
+
4515
  #: app/modules/booking/steps/checkout.php:33
4516
  msgid "Discount Coupon"
4517
  msgstr "Rabattgutschein"
4539
  msgid "Next"
4540
  msgstr "Weiter"
4541
 
4542
+ #: app/modules/booking/steps/message.php:7
4543
+ msgid "Thanks for your booking."
4544
+ msgstr "Vielen Dank für Ihre Buchung."
4545
+
4546
  #: app/modules/booking/steps/tickets.php:18
4547
  msgid "Book Event"
4548
  msgstr "Veranstaltung buchen"
4835
  msgid "QR Code : "
4836
  msgstr ""
4837
 
4838
+ #~ msgid "Booking reminder notification is not enabled!"
4839
+ #~ msgstr "Die Erinnerung für die Buchungserinnerung ist nicht aktiviert!"
4840
+
4841
+ #~ msgid "Booking module is not enabled!"
4842
+ #~ msgstr "Buchungsmodul ist nicht aktiviert!"
4843
+
4844
+ #~ msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
4845
+ #~ msgstr ""
4846
+ #~ "Eingefügte Tage sind nicht gültig. Bitte versuchen Sie 1,3 als gültigen "
4847
+ #~ "Wert!"
4848
+
4849
+ #~ msgid "%s reminders sent."
4850
+ #~ msgstr "% s Erinnerungen gesendet."
4851
+
4852
+ #~ msgid "Auto Facebook import is disabled!"
4853
+ #~ msgstr "Auto Facebook-Import ist deaktiviert!"
4854
+
4855
+ #~ msgid "%s facebook events imported/updated."
4856
+ #~ msgstr "%s facebook events importiert / aktualisiert."
4857
+
4858
+ #~ msgid "Auto Google Calendar import is disabled!"
4859
+ #~ msgstr "Auto Google Kalender-Import ist deaktiviert!"
4860
+
4861
+ #~ msgid "%s google events imported/updated."
4862
+ #~ msgstr "%s vorherige hinzugefügte Events wurden aktualisiert."
4863
+
4864
+ #~ msgid "Add Booking"
4865
+ #~ msgstr "Buchung hinzufügen"
4866
+
4867
+ #~ msgid "No bookings found!"
4868
+ #~ msgstr "Keine Buchungen gefunden"
4869
+
4870
+ #~ msgid "Edit Bookings"
4871
+ #~ msgstr "Buchungen ändern"
4872
+
4873
+ #~ msgid "No bookings found in Trash!"
4874
+ #~ msgstr "Keine Buchungen im Papierkorb gefunden"
4875
+
4876
+ #~ msgid "Book Details"
4877
+ #~ msgstr "Buchungsdetails"
4878
+
4879
+ #~ msgid "Status & Invoice"
4880
+ #~ msgstr "Status und Rechnung"
4881
+
4882
+ #~ msgid "Confirmation"
4883
+ #~ msgstr "Bestätigung"
4884
+
4885
+ #~ msgid "Pending"
4886
+ #~ msgstr "Ausstehend"
4887
+
4888
+ #~ msgid "Confirmed"
4889
+ #~ msgstr "Bestätigt"
4890
+
4891
+ #~ msgid "Rejected"
4892
+ #~ msgstr "Abgelehnt"
4893
+
4894
+ #~ msgid "Verification"
4895
+ #~ msgstr "Verifizierung"
4896
+
4897
+ #~ msgid "Waiting"
4898
+ #~ msgstr "in Bearbeitung"
4899
+
4900
+ #~ msgid "Canceled"
4901
+ #~ msgstr "Abgesagt"
4902
+
4903
+ #~ msgid "Here, you can %s invoice of %s transaction."
4904
+ #~ msgstr "Hier können Sie% s Rechnung von% s Transaktion."
4905
+
4906
+ #~ msgid "download"
4907
+ #~ msgstr "Download"
4908
+
4909
+ #~ msgid "It will create a new booking under \"Pay Locally\" gateway."
4910
+ #~ msgstr "Es wird eine neue Buchung unter \"Pay Locally\" Gateway erstellt."
4911
+
4912
+ #~ msgid "Payment"
4913
+ #~ msgstr "Bezahlung"
4914
+
4915
+ #~ msgid "Gateway"
4916
+ #~ msgstr "Gateway"
4917
+
4918
+ #~ msgid "Unknown"
4919
+ #~ msgstr "Unbekannt"
4920
+
4921
+ #~ msgid "%s to %s"
4922
+ #~ msgstr "%s zu %s"
4923
+
4924
+ #~ msgid "Book Date"
4925
+ #~ msgstr "Buchungsdatum"
4926
+
4927
+ #~ msgid "Confirm"
4928
+ #~ msgstr "Bestätigen"
4929
+
4930
+ #~ msgid "Reject"
4931
+ #~ msgstr "Ablehnen"
4932
+
4933
+ #~ msgid "Security nonce is missing."
4934
+ #~ msgstr "Sicherheits-Nonce fehlt."
4935
+
4936
+ #~ msgid "Security nonce is invalid."
4937
+ #~ msgstr ""
4938
+ #~ "Sicherheits-Nonce ungültig\n"
4939
+ #~ " "
4940
+
4941
+ #~ msgid "Invalid request."
4942
+ #~ msgstr "Ungültige Anforderung"
4943
+
4944
+ #~ msgid "Please select some tickets!"
4945
+ #~ msgstr "Bitte wählen Sie einige Tickets!"
4946
+
4947
+ #~ msgid "Captcha is invalid. Please try again."
4948
+ #~ msgstr ""
4949
+ #~ "Das eingegebene Captchas ist ungültig! Bitte versuchen Sie es erneut."
4950
+
4951
+ #~ msgid "Please fill the form correctly. Email and Name fields are required!"
4952
+ #~ msgstr ""
4953
+ #~ "Bitte füllen Sie das Formular korrekt aus. Email und Name Felder sind "
4954
+ #~ "Pflichtfelder!"
4955
+
4956
+ #~ msgid "Event is invalid. Please select an event."
4957
+ #~ msgstr "Das Event ist ungültig. Bitte wählen Sie eine Veranstaltung."
4958
+
4959
+ #~ msgid ""
4960
+ #~ "No ticket ro future dates found for this event! Please try another event."
4961
+ #~ msgstr ""
4962
+ #~ "Kein Ticket für zukünftige Termine für dieses Event gefunden! Bitte "
4963
+ #~ "versuchen Sie eine andere Veranstaltung."
4964
+
4965
+ #~ msgid "Attendee Information"
4966
+ #~ msgstr "Teilnehmerinformationen"
4967
+
4968
+ #~ msgid "Coupon"
4969
+ #~ msgstr "Gutschein"
4970
+
4971
+ #~ msgid "All Coupons"
4972
+ #~ msgstr "Alle Gutscheine"
4973
+
4974
+ #~ msgid "Edit Coupon"
4975
+ #~ msgstr "Gutschein ändern"
4976
+
4977
+ #~ msgid "View Coupon"
4978
+ #~ msgstr "Gutschein anzeigen"
4979
+
4980
+ #~ msgid "Update Coupon"
4981
+ #~ msgstr "Gutschein aktualisieren"
4982
+
4983
+ #~ msgid "Add New Coupon"
4984
+ #~ msgstr "Gutschein hinzufügen"
4985
+
4986
+ #~ msgid "New Coupon Name"
4987
+ #~ msgstr "Neue Bezeichnung für Gutschein"
4988
+
4989
+ #~ msgid "Popular Coupons"
4990
+ #~ msgstr "Beliebte Gutscheine"
4991
+
4992
+ #~ msgid "Search Coupons"
4993
+ #~ msgstr "Gutscheine suchen"
4994
+
4995
+ #~ msgid "Discount Type"
4996
+ #~ msgstr "Rabatt-Art"
4997
+
4998
+ #~ msgid ""
4999
+ #~ "Discount percent, considered as amount if you set the discount type to "
5000
+ #~ "amount"
5001
+ #~ msgstr ""
5002
+ #~ "Rabattprozentsatz, gilt als Betrag, wenn Sie den Rabatttyp auf Betrag "
5003
+ #~ "festlegen"
5004
+
5005
+ #~ msgid "Usage Limit"
5006
+ #~ msgstr "Nutzungslimit"
5007
+
5008
+ #~ msgid "Insert -1 for unlimited usage"
5009
+ #~ msgstr "Geben Sie -1 ein für unlimitierte Verwendung"
5010
+
5011
+ #~ msgid "Expiration Date"
5012
+ #~ msgstr "Ablaufdatum"
5013
+
5014
+ #~ msgid "Leave it empty for no expiration!"
5015
+ #~ msgstr "Lassen Sie es leer für keine Verfallszeit!"
5016
+
5017
+ #~ msgid "Target Event"
5018
+ #~ msgstr "Zielevent"
5019
+
5020
+ #~ msgid "Name/Code"
5021
+ #~ msgstr "Name/Code"
5022
+
5023
+ #~ msgid "Discount coupon is invalid!"
5024
+ #~ msgstr "Der Rabattgutschein ist ungültig!"
5025
+
5026
+ #~ msgid "Discount coupon usage limit reached!"
5027
+ #~ msgstr "Die Anzahl der Nutzungen für den Gutschein ist überschritten!"
5028
+
5029
+ #~ msgid "Discount coupon is expired!"
5030
+ #~ msgstr "Rabattgutschein ist abgelaufen!"
5031
+
5032
+ #~ msgid "Discount is not valid for this event!"
5033
+ #~ msgstr "Rabatt ist für diese Veranstaltung nicht gültig!"
5034
+
5035
+ #~ msgid "Coupon is valid and you get %s discount."
5036
+ #~ msgstr "Der Gutschein ist gültig. Sie erhalten %s Rabatt"
5037
+
5038
+ #~ msgid "Request is invalid!"
5039
+ #~ msgstr "Die Anfrage ist ungültig!"
5040
+
5041
+ #~ msgid "Stripe"
5042
+ #~ msgstr "Stripe"
5043
+
5044
+ #~ msgid "There is no attendee for booking!"
5045
+ #~ msgstr "Es gibt keinen Teilnehmer für die Buchung!"
5046
+
5047
+ #~ msgid "MEC Transaction ID: %s"
5048
+ #~ msgstr "Transaktions-ID: %s"
5049
+
5050
+ #~ msgid "Card Number"
5051
+ #~ msgstr "Kartennummer"
5052
+
5053
+ #~ msgid "CVC"
5054
+ #~ msgstr "CVC"
5055
+
5056
+ #~ msgid "Expiration (MM/YYYY)"
5057
+ #~ msgstr "Ablauf (MM/JJJJ)"
5058
+
5059
+ #~ msgid "Month"
5060
+ #~ msgstr "Monat "
5061
+
5062
+ #~ msgid "Year"
5063
+ #~ msgstr "Jahr"
5064
+
5065
+ #~ msgid "Pay"
5066
+ #~ msgstr "Bezahlen"
5067
+
5068
+ #~ msgid "Comment"
5069
+ #~ msgstr "Kommentar"
5070
+
5071
+ #~ msgid "HTML allowed."
5072
+ #~ msgstr "HTML erlaubt"
5073
+
5074
+ #~ msgid "Publishable Key"
5075
+ #~ msgstr "publizierbarer Schlüssel"
5076
+
5077
+ #~ msgid "Pay Locally"
5078
+ #~ msgstr "Vor Ort bezahlen"
5079
+
5080
+ #~ msgid "PayPal Express"
5081
+ #~ msgstr "PayPal Express"
5082
+
5083
+ #~ msgid "Business Account"
5084
+ #~ msgstr "Kundenkonto"
5085
+
5086
+ #~ msgid "Normally PayPal Email."
5087
+ #~ msgstr "Normale PayPal Email."
5088
+
5089
+ #~ msgid "Mode"
5090
+ #~ msgstr "Modus"
5091
+
5092
+ #~ msgid "Live"
5093
+ #~ msgstr "Live"
5094
+
5095
+ #~ msgid "Sandbox"
5096
+ #~ msgstr "Sandbox"
5097
+
5098
+ #~ msgid "Waiting for getting response from gateway."
5099
+ #~ msgstr "Warte auf Antwort des Gateways."
5100
+
5101
+ #~ msgid "Payment was invalid! Booking failed."
5102
+ #~ msgstr "Die Transaktion war ungültig. Die Buchung wurde nicht durchgeführt."
5103
+
5104
+ #~ msgid "PayPal Credit Card"
5105
+ #~ msgstr "PayPal Kreditkarte"
5106
+
5107
+ #~ msgid "API Username"
5108
+ #~ msgstr "API Nutzername"
5109
+
5110
+ #~ msgid "API Password"
5111
+ #~ msgstr "API Passwort"
5112
+
5113
+ #~ msgid "API Signature"
5114
+ #~ msgstr "API Signatur"
5115
+
5116
+ #~ msgid "First name"
5117
+ #~ msgstr "Vorname"
5118
+
5119
+ #~ msgid "Last name"
5120
+ #~ msgstr "Nachname"
5121
+
5122
+ #~ msgid "Card Type"
5123
+ #~ msgstr "Kartentyp"
5124
+
5125
+ #~ msgid "Visa"
5126
+ #~ msgstr "Visa"
5127
+
5128
+ #~ msgid "MasterCard"
5129
+ #~ msgstr "MasterCard"
5130
+
5131
+ #~ msgid "Discover"
5132
+ #~ msgstr "Discover"
5133
+
5134
+ #~ msgid "American Express"
5135
+ #~ msgstr "American Express"
5136
+
5137
+ #~ msgid "CC Number"
5138
+ #~ msgstr "Kartennummer"
5139
+
5140
+ #~ msgid "CVV2"
5141
+ #~ msgstr "Kartenprüfnummer (CVV)"
5142
+
5143
+ #~ msgid "Payment is invalid."
5144
+ #~ msgstr "Die Zahlung ist ungültig."
5145
+
5146
+ #~ msgid "Pay by WooCommerce"
5147
+ #~ msgstr "Zahlung über WooCommerce"
5148
+
5149
+ #~ msgid "Booking fee for %s"
5150
+ #~ msgstr "Buchungsgebühr für% s"
5151
+
5152
+ #~ msgid "Your order is created. Please proceed with checkout."
5153
+ #~ msgstr "Ihre Buchung ist erstellt. Bitte fortfahren mit checkout."
5154
+
5155
+ #~ msgid "Add to Cart"
5156
+ #~ msgstr "in den Warenkorb legen"
5157
+
5158
+ #~ msgid "WooCommerce must be installed and activated first."
5159
+ #~ msgstr "WooCommerce muss installiert werden und erst aktiviert werden."
5160
+
5161
+ #~ msgid "Automatically complete WC orders"
5162
+ #~ msgstr "WC-Aufträge automatisch abschließen"
5163
+
5164
+ #~ msgid "It applies only to the orders that are related to MEC."
5165
+ #~ msgstr "Sie gilt nur für Aufträge, die mit MEC zusammenhängen."
5166
+
5167
+ #~ msgid "This booking is not free!"
5168
+ #~ msgstr "Diese Buchung ist nicht kostenlos!"
5169
 
5170
+ #~ msgid "An awesome plugin for events calendar"
5171
+ #~ msgstr "Ein großartiges Plugin für den Veranstaltungskalender"
 
5172
 
5173
+ #~ msgid "Webnus Team"
5174
+ #~ msgstr "Webnus Team"
 
5175
 
5176
+ #~ msgid "http://webnus.net"
5177
+ #~ msgstr "http://webnus.net"
 
5178
 
5179
  #~ msgid "Attendee"
5180
  #~ msgstr "Teilnehmer"
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: 2018-07-24 11:58+0430\n"
5
- "PO-Revision-Date: 2018-08-21 16:24+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -15,7 +15,6 @@ msgstr ""
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
18
- #. Plugin Name of the plugin/theme
19
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
20
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
21
  #: app/widgets/MEC.php:23
@@ -26,8 +25,8 @@ msgstr ""
26
  msgid "Content"
27
  msgstr ""
28
 
29
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
30
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
31
  msgid "Shortcode"
32
  msgstr ""
33
 
@@ -35,365 +34,29 @@ msgstr ""
35
  msgid "Select from predefined shortcodes"
36
  msgstr ""
37
 
38
- #: app/crons/booking-reminder.php:33
39
- msgid "Booking reminder notification is not enabled!"
40
- msgstr ""
41
-
42
- #: app/crons/booking-reminder.php:43
43
- msgid "Booking module is not enabled!"
44
- msgstr ""
45
-
46
- #: app/crons/booking-reminder.php:52
47
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
48
- msgstr ""
49
-
50
- #: app/crons/booking-reminder.php:104
51
- #, php-format
52
- msgid "%s reminders sent."
53
- msgstr ""
54
-
55
- #: app/crons/f-import.php:32
56
- msgid "Auto Facebook import is disabled!"
57
- msgstr ""
58
-
59
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
60
- msgid "Please insert your facebook page's link."
61
- msgstr ""
62
-
63
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
64
- msgid ""
65
- "We couldn't recognize your Facebook page. Please check it and provide us a "
66
- "valid facebook page link."
67
- msgstr ""
68
-
69
- #: app/crons/f-import.php:198
70
- #, php-format
71
- msgid "%s facebook events imported/updated."
72
- msgstr ""
73
-
74
- #: app/crons/g-export.php:37 app/features/ix.php:2527
75
- msgid "All of Client App, Client Secret and Calendar ID are required!"
76
- msgstr ""
77
-
78
- #: app/crons/g-export.php:234 app/features/ix.php:2722
79
- #, php-format
80
- msgid "%s events added to Google Calendar successfully."
81
- msgstr ""
82
-
83
- #: app/crons/g-export.php:235 app/features/ix.php:2723
84
- #, php-format
85
- msgid "%s previously added events get updated."
86
- msgstr ""
87
-
88
- #: app/crons/g-export.php:236 app/features/ix.php:2724
89
- #, php-format
90
- msgid "%s events failed to add for following reasons: %s"
91
- msgstr ""
92
-
93
- #: app/crons/g-import.php:32
94
- msgid "Auto Google Calendar import is disabled!"
95
- msgstr ""
96
-
97
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
98
- msgid "Both of API key and Calendar ID are required!"
99
- msgstr ""
100
-
101
- #: app/crons/g-import.php:370
102
- #, php-format
103
- msgid "%s google events imported/updated."
104
- msgstr ""
105
-
106
- #: app/features/books.php:105 app/features/books.php:110
107
- #: app/features/ix/export.php:37
108
- msgid "Bookings"
109
- msgstr ""
110
-
111
- #: app/features/books.php:106 app/features/books.php:328
112
- #: app/features/contextual.php:308 app/features/events.php:253
113
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
114
- msgid "Booking"
115
- msgstr ""
116
-
117
- #: app/features/books.php:107 app/features/books.php:108
118
- msgid "Add Booking"
119
- msgstr ""
120
-
121
- #: app/features/books.php:109
122
- msgid "No bookings found!"
123
- msgstr ""
124
-
125
- #: app/features/books.php:111
126
- msgid "Edit Bookings"
127
- msgstr ""
128
-
129
- #: app/features/books.php:112
130
- msgid "No bookings found in Trash!"
131
- msgstr ""
132
-
133
- #: app/features/books.php:149
134
- msgid "Book Details"
135
- msgstr ""
136
-
137
- #: app/features/books.php:150
138
- msgid "Status & Invoice"
139
- msgstr ""
140
-
141
- #: app/features/books.php:176 app/features/books.php:387
142
- #: app/features/books.php:576 app/features/books.php:651
143
- #: app/features/books.php:709
144
- msgid "Confirmation"
145
- msgstr ""
146
-
147
- #: app/features/books.php:178 app/features/books.php:578
148
- #: app/features/books.php:602 app/features/books.php:894
149
- msgid "Pending"
150
- msgstr ""
151
-
152
- #: app/features/books.php:179 app/features/books.php:577
153
- #: app/features/books.php:892
154
- msgid "Confirmed"
155
- msgstr ""
156
-
157
- #: app/features/books.php:180 app/features/books.php:579
158
- #: app/features/books.php:893
159
- msgid "Rejected"
160
- msgstr ""
161
-
162
- #: app/features/books.php:184 app/features/books.php:388
163
- #: app/features/books.php:585 app/features/books.php:651
164
- #: app/features/books.php:709
165
- msgid "Verification"
166
- msgstr ""
167
-
168
- #: app/features/books.php:186 app/features/books.php:587
169
- #: app/features/books.php:909
170
- msgid "Waiting"
171
- msgstr ""
172
-
173
- #: app/features/books.php:187 app/features/books.php:586
174
- #: app/features/books.php:907 app/features/mec/settings.php:1173
175
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
176
- msgid "Verified"
177
- msgstr ""
178
-
179
- #: app/features/books.php:188 app/features/books.php:588
180
- #: app/features/books.php:908
181
- msgid "Canceled"
182
- msgstr ""
183
-
184
- #: app/features/books.php:203
185
- #, php-format
186
- msgid "Here, you can %s invoice of %s transaction."
187
- msgstr ""
188
-
189
- #: app/features/books.php:203
190
- msgid "download"
191
- msgstr ""
192
-
193
- #: app/features/books.php:246
194
- msgid "It will create a new booking under \"Pay Locally\" gateway."
195
- msgstr ""
196
-
197
- #: app/features/books.php:248 app/features/contextual.php:62
198
- #: app/features/events.php:910 app/features/mec/gateways.php:29
199
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
200
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
201
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
202
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
203
- msgid "Booking Form"
204
- msgstr ""
205
-
206
- #: app/features/books.php:251 app/features/books.php:330
207
- #: app/features/books.php:385 app/features/books.php:569
208
- #: app/features/books.php:651 app/features/books.php:709
209
- #: app/features/events.php:123
210
- #: app/features/mec/meta_boxes/display_options.php:678
211
- #: app/features/mec/meta_boxes/display_options.php:716
212
- #: app/features/mec/meta_boxes/display_options.php:745
213
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
214
- #: app/skins/yearly_view/tpl.php:69
215
- msgid "Event"
216
- msgstr ""
217
-
218
- #: app/features/books.php:315
219
- msgid "Payment"
220
- msgstr ""
221
-
222
- #: app/features/books.php:317 app/features/books.php:386
223
- #: app/features/events.php:756 app/features/events.php:788
224
- msgid "Price"
225
- msgstr ""
226
-
227
- #: app/features/books.php:321 app/features/gateways.php:148
228
- msgid "Gateway"
229
- msgstr ""
230
-
231
- #: app/features/books.php:322 app/features/books.php:326
232
- #: app/features/books.php:331 app/features/books.php:335
233
- #: app/features/books.php:352 app/features/books.php:690
234
- #: app/features/books.php:748
235
- msgid "Unknown"
236
- msgstr ""
237
-
238
- #: app/features/books.php:325 app/features/books.php:389
239
- #: app/features/books.php:651 app/features/books.php:709
240
- #: app/libraries/main.php:1544
241
- msgid "Transaction ID"
242
- msgstr ""
243
-
244
- #: app/features/books.php:334 app/features/books.php:651
245
- #: app/features/books.php:709 app/features/books.php:1099
246
- #: app/features/events.php:508 app/features/events.php:580
247
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
248
- #: app/modules/booking/steps/tickets.php:20
249
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
250
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
251
- #: app/skins/single/modern.php:146
252
- msgid "Date"
253
- msgstr ""
254
-
255
- #: app/features/books.php:335
256
- #, php-format
257
- msgid "%s to %s"
258
- msgstr ""
259
-
260
- #: app/features/books.php:338 app/features/mec/notifications.php:140
261
- #: app/features/mec/notifications.php:177
262
- #: app/features/mec/notifications.php:214
263
- #: app/features/mec/notifications.php:255
264
- #: app/features/mec/notifications.php:307
265
- msgid "Total Attendees"
266
- msgstr ""
267
-
268
- #: app/features/books.php:341 app/features/books.php:384
269
- #: app/libraries/main.php:1553
270
- msgid "Attendees"
271
- msgstr ""
272
-
273
- #: app/features/books.php:347 app/features/books.php:651
274
- #: app/features/books.php:709 app/features/books.php:1114
275
- #: app/features/events.php:371 app/features/events.php:945
276
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
277
- #: app/features/organizers.php:110 app/features/organizers.php:150
278
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
279
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
280
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
281
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
282
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
283
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
284
- #: app/skins/single/modern.php:38
285
- msgid "Email"
286
- msgstr ""
287
-
288
- #: app/features/books.php:351 app/features/books.php:431
289
- #: app/features/books.php:651 app/features/books.php:709
290
- #: app/features/books.php:1106 app/libraries/main.php:1559
291
- #: app/libraries/main.php:3985
292
- msgid "Ticket"
293
- msgstr ""
294
-
295
- #: app/features/books.php:358 app/libraries/notifications.php:516
296
- msgid "Yes"
297
- msgstr ""
298
-
299
- #: app/features/books.php:358 app/libraries/notifications.php:516
300
- msgid "No"
301
- msgstr ""
302
-
303
- #: app/features/books.php:390
304
- msgid "Book Date"
305
- msgstr ""
306
-
307
- #: app/features/books.php:602
308
- msgid "Confirm"
309
- msgstr ""
310
-
311
- #: app/features/books.php:602
312
- msgid "Reject"
313
- msgstr ""
314
-
315
- #: app/features/books.php:602 app/features/events.php:1569
316
- #: app/features/events.php:1570
317
- msgid "CSV Export"
318
- msgstr ""
319
-
320
- #: app/features/books.php:602 app/features/events.php:1572
321
- #: app/features/events.php:1573
322
- msgid "MS Excel Export"
323
- msgstr ""
324
-
325
- #: app/features/books.php:651 app/features/books.php:709
326
- #: app/features/events.php:1631 app/features/events.php:1675
327
- #: app/features/ix.php:2328 app/features/ix.php:2369
328
- #: app/features/labels.php:150 app/features/locations.php:228
329
- #: app/features/organizers.php:198
330
- msgid "ID"
331
- msgstr ""
332
-
333
- #: app/features/books.php:651 app/features/books.php:709
334
- msgid "Total Price"
335
- msgstr ""
336
-
337
- #: app/features/books.php:651 app/features/books.php:709
338
- #: app/features/books.php:1113 app/features/events.php:370
339
- #: app/features/fes/form.php:441 app/features/gateways.php:503
340
- #: app/features/labels.php:151 app/features/organizers.php:268
341
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
342
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
343
- msgid "Name"
344
- msgstr ""
345
-
346
- #: app/features/books.php:923
347
- msgid "Security nonce is missing."
348
- msgstr ""
349
-
350
- #: app/features/books.php:926
351
- msgid "Security nonce is invalid."
352
- msgstr ""
353
-
354
- #: app/features/books.php:935
355
- msgid "Invalid request."
356
- msgstr ""
357
-
358
- #: app/features/books.php:963
359
- msgid "Please select some tickets!"
360
- msgstr ""
361
-
362
- #: app/features/books.php:969
363
- msgid "Captcha is invalid. Please try again."
364
- msgstr ""
365
-
366
- #: app/features/books.php:1015
367
- msgid "Please fill the form correctly. Email and Name fields are required!"
368
- msgstr ""
369
-
370
- #: app/features/books.php:1085
371
- msgid "Event is invalid. Please select an event."
372
- msgstr ""
373
-
374
- #: app/features/books.php:1093
375
- msgid ""
376
- "No ticket ro future dates found for this event! Please try another event."
377
- msgstr ""
378
-
379
- #: app/features/books.php:1175
380
- msgid "Attendee Information"
381
- msgstr ""
382
-
383
  #: app/features/colors.php:50 app/features/fes/form.php:566
384
- #: app/features/mec/settings.php:842
385
  msgid "Event Color"
386
  msgstr ""
387
 
388
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
389
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
390
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
391
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
392
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
393
  #: app/features/mec/support.php:18
394
  msgid "Settings"
395
  msgstr ""
396
 
 
 
 
 
 
 
 
 
 
397
  #: app/features/contextual.php:63
398
  msgid ""
399
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -406,7 +69,7 @@ msgstr ""
406
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
407
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
408
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
409
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
410
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
411
  msgid "Payment Gateways"
412
  msgstr ""
@@ -421,7 +84,7 @@ msgstr ""
421
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
422
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
423
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
424
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
425
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
426
  msgid "Notifications"
427
  msgstr ""
@@ -482,232 +145,102 @@ msgid ""
482
  "\"0\" allowfullscreen></iframe>"
483
  msgstr ""
484
 
485
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
486
- #: app/features/mec/settings.php:247
487
  msgid "General Options"
488
  msgstr ""
489
 
490
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
491
- #: app/features/mec/settings.php:399
492
  msgid "Slugs/Permalinks"
493
  msgstr ""
494
 
495
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
496
- #: app/features/mec/settings.php:419
497
  msgid "Event Details/Single Event Page"
498
  msgstr ""
499
 
500
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
501
- #: app/features/mec/settings.php:451
502
  msgid "Currency Options"
503
  msgstr ""
504
 
505
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
506
- #: app/features/mec/settings.php:503
507
  msgid "Google Maps Options"
508
  msgstr ""
509
 
510
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
511
- #: app/features/mec/settings.php:577
512
  msgid "Google Recaptcha Options"
513
  msgstr ""
514
 
515
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
516
- #: app/features/mec/settings.php:695
517
  msgid "Countdown Options"
518
  msgstr ""
519
 
520
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
521
- #: app/features/mec/settings.php:716
522
  msgid "Social Networks"
523
  msgstr ""
524
 
525
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
526
- #: app/features/mec/settings.php:741
527
  msgid "Next Event Module"
528
  msgstr ""
529
 
530
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
531
- #: app/features/mec/settings.php:769
532
  msgid "Frontend Event Submission"
533
  msgstr ""
534
 
535
  #: app/features/contextual.php:298 app/features/events.php:570
536
- #: app/features/mec/settings.php:126
537
  msgid "Exceptional Days"
538
  msgstr ""
539
 
540
- #: app/features/contextual.php:318 app/features/coupons.php:76
541
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
542
- #: app/features/mec/settings.php:1014
 
 
 
 
543
  msgid "Coupons"
544
  msgstr ""
545
 
546
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
547
- #: app/features/mec/settings.php:1096
548
  msgid "BuddyPress Integration"
549
  msgstr ""
550
 
551
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
552
- #: app/features/mec/settings.php:1126
553
  msgid "Mailchimp Integration"
554
  msgstr ""
555
 
556
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
557
- #: app/features/mec/settings.php:1162
558
  msgid "MEC Activation"
559
  msgstr ""
560
 
561
- #: app/features/coupons.php:79
562
- msgid "Coupon"
563
- msgstr ""
564
-
565
- #: app/features/coupons.php:80
566
- msgid "All Coupons"
567
- msgstr ""
568
-
569
- #: app/features/coupons.php:81
570
- msgid "Edit Coupon"
571
- msgstr ""
572
-
573
- #: app/features/coupons.php:82
574
- msgid "View Coupon"
575
- msgstr ""
576
-
577
- #: app/features/coupons.php:83
578
- msgid "Update Coupon"
579
- msgstr ""
580
-
581
- #: app/features/coupons.php:84
582
- msgid "Add New Coupon"
583
- msgstr ""
584
-
585
- #: app/features/coupons.php:85
586
- msgid "New Coupon Name"
587
- msgstr ""
588
-
589
- #: app/features/coupons.php:86
590
- msgid "Popular Coupons"
591
- msgstr ""
592
-
593
- #: app/features/coupons.php:87
594
- msgid "Search Coupons"
595
- msgstr ""
596
-
597
- #: app/features/coupons.php:116 app/features/coupons.php:177
598
- msgid "Discount Type"
599
- msgstr ""
600
-
601
- #: app/features/coupons.php:120 app/features/coupons.php:179
602
- #: app/features/events.php:854 app/features/events.php:879
603
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
604
- msgid "Percent"
605
- msgstr ""
606
-
607
- #: app/features/coupons.php:121 app/features/coupons.php:180
608
- #: app/features/events.php:849 app/features/events.php:874
609
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
610
- msgid "Amount"
611
- msgstr ""
612
-
613
- #: app/features/coupons.php:127 app/features/coupons.php:184
614
- #: app/features/coupons.php:248 app/features/coupons.php:322
615
- #: app/libraries/book.php:505
616
- msgid "Discount"
617
- msgstr ""
618
-
619
- #: app/features/coupons.php:131 app/features/coupons.php:186
620
- msgid ""
621
- "Discount percent, considered as amount if you set the discount type to amount"
622
- msgstr ""
623
-
624
- #: app/features/coupons.php:136 app/features/coupons.php:189
625
- msgid "Usage Limit"
626
- msgstr ""
627
-
628
- #: app/features/coupons.php:140 app/features/coupons.php:191
629
- msgid "Insert -1 for unlimited usage"
630
- msgstr ""
631
-
632
- #: app/features/coupons.php:145 app/features/coupons.php:194
633
- #: app/features/gateways.php:1202
634
- msgid "Expiration Date"
635
- msgstr ""
636
-
637
- #: app/features/coupons.php:149 app/features/coupons.php:196
638
- msgid "Leave it empty for no expiration!"
639
- msgstr ""
640
-
641
- #: app/features/coupons.php:154 app/features/coupons.php:199
642
- msgid "Target Event"
643
- msgstr ""
644
-
645
- #: app/features/coupons.php:158 app/features/coupons.php:201
646
- #: app/features/events.php:127
647
- msgid "All Events"
648
- msgstr ""
649
-
650
- #: app/features/coupons.php:246
651
- msgid "Name/Code"
652
- msgstr ""
653
-
654
- #: app/features/coupons.php:247 app/features/events.php:632
655
- #: app/features/events.php:644 app/features/events.php:752
656
- #: app/features/events.php:784
657
- msgid "Description"
658
- msgstr ""
659
-
660
- #: app/features/coupons.php:249
661
- #: app/features/mec/meta_boxes/display_options.php:85
662
- #: app/features/mec/meta_boxes/display_options.php:194
663
- #: app/features/mec/meta_boxes/display_options.php:244
664
- #: app/features/mec/meta_boxes/display_options.php:632
665
- #: app/features/mec/meta_boxes/display_options.php:806
666
- #: app/features/mec/meta_boxes/display_options.php:877
667
- msgid "Limit"
668
- msgstr ""
669
-
670
- #: app/features/coupons.php:250 app/features/labels.php:153
671
- #: app/features/locations.php:231 app/features/organizers.php:201
672
- #: app/modules/booking/steps/tickets.php:36
673
- msgid "Count"
674
- msgstr ""
675
-
676
- #: app/features/coupons.php:280 app/features/events.php:715
677
- #: app/features/events.php:769 app/features/events.php:801
678
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
679
- #: app/skins/available_spot/tpl.php:84
680
- msgid "Unlimited"
681
- msgstr ""
682
-
683
- #: app/features/coupons.php:309
684
- msgid "Discount coupon is invalid!"
685
- msgstr ""
686
-
687
- #: app/features/coupons.php:311
688
- msgid "Discount coupon usage limit reached!"
689
- msgstr ""
690
-
691
- #: app/features/coupons.php:313
692
- msgid "Discount coupon is expired!"
693
- msgstr ""
694
-
695
- #: app/features/coupons.php:315
696
- msgid "Discount is not valid for this event!"
697
- msgstr ""
698
-
699
- #: app/features/coupons.php:326
700
- #, php-format
701
- msgid "Coupon is valid and you get %s discount."
702
- msgstr ""
703
-
704
  #: app/features/events.php:122 app/features/ix/export.php:33
705
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
706
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
707
  msgid "Events"
708
  msgstr ""
709
 
710
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
711
  msgid "Add Event"
712
  msgstr ""
713
 
@@ -720,6 +253,10 @@ msgstr ""
720
  msgid "No events found!"
721
  msgstr ""
722
 
 
 
 
 
723
  #: app/features/events.php:128
724
  msgid "Edit Event"
725
  msgstr ""
@@ -742,7 +279,7 @@ msgstr ""
742
  #: app/features/mec/meta_boxes/search_form.php:285
743
  #: app/features/mec/meta_boxes/search_form.php:325
744
  #: app/features/mec/meta_boxes/search_form.php:372
745
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
746
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
747
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
748
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -750,8 +287,8 @@ msgid "Category"
750
  msgstr ""
751
 
752
  #: app/features/events.php:143 app/features/fes/form.php:518
753
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
754
- #: app/libraries/main.php:3952
755
  msgid "Categories"
756
  msgstr ""
757
 
@@ -818,12 +355,12 @@ msgstr ""
818
  #: app/features/events.php:286 app/features/events.php:1631
819
  #: app/features/events.php:1675 app/features/fes/form.php:479
820
  #: app/features/ix.php:2328 app/features/ix.php:2369
821
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
822
  msgid "Event Cost"
823
  msgstr ""
824
 
825
  #: app/features/events.php:289 app/features/fes/form.php:482
826
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
827
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
828
  #: app/skins/single/modern.php:179
829
  msgid "Cost"
@@ -837,6 +374,26 @@ msgstr ""
837
  msgid "Guest Data"
838
  msgstr ""
839
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
840
  #: app/features/events.php:375 app/features/fes/form.php:221
841
  msgid "Date and Time"
842
  msgstr ""
@@ -846,7 +403,7 @@ msgstr ""
846
  #: app/features/events.php:1675 app/features/fes/form.php:225
847
  #: app/features/fes/form.php:229 app/features/ix.php:2328
848
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
849
- #: app/features/mec/dashboard.php:262
850
  #: app/features/mec/meta_boxes/display_options.php:42
851
  #: app/features/mec/meta_boxes/display_options.php:129
852
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -878,7 +435,7 @@ msgstr ""
878
  #: app/features/events.php:1675 app/features/fes/form.php:265
879
  #: app/features/fes/form.php:269 app/features/ix.php:2328
880
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
881
- #: app/features/mec/dashboard.php:263
882
  msgid "End Date"
883
  msgstr ""
884
 
@@ -913,7 +470,7 @@ msgid "Repeats"
913
  msgstr ""
914
 
915
  #: app/features/events.php:481 app/features/fes/form.php:327
916
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
917
  msgid "Daily"
918
  msgstr ""
919
 
@@ -935,12 +492,12 @@ msgid "Weekly"
935
  msgstr ""
936
 
937
  #: app/features/events.php:486 app/features/fes/form.php:332
938
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
939
  msgid "Monthly"
940
  msgstr ""
941
 
942
  #: app/features/events.php:487 app/features/fes/form.php:333
943
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
944
  msgid "Yearly"
945
  msgstr ""
946
 
@@ -995,6 +552,15 @@ msgstr ""
995
  msgid "Sunday"
996
  msgstr ""
997
 
 
 
 
 
 
 
 
 
 
998
  #: app/features/events.php:509 app/features/events.php:581
999
  #: app/features/events.php:623 app/features/events.php:743
1000
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1039,7 +605,7 @@ msgstr ""
1039
  msgid "Exclude certain days from event occurrence dates."
1040
  msgstr ""
1041
 
1042
- #: app/features/events.php:620 app/features/mec/settings.php:866
1043
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1044
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1045
  msgid "Hourly Schedule"
@@ -1060,33 +626,35 @@ msgstr ""
1060
  #: app/features/events.php:631 app/features/events.php:643
1061
  #: app/features/events.php:1449 app/features/events.php:1631
1062
  #: app/features/events.php:1675 app/features/fes/form.php:214
1063
- #: app/features/gateways.php:550 app/features/gateways.php:617
1064
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1065
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1066
- #: app/features/ix.php:2369
1067
  msgid "Title"
1068
  msgstr ""
1069
 
 
 
 
 
 
1070
  #: app/features/events.php:633 app/features/events.php:645
1071
  #: app/features/events.php:771 app/features/events.php:803
1072
  #: app/features/events.php:859 app/features/events.php:884
1073
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1074
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1075
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1076
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1077
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1078
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1079
- #: app/libraries/main.php:2162
1080
  msgid "Remove"
1081
  msgstr ""
1082
 
1083
  #: app/features/events.php:665 app/features/fes/form.php:456
1084
- #: app/features/mec/settings.php:812
1085
  msgid "Event Links"
1086
  msgstr ""
1087
 
1088
  #: app/features/events.php:667 app/features/fes/form.php:458
1089
- #: app/libraries/main.php:3981
1090
  msgid "Event Link"
1091
  msgstr ""
1092
 
@@ -1102,7 +670,7 @@ msgid ""
1102
  msgstr ""
1103
 
1104
  #: app/features/events.php:672 app/features/fes/form.php:463
1105
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1106
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1107
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1108
  msgid "More Info"
@@ -1130,12 +698,18 @@ msgstr ""
1130
  msgid "Total booking limits"
1131
  msgstr ""
1132
 
 
 
 
 
 
 
1133
  #: app/features/events.php:717
1134
  msgid "100"
1135
  msgstr ""
1136
 
1137
  #: app/features/events.php:735 app/libraries/book.php:59
1138
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1139
  msgid "Tickets"
1140
  msgstr ""
1141
 
@@ -1150,6 +724,10 @@ msgstr ""
1150
  msgid "Ticket Name"
1151
  msgstr ""
1152
 
 
 
 
 
1153
  #: app/features/events.php:757 app/features/events.php:789
1154
  msgid "Insert 0 for free ticket. Only numbers please."
1155
  msgstr ""
@@ -1175,50 +753,60 @@ msgid "Inherit from global options"
1175
  msgstr ""
1176
 
1177
  #: app/features/events.php:845 app/features/events.php:870
1178
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1179
  msgid "Fee Title"
1180
  msgstr ""
1181
 
 
 
 
 
 
1182
  #: app/features/events.php:850 app/features/events.php:875
1183
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1184
  msgid ""
1185
  "Fee amount, considered as fixed amount if you set the type to amount "
1186
  "otherwise considered as percentage"
1187
  msgstr ""
1188
 
 
 
 
 
 
1189
  #: app/features/events.php:855 app/features/events.php:880
1190
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1191
  msgid "Amount (Per Ticket)"
1192
  msgstr ""
1193
 
1194
  #: app/features/events.php:856 app/features/events.php:881
1195
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1196
  msgid "Amount (Per Booking)"
1197
  msgstr ""
1198
 
1199
  #: app/features/events.php:944 app/features/mec/regform.php:117
1200
- #: app/libraries/main.php:1841
1201
  msgid "Text"
1202
  msgstr ""
1203
 
1204
  #: app/features/events.php:946 app/features/mec/regform.php:119
1205
  #: app/features/organizers.php:102 app/features/organizers.php:146
1206
- #: app/libraries/main.php:1899
1207
  msgid "Tel"
1208
  msgstr ""
1209
 
1210
  #: app/features/events.php:947 app/features/mec/regform.php:120
1211
- #: app/libraries/main.php:1928
1212
  msgid "Textarea"
1213
  msgstr ""
1214
 
1215
  #: app/features/events.php:948 app/features/mec/regform.php:121
1216
- #: app/libraries/main.php:1981
1217
  msgid "Checkboxes"
1218
  msgstr ""
1219
 
1220
  #: app/features/events.php:949 app/features/mec/regform.php:122
1221
- #: app/libraries/main.php:2025
1222
  msgid "Radio Buttons"
1223
  msgstr ""
1224
 
@@ -1267,17 +855,17 @@ msgstr ""
1267
  #: app/features/mec/meta_boxes/search_form.php:436
1268
  #: app/features/mec/meta_boxes/search_form.php:443
1269
  #: app/features/mec/meta_boxes/search_form.php:450
1270
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1271
  msgid "Dropdown"
1272
  msgstr ""
1273
 
1274
  #: app/features/events.php:951 app/features/mec/regform.php:124
1275
- #: app/libraries/main.php:2116
1276
  msgid "Agreement"
1277
  msgstr ""
1278
 
1279
  #: app/features/events.php:952 app/features/mec/regform.php:125
1280
- #: app/libraries/main.php:1957
1281
  msgid "Paragraph"
1282
  msgstr ""
1283
 
@@ -1303,7 +891,7 @@ msgstr ""
1303
  #: app/features/events.php:1675 app/features/ix.php:2328
1304
  #: app/features/ix.php:2369 app/features/locations.php:58
1305
  #: app/features/locations.php:229 app/features/locations.php:281
1306
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1307
  #: app/features/mec/meta_boxes/display_options.php:641
1308
  #: app/features/mec/meta_boxes/search_form.php:38
1309
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1313,8 +901,8 @@ msgstr ""
1313
  #: app/features/mec/meta_boxes/search_form.php:292
1314
  #: app/features/mec/meta_boxes/search_form.php:332
1315
  #: app/features/mec/meta_boxes/search_form.php:379
1316
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1317
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1318
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1319
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1320
  #: app/skins/single/modern.php:77
@@ -1323,7 +911,7 @@ msgstr ""
1323
 
1324
  #: app/features/events.php:1451 app/features/events.php:1631
1325
  #: app/features/events.php:1675 app/features/ix.php:2328
1326
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1327
  #: app/features/mec/meta_boxes/display_options.php:642
1328
  #: app/features/mec/meta_boxes/search_form.php:45
1329
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1336,7 +924,7 @@ msgstr ""
1336
  #: app/features/mec/meta_boxes/search_form.php:433
1337
  #: app/features/organizers.php:58 app/features/organizers.php:199
1338
  #: app/features/organizers.php:255 app/features/organizers.php:257
1339
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1340
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1341
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1342
  #: app/skins/single/modern.php:21
@@ -1355,6 +943,14 @@ msgstr ""
1355
  msgid "iCal Export"
1356
  msgstr ""
1357
 
 
 
 
 
 
 
 
 
1358
  #: app/features/events.php:1575 app/features/events.php:1576
1359
  msgid "XML Export"
1360
  msgstr ""
@@ -1367,6 +963,13 @@ msgstr ""
1367
  msgid "Duplicate"
1368
  msgstr ""
1369
 
 
 
 
 
 
 
 
1370
  #: app/features/events.php:1631 app/features/events.php:1675
1371
  #: app/features/ix.php:2328 app/features/ix.php:2369
1372
  msgid "Start Time"
@@ -1451,346 +1054,61 @@ msgid "Note to reviewer"
1451
  msgstr ""
1452
 
1453
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1454
- #: app/features/gateways.php:695
1455
  msgid "Submit"
1456
  msgstr ""
1457
 
1458
  #: app/features/fes/form.php:435
1459
  msgid "User Data"
1460
  msgstr ""
1461
-
1462
- #: app/features/fes/form.php:438
1463
- msgid "eg. yourname@gmail.com"
1464
- msgstr ""
1465
-
1466
- #: app/features/fes/form.php:442 app/features/organizers.php:269
1467
- msgid "eg. John Smith"
1468
- msgstr ""
1469
-
1470
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1471
- msgid "Featured Image"
1472
- msgstr ""
1473
-
1474
- #: app/features/fes/form.php:501
1475
- msgid "Remove Image"
1476
- msgstr ""
1477
-
1478
- #: app/features/fes/form.php:543 app/features/labels.php:61
1479
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1480
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1481
- #: app/skins/single/default.php:131 app/skins/single/default.php:333
1482
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1483
- msgid "Labels"
1484
- msgstr ""
1485
-
1486
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1487
- #: app/features/mec/meta_boxes/filter.php:138
1488
- msgid "Tags"
1489
- msgstr ""
1490
-
1491
- #: app/features/fes/form.php:590
1492
- msgid "Insert your desired tags, comma separated."
1493
- msgstr ""
1494
-
1495
- #: app/features/fes/list.php:21
1496
- msgid "Click again to remove!"
1497
- msgstr ""
1498
-
1499
- #: app/features/fes/list.php:64 app/features/fes/list.php:78
1500
- msgid "Add new"
1501
- msgstr ""
1502
-
1503
- #: app/features/fes/list.php:70
1504
- msgid "View"
1505
- msgstr ""
1506
-
1507
- #: app/features/fes/list.php:78
1508
- #, php-format
1509
- msgid "No events found! %s"
1510
- msgstr ""
1511
-
1512
- #: app/features/gateways.php:70 app/features/gateways.php:327
1513
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1514
- #: app/features/gateways.php:1396
1515
- msgid "Request is invalid!"
1516
- msgstr ""
1517
-
1518
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1519
- msgid "Thanks for your booking."
1520
- msgstr ""
1521
-
1522
- #: app/features/gateways.php:307 app/features/gateways.php:545
1523
- msgid "Stripe"
1524
- msgstr ""
1525
-
1526
- #: app/features/gateways.php:342 app/features/gateways.php:716
1527
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1528
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1529
- msgid "There is no attendee for booking!"
1530
- msgstr ""
1531
-
1532
- #: app/features/gateways.php:373 app/features/gateways.php:743
1533
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1534
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1535
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1536
- msgid ""
1537
- "Thanks for your booking. Your tickets booked, booking verification might be "
1538
- "needed, please check your email."
1539
- msgstr ""
1540
-
1541
- #: app/features/gateways.php:390
1542
- #, php-format
1543
- msgid "MEC Transaction ID: %s"
1544
- msgstr ""
1545
-
1546
- #: app/features/gateways.php:473 app/features/gateways.php:668
1547
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1548
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1549
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1550
- msgid "Download Invoice"
1551
- msgstr ""
1552
-
1553
- #: app/features/gateways.php:509
1554
- msgid "Card Number"
1555
- msgstr ""
1556
-
1557
- #: app/features/gateways.php:515
1558
- msgid "CVC"
1559
- msgstr ""
1560
-
1561
- #: app/features/gateways.php:521
1562
- msgid "Expiration (MM/YYYY)"
1563
- msgstr ""
1564
-
1565
- #: app/features/gateways.php:522
1566
- msgid "Month"
1567
- msgstr ""
1568
-
1569
- #: app/features/gateways.php:524
1570
- msgid "Year"
1571
- msgstr ""
1572
-
1573
- #: app/features/gateways.php:532 app/features/gateways.php:919
1574
- #: app/features/gateways.php:1223
1575
- msgid "Pay"
1576
- msgstr ""
1577
-
1578
- #: app/features/gateways.php:556 app/features/gateways.php:623
1579
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1580
- #: app/features/gateways.php:1621
1581
- msgid "Comment"
1582
- msgstr ""
1583
-
1584
- #: app/features/gateways.php:559 app/features/gateways.php:626
1585
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1586
- #: app/features/gateways.php:1624
1587
- msgid "HTML allowed."
1588
- msgstr ""
1589
-
1590
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1591
- msgid "Secret Key"
1592
- msgstr ""
1593
-
1594
- #: app/features/gateways.php:569
1595
- msgid "Publishable Key"
1596
- msgstr ""
1597
-
1598
- #: app/features/gateways.php:598 app/features/gateways.php:612
1599
- msgid "Pay Locally"
1600
- msgstr ""
1601
-
1602
- #: app/features/gateways.php:766 app/features/gateways.php:780
1603
- msgid "PayPal Express"
1604
- msgstr ""
1605
-
1606
- #: app/features/gateways.php:798
1607
- msgid "Business Account"
1608
- msgstr ""
1609
-
1610
- #: app/features/gateways.php:801
1611
- msgid "Normally PayPal Email."
1612
- msgstr ""
1613
-
1614
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1615
- msgid "Mode"
1616
- msgstr ""
1617
-
1618
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1619
- msgid "Live"
1620
- msgstr ""
1621
-
1622
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1623
- msgid "Sandbox"
1624
- msgstr ""
1625
-
1626
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1627
- msgid "Waiting for getting response from gateway."
1628
- msgstr ""
1629
-
1630
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1631
- msgid "Payment was invalid! Booking failed."
1632
- msgstr ""
1633
-
1634
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1635
- msgid "PayPal Credit Card"
1636
- msgstr ""
1637
-
1638
- #: app/features/gateways.php:1089
1639
- msgid "API Username"
1640
- msgstr ""
1641
-
1642
- #: app/features/gateways.php:1095
1643
- msgid "API Password"
1644
- msgstr ""
1645
-
1646
- #: app/features/gateways.php:1101
1647
- msgid "API Signature"
1648
- msgstr ""
1649
-
1650
- #: app/features/gateways.php:1181
1651
- msgid "First name"
1652
- msgstr ""
1653
-
1654
- #: app/features/gateways.php:1185
1655
- msgid "Last name"
1656
- msgstr ""
1657
-
1658
- #: app/features/gateways.php:1189
1659
- msgid "Card Type"
1660
- msgstr ""
1661
-
1662
- #: app/features/gateways.php:1191
1663
- msgid "Visa"
1664
- msgstr ""
1665
-
1666
- #: app/features/gateways.php:1192
1667
- msgid "MasterCard"
1668
- msgstr ""
1669
-
1670
- #: app/features/gateways.php:1193
1671
- msgid "Discover"
1672
- msgstr ""
1673
-
1674
- #: app/features/gateways.php:1194
1675
- msgid "American Express"
1676
- msgstr ""
1677
-
1678
- #: app/features/gateways.php:1198
1679
- msgid "CC Number"
1680
- msgstr ""
1681
-
1682
- #: app/features/gateways.php:1215
1683
- msgid "CVV2"
1684
- msgstr ""
1685
-
1686
- #: app/features/gateways.php:1248
1687
- msgid "Payment is invalid."
1688
- msgstr ""
1689
-
1690
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1691
- msgid "Pay by WooCommerce"
1692
- msgstr ""
1693
-
1694
- #: app/features/gateways.php:1418
1695
- #, php-format
1696
- msgid "Booking fee for %s"
1697
- msgstr ""
1698
-
1699
- #: app/features/gateways.php:1429
1700
- msgid "Your order is created. Please proceed with checkout."
1701
- msgstr ""
1702
-
1703
- #: app/features/gateways.php:1591
1704
- msgid "Add to Cart"
1705
- msgstr ""
1706
-
1707
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1708
- msgid "Checkout"
1709
- msgstr ""
1710
-
1711
- #: app/features/gateways.php:1612
1712
- msgid "WooCommerce must be installed and activated first."
1713
- msgstr ""
1714
-
1715
- #: app/features/gateways.php:1628
1716
- msgid "Automatically complete WC orders"
1717
- msgstr ""
1718
-
1719
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1720
- msgid "Enabled"
1721
- msgstr ""
1722
-
1723
- #: app/features/gateways.php:1632
1724
- #: app/features/mec/meta_boxes/search_form.php:33
1725
- #: app/features/mec/meta_boxes/search_form.php:40
1726
- #: app/features/mec/meta_boxes/search_form.php:47
1727
- #: app/features/mec/meta_boxes/search_form.php:54
1728
- #: app/features/mec/meta_boxes/search_form.php:61
1729
- #: app/features/mec/meta_boxes/search_form.php:68
1730
- #: app/features/mec/meta_boxes/search_form.php:80
1731
- #: app/features/mec/meta_boxes/search_form.php:87
1732
- #: app/features/mec/meta_boxes/search_form.php:94
1733
- #: app/features/mec/meta_boxes/search_form.php:101
1734
- #: app/features/mec/meta_boxes/search_form.php:108
1735
- #: app/features/mec/meta_boxes/search_form.php:115
1736
- #: app/features/mec/meta_boxes/search_form.php:127
1737
- #: app/features/mec/meta_boxes/search_form.php:134
1738
- #: app/features/mec/meta_boxes/search_form.php:141
1739
- #: app/features/mec/meta_boxes/search_form.php:148
1740
- #: app/features/mec/meta_boxes/search_form.php:155
1741
- #: app/features/mec/meta_boxes/search_form.php:162
1742
- #: app/features/mec/meta_boxes/search_form.php:174
1743
- #: app/features/mec/meta_boxes/search_form.php:181
1744
- #: app/features/mec/meta_boxes/search_form.php:193
1745
- #: app/features/mec/meta_boxes/search_form.php:200
1746
- #: app/features/mec/meta_boxes/search_form.php:207
1747
- #: app/features/mec/meta_boxes/search_form.php:214
1748
- #: app/features/mec/meta_boxes/search_form.php:221
1749
- #: app/features/mec/meta_boxes/search_form.php:228
1750
- #: app/features/mec/meta_boxes/search_form.php:240
1751
- #: app/features/mec/meta_boxes/search_form.php:247
1752
- #: app/features/mec/meta_boxes/search_form.php:254
1753
- #: app/features/mec/meta_boxes/search_form.php:261
1754
- #: app/features/mec/meta_boxes/search_form.php:268
1755
- #: app/features/mec/meta_boxes/search_form.php:275
1756
- #: app/features/mec/meta_boxes/search_form.php:287
1757
- #: app/features/mec/meta_boxes/search_form.php:294
1758
- #: app/features/mec/meta_boxes/search_form.php:301
1759
- #: app/features/mec/meta_boxes/search_form.php:308
1760
- #: app/features/mec/meta_boxes/search_form.php:315
1761
- #: app/features/mec/meta_boxes/search_form.php:327
1762
- #: app/features/mec/meta_boxes/search_form.php:334
1763
- #: app/features/mec/meta_boxes/search_form.php:341
1764
- #: app/features/mec/meta_boxes/search_form.php:348
1765
- #: app/features/mec/meta_boxes/search_form.php:355
1766
- #: app/features/mec/meta_boxes/search_form.php:362
1767
- #: app/features/mec/meta_boxes/search_form.php:374
1768
- #: app/features/mec/meta_boxes/search_form.php:381
1769
- #: app/features/mec/meta_boxes/search_form.php:388
1770
- #: app/features/mec/meta_boxes/search_form.php:395
1771
- #: app/features/mec/meta_boxes/search_form.php:402
1772
- #: app/features/mec/meta_boxes/search_form.php:409
1773
- #: app/features/mec/meta_boxes/search_form.php:421
1774
- #: app/features/mec/meta_boxes/search_form.php:428
1775
- #: app/features/mec/meta_boxes/search_form.php:435
1776
- #: app/features/mec/meta_boxes/search_form.php:442
1777
- #: app/features/mec/meta_boxes/search_form.php:449
1778
- #: app/features/mec/meta_boxes/search_form.php:456
1779
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1780
- #: app/features/mec/settings.php:549
1781
- msgid "Disabled"
1782
  msgstr ""
1783
 
1784
- #: app/features/gateways.php:1634
1785
- msgid "It applies only to the orders that are related to MEC."
1786
  msgstr ""
1787
 
1788
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1789
- msgid "Free"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1790
  msgstr ""
1791
 
1792
- #: app/features/gateways.php:1744
1793
- msgid "This booking is not free!"
 
1794
  msgstr ""
1795
 
1796
  #: app/features/ix.php:95
@@ -1825,6 +1143,10 @@ msgstr ""
1825
  msgid "Third Party plugin is invalid!"
1826
  msgstr ""
1827
 
 
 
 
 
1828
  #: app/features/ix.php:1961 app/features/ix.php:2791
1829
  msgid "Please select some events to import!"
1830
  msgstr ""
@@ -1846,6 +1168,35 @@ msgstr ""
1846
  msgid "All seems good! Please click %s for authenticating your app."
1847
  msgstr ""
1848
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1849
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1850
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1851
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1891,7 +1242,7 @@ msgid ""
1891
  "This will export all of your website events' data into your desired format."
1892
  msgstr ""
1893
 
1894
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1895
  msgid "iCal"
1896
  msgstr ""
1897
 
@@ -1929,6 +1280,10 @@ msgstr ""
1929
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1930
  msgstr ""
1931
 
 
 
 
 
1932
  #: app/features/ix/export_g_calendar.php:25
1933
  msgid "Add events to Google Calendar"
1934
  msgstr ""
@@ -1985,7 +1340,7 @@ msgstr ""
1985
  msgid "Add to Google Calendar"
1986
  msgstr ""
1987
 
1988
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
1989
  msgid "Checking ..."
1990
  msgstr ""
1991
 
@@ -2027,10 +1382,10 @@ msgstr ""
2027
  msgid "ICS Feed"
2028
  msgstr ""
2029
 
2030
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2031
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2032
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2033
- #: app/features/mec/settings.php:1034
2034
  #, php-format
2035
  msgid "%s is required to use this feature."
2036
  msgstr ""
@@ -2042,10 +1397,10 @@ msgstr ""
2042
  #: app/features/mec/meta_boxes/display_options.php:558
2043
  #: app/features/mec/meta_boxes/display_options.php:608
2044
  #: app/features/mec/meta_boxes/display_options.php:734
2045
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2046
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2047
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2048
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2049
  msgid "Pro version of Modern Events Calendar"
2050
  msgstr ""
2051
 
@@ -2262,6 +1617,11 @@ msgstr ""
2262
  msgid "Select label color"
2263
  msgstr ""
2264
 
 
 
 
 
 
2265
  #: app/features/labels.php:154 app/features/locations.php:232
2266
  #: app/features/organizers.php:202
2267
  msgid "Slug"
@@ -2272,8 +1632,8 @@ msgstr ""
2272
  msgid "Event %s"
2273
  msgstr ""
2274
 
2275
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2276
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2277
  msgid "Locations"
2278
  msgstr ""
2279
 
@@ -2341,7 +1701,7 @@ msgstr ""
2341
  msgid "eg. City Hall"
2342
  msgstr ""
2343
 
2344
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2345
  msgid "Event Location"
2346
  msgstr ""
2347
 
@@ -2363,91 +1723,91 @@ msgstr ""
2363
  msgid "Don't show map in single event page"
2364
  msgstr ""
2365
 
2366
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2367
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2368
  msgid "Organizers"
2369
  msgstr ""
2370
 
2371
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2372
- #: app/features/mec/dashboard.php:92
2373
  msgid "Shortcodes"
2374
  msgstr ""
2375
 
2376
- #: app/features/modern-events-calendar-lite.php:195
2377
  msgid "MEC - Settings"
2378
  msgstr ""
2379
 
2380
- #: app/features/modern-events-calendar-lite.php:210
2381
  msgid "Add Shortcode"
2382
  msgstr ""
2383
 
2384
- #: app/features/modern-events-calendar-lite.php:211
2385
  msgid "Add New Shortcode"
2386
  msgstr ""
2387
 
2388
- #: app/features/modern-events-calendar-lite.php:212
2389
  msgid "No shortcodes found!"
2390
  msgstr ""
2391
 
2392
- #: app/features/modern-events-calendar-lite.php:213
2393
  msgid "All Shortcodes"
2394
  msgstr ""
2395
 
2396
- #: app/features/modern-events-calendar-lite.php:214
2397
  msgid "Edit shortcodes"
2398
  msgstr ""
2399
 
2400
- #: app/features/modern-events-calendar-lite.php:215
2401
  msgid "No shortcodes found in Trash!"
2402
  msgstr ""
2403
 
2404
- #: app/features/modern-events-calendar-lite.php:262
2405
  msgid "Display Options"
2406
  msgstr ""
2407
 
2408
- #: app/features/modern-events-calendar-lite.php:263
2409
  msgid "Filter Options"
2410
  msgstr ""
2411
 
2412
- #: app/features/modern-events-calendar-lite.php:265
2413
  msgid "Search Form"
2414
  msgstr ""
2415
 
2416
- #: app/features/modern-events-calendar-lite.php:556
2417
  msgid "Single Event Display Method"
2418
  msgstr ""
2419
 
2420
- #: app/features/modern-events-calendar-lite.php:561
2421
  msgid "Separate Window"
2422
  msgstr ""
2423
 
2424
- #: app/features/modern-events-calendar-lite.php:562
2425
  msgid "Modal 1"
2426
  msgstr ""
2427
 
2428
- #: app/features/mec/dashboard.php:54
2429
  #, php-format
2430
  msgid "Welcome %s"
2431
  msgstr ""
2432
 
2433
- #: app/features/mec/dashboard.php:57
2434
  #, php-format
2435
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2436
  msgstr ""
2437
 
2438
- #: app/features/mec/dashboard.php:57
2439
  msgid "Modern Event Calendar"
2440
  msgstr ""
2441
 
2442
- #: app/features/mec/dashboard.php:57
2443
  msgid "Modern Event Calendar (Lite)"
2444
  msgstr ""
2445
 
2446
- #: app/features/mec/dashboard.php:66
2447
  msgid "Version"
2448
  msgstr ""
2449
 
2450
- #: app/features/mec/dashboard.php:75
2451
  #, php-format
2452
  msgid ""
2453
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2455,120 +1815,120 @@ msgid ""
2455
  "Spots, etc you should %s to the Pro version."
2456
  msgstr ""
2457
 
2458
- #: app/features/mec/dashboard.php:75
2459
  msgid "lite"
2460
  msgstr ""
2461
 
2462
- #: app/features/mec/dashboard.php:75
2463
  msgid "upgrade"
2464
  msgstr ""
2465
 
2466
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2467
  msgid "Documentation"
2468
  msgstr ""
2469
 
2470
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2471
  msgid ""
2472
  "Our documentation is simple and functional with full details and cover all "
2473
  "essential aspects from beginning to the most advanced parts."
2474
  msgstr ""
2475
 
2476
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2477
  msgid "DOCUMENTATION"
2478
  msgstr ""
2479
 
2480
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2481
  msgid "Support Forum"
2482
  msgstr ""
2483
 
2484
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2485
  msgid ""
2486
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2487
  "If you want to use this service you need to upgrade your plugin to Pro "
2488
  "version. Click on the following button."
2489
  msgstr ""
2490
 
2491
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2492
  msgid ""
2493
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2494
  "If you have any issues please don't hesitate to contact us, we will reply as "
2495
  "soon as possible."
2496
  msgstr ""
2497
 
2498
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2499
  msgid "GO PREMIUM"
2500
  msgstr ""
2501
 
2502
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2503
  msgid "OPEN A TICKET"
2504
  msgstr ""
2505
 
2506
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2507
  msgid "Upcoming Events"
2508
  msgstr ""
2509
 
2510
- #: app/features/mec/dashboard.php:177
2511
  msgid "Popular Gateways"
2512
  msgstr ""
2513
 
2514
- #: app/features/mec/dashboard.php:228
2515
  msgid "Total Bookings"
2516
  msgstr ""
2517
 
2518
- #: app/features/mec/dashboard.php:255
2519
  msgid "This Month"
2520
  msgstr ""
2521
 
2522
- #: app/features/mec/dashboard.php:256
2523
  msgid "Last Month"
2524
  msgstr ""
2525
 
2526
- #: app/features/mec/dashboard.php:257
2527
  msgid "This Year"
2528
  msgstr ""
2529
 
2530
- #: app/features/mec/dashboard.php:258
2531
  msgid "Last Year"
2532
  msgstr ""
2533
 
2534
- #: app/features/mec/dashboard.php:270
2535
  msgid "Bar"
2536
  msgstr ""
2537
 
2538
- #: app/features/mec/dashboard.php:271
2539
  msgid "Line"
2540
  msgstr ""
2541
 
2542
- #: app/features/mec/dashboard.php:273
2543
  msgid "Filter"
2544
  msgstr ""
2545
 
2546
- #: app/features/mec/dashboard.php:289
2547
  #, php-format
2548
  msgid "Total Sells (%s)"
2549
  msgstr ""
2550
 
2551
- #: app/features/mec/dashboard.php:310
2552
  msgid "Change Log"
2553
  msgstr ""
2554
 
2555
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2556
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2557
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2558
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2559
  msgid "Styling Options"
2560
  msgstr ""
2561
 
2562
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2563
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2564
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2565
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2566
  msgid "Custom CSS"
2567
  msgstr ""
2568
 
2569
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2570
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2571
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2572
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2573
  #: app/features/mec/support.php:64
2574
  msgid "Messages"
@@ -2576,7 +1936,7 @@ msgstr ""
2576
 
2577
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2578
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2579
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2580
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2581
  #: app/features/mec/support.php:84
2582
  msgid "Support"
@@ -2589,24 +1949,25 @@ msgstr ""
2589
  #: app/features/mec/notifications.php:409
2590
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2591
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2592
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2593
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2594
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2595
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2596
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2597
  msgid "Save Changes"
2598
  msgstr ""
2599
 
2600
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2601
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2602
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2603
  #: app/features/mec/styling.php:313
2604
  msgid "Saved"
2605
  msgstr ""
2606
 
2607
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2608
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2609
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2610
  #: app/features/mec/styling.php:314
2611
  msgid "Settings Saved!"
2612
  msgstr ""
@@ -2812,6 +2173,15 @@ msgstr ""
2812
  msgid "Default values are d and F"
2813
  msgstr ""
2814
 
 
 
 
 
 
 
 
 
 
2815
  #: app/features/mec/meta_boxes/display_options.php:86
2816
  #: app/features/mec/meta_boxes/display_options.php:195
2817
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -2891,13 +2261,13 @@ msgstr ""
2891
 
2892
  #: app/features/mec/meta_boxes/display_options.php:287
2893
  #: app/features/mec/meta_boxes/display_options.php:296
2894
- #: app/libraries/main.php:323 app/libraries/main.php:1118
2895
  msgid "List View"
2896
  msgstr ""
2897
 
2898
  #: app/features/mec/meta_boxes/display_options.php:288
2899
  #: app/features/mec/meta_boxes/display_options.php:306
2900
- #: app/libraries/main.php:327 app/libraries/main.php:1112
2901
  msgid "Yearly View"
2902
  msgstr ""
2903
 
@@ -2908,13 +2278,13 @@ msgstr ""
2908
 
2909
  #: app/features/mec/meta_boxes/display_options.php:290
2910
  #: app/features/mec/meta_boxes/display_options.php:326
2911
- #: app/libraries/main.php:330 app/libraries/main.php:1114
2912
  msgid "Weekly View"
2913
  msgstr ""
2914
 
2915
  #: app/features/mec/meta_boxes/display_options.php:291
2916
  #: app/features/mec/meta_boxes/display_options.php:336
2917
- #: app/libraries/main.php:329 app/libraries/main.php:1115
2918
  msgid "Daily View"
2919
  msgstr ""
2920
 
@@ -3150,6 +2520,66 @@ msgstr ""
3150
  msgid "Show Search Form"
3151
  msgstr ""
3152
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3153
  #: app/features/mec/meta_boxes/search_form.php:59
3154
  #: app/features/mec/meta_boxes/search_form.php:106
3155
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3384,6 +2814,14 @@ msgstr ""
3384
  msgid "Invoice Link"
3385
  msgstr ""
3386
 
 
 
 
 
 
 
 
 
3387
  #: app/features/mec/notifications.php:145
3388
  msgid "Booking Verification"
3389
  msgstr ""
@@ -3400,7 +2838,7 @@ msgstr ""
3400
  msgid "Email/Booking verification link."
3401
  msgstr ""
3402
 
3403
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3404
  msgid "Booking Confirmation"
3405
  msgstr ""
3406
 
@@ -3477,7 +2915,7 @@ msgstr ""
3477
  msgid "Status of event"
3478
  msgstr ""
3479
 
3480
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3481
  msgid "Event Note"
3482
  msgstr ""
3483
 
@@ -3485,472 +2923,480 @@ msgstr ""
3485
  msgid "Admin events management link."
3486
  msgstr ""
3487
 
3488
- #: app/features/mec/settings.php:42
3489
  msgid "Archive Page Options"
3490
  msgstr ""
3491
 
3492
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3493
  msgid "Export Module Options"
3494
  msgstr ""
3495
 
3496
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3497
  msgid "Local Time Module"
3498
  msgstr ""
3499
 
3500
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3501
  msgid "QR Code Module"
3502
  msgstr ""
3503
 
3504
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3505
  msgid "Weather Module"
3506
  msgstr ""
3507
 
3508
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3509
  msgid "Additional Organizers"
3510
  msgstr ""
3511
 
3512
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3513
  msgid "Taxes / Fees"
3514
  msgstr ""
3515
 
3516
- #: app/features/mec/settings.php:250
3517
  msgid "Time Format"
3518
  msgstr ""
3519
 
3520
- #: app/features/mec/settings.php:253
3521
  msgid "12 hours format with AM/PM"
3522
  msgstr ""
3523
 
3524
- #: app/features/mec/settings.php:254
3525
  msgid "24 hours format"
3526
  msgstr ""
3527
 
3528
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3529
  msgid ""
3530
  "This option is for showing start/end time of events on frontend of website."
3531
  msgstr ""
3532
 
3533
- #: app/features/mec/settings.php:261
3534
  msgid "Hide Events"
3535
  msgstr ""
3536
 
3537
- #: app/features/mec/settings.php:264
3538
  msgid "On Event Start"
3539
  msgstr ""
3540
 
3541
- #: app/features/mec/settings.php:265
3542
  msgid "+1 Hour after start"
3543
  msgstr ""
3544
 
3545
- #: app/features/mec/settings.php:266
3546
  msgid "+2 Hours after start"
3547
  msgstr ""
3548
 
3549
- #: app/features/mec/settings.php:267
3550
  msgid "On Event End"
3551
  msgstr ""
3552
 
3553
- #: app/features/mec/settings.php:275
3554
  msgid "Multiple Day Events"
3555
  msgstr ""
3556
 
3557
- #: app/features/mec/settings.php:278
3558
  msgid "Show only first day on List/Grid/Slider skins"
3559
  msgstr ""
3560
 
3561
- #: app/features/mec/settings.php:279
3562
  msgid "Show only first day on all skins"
3563
  msgstr ""
3564
 
3565
- #: app/features/mec/settings.php:280
3566
  msgid "Show all days"
3567
  msgstr ""
3568
 
3569
- #: app/features/mec/settings.php:282
3570
  msgid ""
3571
  "For showing all days of multiple day events on frontend or only show the "
3572
  "first day."
3573
  msgstr ""
3574
 
3575
- #: app/features/mec/settings.php:288
3576
  msgid "Remove MEC Data on Plugin Uninstall"
3577
  msgstr ""
3578
 
3579
- #: app/features/mec/settings.php:298
 
 
 
 
3580
  msgid "Exclude Date Suffix"
3581
  msgstr ""
3582
 
3583
- #: app/features/mec/settings.php:301
3584
  msgid "Remove suffix from calendars"
3585
  msgstr ""
3586
 
3587
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3588
  msgid "Weekdays"
3589
  msgstr ""
3590
 
3591
- #: app/features/mec/settings.php:316
3592
  msgid ""
3593
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3594
  "and Friday."
3595
  msgstr ""
3596
 
3597
- #: app/features/mec/settings.php:323
3598
  msgid "Weekends"
3599
  msgstr ""
3600
 
3601
- #: app/features/mec/settings.php:331
3602
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3603
  msgstr ""
3604
 
3605
- #: app/features/mec/settings.php:339
3606
  msgid "Archive Pages"
3607
  msgstr ""
3608
 
3609
- #: app/features/mec/settings.php:342
3610
  msgid "Archive Page Title"
3611
  msgstr ""
3612
 
3613
- #: app/features/mec/settings.php:345
3614
  msgid "Default value is Events"
3615
  msgstr ""
3616
 
3617
- #: app/features/mec/settings.php:350
3618
  msgid "Archive Page Skin"
3619
  msgstr ""
3620
 
3621
- #: app/features/mec/settings.php:357
3622
  msgid "Default value is Calendar/Monthly View"
3623
  msgstr ""
3624
 
3625
- #: app/features/mec/settings.php:362
3626
  msgid "Category Page Skin"
3627
  msgstr ""
3628
 
3629
- #: app/features/mec/settings.php:369
3630
  msgid "Default value is List View"
3631
  msgstr ""
3632
 
3633
- #: app/features/mec/settings.php:374
3634
  msgid "Category Events Method"
3635
  msgstr ""
3636
 
3637
- #: app/features/mec/settings.php:378
3638
  msgid "Expired Events"
3639
  msgstr ""
3640
 
3641
- #: app/features/mec/settings.php:380
3642
  msgid "Default value is Upcoming Events"
3643
  msgstr ""
3644
 
3645
- #: app/features/mec/settings.php:385
3646
  msgid "Events Archive Status"
3647
  msgstr ""
3648
 
3649
- #: app/features/mec/settings.php:388
3650
  msgid "Enabled (Recommended)"
3651
  msgstr ""
3652
 
3653
- #: app/features/mec/settings.php:391
3654
  msgid ""
3655
  "If you disable it, then you should create a page as archive page of MEC. "
3656
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3657
  "MEC rewrite rules."
3658
  msgstr ""
3659
 
3660
- #: app/features/mec/settings.php:401
3661
  msgid "Main Slug"
3662
  msgstr ""
3663
 
3664
- #: app/features/mec/settings.php:404
3665
  msgid ""
3666
  "Default value is events. Valid characters are lowercase a-z, - character and "
3667
  "numbers."
3668
  msgstr ""
3669
 
3670
- #: app/features/mec/settings.php:408
3671
  msgid "Category Slug"
3672
  msgstr ""
3673
 
3674
- #: app/features/mec/settings.php:411
3675
  msgid ""
3676
  "It's slug of MEC categories, you can change it to events-cat or something "
3677
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3678
  "character and numbers."
3679
  msgstr ""
3680
 
3681
- #: app/features/mec/settings.php:421
3682
  msgid "Single Event Date Format"
3683
  msgstr ""
3684
 
3685
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3686
  msgid "Default is M d Y"
3687
  msgstr ""
3688
 
3689
- #: app/features/mec/settings.php:428
3690
  msgid "Date Method"
3691
  msgstr ""
3692
 
3693
- #: app/features/mec/settings.php:431
3694
  msgid "Next occurrence date"
3695
  msgstr ""
3696
 
3697
- #: app/features/mec/settings.php:432
3698
  msgid "Referred date"
3699
  msgstr ""
3700
 
3701
- #: app/features/mec/settings.php:434
3702
  msgid ""
3703
  "\"Referred date\" shows the event date based on referred date in event list."
3704
  msgstr ""
3705
 
3706
- #: app/features/mec/settings.php:438
3707
  msgid "Single Event Style"
3708
  msgstr ""
3709
 
3710
- #: app/features/mec/settings.php:441
3711
  msgid "Default Style"
3712
  msgstr ""
3713
 
3714
- #: app/features/mec/settings.php:442
3715
  msgid "Modern Style"
3716
  msgstr ""
3717
 
3718
- #: app/features/mec/settings.php:444
3719
  msgid "Choose your single event style."
3720
  msgstr ""
3721
 
3722
- #: app/features/mec/settings.php:453
3723
  msgid "Currency"
3724
  msgstr ""
3725
 
3726
- #: app/features/mec/settings.php:463
3727
  msgid "Currency Sign"
3728
  msgstr ""
3729
 
3730
- #: app/features/mec/settings.php:466
3731
  msgid "Default value will be \"currency\" if you leave it empty."
3732
  msgstr ""
3733
 
3734
- #: app/features/mec/settings.php:470
3735
  msgid "Currency Position"
3736
  msgstr ""
3737
 
3738
- #: app/features/mec/settings.php:473
3739
  msgid "Before $10"
3740
  msgstr ""
3741
 
3742
- #: app/features/mec/settings.php:474
3743
  msgid "After 10$"
3744
  msgstr ""
3745
 
3746
- #: app/features/mec/settings.php:479
3747
  msgid "Thousand Separator"
3748
  msgstr ""
3749
 
3750
- #: app/features/mec/settings.php:485
3751
  msgid "Decimal Separator"
3752
  msgstr ""
3753
 
3754
- #: app/features/mec/settings.php:495
3755
  msgid "No decimal"
3756
  msgstr ""
3757
 
3758
- #: app/features/mec/settings.php:511
3759
  msgid "Show Google Maps on event page"
3760
  msgstr ""
3761
 
3762
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3763
- #: app/features/mec/settings.php:1135
3764
  msgid "API Key"
3765
  msgstr ""
3766
 
3767
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3768
- #: app/features/mec/settings.php:1145
3769
  msgid "Required!"
3770
  msgstr ""
3771
 
3772
- #: app/features/mec/settings.php:523
3773
  msgid "Zoom level"
3774
  msgstr ""
3775
 
3776
- #: app/features/mec/settings.php:530
3777
  msgid ""
3778
  "For Google Maps module in single event page. In Google Maps skin, it will "
3779
  "caculate the zoom level automatically based on event boundaries."
3780
  msgstr ""
3781
 
3782
- #: app/features/mec/settings.php:534
3783
  msgid "Google Maps Style"
3784
  msgstr ""
3785
 
3786
- #: app/features/mec/settings.php:538
3787
  msgid "Default"
3788
  msgstr ""
3789
 
3790
- #: app/features/mec/settings.php:546
3791
  msgid "Direction on single event"
3792
  msgstr ""
3793
 
3794
- #: app/features/mec/settings.php:550
3795
  msgid "Simple Method"
3796
  msgstr ""
3797
 
3798
- #: app/features/mec/settings.php:551
3799
  msgid "Advanced Method"
3800
  msgstr ""
3801
 
3802
- #: app/features/mec/settings.php:556
3803
  msgid "Lightbox Date Format"
3804
  msgstr ""
3805
 
3806
- #: app/features/mec/settings.php:559
3807
  msgid "Default value is M d Y"
3808
  msgstr ""
3809
 
3810
- #: app/features/mec/settings.php:563
3811
  msgid "Google Maps API"
3812
  msgstr ""
3813
 
3814
- #: app/features/mec/settings.php:567
3815
  msgid "Don't load Google Maps API library"
3816
  msgstr ""
3817
 
3818
- #: app/features/mec/settings.php:569
3819
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3820
  msgstr ""
3821
 
3822
- #: app/features/mec/settings.php:581
3823
  msgid "Enable Google Recaptcha"
3824
  msgstr ""
3825
 
3826
- #: app/features/mec/settings.php:588
3827
  msgid "Enable on booking form"
3828
  msgstr ""
3829
 
3830
- #: app/features/mec/settings.php:594
3831
  msgid "Enable on \"Frontend Event Submittion\" form"
3832
  msgstr ""
3833
 
3834
- #: app/features/mec/settings.php:598
3835
  msgid "Site Key"
3836
  msgstr ""
3837
 
3838
- #: app/features/mec/settings.php:618
 
 
 
 
3839
  msgid ""
3840
  "Show export module (iCal export and add to Google calendars) on event page"
3841
  msgstr ""
3842
 
3843
- #: app/features/mec/settings.php:625
3844
  msgid "Google Calendar"
3845
  msgstr ""
3846
 
3847
- #: app/features/mec/settings.php:645
3848
  msgid "Show event time based on local time of visitor on event page"
3849
  msgstr ""
3850
 
3851
- #: app/features/mec/settings.php:661
3852
  msgid "Show QR code of event in details page and booking invoice"
3853
  msgstr ""
3854
 
3855
- #: app/features/mec/settings.php:679
3856
  msgid "Show weather module on event page"
3857
  msgstr ""
3858
 
3859
- #: app/features/mec/settings.php:687
3860
  #, php-format
3861
  msgid "You can get a free API Key from %s"
3862
  msgstr ""
3863
 
3864
- #: app/features/mec/settings.php:699
3865
  msgid "Show countdown module on event page"
3866
  msgstr ""
3867
 
3868
- #: app/features/mec/settings.php:704
3869
  msgid "Countdown Style"
3870
  msgstr ""
3871
 
3872
- #: app/features/mec/settings.php:707
3873
  msgid "Plain Style"
3874
  msgstr ""
3875
 
3876
- #: app/features/mec/settings.php:708
3877
  msgid "Flip Style"
3878
  msgstr ""
3879
 
3880
- #: app/features/mec/settings.php:720
3881
  msgid "Show social network module"
3882
  msgstr ""
3883
 
3884
- #: app/features/mec/settings.php:745
3885
  msgid "Show next event module on event page"
3886
  msgstr ""
3887
 
3888
- #: app/features/mec/settings.php:750
3889
  msgid "Method"
3890
  msgstr ""
3891
 
3892
- #: app/features/mec/settings.php:753
3893
  msgid "Next Occurrence of Current Event"
3894
  msgstr ""
3895
 
3896
- #: app/features/mec/settings.php:754
3897
  msgid "Next Occurrence of Other Events"
3898
  msgstr ""
3899
 
3900
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
3901
  msgid "Date Format"
3902
  msgstr ""
3903
 
3904
- #: app/features/mec/settings.php:771
3905
  msgid "Events List Page"
3906
  msgstr ""
3907
 
3908
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
3909
  #, php-format
3910
  msgid "Put %s shortcode into the page."
3911
  msgstr ""
3912
 
3913
- #: app/features/mec/settings.php:783
3914
  msgid "Add/Edit Events Page"
3915
  msgstr ""
3916
 
3917
- #: app/features/mec/settings.php:797
3918
  msgid "Enable event submission by guest (Not logged-in) users"
3919
  msgstr ""
3920
 
3921
- #: app/features/mec/settings.php:804
3922
  msgid "Enable mandatory email and name for guest user"
3923
  msgstr ""
3924
 
3925
- #: app/features/mec/settings.php:808
3926
  msgid "Frontend Event Submission Sections"
3927
  msgstr ""
3928
 
3929
- #: app/features/mec/settings.php:830
3930
  msgid "Event Categories"
3931
  msgstr ""
3932
 
3933
- #: app/features/mec/settings.php:836
3934
  msgid "Event Labels"
3935
  msgstr ""
3936
 
3937
- #: app/features/mec/settings.php:848
3938
  msgid "Event Tags"
3939
  msgstr ""
3940
 
3941
- #: app/features/mec/settings.php:860
3942
  msgid "Event Organizer"
3943
  msgstr ""
3944
 
3945
- #: app/features/mec/settings.php:872
3946
  msgid "Booking Options"
3947
  msgstr ""
3948
 
3949
- #: app/features/mec/settings.php:878
3950
  msgid "Fees/Taxes Options"
3951
  msgstr ""
3952
 
3953
- #: app/features/mec/settings.php:886
3954
  #, php-format
3955
  msgid ""
3956
  "Users can put a note for editors while they're submitting the event. Also "
@@ -3958,203 +3404,208 @@ msgid ""
3958
  "users' note in email."
3959
  msgstr ""
3960
 
3961
- #: app/features/mec/settings.php:890
3962
  msgid "Visibility of Note"
3963
  msgstr ""
3964
 
3965
- #: app/features/mec/settings.php:893
3966
  msgid "Always"
3967
  msgstr ""
3968
 
3969
- #: app/features/mec/settings.php:894
3970
  msgid "While event is not published"
3971
  msgstr ""
3972
 
3973
- #: app/features/mec/settings.php:897
3974
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3975
  msgstr ""
3976
 
3977
- #: app/features/mec/settings.php:903
3978
  msgid "Exceptional days"
3979
  msgstr ""
3980
 
3981
- #: app/features/mec/settings.php:907
3982
  msgid "Show exceptional days option on Add/Edit events page"
3983
  msgstr ""
3984
 
3985
- #: app/features/mec/settings.php:908
3986
  msgid ""
3987
  "Using this option you can include/exclude certain days to/from event "
3988
  "occurrence dates."
3989
  msgstr ""
3990
 
3991
- #: app/features/mec/settings.php:918
3992
  msgid ""
3993
  "Show additional organizers option on Add/Edit events page and single event "
3994
  "page."
3995
  msgstr ""
3996
 
3997
- #: app/features/mec/settings.php:932
3998
  msgid "Enable booking module"
3999
  msgstr ""
4000
 
4001
- #: app/features/mec/settings.php:940
4002
  msgid "Default is Y-m-d"
4003
  msgstr ""
4004
 
4005
- #: app/features/mec/settings.php:944
4006
  msgid "Maximum Dates"
4007
  msgstr ""
4008
 
4009
- #: app/features/mec/settings.php:946
4010
  msgid "Default is 6"
4011
  msgstr ""
4012
 
4013
- #: app/features/mec/settings.php:950
4014
  msgid "Thank You Page"
4015
  msgstr ""
4016
 
4017
- #: app/features/mec/settings.php:958
4018
  msgid ""
4019
  "User redirects to this page after booking. Leave it empty if you want to "
4020
  "disable it."
4021
  msgstr ""
4022
 
4023
- #: app/features/mec/settings.php:966
4024
  msgid "Enable Express Attendees Form"
4025
  msgstr ""
4026
 
4027
- #: app/features/mec/settings.php:968
4028
  msgid ""
4029
  "Users are able to apply first attendee information for other attendees in "
4030
  "the booking form."
4031
  msgstr ""
4032
 
4033
- #: app/features/mec/settings.php:971
4034
  msgid "Email verification"
4035
  msgstr ""
4036
 
4037
- #: app/features/mec/settings.php:977
4038
  msgid "Auto verification for free bookings"
4039
  msgstr ""
4040
 
4041
- #: app/features/mec/settings.php:986
4042
  msgid "Auto verification for paid bookings"
4043
  msgstr ""
4044
 
4045
- #: app/features/mec/settings.php:996
4046
  msgid "Auto confirmation for free bookings"
4047
  msgstr ""
4048
 
4049
- #: app/features/mec/settings.php:1005
4050
  msgid "Auto confirmation for paid bookings"
4051
  msgstr ""
4052
 
4053
- #: app/features/mec/settings.php:1022
4054
  msgid "Enable coupons module"
4055
  msgstr ""
4056
 
4057
- #: app/features/mec/settings.php:1039
4058
  msgid "Enable taxes / fees module"
4059
  msgstr ""
4060
 
4061
- #: app/features/mec/settings.php:1044
4062
  msgid "Add Fee"
4063
  msgstr ""
4064
 
4065
- #: app/features/mec/settings.php:1100
4066
  msgid "Enable BuddyPress Integration"
4067
  msgstr ""
4068
 
4069
- #: app/features/mec/settings.php:1107
4070
  msgid "Show \"Attendees Module\" in event details page"
4071
  msgstr ""
4072
 
4073
- #: app/features/mec/settings.php:1111
4074
  msgid "Attendees Limit"
4075
  msgstr ""
4076
 
4077
- #: app/features/mec/settings.php:1119
4078
  msgid "Add booking activity to user profile"
4079
  msgstr ""
4080
 
4081
- #: app/features/mec/settings.php:1130
4082
  msgid "Enable Mailchimp Integration"
4083
  msgstr ""
4084
 
4085
- #: app/features/mec/settings.php:1142
4086
  msgid "List ID"
4087
  msgstr ""
4088
 
4089
- #: app/features/mec/settings.php:1149
4090
  msgid "Subscription Status"
4091
  msgstr ""
4092
 
4093
- #: app/features/mec/settings.php:1152
4094
  msgid "Subscribe automatically"
4095
  msgstr ""
4096
 
4097
- #: app/features/mec/settings.php:1153
4098
  msgid "Subscribe by verification"
4099
  msgstr ""
4100
 
4101
- #: app/features/mec/settings.php:1155
4102
  msgid ""
4103
  "If you choose \"Subscribe by verification\" then an email will send to user "
4104
  "by mailchimp for subscription verification."
4105
  msgstr ""
4106
 
4107
- #: app/features/mec/settings.php:1165
4108
  #, php-format
4109
  msgid "%s is required to use this section."
4110
  msgstr ""
4111
 
4112
- #: app/features/mec/settings.php:1168
4113
  msgid "Purchase Code"
4114
  msgstr ""
4115
 
4116
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4117
  msgid "UnVerified"
4118
  msgstr ""
4119
 
4120
- #: app/features/mec/settings.php:1177
4121
  msgid ""
4122
  "Please insert your purchase code validation. read documentation for more "
4123
  "information."
4124
  msgstr ""
4125
 
4126
- #: app/features/mec/settings.php:1180
4127
  msgid "Product Name"
4128
  msgstr ""
4129
 
4130
- #: app/features/mec/settings.php:1183
4131
  msgid "1 License for MEC Plugin"
4132
  msgstr ""
4133
 
4134
- #: app/features/mec/settings.php:1184
4135
  msgid "5 License for MEC Plugin"
4136
  msgstr ""
4137
 
4138
- #: app/features/mec/settings.php:1185
4139
  msgid "10 License for MEC Plugin"
4140
  msgstr ""
4141
 
4142
- #: app/features/mec/settings.php:1192
4143
  msgid "MEC Deactivation"
4144
  msgstr ""
4145
 
4146
- #: app/features/mec/settings.php:1194
4147
  msgid "Deactivate"
4148
  msgstr ""
4149
 
4150
- #: app/features/mec/settings.php:1196
4151
  msgid ""
4152
  "For deactivation first delete your purchase from above field then press save "
4153
  "after that click on deactivate for deactivate this purchase code from this "
4154
  "domain then you can activate another domain."
4155
  msgstr ""
4156
 
4157
- #: app/features/mec/settings.php:1257
4158
  msgid "Please Refresh Page"
4159
  msgstr ""
4160
 
@@ -4305,7 +3756,7 @@ msgstr ""
4305
  msgid "eg. https://webnus.net"
4306
  msgstr ""
4307
 
4308
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4309
  #: app/skins/single.php:194
4310
  msgid "Other Organizers"
4311
  msgstr ""
@@ -4320,6 +3771,15 @@ msgstr ""
4320
  msgid "%s Price"
4321
  msgstr ""
4322
 
 
 
 
 
 
 
 
 
 
4323
  #: app/libraries/factory.php:148
4324
  msgid "M.E. Calendar"
4325
  msgstr ""
@@ -4391,31 +3851,31 @@ msgstr ""
4391
  msgid "There is no excerpt because this is a protected post."
4392
  msgstr ""
4393
 
4394
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4395
  msgid "Grid View"
4396
  msgstr ""
4397
 
4398
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4399
  msgid "Agenda View"
4400
  msgstr ""
4401
 
4402
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4403
  msgid "Full Calendar"
4404
  msgstr ""
4405
 
4406
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4407
  msgid "Calendar/Monthly View"
4408
  msgstr ""
4409
 
4410
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4411
  msgid "Timetable View"
4412
  msgstr ""
4413
 
4414
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4415
  msgid "Masonry View"
4416
  msgstr ""
4417
 
4418
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4419
  msgid "Map View"
4420
  msgstr ""
4421
 
@@ -4439,31 +3899,31 @@ msgstr ""
4439
  msgid "Slider View"
4440
  msgstr ""
4441
 
4442
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4443
  msgid "SU"
4444
  msgstr ""
4445
 
4446
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4447
  msgid "MO"
4448
  msgstr ""
4449
 
4450
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4451
  msgid "TU"
4452
  msgstr ""
4453
 
4454
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4455
  msgid "WE"
4456
  msgstr ""
4457
 
4458
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4459
  msgid "TH"
4460
  msgstr ""
4461
 
4462
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4463
  msgid "FR"
4464
  msgstr ""
4465
 
4466
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4467
  msgid "SA"
4468
  msgstr ""
4469
 
@@ -4487,226 +3947,252 @@ msgstr ""
4487
  msgid "Twitter"
4488
  msgstr ""
4489
 
4490
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4491
  msgid "Linkedin"
4492
  msgstr ""
4493
 
4494
- #: app/libraries/main.php:1052
 
 
 
 
4495
  msgid "Share on Facebook"
4496
  msgstr ""
4497
 
4498
- #: app/libraries/main.php:1064
4499
  msgid "Google Plus"
4500
  msgstr ""
4501
 
4502
- #: app/libraries/main.php:1076
4503
  msgid "Tweet"
4504
  msgstr ""
4505
 
4506
- #: app/libraries/main.php:1456
4507
  msgid "Your booking successfully verified."
4508
  msgstr ""
4509
 
4510
- #: app/libraries/main.php:1457
4511
  msgid "Your booking cannot verify!"
4512
  msgstr ""
4513
 
4514
- #: app/libraries/main.php:1469
4515
  msgid "Your booking successfully canceled."
4516
  msgstr ""
4517
 
4518
- #: app/libraries/main.php:1470
4519
  msgid "Your booking cannot be canceled."
4520
  msgstr ""
4521
 
4522
- #: app/libraries/main.php:1474
4523
  msgid "You canceled the payment successfully."
4524
  msgstr ""
4525
 
4526
- #: app/libraries/main.php:1478
4527
  msgid "You returned from payment gateway successfully."
4528
  msgstr ""
4529
 
4530
- #: app/libraries/main.php:1502
4531
  msgid "Cannot find the booking!"
4532
  msgstr ""
4533
 
4534
- #: app/libraries/main.php:1502
4535
  msgid "Booking is invalid."
4536
  msgstr ""
4537
 
4538
- #: app/libraries/main.php:1523
4539
  #, php-format
4540
  msgid "%s Invoice"
4541
  msgstr ""
4542
 
4543
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4544
  msgid "Billing"
4545
  msgstr ""
4546
 
4547
- #: app/libraries/main.php:1586
4548
  msgid "Total"
4549
  msgstr ""
4550
 
4551
- #: app/libraries/main.php:1619
4552
  msgid "Security nonce is not valid."
4553
  msgstr ""
4554
 
4555
- #: app/libraries/main.php:1619
4556
  msgid "iCal export stopped!"
4557
  msgstr ""
4558
 
4559
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4560
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4561
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4562
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4563
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4564
  msgid "Sort"
4565
  msgstr ""
4566
 
4567
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4568
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4569
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4570
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4571
  msgid "Required Field"
4572
  msgstr ""
4573
 
4574
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4575
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4576
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4577
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4578
  msgid "Insert a label for this field"
4579
  msgstr ""
4580
 
4581
- #: app/libraries/main.php:1962
4582
  msgid "HTML and shortcode are allowed."
4583
  msgstr ""
4584
 
4585
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4586
- #: app/libraries/main.php:2093
4587
  msgid "Option"
4588
  msgstr ""
4589
 
4590
- #: app/libraries/main.php:2127
4591
  #, php-format
4592
  msgid "Instead of %s, the page title with a link will be show."
4593
  msgstr ""
4594
 
4595
- #: app/libraries/main.php:2129
4596
  msgid "Agreement Page"
4597
  msgstr ""
4598
 
4599
- #: app/libraries/main.php:2138
4600
  msgid "Status"
4601
  msgstr ""
4602
 
4603
- #: app/libraries/main.php:2140
4604
  msgid "Checked by default"
4605
  msgstr ""
4606
 
4607
- #: app/libraries/main.php:2141
4608
  msgid "Unchecked by default"
4609
  msgstr ""
4610
 
4611
- #: app/libraries/main.php:2163
4612
  msgid "Insert a label for this option"
4613
  msgstr ""
4614
 
4615
- #: app/libraries/main.php:2830
 
 
 
 
4616
  #, php-format
4617
  msgid "Copy of %s"
4618
  msgstr ""
4619
 
4620
- #: app/libraries/main.php:3467
4621
  msgid "Booked an event."
4622
  msgstr ""
4623
 
4624
- #: app/libraries/main.php:3508
4625
  #, php-format
4626
  msgid "%s booked %s event."
4627
  msgstr ""
4628
 
4629
- #: app/libraries/main.php:3950
4630
  msgid "Taxonomies"
4631
  msgstr ""
4632
 
4633
- #: app/libraries/main.php:3952
4634
  msgid "Category Plural Label"
4635
  msgstr ""
4636
 
4637
- #: app/libraries/main.php:3953
4638
  msgid "Category Singular Label"
4639
  msgstr ""
4640
 
4641
- #: app/libraries/main.php:3954
4642
  msgid "Label Plural Label"
4643
  msgstr ""
4644
 
4645
- #: app/libraries/main.php:3955
4646
  msgid "Label Singular Label"
4647
  msgstr ""
4648
 
4649
- #: app/libraries/main.php:3955
4650
  msgid "label"
4651
  msgstr ""
4652
 
4653
- #: app/libraries/main.php:3956
4654
  msgid "Location Plural Label"
4655
  msgstr ""
4656
 
4657
- #: app/libraries/main.php:3957
4658
  msgid "Location Singular Label"
4659
  msgstr ""
4660
 
4661
- #: app/libraries/main.php:3958
4662
  msgid "Organizer Plural Label"
4663
  msgstr ""
4664
 
4665
- #: app/libraries/main.php:3959
4666
  msgid "Organizer Singular Label"
4667
  msgstr ""
4668
 
4669
- #: app/libraries/main.php:3965
4670
  msgid "Sunday abbreviation"
4671
  msgstr ""
4672
 
4673
- #: app/libraries/main.php:3966
4674
  msgid "Monday abbreviation"
4675
  msgstr ""
4676
 
4677
- #: app/libraries/main.php:3967
4678
  msgid "Tuesday abbreviation"
4679
  msgstr ""
4680
 
4681
- #: app/libraries/main.php:3968
4682
  msgid "Wednesday abbreviation"
4683
  msgstr ""
4684
 
4685
- #: app/libraries/main.php:3969
4686
  msgid "Thursday abbreviation"
4687
  msgstr ""
4688
 
4689
- #: app/libraries/main.php:3970
4690
  msgid "Friday abbreviation"
4691
  msgstr ""
4692
 
4693
- #: app/libraries/main.php:3971
4694
  msgid "Saturday abbreviation"
4695
  msgstr ""
4696
 
4697
- #: app/libraries/main.php:3975
4698
  msgid "Others"
4699
  msgstr ""
4700
 
4701
- #: app/libraries/main.php:3977
4702
  msgid "Booking Success Message"
4703
  msgstr ""
4704
 
4705
- #: app/libraries/main.php:3978
 
 
 
 
 
 
4706
  msgid "Register Button"
4707
  msgstr ""
4708
 
4709
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4710
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4711
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4712
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4720,11 +4206,11 @@ msgstr ""
4720
  msgid "REGISTER"
4721
  msgstr ""
4722
 
4723
- #: app/libraries/main.php:3979
4724
  msgid "View Detail Button"
4725
  msgstr ""
4726
 
4727
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4728
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4729
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4730
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4735,39 +4221,39 @@ msgstr ""
4735
  msgid "View Detail"
4736
  msgstr ""
4737
 
4738
- #: app/libraries/main.php:3980
4739
  msgid "Event Detail Button"
4740
  msgstr ""
4741
 
4742
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4743
  msgid "Event Detail"
4744
  msgstr ""
4745
 
4746
- #: app/libraries/main.php:3982
4747
  msgid "More Info Link"
4748
  msgstr ""
4749
 
4750
- #: app/libraries/main.php:3985
4751
  msgid "Ticket (Singular)"
4752
  msgstr ""
4753
 
4754
- #: app/libraries/main.php:3986
4755
  msgid "Tickets (Plural)"
4756
  msgstr ""
4757
 
4758
- #: app/libraries/main.php:4052
4759
  msgid "EventON"
4760
  msgstr ""
4761
 
4762
- #: app/libraries/main.php:4053
4763
  msgid "The Events Calendar"
4764
  msgstr ""
4765
 
4766
- #: app/libraries/main.php:4054
4767
  msgid "Events Schedule WP Plugin"
4768
  msgstr ""
4769
 
4770
- #: app/libraries/main.php:4055
4771
  msgid "Calendarize It"
4772
  msgstr ""
4773
 
@@ -4791,6 +4277,14 @@ msgstr ""
4791
  msgid "A new event is added."
4792
  msgstr ""
4793
 
 
 
 
 
 
 
 
 
4794
  #: app/libraries/render.php:337
4795
  msgid "Skin controller does not exist."
4796
  msgstr ""
@@ -4819,6 +4313,10 @@ msgstr ""
4819
  msgid "%s tickets"
4820
  msgstr ""
4821
 
 
 
 
 
4822
  #: app/modules/booking/steps/checkout.php:33
4823
  msgid "Discount Coupon"
4824
  msgstr ""
@@ -4845,6 +4343,10 @@ msgstr ""
4845
  msgid "Next"
4846
  msgstr ""
4847
 
 
 
 
 
4848
  #: app/modules/booking/steps/tickets.php:18
4849
  msgid "Book Event"
4850
  msgstr ""
@@ -5135,6 +4637,10 @@ msgstr ""
5135
  msgid "QR Code : "
5136
  msgstr ""
5137
 
 
 
 
 
5138
  #. Plugin URI of the plugin/theme
5139
  msgid "http://webnus.net/plugins/modern-events-calendar/"
5140
  msgstr ""
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2018-09-09 16:06+0430\n"
5
+ "PO-Revision-Date: 2018-09-09 16:06+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-SearchPath-0: .\n"
17
 
 
18
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
19
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
20
  #: app/widgets/MEC.php:23
25
  msgid "Content"
26
  msgstr ""
27
 
28
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
29
+ #: app/features/mec.php:238 app/features/mec.php:264
30
  msgid "Shortcode"
31
  msgstr ""
32
 
34
  msgid "Select from predefined shortcodes"
35
  msgstr ""
36
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
37
  #: app/features/colors.php:50 app/features/fes/form.php:566
38
+ #: app/features/mec/settings.php:847
39
  msgid "Event Color"
40
  msgstr ""
41
 
42
+ #: app/features/contextual.php:55 app/features/mec.php:195
43
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
44
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
45
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
46
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
47
  #: app/features/mec/support.php:18
48
  msgid "Settings"
49
  msgstr ""
50
 
51
+ #: app/features/contextual.php:62 app/features/events.php:910
52
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
53
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
54
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
55
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
56
+ #: app/features/mec/support.php:27
57
+ msgid "Booking Form"
58
+ msgstr ""
59
+
60
  #: app/features/contextual.php:63
61
  msgid ""
62
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
69
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
70
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
71
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
72
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
73
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
74
  msgid "Payment Gateways"
75
  msgstr ""
84
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
85
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
86
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
87
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
88
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
89
  msgid "Notifications"
90
  msgstr ""
145
  "\"0\" allowfullscreen></iframe>"
146
  msgstr ""
147
 
148
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
149
+ #: app/features/mec/settings.php:252
150
  msgid "General Options"
151
  msgstr ""
152
 
153
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
154
+ #: app/features/mec/settings.php:404
155
  msgid "Slugs/Permalinks"
156
  msgstr ""
157
 
158
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
159
+ #: app/features/mec/settings.php:424
160
  msgid "Event Details/Single Event Page"
161
  msgstr ""
162
 
163
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
164
+ #: app/features/mec/settings.php:456
165
  msgid "Currency Options"
166
  msgstr ""
167
 
168
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
169
+ #: app/features/mec/settings.php:508
170
  msgid "Google Maps Options"
171
  msgstr ""
172
 
173
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
174
+ #: app/features/mec/settings.php:582
175
  msgid "Google Recaptcha Options"
176
  msgstr ""
177
 
178
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
179
+ #: app/features/mec/settings.php:700
180
  msgid "Countdown Options"
181
  msgstr ""
182
 
183
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
184
+ #: app/features/mec/settings.php:721
185
  msgid "Social Networks"
186
  msgstr ""
187
 
188
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
189
+ #: app/features/mec/settings.php:746
190
  msgid "Next Event Module"
191
  msgstr ""
192
 
193
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
194
+ #: app/features/mec/settings.php:774
195
  msgid "Frontend Event Submission"
196
  msgstr ""
197
 
198
  #: app/features/contextual.php:298 app/features/events.php:570
199
+ #: app/features/mec/settings.php:131
200
  msgid "Exceptional Days"
201
  msgstr ""
202
 
203
+ #: app/features/contextual.php:308 app/features/events.php:253
204
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
205
+ msgid "Booking"
206
+ msgstr ""
207
+
208
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
209
+ #: app/features/mec/settings.php:1019
210
  msgid "Coupons"
211
  msgstr ""
212
 
213
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
214
+ #: app/features/mec/settings.php:1101
215
  msgid "BuddyPress Integration"
216
  msgstr ""
217
 
218
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
219
+ #: app/features/mec/settings.php:1131
220
  msgid "Mailchimp Integration"
221
  msgstr ""
222
 
223
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
224
+ #: app/features/mec/settings.php:1167
225
  msgid "MEC Activation"
226
  msgstr ""
227
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
228
  #: app/features/events.php:122 app/features/ix/export.php:33
229
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
230
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
231
  msgid "Events"
232
  msgstr ""
233
 
234
+ #: app/features/events.php:123
235
+ #: app/features/mec/meta_boxes/display_options.php:678
236
+ #: app/features/mec/meta_boxes/display_options.php:716
237
+ #: app/features/mec/meta_boxes/display_options.php:745
238
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
239
+ #: app/skins/yearly_view/tpl.php:69
240
+ msgid "Event"
241
+ msgstr ""
242
+
243
+ #: app/features/events.php:124 app/features/mec.php:188
244
  msgid "Add Event"
245
  msgstr ""
246
 
253
  msgid "No events found!"
254
  msgstr ""
255
 
256
+ #: app/features/events.php:127
257
+ msgid "All Events"
258
+ msgstr ""
259
+
260
  #: app/features/events.php:128
261
  msgid "Edit Event"
262
  msgstr ""
279
  #: app/features/mec/meta_boxes/search_form.php:285
280
  #: app/features/mec/meta_boxes/search_form.php:325
281
  #: app/features/mec/meta_boxes/search_form.php:372
282
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
283
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
284
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
285
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
287
  msgstr ""
288
 
289
  #: app/features/events.php:143 app/features/fes/form.php:518
290
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
291
+ #: app/libraries/main.php:3967
292
  msgid "Categories"
293
  msgstr ""
294
 
355
  #: app/features/events.php:286 app/features/events.php:1631
356
  #: app/features/events.php:1675 app/features/fes/form.php:479
357
  #: app/features/ix.php:2328 app/features/ix.php:2369
358
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
359
  msgid "Event Cost"
360
  msgstr ""
361
 
362
  #: app/features/events.php:289 app/features/fes/form.php:482
363
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
364
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
365
  #: app/skins/single/modern.php:179
366
  msgid "Cost"
374
  msgid "Guest Data"
375
  msgstr ""
376
 
377
+ #: app/features/events.php:370 app/features/fes/form.php:441
378
+ #: app/features/labels.php:151 app/features/organizers.php:268
379
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
380
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
381
+ msgid "Name"
382
+ msgstr ""
383
+
384
+ #: app/features/events.php:371 app/features/events.php:945
385
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
386
+ #: app/features/organizers.php:110 app/features/organizers.php:150
387
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
388
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
389
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
390
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
391
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
392
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
393
+ #: app/skins/single/modern.php:38
394
+ msgid "Email"
395
+ msgstr ""
396
+
397
  #: app/features/events.php:375 app/features/fes/form.php:221
398
  msgid "Date and Time"
399
  msgstr ""
403
  #: app/features/events.php:1675 app/features/fes/form.php:225
404
  #: app/features/fes/form.php:229 app/features/ix.php:2328
405
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
406
+ #: app/features/mec/dashboard.php:266
407
  #: app/features/mec/meta_boxes/display_options.php:42
408
  #: app/features/mec/meta_boxes/display_options.php:129
409
  #: app/features/mec/meta_boxes/display_options.php:225
435
  #: app/features/events.php:1675 app/features/fes/form.php:265
436
  #: app/features/fes/form.php:269 app/features/ix.php:2328
437
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
438
+ #: app/features/mec/dashboard.php:267
439
  msgid "End Date"
440
  msgstr ""
441
 
470
  msgstr ""
471
 
472
  #: app/features/events.php:481 app/features/fes/form.php:327
473
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
474
  msgid "Daily"
475
  msgstr ""
476
 
492
  msgstr ""
493
 
494
  #: app/features/events.php:486 app/features/fes/form.php:332
495
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
496
  msgid "Monthly"
497
  msgstr ""
498
 
499
  #: app/features/events.php:487 app/features/fes/form.php:333
500
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
501
  msgid "Yearly"
502
  msgstr ""
503
 
552
  msgid "Sunday"
553
  msgstr ""
554
 
555
+ #: app/features/events.php:508 app/features/events.php:580
556
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
557
+ #: app/modules/booking/steps/tickets.php:20
558
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
559
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
560
+ #: app/skins/single/modern.php:146
561
+ msgid "Date"
562
+ msgstr ""
563
+
564
  #: app/features/events.php:509 app/features/events.php:581
565
  #: app/features/events.php:623 app/features/events.php:743
566
  #: app/features/events.php:839 app/features/fes/form.php:355
605
  msgid "Exclude certain days from event occurrence dates."
606
  msgstr ""
607
 
608
+ #: app/features/events.php:620 app/features/mec/settings.php:871
609
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
610
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
611
  msgid "Hourly Schedule"
626
  #: app/features/events.php:631 app/features/events.php:643
627
  #: app/features/events.php:1449 app/features/events.php:1631
628
  #: app/features/events.php:1675 app/features/fes/form.php:214
629
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
630
  msgid "Title"
631
  msgstr ""
632
 
633
+ #: app/features/events.php:632 app/features/events.php:644
634
+ #: app/features/events.php:752 app/features/events.php:784
635
+ msgid "Description"
636
+ msgstr ""
637
+
638
  #: app/features/events.php:633 app/features/events.php:645
639
  #: app/features/events.php:771 app/features/events.php:803
640
  #: app/features/events.php:859 app/features/events.php:884
641
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
642
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
643
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
644
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
645
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
646
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
647
+ #: app/libraries/main.php:2177
648
  msgid "Remove"
649
  msgstr ""
650
 
651
  #: app/features/events.php:665 app/features/fes/form.php:456
652
+ #: app/features/mec/settings.php:817
653
  msgid "Event Links"
654
  msgstr ""
655
 
656
  #: app/features/events.php:667 app/features/fes/form.php:458
657
+ #: app/libraries/main.php:3996
658
  msgid "Event Link"
659
  msgstr ""
660
 
670
  msgstr ""
671
 
672
  #: app/features/events.php:672 app/features/fes/form.php:463
673
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
674
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
675
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
676
  msgid "More Info"
698
  msgid "Total booking limits"
699
  msgstr ""
700
 
701
+ #: app/features/events.php:715 app/features/events.php:769
702
+ #: app/features/events.php:801 app/modules/booking/default.php:82
703
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
704
+ msgid "Unlimited"
705
+ msgstr ""
706
+
707
  #: app/features/events.php:717
708
  msgid "100"
709
  msgstr ""
710
 
711
  #: app/features/events.php:735 app/libraries/book.php:59
712
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
713
  msgid "Tickets"
714
  msgstr ""
715
 
724
  msgid "Ticket Name"
725
  msgstr ""
726
 
727
+ #: app/features/events.php:756 app/features/events.php:788
728
+ msgid "Price"
729
+ msgstr ""
730
+
731
  #: app/features/events.php:757 app/features/events.php:789
732
  msgid "Insert 0 for free ticket. Only numbers please."
733
  msgstr ""
753
  msgstr ""
754
 
755
  #: app/features/events.php:845 app/features/events.php:870
756
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
757
  msgid "Fee Title"
758
  msgstr ""
759
 
760
+ #: app/features/events.php:849 app/features/events.php:874
761
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
762
+ msgid "Amount"
763
+ msgstr ""
764
+
765
  #: app/features/events.php:850 app/features/events.php:875
766
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
767
  msgid ""
768
  "Fee amount, considered as fixed amount if you set the type to amount "
769
  "otherwise considered as percentage"
770
  msgstr ""
771
 
772
+ #: app/features/events.php:854 app/features/events.php:879
773
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
774
+ msgid "Percent"
775
+ msgstr ""
776
+
777
  #: app/features/events.php:855 app/features/events.php:880
778
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
779
  msgid "Amount (Per Ticket)"
780
  msgstr ""
781
 
782
  #: app/features/events.php:856 app/features/events.php:881
783
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
784
  msgid "Amount (Per Booking)"
785
  msgstr ""
786
 
787
  #: app/features/events.php:944 app/features/mec/regform.php:117
788
+ #: app/libraries/main.php:1856
789
  msgid "Text"
790
  msgstr ""
791
 
792
  #: app/features/events.php:946 app/features/mec/regform.php:119
793
  #: app/features/organizers.php:102 app/features/organizers.php:146
794
+ #: app/libraries/main.php:1914
795
  msgid "Tel"
796
  msgstr ""
797
 
798
  #: app/features/events.php:947 app/features/mec/regform.php:120
799
+ #: app/libraries/main.php:1943
800
  msgid "Textarea"
801
  msgstr ""
802
 
803
  #: app/features/events.php:948 app/features/mec/regform.php:121
804
+ #: app/libraries/main.php:1996
805
  msgid "Checkboxes"
806
  msgstr ""
807
 
808
  #: app/features/events.php:949 app/features/mec/regform.php:122
809
+ #: app/libraries/main.php:2040
810
  msgid "Radio Buttons"
811
  msgstr ""
812
 
855
  #: app/features/mec/meta_boxes/search_form.php:436
856
  #: app/features/mec/meta_boxes/search_form.php:443
857
  #: app/features/mec/meta_boxes/search_form.php:450
858
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
859
  msgid "Dropdown"
860
  msgstr ""
861
 
862
  #: app/features/events.php:951 app/features/mec/regform.php:124
863
+ #: app/libraries/main.php:2131
864
  msgid "Agreement"
865
  msgstr ""
866
 
867
  #: app/features/events.php:952 app/features/mec/regform.php:125
868
+ #: app/libraries/main.php:1972
869
  msgid "Paragraph"
870
  msgstr ""
871
 
891
  #: app/features/events.php:1675 app/features/ix.php:2328
892
  #: app/features/ix.php:2369 app/features/locations.php:58
893
  #: app/features/locations.php:229 app/features/locations.php:281
894
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
895
  #: app/features/mec/meta_boxes/display_options.php:641
896
  #: app/features/mec/meta_boxes/search_form.php:38
897
  #: app/features/mec/meta_boxes/search_form.php:85
901
  #: app/features/mec/meta_boxes/search_form.php:292
902
  #: app/features/mec/meta_boxes/search_form.php:332
903
  #: app/features/mec/meta_boxes/search_form.php:379
904
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
905
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
906
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
907
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
908
  #: app/skins/single/modern.php:77
911
 
912
  #: app/features/events.php:1451 app/features/events.php:1631
913
  #: app/features/events.php:1675 app/features/ix.php:2328
914
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
915
  #: app/features/mec/meta_boxes/display_options.php:642
916
  #: app/features/mec/meta_boxes/search_form.php:45
917
  #: app/features/mec/meta_boxes/search_form.php:92
924
  #: app/features/mec/meta_boxes/search_form.php:433
925
  #: app/features/organizers.php:58 app/features/organizers.php:199
926
  #: app/features/organizers.php:255 app/features/organizers.php:257
927
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
928
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
929
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
930
  #: app/skins/single/modern.php:21
943
  msgid "iCal Export"
944
  msgstr ""
945
 
946
+ #: app/features/events.php:1569 app/features/events.php:1570
947
+ msgid "CSV Export"
948
+ msgstr ""
949
+
950
+ #: app/features/events.php:1572 app/features/events.php:1573
951
+ msgid "MS Excel Export"
952
+ msgstr ""
953
+
954
  #: app/features/events.php:1575 app/features/events.php:1576
955
  msgid "XML Export"
956
  msgstr ""
963
  msgid "Duplicate"
964
  msgstr ""
965
 
966
+ #: app/features/events.php:1631 app/features/events.php:1675
967
+ #: app/features/ix.php:2328 app/features/ix.php:2369
968
+ #: app/features/labels.php:150 app/features/locations.php:228
969
+ #: app/features/organizers.php:198
970
+ msgid "ID"
971
+ msgstr ""
972
+
973
  #: app/features/events.php:1631 app/features/events.php:1675
974
  #: app/features/ix.php:2328 app/features/ix.php:2369
975
  msgid "Start Time"
1054
  msgstr ""
1055
 
1056
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1057
  msgid "Submit"
1058
  msgstr ""
1059
 
1060
  #: app/features/fes/form.php:435
1061
  msgid "User Data"
1062
  msgstr ""
1063
+
1064
+ #: app/features/fes/form.php:438
1065
+ msgid "eg. yourname@gmail.com"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1066
  msgstr ""
1067
 
1068
+ #: app/features/fes/form.php:442 app/features/organizers.php:269
1069
+ msgid "eg. John Smith"
1070
  msgstr ""
1071
 
1072
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1073
+ msgid "Featured Image"
1074
+ msgstr ""
1075
+
1076
+ #: app/features/fes/form.php:501
1077
+ msgid "Remove Image"
1078
+ msgstr ""
1079
+
1080
+ #: app/features/fes/form.php:543 app/features/labels.php:61
1081
+ #: app/features/labels.php:194 app/features/mec.php:191
1082
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1083
+ #: app/skins/single/default.php:131 app/skins/single/default.php:333
1084
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1085
+ msgid "Labels"
1086
+ msgstr ""
1087
+
1088
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1089
+ #: app/features/mec/meta_boxes/filter.php:138
1090
+ msgid "Tags"
1091
+ msgstr ""
1092
+
1093
+ #: app/features/fes/form.php:590
1094
+ msgid "Insert your desired tags, comma separated."
1095
+ msgstr ""
1096
+
1097
+ #: app/features/fes/list.php:21
1098
+ msgid "Click again to remove!"
1099
+ msgstr ""
1100
+
1101
+ #: app/features/fes/list.php:64 app/features/fes/list.php:78
1102
+ msgid "Add new"
1103
+ msgstr ""
1104
+
1105
+ #: app/features/fes/list.php:70
1106
+ msgid "View"
1107
  msgstr ""
1108
 
1109
+ #: app/features/fes/list.php:78
1110
+ #, php-format
1111
+ msgid "No events found! %s"
1112
  msgstr ""
1113
 
1114
  #: app/features/ix.php:95
1143
  msgid "Third Party plugin is invalid!"
1144
  msgstr ""
1145
 
1146
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1147
+ msgid "Both of API key and Calendar ID are required!"
1148
+ msgstr ""
1149
+
1150
  #: app/features/ix.php:1961 app/features/ix.php:2791
1151
  msgid "Please select some events to import!"
1152
  msgstr ""
1168
  msgid "All seems good! Please click %s for authenticating your app."
1169
  msgstr ""
1170
 
1171
+ #: app/features/ix.php:2527
1172
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1173
+ msgstr ""
1174
+
1175
+ #: app/features/ix.php:2722
1176
+ #, php-format
1177
+ msgid "%s events added to Google Calendar successfully."
1178
+ msgstr ""
1179
+
1180
+ #: app/features/ix.php:2723
1181
+ #, php-format
1182
+ msgid "%s previously added events get updated."
1183
+ msgstr ""
1184
+
1185
+ #: app/features/ix.php:2724
1186
+ #, php-format
1187
+ msgid "%s events failed to add for following reasons: %s"
1188
+ msgstr ""
1189
+
1190
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1191
+ msgid "Please insert your facebook page's link."
1192
+ msgstr ""
1193
+
1194
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1195
+ msgid ""
1196
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1197
+ "valid facebook page link."
1198
+ msgstr ""
1199
+
1200
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1201
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1202
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1242
  "This will export all of your website events' data into your desired format."
1243
  msgstr ""
1244
 
1245
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1246
  msgid "iCal"
1247
  msgstr ""
1248
 
1280
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1281
  msgstr ""
1282
 
1283
+ #: app/features/ix/export.php:37
1284
+ msgid "Bookings"
1285
+ msgstr ""
1286
+
1287
  #: app/features/ix/export_g_calendar.php:25
1288
  msgid "Add events to Google Calendar"
1289
  msgstr ""
1340
  msgid "Add to Google Calendar"
1341
  msgstr ""
1342
 
1343
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1344
  msgid "Checking ..."
1345
  msgstr ""
1346
 
1382
  msgid "ICS Feed"
1383
  msgstr ""
1384
 
1385
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1386
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1387
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1388
+ #: app/features/mec/settings.php:1039
1389
  #, php-format
1390
  msgid "%s is required to use this feature."
1391
  msgstr ""
1397
  #: app/features/mec/meta_boxes/display_options.php:558
1398
  #: app/features/mec/meta_boxes/display_options.php:608
1399
  #: app/features/mec/meta_boxes/display_options.php:734
1400
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1401
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1402
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1403
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1404
  msgid "Pro version of Modern Events Calendar"
1405
  msgstr ""
1406
 
1617
  msgid "Select label color"
1618
  msgstr ""
1619
 
1620
+ #: app/features/labels.php:153 app/features/locations.php:231
1621
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1622
+ msgid "Count"
1623
+ msgstr ""
1624
+
1625
  #: app/features/labels.php:154 app/features/locations.php:232
1626
  #: app/features/organizers.php:202
1627
  msgid "Slug"
1632
  msgid "Event %s"
1633
  msgstr ""
1634
 
1635
+ #: app/features/locations.php:59 app/features/mec.php:192
1636
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1637
  msgid "Locations"
1638
  msgstr ""
1639
 
1701
  msgid "eg. City Hall"
1702
  msgstr ""
1703
 
1704
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1705
  msgid "Event Location"
1706
  msgstr ""
1707
 
1723
  msgid "Don't show map in single event page"
1724
  msgstr ""
1725
 
1726
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1727
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1728
  msgid "Organizers"
1729
  msgstr ""
1730
 
1731
+ #: app/features/mec.php:194 app/features/mec.php:208
1732
+ #: app/features/mec/dashboard.php:96
1733
  msgid "Shortcodes"
1734
  msgstr ""
1735
 
1736
+ #: app/features/mec.php:195
1737
  msgid "MEC - Settings"
1738
  msgstr ""
1739
 
1740
+ #: app/features/mec.php:210
1741
  msgid "Add Shortcode"
1742
  msgstr ""
1743
 
1744
+ #: app/features/mec.php:211
1745
  msgid "Add New Shortcode"
1746
  msgstr ""
1747
 
1748
+ #: app/features/mec.php:212
1749
  msgid "No shortcodes found!"
1750
  msgstr ""
1751
 
1752
+ #: app/features/mec.php:213
1753
  msgid "All Shortcodes"
1754
  msgstr ""
1755
 
1756
+ #: app/features/mec.php:214
1757
  msgid "Edit shortcodes"
1758
  msgstr ""
1759
 
1760
+ #: app/features/mec.php:215
1761
  msgid "No shortcodes found in Trash!"
1762
  msgstr ""
1763
 
1764
+ #: app/features/mec.php:262
1765
  msgid "Display Options"
1766
  msgstr ""
1767
 
1768
+ #: app/features/mec.php:263
1769
  msgid "Filter Options"
1770
  msgstr ""
1771
 
1772
+ #: app/features/mec.php:265
1773
  msgid "Search Form"
1774
  msgstr ""
1775
 
1776
+ #: app/features/mec.php:553
1777
  msgid "Single Event Display Method"
1778
  msgstr ""
1779
 
1780
+ #: app/features/mec.php:558
1781
  msgid "Separate Window"
1782
  msgstr ""
1783
 
1784
+ #: app/features/mec.php:559
1785
  msgid "Modal 1"
1786
  msgstr ""
1787
 
1788
+ #: app/features/mec/dashboard.php:58
1789
  #, php-format
1790
  msgid "Welcome %s"
1791
  msgstr ""
1792
 
1793
+ #: app/features/mec/dashboard.php:61
1794
  #, php-format
1795
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1796
  msgstr ""
1797
 
1798
+ #: app/features/mec/dashboard.php:61
1799
  msgid "Modern Event Calendar"
1800
  msgstr ""
1801
 
1802
+ #: app/features/mec/dashboard.php:61
1803
  msgid "Modern Event Calendar (Lite)"
1804
  msgstr ""
1805
 
1806
+ #: app/features/mec/dashboard.php:70
1807
  msgid "Version"
1808
  msgstr ""
1809
 
1810
+ #: app/features/mec/dashboard.php:79
1811
  #, php-format
1812
  msgid ""
1813
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1815
  "Spots, etc you should %s to the Pro version."
1816
  msgstr ""
1817
 
1818
+ #: app/features/mec/dashboard.php:79
1819
  msgid "lite"
1820
  msgstr ""
1821
 
1822
+ #: app/features/mec/dashboard.php:79
1823
  msgid "upgrade"
1824
  msgstr ""
1825
 
1826
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1827
  msgid "Documentation"
1828
  msgstr ""
1829
 
1830
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1831
  msgid ""
1832
  "Our documentation is simple and functional with full details and cover all "
1833
  "essential aspects from beginning to the most advanced parts."
1834
  msgstr ""
1835
 
1836
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1837
  msgid "DOCUMENTATION"
1838
  msgstr ""
1839
 
1840
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1841
  msgid "Support Forum"
1842
  msgstr ""
1843
 
1844
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1845
  msgid ""
1846
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1847
  "If you want to use this service you need to upgrade your plugin to Pro "
1848
  "version. Click on the following button."
1849
  msgstr ""
1850
 
1851
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1852
  msgid ""
1853
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1854
  "If you have any issues please don't hesitate to contact us, we will reply as "
1855
  "soon as possible."
1856
  msgstr ""
1857
 
1858
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1859
  msgid "GO PREMIUM"
1860
  msgstr ""
1861
 
1862
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1863
  msgid "OPEN A TICKET"
1864
  msgstr ""
1865
 
1866
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1867
  msgid "Upcoming Events"
1868
  msgstr ""
1869
 
1870
+ #: app/features/mec/dashboard.php:181
1871
  msgid "Popular Gateways"
1872
  msgstr ""
1873
 
1874
+ #: app/features/mec/dashboard.php:232
1875
  msgid "Total Bookings"
1876
  msgstr ""
1877
 
1878
+ #: app/features/mec/dashboard.php:259
1879
  msgid "This Month"
1880
  msgstr ""
1881
 
1882
+ #: app/features/mec/dashboard.php:260
1883
  msgid "Last Month"
1884
  msgstr ""
1885
 
1886
+ #: app/features/mec/dashboard.php:261
1887
  msgid "This Year"
1888
  msgstr ""
1889
 
1890
+ #: app/features/mec/dashboard.php:262
1891
  msgid "Last Year"
1892
  msgstr ""
1893
 
1894
+ #: app/features/mec/dashboard.php:274
1895
  msgid "Bar"
1896
  msgstr ""
1897
 
1898
+ #: app/features/mec/dashboard.php:275
1899
  msgid "Line"
1900
  msgstr ""
1901
 
1902
+ #: app/features/mec/dashboard.php:277
1903
  msgid "Filter"
1904
  msgstr ""
1905
 
1906
+ #: app/features/mec/dashboard.php:293
1907
  #, php-format
1908
  msgid "Total Sells (%s)"
1909
  msgstr ""
1910
 
1911
+ #: app/features/mec/dashboard.php:314
1912
  msgid "Change Log"
1913
  msgstr ""
1914
 
1915
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1916
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1917
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1918
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1919
  msgid "Styling Options"
1920
  msgstr ""
1921
 
1922
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1923
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1924
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1925
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1926
  msgid "Custom CSS"
1927
  msgstr ""
1928
 
1929
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1930
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1931
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1932
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1933
  #: app/features/mec/support.php:64
1934
  msgid "Messages"
1936
 
1937
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1938
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1939
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1940
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1941
  #: app/features/mec/support.php:84
1942
  msgid "Support"
1949
  #: app/features/mec/notifications.php:409
1950
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
1951
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
1952
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
1953
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
1954
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
1955
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
1956
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
1957
+ #: app/features/mec/styling.php:335
1958
  msgid "Save Changes"
1959
  msgstr ""
1960
 
1961
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
1962
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
1963
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
1964
  #: app/features/mec/styling.php:313
1965
  msgid "Saved"
1966
  msgstr ""
1967
 
1968
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
1969
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
1970
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
1971
  #: app/features/mec/styling.php:314
1972
  msgid "Settings Saved!"
1973
  msgstr ""
2173
  msgid "Default values are d and F"
2174
  msgstr ""
2175
 
2176
+ #: app/features/mec/meta_boxes/display_options.php:85
2177
+ #: app/features/mec/meta_boxes/display_options.php:194
2178
+ #: app/features/mec/meta_boxes/display_options.php:244
2179
+ #: app/features/mec/meta_boxes/display_options.php:632
2180
+ #: app/features/mec/meta_boxes/display_options.php:806
2181
+ #: app/features/mec/meta_boxes/display_options.php:877
2182
+ msgid "Limit"
2183
+ msgstr ""
2184
+
2185
  #: app/features/mec/meta_boxes/display_options.php:86
2186
  #: app/features/mec/meta_boxes/display_options.php:195
2187
  #: app/features/mec/meta_boxes/display_options.php:245
2261
 
2262
  #: app/features/mec/meta_boxes/display_options.php:287
2263
  #: app/features/mec/meta_boxes/display_options.php:296
2264
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2265
  msgid "List View"
2266
  msgstr ""
2267
 
2268
  #: app/features/mec/meta_boxes/display_options.php:288
2269
  #: app/features/mec/meta_boxes/display_options.php:306
2270
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2271
  msgid "Yearly View"
2272
  msgstr ""
2273
 
2278
 
2279
  #: app/features/mec/meta_boxes/display_options.php:290
2280
  #: app/features/mec/meta_boxes/display_options.php:326
2281
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2282
  msgid "Weekly View"
2283
  msgstr ""
2284
 
2285
  #: app/features/mec/meta_boxes/display_options.php:291
2286
  #: app/features/mec/meta_boxes/display_options.php:336
2287
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2288
  msgid "Daily View"
2289
  msgstr ""
2290
 
2520
  msgid "Show Search Form"
2521
  msgstr ""
2522
 
2523
+ #: app/features/mec/meta_boxes/search_form.php:33
2524
+ #: app/features/mec/meta_boxes/search_form.php:40
2525
+ #: app/features/mec/meta_boxes/search_form.php:47
2526
+ #: app/features/mec/meta_boxes/search_form.php:54
2527
+ #: app/features/mec/meta_boxes/search_form.php:61
2528
+ #: app/features/mec/meta_boxes/search_form.php:68
2529
+ #: app/features/mec/meta_boxes/search_form.php:80
2530
+ #: app/features/mec/meta_boxes/search_form.php:87
2531
+ #: app/features/mec/meta_boxes/search_form.php:94
2532
+ #: app/features/mec/meta_boxes/search_form.php:101
2533
+ #: app/features/mec/meta_boxes/search_form.php:108
2534
+ #: app/features/mec/meta_boxes/search_form.php:115
2535
+ #: app/features/mec/meta_boxes/search_form.php:127
2536
+ #: app/features/mec/meta_boxes/search_form.php:134
2537
+ #: app/features/mec/meta_boxes/search_form.php:141
2538
+ #: app/features/mec/meta_boxes/search_form.php:148
2539
+ #: app/features/mec/meta_boxes/search_form.php:155
2540
+ #: app/features/mec/meta_boxes/search_form.php:162
2541
+ #: app/features/mec/meta_boxes/search_form.php:174
2542
+ #: app/features/mec/meta_boxes/search_form.php:181
2543
+ #: app/features/mec/meta_boxes/search_form.php:193
2544
+ #: app/features/mec/meta_boxes/search_form.php:200
2545
+ #: app/features/mec/meta_boxes/search_form.php:207
2546
+ #: app/features/mec/meta_boxes/search_form.php:214
2547
+ #: app/features/mec/meta_boxes/search_form.php:221
2548
+ #: app/features/mec/meta_boxes/search_form.php:228
2549
+ #: app/features/mec/meta_boxes/search_form.php:240
2550
+ #: app/features/mec/meta_boxes/search_form.php:247
2551
+ #: app/features/mec/meta_boxes/search_form.php:254
2552
+ #: app/features/mec/meta_boxes/search_form.php:261
2553
+ #: app/features/mec/meta_boxes/search_form.php:268
2554
+ #: app/features/mec/meta_boxes/search_form.php:275
2555
+ #: app/features/mec/meta_boxes/search_form.php:287
2556
+ #: app/features/mec/meta_boxes/search_form.php:294
2557
+ #: app/features/mec/meta_boxes/search_form.php:301
2558
+ #: app/features/mec/meta_boxes/search_form.php:308
2559
+ #: app/features/mec/meta_boxes/search_form.php:315
2560
+ #: app/features/mec/meta_boxes/search_form.php:327
2561
+ #: app/features/mec/meta_boxes/search_form.php:334
2562
+ #: app/features/mec/meta_boxes/search_form.php:341
2563
+ #: app/features/mec/meta_boxes/search_form.php:348
2564
+ #: app/features/mec/meta_boxes/search_form.php:355
2565
+ #: app/features/mec/meta_boxes/search_form.php:362
2566
+ #: app/features/mec/meta_boxes/search_form.php:374
2567
+ #: app/features/mec/meta_boxes/search_form.php:381
2568
+ #: app/features/mec/meta_boxes/search_form.php:388
2569
+ #: app/features/mec/meta_boxes/search_form.php:395
2570
+ #: app/features/mec/meta_boxes/search_form.php:402
2571
+ #: app/features/mec/meta_boxes/search_form.php:409
2572
+ #: app/features/mec/meta_boxes/search_form.php:421
2573
+ #: app/features/mec/meta_boxes/search_form.php:428
2574
+ #: app/features/mec/meta_boxes/search_form.php:435
2575
+ #: app/features/mec/meta_boxes/search_form.php:442
2576
+ #: app/features/mec/meta_boxes/search_form.php:449
2577
+ #: app/features/mec/meta_boxes/search_form.php:456
2578
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2579
+ #: app/features/mec/settings.php:554
2580
+ msgid "Disabled"
2581
+ msgstr ""
2582
+
2583
  #: app/features/mec/meta_boxes/search_form.php:59
2584
  #: app/features/mec/meta_boxes/search_form.php:106
2585
  #: app/features/mec/meta_boxes/search_form.php:153
2814
  msgid "Invoice Link"
2815
  msgstr ""
2816
 
2817
+ #: app/features/mec/notifications.php:140
2818
+ #: app/features/mec/notifications.php:177
2819
+ #: app/features/mec/notifications.php:214
2820
+ #: app/features/mec/notifications.php:255
2821
+ #: app/features/mec/notifications.php:307
2822
+ msgid "Total Attendees"
2823
+ msgstr ""
2824
+
2825
  #: app/features/mec/notifications.php:145
2826
  msgid "Booking Verification"
2827
  msgstr ""
2838
  msgid "Email/Booking verification link."
2839
  msgstr ""
2840
 
2841
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2842
  msgid "Booking Confirmation"
2843
  msgstr ""
2844
 
2915
  msgid "Status of event"
2916
  msgstr ""
2917
 
2918
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
2919
  msgid "Event Note"
2920
  msgstr ""
2921
 
2923
  msgid "Admin events management link."
2924
  msgstr ""
2925
 
2926
+ #: app/features/mec/settings.php:47
2927
  msgid "Archive Page Options"
2928
  msgstr ""
2929
 
2930
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
2931
  msgid "Export Module Options"
2932
  msgstr ""
2933
 
2934
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
2935
  msgid "Local Time Module"
2936
  msgstr ""
2937
 
2938
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
2939
  msgid "QR Code Module"
2940
  msgstr ""
2941
 
2942
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
2943
  msgid "Weather Module"
2944
  msgstr ""
2945
 
2946
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
2947
  msgid "Additional Organizers"
2948
  msgstr ""
2949
 
2950
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
2951
  msgid "Taxes / Fees"
2952
  msgstr ""
2953
 
2954
+ #: app/features/mec/settings.php:255
2955
  msgid "Time Format"
2956
  msgstr ""
2957
 
2958
+ #: app/features/mec/settings.php:258
2959
  msgid "12 hours format with AM/PM"
2960
  msgstr ""
2961
 
2962
+ #: app/features/mec/settings.php:259
2963
  msgid "24 hours format"
2964
  msgstr ""
2965
 
2966
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
2967
  msgid ""
2968
  "This option is for showing start/end time of events on frontend of website."
2969
  msgstr ""
2970
 
2971
+ #: app/features/mec/settings.php:266
2972
  msgid "Hide Events"
2973
  msgstr ""
2974
 
2975
+ #: app/features/mec/settings.php:269
2976
  msgid "On Event Start"
2977
  msgstr ""
2978
 
2979
+ #: app/features/mec/settings.php:270
2980
  msgid "+1 Hour after start"
2981
  msgstr ""
2982
 
2983
+ #: app/features/mec/settings.php:271
2984
  msgid "+2 Hours after start"
2985
  msgstr ""
2986
 
2987
+ #: app/features/mec/settings.php:272
2988
  msgid "On Event End"
2989
  msgstr ""
2990
 
2991
+ #: app/features/mec/settings.php:280
2992
  msgid "Multiple Day Events"
2993
  msgstr ""
2994
 
2995
+ #: app/features/mec/settings.php:283
2996
  msgid "Show only first day on List/Grid/Slider skins"
2997
  msgstr ""
2998
 
2999
+ #: app/features/mec/settings.php:284
3000
  msgid "Show only first day on all skins"
3001
  msgstr ""
3002
 
3003
+ #: app/features/mec/settings.php:285
3004
  msgid "Show all days"
3005
  msgstr ""
3006
 
3007
+ #: app/features/mec/settings.php:287
3008
  msgid ""
3009
  "For showing all days of multiple day events on frontend or only show the "
3010
  "first day."
3011
  msgstr ""
3012
 
3013
+ #: app/features/mec/settings.php:293
3014
  msgid "Remove MEC Data on Plugin Uninstall"
3015
  msgstr ""
3016
 
3017
+ #: app/features/mec/settings.php:297
3018
+ msgid "Enabled"
3019
+ msgstr ""
3020
+
3021
+ #: app/features/mec/settings.php:303
3022
  msgid "Exclude Date Suffix"
3023
  msgstr ""
3024
 
3025
+ #: app/features/mec/settings.php:306
3026
  msgid "Remove suffix from calendars"
3027
  msgstr ""
3028
 
3029
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3030
  msgid "Weekdays"
3031
  msgstr ""
3032
 
3033
+ #: app/features/mec/settings.php:321
3034
  msgid ""
3035
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3036
  "and Friday."
3037
  msgstr ""
3038
 
3039
+ #: app/features/mec/settings.php:328
3040
  msgid "Weekends"
3041
  msgstr ""
3042
 
3043
+ #: app/features/mec/settings.php:336
3044
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3045
  msgstr ""
3046
 
3047
+ #: app/features/mec/settings.php:344
3048
  msgid "Archive Pages"
3049
  msgstr ""
3050
 
3051
+ #: app/features/mec/settings.php:347
3052
  msgid "Archive Page Title"
3053
  msgstr ""
3054
 
3055
+ #: app/features/mec/settings.php:350
3056
  msgid "Default value is Events"
3057
  msgstr ""
3058
 
3059
+ #: app/features/mec/settings.php:355
3060
  msgid "Archive Page Skin"
3061
  msgstr ""
3062
 
3063
+ #: app/features/mec/settings.php:362
3064
  msgid "Default value is Calendar/Monthly View"
3065
  msgstr ""
3066
 
3067
+ #: app/features/mec/settings.php:367
3068
  msgid "Category Page Skin"
3069
  msgstr ""
3070
 
3071
+ #: app/features/mec/settings.php:374
3072
  msgid "Default value is List View"
3073
  msgstr ""
3074
 
3075
+ #: app/features/mec/settings.php:379
3076
  msgid "Category Events Method"
3077
  msgstr ""
3078
 
3079
+ #: app/features/mec/settings.php:383
3080
  msgid "Expired Events"
3081
  msgstr ""
3082
 
3083
+ #: app/features/mec/settings.php:385
3084
  msgid "Default value is Upcoming Events"
3085
  msgstr ""
3086
 
3087
+ #: app/features/mec/settings.php:390
3088
  msgid "Events Archive Status"
3089
  msgstr ""
3090
 
3091
+ #: app/features/mec/settings.php:393
3092
  msgid "Enabled (Recommended)"
3093
  msgstr ""
3094
 
3095
+ #: app/features/mec/settings.php:396
3096
  msgid ""
3097
  "If you disable it, then you should create a page as archive page of MEC. "
3098
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3099
  "MEC rewrite rules."
3100
  msgstr ""
3101
 
3102
+ #: app/features/mec/settings.php:406
3103
  msgid "Main Slug"
3104
  msgstr ""
3105
 
3106
+ #: app/features/mec/settings.php:409
3107
  msgid ""
3108
  "Default value is events. Valid characters are lowercase a-z, - character and "
3109
  "numbers."
3110
  msgstr ""
3111
 
3112
+ #: app/features/mec/settings.php:413
3113
  msgid "Category Slug"
3114
  msgstr ""
3115
 
3116
+ #: app/features/mec/settings.php:416
3117
  msgid ""
3118
  "It's slug of MEC categories, you can change it to events-cat or something "
3119
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3120
  "character and numbers."
3121
  msgstr ""
3122
 
3123
+ #: app/features/mec/settings.php:426
3124
  msgid "Single Event Date Format"
3125
  msgstr ""
3126
 
3127
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3128
  msgid "Default is M d Y"
3129
  msgstr ""
3130
 
3131
+ #: app/features/mec/settings.php:433
3132
  msgid "Date Method"
3133
  msgstr ""
3134
 
3135
+ #: app/features/mec/settings.php:436
3136
  msgid "Next occurrence date"
3137
  msgstr ""
3138
 
3139
+ #: app/features/mec/settings.php:437
3140
  msgid "Referred date"
3141
  msgstr ""
3142
 
3143
+ #: app/features/mec/settings.php:439
3144
  msgid ""
3145
  "\"Referred date\" shows the event date based on referred date in event list."
3146
  msgstr ""
3147
 
3148
+ #: app/features/mec/settings.php:443
3149
  msgid "Single Event Style"
3150
  msgstr ""
3151
 
3152
+ #: app/features/mec/settings.php:446
3153
  msgid "Default Style"
3154
  msgstr ""
3155
 
3156
+ #: app/features/mec/settings.php:447
3157
  msgid "Modern Style"
3158
  msgstr ""
3159
 
3160
+ #: app/features/mec/settings.php:449
3161
  msgid "Choose your single event style."
3162
  msgstr ""
3163
 
3164
+ #: app/features/mec/settings.php:458
3165
  msgid "Currency"
3166
  msgstr ""
3167
 
3168
+ #: app/features/mec/settings.php:468
3169
  msgid "Currency Sign"
3170
  msgstr ""
3171
 
3172
+ #: app/features/mec/settings.php:471
3173
  msgid "Default value will be \"currency\" if you leave it empty."
3174
  msgstr ""
3175
 
3176
+ #: app/features/mec/settings.php:475
3177
  msgid "Currency Position"
3178
  msgstr ""
3179
 
3180
+ #: app/features/mec/settings.php:478
3181
  msgid "Before $10"
3182
  msgstr ""
3183
 
3184
+ #: app/features/mec/settings.php:479
3185
  msgid "After 10$"
3186
  msgstr ""
3187
 
3188
+ #: app/features/mec/settings.php:484
3189
  msgid "Thousand Separator"
3190
  msgstr ""
3191
 
3192
+ #: app/features/mec/settings.php:490
3193
  msgid "Decimal Separator"
3194
  msgstr ""
3195
 
3196
+ #: app/features/mec/settings.php:500
3197
  msgid "No decimal"
3198
  msgstr ""
3199
 
3200
+ #: app/features/mec/settings.php:516
3201
  msgid "Show Google Maps on event page"
3202
  msgstr ""
3203
 
3204
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3205
+ #: app/features/mec/settings.php:1140
3206
  msgid "API Key"
3207
  msgstr ""
3208
 
3209
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3210
+ #: app/features/mec/settings.php:1150
3211
  msgid "Required!"
3212
  msgstr ""
3213
 
3214
+ #: app/features/mec/settings.php:528
3215
  msgid "Zoom level"
3216
  msgstr ""
3217
 
3218
+ #: app/features/mec/settings.php:535
3219
  msgid ""
3220
  "For Google Maps module in single event page. In Google Maps skin, it will "
3221
  "caculate the zoom level automatically based on event boundaries."
3222
  msgstr ""
3223
 
3224
+ #: app/features/mec/settings.php:539
3225
  msgid "Google Maps Style"
3226
  msgstr ""
3227
 
3228
+ #: app/features/mec/settings.php:543
3229
  msgid "Default"
3230
  msgstr ""
3231
 
3232
+ #: app/features/mec/settings.php:551
3233
  msgid "Direction on single event"
3234
  msgstr ""
3235
 
3236
+ #: app/features/mec/settings.php:555
3237
  msgid "Simple Method"
3238
  msgstr ""
3239
 
3240
+ #: app/features/mec/settings.php:556
3241
  msgid "Advanced Method"
3242
  msgstr ""
3243
 
3244
+ #: app/features/mec/settings.php:561
3245
  msgid "Lightbox Date Format"
3246
  msgstr ""
3247
 
3248
+ #: app/features/mec/settings.php:564
3249
  msgid "Default value is M d Y"
3250
  msgstr ""
3251
 
3252
+ #: app/features/mec/settings.php:568
3253
  msgid "Google Maps API"
3254
  msgstr ""
3255
 
3256
+ #: app/features/mec/settings.php:572
3257
  msgid "Don't load Google Maps API library"
3258
  msgstr ""
3259
 
3260
+ #: app/features/mec/settings.php:574
3261
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3262
  msgstr ""
3263
 
3264
+ #: app/features/mec/settings.php:586
3265
  msgid "Enable Google Recaptcha"
3266
  msgstr ""
3267
 
3268
+ #: app/features/mec/settings.php:593
3269
  msgid "Enable on booking form"
3270
  msgstr ""
3271
 
3272
+ #: app/features/mec/settings.php:599
3273
  msgid "Enable on \"Frontend Event Submittion\" form"
3274
  msgstr ""
3275
 
3276
+ #: app/features/mec/settings.php:603
3277
  msgid "Site Key"
3278
  msgstr ""
3279
 
3280
+ #: app/features/mec/settings.php:609
3281
+ msgid "Secret Key"
3282
+ msgstr ""
3283
+
3284
+ #: app/features/mec/settings.php:623
3285
  msgid ""
3286
  "Show export module (iCal export and add to Google calendars) on event page"
3287
  msgstr ""
3288
 
3289
+ #: app/features/mec/settings.php:630
3290
  msgid "Google Calendar"
3291
  msgstr ""
3292
 
3293
+ #: app/features/mec/settings.php:650
3294
  msgid "Show event time based on local time of visitor on event page"
3295
  msgstr ""
3296
 
3297
+ #: app/features/mec/settings.php:666
3298
  msgid "Show QR code of event in details page and booking invoice"
3299
  msgstr ""
3300
 
3301
+ #: app/features/mec/settings.php:684
3302
  msgid "Show weather module on event page"
3303
  msgstr ""
3304
 
3305
+ #: app/features/mec/settings.php:692
3306
  #, php-format
3307
  msgid "You can get a free API Key from %s"
3308
  msgstr ""
3309
 
3310
+ #: app/features/mec/settings.php:704
3311
  msgid "Show countdown module on event page"
3312
  msgstr ""
3313
 
3314
+ #: app/features/mec/settings.php:709
3315
  msgid "Countdown Style"
3316
  msgstr ""
3317
 
3318
+ #: app/features/mec/settings.php:712
3319
  msgid "Plain Style"
3320
  msgstr ""
3321
 
3322
+ #: app/features/mec/settings.php:713
3323
  msgid "Flip Style"
3324
  msgstr ""
3325
 
3326
+ #: app/features/mec/settings.php:725
3327
  msgid "Show social network module"
3328
  msgstr ""
3329
 
3330
+ #: app/features/mec/settings.php:750
3331
  msgid "Show next event module on event page"
3332
  msgstr ""
3333
 
3334
+ #: app/features/mec/settings.php:755
3335
  msgid "Method"
3336
  msgstr ""
3337
 
3338
+ #: app/features/mec/settings.php:758
3339
  msgid "Next Occurrence of Current Event"
3340
  msgstr ""
3341
 
3342
+ #: app/features/mec/settings.php:759
3343
  msgid "Next Occurrence of Other Events"
3344
  msgstr ""
3345
 
3346
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3347
  msgid "Date Format"
3348
  msgstr ""
3349
 
3350
+ #: app/features/mec/settings.php:776
3351
  msgid "Events List Page"
3352
  msgstr ""
3353
 
3354
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3355
  #, php-format
3356
  msgid "Put %s shortcode into the page."
3357
  msgstr ""
3358
 
3359
+ #: app/features/mec/settings.php:788
3360
  msgid "Add/Edit Events Page"
3361
  msgstr ""
3362
 
3363
+ #: app/features/mec/settings.php:802
3364
  msgid "Enable event submission by guest (Not logged-in) users"
3365
  msgstr ""
3366
 
3367
+ #: app/features/mec/settings.php:809
3368
  msgid "Enable mandatory email and name for guest user"
3369
  msgstr ""
3370
 
3371
+ #: app/features/mec/settings.php:813
3372
  msgid "Frontend Event Submission Sections"
3373
  msgstr ""
3374
 
3375
+ #: app/features/mec/settings.php:835
3376
  msgid "Event Categories"
3377
  msgstr ""
3378
 
3379
+ #: app/features/mec/settings.php:841
3380
  msgid "Event Labels"
3381
  msgstr ""
3382
 
3383
+ #: app/features/mec/settings.php:853
3384
  msgid "Event Tags"
3385
  msgstr ""
3386
 
3387
+ #: app/features/mec/settings.php:865
3388
  msgid "Event Organizer"
3389
  msgstr ""
3390
 
3391
+ #: app/features/mec/settings.php:877
3392
  msgid "Booking Options"
3393
  msgstr ""
3394
 
3395
+ #: app/features/mec/settings.php:883
3396
  msgid "Fees/Taxes Options"
3397
  msgstr ""
3398
 
3399
+ #: app/features/mec/settings.php:891
3400
  #, php-format
3401
  msgid ""
3402
  "Users can put a note for editors while they're submitting the event. Also "
3404
  "users' note in email."
3405
  msgstr ""
3406
 
3407
+ #: app/features/mec/settings.php:895
3408
  msgid "Visibility of Note"
3409
  msgstr ""
3410
 
3411
+ #: app/features/mec/settings.php:898
3412
  msgid "Always"
3413
  msgstr ""
3414
 
3415
+ #: app/features/mec/settings.php:899
3416
  msgid "While event is not published"
3417
  msgstr ""
3418
 
3419
+ #: app/features/mec/settings.php:902
3420
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3421
  msgstr ""
3422
 
3423
+ #: app/features/mec/settings.php:908
3424
  msgid "Exceptional days"
3425
  msgstr ""
3426
 
3427
+ #: app/features/mec/settings.php:912
3428
  msgid "Show exceptional days option on Add/Edit events page"
3429
  msgstr ""
3430
 
3431
+ #: app/features/mec/settings.php:913
3432
  msgid ""
3433
  "Using this option you can include/exclude certain days to/from event "
3434
  "occurrence dates."
3435
  msgstr ""
3436
 
3437
+ #: app/features/mec/settings.php:923
3438
  msgid ""
3439
  "Show additional organizers option on Add/Edit events page and single event "
3440
  "page."
3441
  msgstr ""
3442
 
3443
+ #: app/features/mec/settings.php:937
3444
  msgid "Enable booking module"
3445
  msgstr ""
3446
 
3447
+ #: app/features/mec/settings.php:945
3448
  msgid "Default is Y-m-d"
3449
  msgstr ""
3450
 
3451
+ #: app/features/mec/settings.php:949
3452
  msgid "Maximum Dates"
3453
  msgstr ""
3454
 
3455
+ #: app/features/mec/settings.php:951
3456
  msgid "Default is 6"
3457
  msgstr ""
3458
 
3459
+ #: app/features/mec/settings.php:955
3460
  msgid "Thank You Page"
3461
  msgstr ""
3462
 
3463
+ #: app/features/mec/settings.php:963
3464
  msgid ""
3465
  "User redirects to this page after booking. Leave it empty if you want to "
3466
  "disable it."
3467
  msgstr ""
3468
 
3469
+ #: app/features/mec/settings.php:971
3470
  msgid "Enable Express Attendees Form"
3471
  msgstr ""
3472
 
3473
+ #: app/features/mec/settings.php:973
3474
  msgid ""
3475
  "Users are able to apply first attendee information for other attendees in "
3476
  "the booking form."
3477
  msgstr ""
3478
 
3479
+ #: app/features/mec/settings.php:976
3480
  msgid "Email verification"
3481
  msgstr ""
3482
 
3483
+ #: app/features/mec/settings.php:982
3484
  msgid "Auto verification for free bookings"
3485
  msgstr ""
3486
 
3487
+ #: app/features/mec/settings.php:991
3488
  msgid "Auto verification for paid bookings"
3489
  msgstr ""
3490
 
3491
+ #: app/features/mec/settings.php:1001
3492
  msgid "Auto confirmation for free bookings"
3493
  msgstr ""
3494
 
3495
+ #: app/features/mec/settings.php:1010
3496
  msgid "Auto confirmation for paid bookings"
3497
  msgstr ""
3498
 
3499
+ #: app/features/mec/settings.php:1027
3500
  msgid "Enable coupons module"
3501
  msgstr ""
3502
 
3503
+ #: app/features/mec/settings.php:1044
3504
  msgid "Enable taxes / fees module"
3505
  msgstr ""
3506
 
3507
+ #: app/features/mec/settings.php:1049
3508
  msgid "Add Fee"
3509
  msgstr ""
3510
 
3511
+ #: app/features/mec/settings.php:1105
3512
  msgid "Enable BuddyPress Integration"
3513
  msgstr ""
3514
 
3515
+ #: app/features/mec/settings.php:1112
3516
  msgid "Show \"Attendees Module\" in event details page"
3517
  msgstr ""
3518
 
3519
+ #: app/features/mec/settings.php:1116
3520
  msgid "Attendees Limit"
3521
  msgstr ""
3522
 
3523
+ #: app/features/mec/settings.php:1124
3524
  msgid "Add booking activity to user profile"
3525
  msgstr ""
3526
 
3527
+ #: app/features/mec/settings.php:1135
3528
  msgid "Enable Mailchimp Integration"
3529
  msgstr ""
3530
 
3531
+ #: app/features/mec/settings.php:1147
3532
  msgid "List ID"
3533
  msgstr ""
3534
 
3535
+ #: app/features/mec/settings.php:1154
3536
  msgid "Subscription Status"
3537
  msgstr ""
3538
 
3539
+ #: app/features/mec/settings.php:1157
3540
  msgid "Subscribe automatically"
3541
  msgstr ""
3542
 
3543
+ #: app/features/mec/settings.php:1158
3544
  msgid "Subscribe by verification"
3545
  msgstr ""
3546
 
3547
+ #: app/features/mec/settings.php:1160
3548
  msgid ""
3549
  "If you choose \"Subscribe by verification\" then an email will send to user "
3550
  "by mailchimp for subscription verification."
3551
  msgstr ""
3552
 
3553
+ #: app/features/mec/settings.php:1170
3554
  #, php-format
3555
  msgid "%s is required to use this section."
3556
  msgstr ""
3557
 
3558
+ #: app/features/mec/settings.php:1173
3559
  msgid "Purchase Code"
3560
  msgstr ""
3561
 
3562
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3563
+ #: app/features/mec/settings.php:1262
3564
+ msgid "Verified"
3565
+ msgstr ""
3566
+
3567
+ #: app/features/mec/settings.php:1180
3568
  msgid "UnVerified"
3569
  msgstr ""
3570
 
3571
+ #: app/features/mec/settings.php:1182
3572
  msgid ""
3573
  "Please insert your purchase code validation. read documentation for more "
3574
  "information."
3575
  msgstr ""
3576
 
3577
+ #: app/features/mec/settings.php:1185
3578
  msgid "Product Name"
3579
  msgstr ""
3580
 
3581
+ #: app/features/mec/settings.php:1188
3582
  msgid "1 License for MEC Plugin"
3583
  msgstr ""
3584
 
3585
+ #: app/features/mec/settings.php:1189
3586
  msgid "5 License for MEC Plugin"
3587
  msgstr ""
3588
 
3589
+ #: app/features/mec/settings.php:1190
3590
  msgid "10 License for MEC Plugin"
3591
  msgstr ""
3592
 
3593
+ #: app/features/mec/settings.php:1197
3594
  msgid "MEC Deactivation"
3595
  msgstr ""
3596
 
3597
+ #: app/features/mec/settings.php:1199
3598
  msgid "Deactivate"
3599
  msgstr ""
3600
 
3601
+ #: app/features/mec/settings.php:1201
3602
  msgid ""
3603
  "For deactivation first delete your purchase from above field then press save "
3604
  "after that click on deactivate for deactivate this purchase code from this "
3605
  "domain then you can activate another domain."
3606
  msgstr ""
3607
 
3608
+ #: app/features/mec/settings.php:1264
3609
  msgid "Please Refresh Page"
3610
  msgstr ""
3611
 
3756
  msgid "eg. https://webnus.net"
3757
  msgstr ""
3758
 
3759
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3760
  #: app/skins/single.php:194
3761
  msgid "Other Organizers"
3762
  msgstr ""
3771
  msgid "%s Price"
3772
  msgstr ""
3773
 
3774
+ #: app/libraries/book.php:516
3775
+ msgid "Discount"
3776
+ msgstr ""
3777
+
3778
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3779
+ #: app/modules/booking/default.php:369
3780
+ msgid "Download Invoice"
3781
+ msgstr ""
3782
+
3783
  #: app/libraries/factory.php:148
3784
  msgid "M.E. Calendar"
3785
  msgstr ""
3851
  msgid "There is no excerpt because this is a protected post."
3852
  msgstr ""
3853
 
3854
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
3855
  msgid "Grid View"
3856
  msgstr ""
3857
 
3858
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
3859
  msgid "Agenda View"
3860
  msgstr ""
3861
 
3862
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
3863
  msgid "Full Calendar"
3864
  msgstr ""
3865
 
3866
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
3867
  msgid "Calendar/Monthly View"
3868
  msgstr ""
3869
 
3870
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
3871
  msgid "Timetable View"
3872
  msgstr ""
3873
 
3874
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
3875
  msgid "Masonry View"
3876
  msgstr ""
3877
 
3878
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
3879
  msgid "Map View"
3880
  msgstr ""
3881
 
3899
  msgid "Slider View"
3900
  msgstr ""
3901
 
3902
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
3903
  msgid "SU"
3904
  msgstr ""
3905
 
3906
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
3907
  msgid "MO"
3908
  msgstr ""
3909
 
3910
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
3911
  msgid "TU"
3912
  msgstr ""
3913
 
3914
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
3915
  msgid "WE"
3916
  msgstr ""
3917
 
3918
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
3919
  msgid "TH"
3920
  msgstr ""
3921
 
3922
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
3923
  msgid "FR"
3924
  msgstr ""
3925
 
3926
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
3927
  msgid "SA"
3928
  msgstr ""
3929
 
3947
  msgid "Twitter"
3948
  msgstr ""
3949
 
3950
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
3951
  msgid "Linkedin"
3952
  msgstr ""
3953
 
3954
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
3955
+ msgid "VK"
3956
+ msgstr ""
3957
+
3958
+ #: app/libraries/main.php:1053
3959
  msgid "Share on Facebook"
3960
  msgstr ""
3961
 
3962
+ #: app/libraries/main.php:1065
3963
  msgid "Google Plus"
3964
  msgstr ""
3965
 
3966
+ #: app/libraries/main.php:1077
3967
  msgid "Tweet"
3968
  msgstr ""
3969
 
3970
+ #: app/libraries/main.php:1471
3971
  msgid "Your booking successfully verified."
3972
  msgstr ""
3973
 
3974
+ #: app/libraries/main.php:1472
3975
  msgid "Your booking cannot verify!"
3976
  msgstr ""
3977
 
3978
+ #: app/libraries/main.php:1484
3979
  msgid "Your booking successfully canceled."
3980
  msgstr ""
3981
 
3982
+ #: app/libraries/main.php:1485
3983
  msgid "Your booking cannot be canceled."
3984
  msgstr ""
3985
 
3986
+ #: app/libraries/main.php:1489
3987
  msgid "You canceled the payment successfully."
3988
  msgstr ""
3989
 
3990
+ #: app/libraries/main.php:1493
3991
  msgid "You returned from payment gateway successfully."
3992
  msgstr ""
3993
 
3994
+ #: app/libraries/main.php:1517
3995
  msgid "Cannot find the booking!"
3996
  msgstr ""
3997
 
3998
+ #: app/libraries/main.php:1517
3999
  msgid "Booking is invalid."
4000
  msgstr ""
4001
 
4002
+ #: app/libraries/main.php:1538
4003
  #, php-format
4004
  msgid "%s Invoice"
4005
  msgstr ""
4006
 
4007
+ #: app/libraries/main.php:1559
4008
+ msgid "Transaction ID"
4009
+ msgstr ""
4010
+
4011
+ #: app/libraries/main.php:1568
4012
+ msgid "Attendees"
4013
+ msgstr ""
4014
+
4015
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4016
+ msgid "Ticket"
4017
+ msgstr ""
4018
+
4019
+ #: app/libraries/main.php:1590
4020
  msgid "Billing"
4021
  msgstr ""
4022
 
4023
+ #: app/libraries/main.php:1601
4024
  msgid "Total"
4025
  msgstr ""
4026
 
4027
+ #: app/libraries/main.php:1634
4028
  msgid "Security nonce is not valid."
4029
  msgstr ""
4030
 
4031
+ #: app/libraries/main.php:1634
4032
  msgid "iCal export stopped!"
4033
  msgstr ""
4034
 
4035
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4036
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4037
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4038
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4039
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4040
  msgid "Sort"
4041
  msgstr ""
4042
 
4043
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4044
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4045
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4046
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4047
  msgid "Required Field"
4048
  msgstr ""
4049
 
4050
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4051
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4052
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4053
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4054
  msgid "Insert a label for this field"
4055
  msgstr ""
4056
 
4057
+ #: app/libraries/main.php:1977
4058
  msgid "HTML and shortcode are allowed."
4059
  msgstr ""
4060
 
4061
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4062
+ #: app/libraries/main.php:2108
4063
  msgid "Option"
4064
  msgstr ""
4065
 
4066
+ #: app/libraries/main.php:2142
4067
  #, php-format
4068
  msgid "Instead of %s, the page title with a link will be show."
4069
  msgstr ""
4070
 
4071
+ #: app/libraries/main.php:2144
4072
  msgid "Agreement Page"
4073
  msgstr ""
4074
 
4075
+ #: app/libraries/main.php:2153
4076
  msgid "Status"
4077
  msgstr ""
4078
 
4079
+ #: app/libraries/main.php:2155
4080
  msgid "Checked by default"
4081
  msgstr ""
4082
 
4083
+ #: app/libraries/main.php:2156
4084
  msgid "Unchecked by default"
4085
  msgstr ""
4086
 
4087
+ #: app/libraries/main.php:2178
4088
  msgid "Insert a label for this option"
4089
  msgstr ""
4090
 
4091
+ #: app/libraries/main.php:2193
4092
+ msgid "Free"
4093
+ msgstr ""
4094
+
4095
+ #: app/libraries/main.php:2845
4096
  #, php-format
4097
  msgid "Copy of %s"
4098
  msgstr ""
4099
 
4100
+ #: app/libraries/main.php:3482
4101
  msgid "Booked an event."
4102
  msgstr ""
4103
 
4104
+ #: app/libraries/main.php:3523
4105
  #, php-format
4106
  msgid "%s booked %s event."
4107
  msgstr ""
4108
 
4109
+ #: app/libraries/main.php:3965
4110
  msgid "Taxonomies"
4111
  msgstr ""
4112
 
4113
+ #: app/libraries/main.php:3967
4114
  msgid "Category Plural Label"
4115
  msgstr ""
4116
 
4117
+ #: app/libraries/main.php:3968
4118
  msgid "Category Singular Label"
4119
  msgstr ""
4120
 
4121
+ #: app/libraries/main.php:3969
4122
  msgid "Label Plural Label"
4123
  msgstr ""
4124
 
4125
+ #: app/libraries/main.php:3970
4126
  msgid "Label Singular Label"
4127
  msgstr ""
4128
 
4129
+ #: app/libraries/main.php:3970
4130
  msgid "label"
4131
  msgstr ""
4132
 
4133
+ #: app/libraries/main.php:3971
4134
  msgid "Location Plural Label"
4135
  msgstr ""
4136
 
4137
+ #: app/libraries/main.php:3972
4138
  msgid "Location Singular Label"
4139
  msgstr ""
4140
 
4141
+ #: app/libraries/main.php:3973
4142
  msgid "Organizer Plural Label"
4143
  msgstr ""
4144
 
4145
+ #: app/libraries/main.php:3974
4146
  msgid "Organizer Singular Label"
4147
  msgstr ""
4148
 
4149
+ #: app/libraries/main.php:3980
4150
  msgid "Sunday abbreviation"
4151
  msgstr ""
4152
 
4153
+ #: app/libraries/main.php:3981
4154
  msgid "Monday abbreviation"
4155
  msgstr ""
4156
 
4157
+ #: app/libraries/main.php:3982
4158
  msgid "Tuesday abbreviation"
4159
  msgstr ""
4160
 
4161
+ #: app/libraries/main.php:3983
4162
  msgid "Wednesday abbreviation"
4163
  msgstr ""
4164
 
4165
+ #: app/libraries/main.php:3984
4166
  msgid "Thursday abbreviation"
4167
  msgstr ""
4168
 
4169
+ #: app/libraries/main.php:3985
4170
  msgid "Friday abbreviation"
4171
  msgstr ""
4172
 
4173
+ #: app/libraries/main.php:3986
4174
  msgid "Saturday abbreviation"
4175
  msgstr ""
4176
 
4177
+ #: app/libraries/main.php:3990
4178
  msgid "Others"
4179
  msgstr ""
4180
 
4181
+ #: app/libraries/main.php:3992
4182
  msgid "Booking Success Message"
4183
  msgstr ""
4184
 
4185
+ #: app/libraries/main.php:3992
4186
+ msgid ""
4187
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4188
+ "needed, please check your email."
4189
+ msgstr ""
4190
+
4191
+ #: app/libraries/main.php:3993
4192
  msgid "Register Button"
4193
  msgstr ""
4194
 
4195
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4196
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4197
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4198
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4206
  msgid "REGISTER"
4207
  msgstr ""
4208
 
4209
+ #: app/libraries/main.php:3994
4210
  msgid "View Detail Button"
4211
  msgstr ""
4212
 
4213
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4214
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4215
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4216
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4221
  msgid "View Detail"
4222
  msgstr ""
4223
 
4224
+ #: app/libraries/main.php:3995
4225
  msgid "Event Detail Button"
4226
  msgstr ""
4227
 
4228
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4229
  msgid "Event Detail"
4230
  msgstr ""
4231
 
4232
+ #: app/libraries/main.php:3997
4233
  msgid "More Info Link"
4234
  msgstr ""
4235
 
4236
+ #: app/libraries/main.php:4000
4237
  msgid "Ticket (Singular)"
4238
  msgstr ""
4239
 
4240
+ #: app/libraries/main.php:4001
4241
  msgid "Tickets (Plural)"
4242
  msgstr ""
4243
 
4244
+ #: app/libraries/main.php:4067
4245
  msgid "EventON"
4246
  msgstr ""
4247
 
4248
+ #: app/libraries/main.php:4068
4249
  msgid "The Events Calendar"
4250
  msgstr ""
4251
 
4252
+ #: app/libraries/main.php:4069
4253
  msgid "Events Schedule WP Plugin"
4254
  msgstr ""
4255
 
4256
+ #: app/libraries/main.php:4070
4257
  msgid "Calendarize It"
4258
  msgstr ""
4259
 
4277
  msgid "A new event is added."
4278
  msgstr ""
4279
 
4280
+ #: app/libraries/notifications.php:516
4281
+ msgid "Yes"
4282
+ msgstr ""
4283
+
4284
+ #: app/libraries/notifications.php:516
4285
+ msgid "No"
4286
+ msgstr ""
4287
+
4288
  #: app/libraries/render.php:337
4289
  msgid "Skin controller does not exist."
4290
  msgstr ""
4313
  msgid "%s tickets"
4314
  msgstr ""
4315
 
4316
+ #: app/modules/booking/steps/checkout.php:16
4317
+ msgid "Checkout"
4318
+ msgstr ""
4319
+
4320
  #: app/modules/booking/steps/checkout.php:33
4321
  msgid "Discount Coupon"
4322
  msgstr ""
4343
  msgid "Next"
4344
  msgstr ""
4345
 
4346
+ #: app/modules/booking/steps/message.php:7
4347
+ msgid "Thanks for your booking."
4348
+ msgstr ""
4349
+
4350
  #: app/modules/booking/steps/tickets.php:18
4351
  msgid "Book Event"
4352
  msgstr ""
4637
  msgid "QR Code : "
4638
  msgstr ""
4639
 
4640
+ #. Plugin Name of the plugin/theme
4641
+ msgid "Modern Events Calendar Lite"
4642
+ msgstr ""
4643
+
4644
  #. Plugin URI of the plugin/theme
4645
  msgid "http://webnus.net/plugins/modern-events-calendar/"
4646
  msgstr ""
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2018-07-24 11:58+0430\n"
5
- "PO-Revision-Date: 2018-08-21 16:24+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
@@ -20,7 +20,6 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #. Plugin Name of the plugin/theme
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
25
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
26
  #: app/widgets/MEC.php:23
@@ -31,8 +30,8 @@ msgstr "Calendario moderno"
31
  msgid "Content"
32
  msgstr "Contenido"
33
 
34
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
35
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
36
  msgid "Shortcode"
37
  msgstr "Shortcode"
38
 
@@ -41,368 +40,30 @@ msgstr "Shortcode"
41
  msgid "Select from predefined shortcodes"
42
  msgstr "Selección de calendarios predefinidos"
43
 
44
- #: app/crons/booking-reminder.php:33
45
- msgid "Booking reminder notification is not enabled!"
46
- msgstr ""
47
-
48
- #: app/crons/booking-reminder.php:43
49
- msgid "Booking module is not enabled!"
50
- msgstr ""
51
-
52
- #: app/crons/booking-reminder.php:52
53
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
54
- msgstr ""
55
-
56
- #: app/crons/booking-reminder.php:104
57
- #, php-format
58
- msgid "%s reminders sent."
59
- msgstr ""
60
-
61
- #: app/crons/f-import.php:32
62
- msgid "Auto Facebook import is disabled!"
63
- msgstr ""
64
-
65
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
66
- msgid "Please insert your facebook page's link."
67
- msgstr ""
68
-
69
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
70
- msgid ""
71
- "We couldn't recognize your Facebook page. Please check it and provide us a "
72
- "valid facebook page link."
73
- msgstr ""
74
-
75
- #: app/crons/f-import.php:198
76
- #, php-format
77
- msgid "%s facebook events imported/updated."
78
- msgstr ""
79
-
80
- #: app/crons/g-export.php:37 app/features/ix.php:2527
81
- msgid "All of Client App, Client Secret and Calendar ID are required!"
82
- msgstr ""
83
-
84
- #: app/crons/g-export.php:234 app/features/ix.php:2722
85
- #, php-format
86
- msgid "%s events added to Google Calendar successfully."
87
- msgstr ""
88
-
89
- #: app/crons/g-export.php:235 app/features/ix.php:2723
90
- #, php-format
91
- msgid "%s previously added events get updated."
92
- msgstr ""
93
-
94
- #: app/crons/g-export.php:236 app/features/ix.php:2724
95
- #, php-format
96
- msgid "%s events failed to add for following reasons: %s"
97
- msgstr ""
98
-
99
- #: app/crons/g-import.php:32
100
- msgid "Auto Google Calendar import is disabled!"
101
- msgstr ""
102
-
103
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
104
- msgid "Both of API key and Calendar ID are required!"
105
- msgstr ""
106
-
107
- #: app/crons/g-import.php:370
108
- #, php-format
109
- msgid "%s google events imported/updated."
110
- msgstr ""
111
-
112
- #: app/features/books.php:105 app/features/books.php:110
113
- #: app/features/ix/export.php:37
114
- msgid "Bookings"
115
- msgstr "Reservas"
116
-
117
- #: app/features/books.php:106 app/features/books.php:328
118
- #: app/features/contextual.php:308 app/features/events.php:253
119
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
120
- msgid "Booking"
121
- msgstr "Reserva"
122
-
123
- #: app/features/books.php:107 app/features/books.php:108
124
- msgid "Add Booking"
125
- msgstr "Nueva reserva"
126
-
127
- #: app/features/books.php:109
128
- msgid "No bookings found!"
129
- msgstr "No hay reservas"
130
-
131
- #: app/features/books.php:111
132
- msgid "Edit Bookings"
133
- msgstr "Editar reserva"
134
-
135
- #: app/features/books.php:112
136
- msgid "No bookings found in Trash!"
137
- msgstr "No hay reservas en la papelera"
138
-
139
- #: app/features/books.php:149
140
- msgid "Book Details"
141
- msgstr "Detalle de la reserva"
142
-
143
- #: app/features/books.php:150
144
- msgid "Status & Invoice"
145
- msgstr ""
146
-
147
- #: app/features/books.php:176 app/features/books.php:387
148
- #: app/features/books.php:576 app/features/books.php:651
149
- #: app/features/books.php:709
150
- msgid "Confirmation"
151
- msgstr "Confirmar"
152
-
153
- #: app/features/books.php:178 app/features/books.php:578
154
- #: app/features/books.php:602 app/features/books.php:894
155
- msgid "Pending"
156
- msgstr "Pendiente"
157
-
158
- #: app/features/books.php:179 app/features/books.php:577
159
- #: app/features/books.php:892
160
- msgid "Confirmed"
161
- msgstr "Confirmado"
162
-
163
- #: app/features/books.php:180 app/features/books.php:579
164
- #: app/features/books.php:893
165
- msgid "Rejected"
166
- msgstr "Rechazado"
167
-
168
- #: app/features/books.php:184 app/features/books.php:388
169
- #: app/features/books.php:585 app/features/books.php:651
170
- #: app/features/books.php:709
171
- msgid "Verification"
172
- msgstr "Verificar"
173
-
174
- #: app/features/books.php:186 app/features/books.php:587
175
- #: app/features/books.php:909
176
- msgid "Waiting"
177
- msgstr "Esperando"
178
-
179
- #: app/features/books.php:187 app/features/books.php:586
180
- #: app/features/books.php:907 app/features/mec/settings.php:1173
181
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
182
- msgid "Verified"
183
- msgstr "Verificado"
184
-
185
- #: app/features/books.php:188 app/features/books.php:588
186
- #: app/features/books.php:908
187
- msgid "Canceled"
188
- msgstr "Cancelado"
189
-
190
- #: app/features/books.php:203
191
- #, php-format
192
- msgid "Here, you can %s invoice of %s transaction."
193
- msgstr ""
194
-
195
- #: app/features/books.php:203
196
- msgid "download"
197
- msgstr ""
198
-
199
- #: app/features/books.php:246
200
- msgid "It will create a new booking under \"Pay Locally\" gateway."
201
- msgstr ""
202
-
203
- #: app/features/books.php:248 app/features/contextual.php:62
204
- #: app/features/events.php:910 app/features/mec/gateways.php:29
205
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
206
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
207
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
208
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
209
- #, fuzzy
210
- msgid "Booking Form"
211
- msgstr "Reserva"
212
-
213
- #: app/features/books.php:251 app/features/books.php:330
214
- #: app/features/books.php:385 app/features/books.php:569
215
- #: app/features/books.php:651 app/features/books.php:709
216
- #: app/features/events.php:123
217
- #: app/features/mec/meta_boxes/display_options.php:678
218
- #: app/features/mec/meta_boxes/display_options.php:716
219
- #: app/features/mec/meta_boxes/display_options.php:745
220
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
221
- #: app/skins/yearly_view/tpl.php:69
222
- msgid "Event"
223
- msgstr "Evento"
224
-
225
- #: app/features/books.php:315
226
- msgid "Payment"
227
- msgstr "Pago"
228
-
229
- #: app/features/books.php:317 app/features/books.php:386
230
- #: app/features/events.php:756 app/features/events.php:788
231
- msgid "Price"
232
- msgstr "Precio"
233
-
234
- #: app/features/books.php:321 app/features/gateways.php:148
235
- msgid "Gateway"
236
- msgstr "Entrada"
237
-
238
- #: app/features/books.php:322 app/features/books.php:326
239
- #: app/features/books.php:331 app/features/books.php:335
240
- #: app/features/books.php:352 app/features/books.php:690
241
- #: app/features/books.php:748
242
- msgid "Unknown"
243
- msgstr "Desconocido"
244
-
245
- #: app/features/books.php:325 app/features/books.php:389
246
- #: app/features/books.php:651 app/features/books.php:709
247
- #: app/libraries/main.php:1544
248
- msgid "Transaction ID"
249
- msgstr "ID Transacción"
250
-
251
- #: app/features/books.php:334 app/features/books.php:651
252
- #: app/features/books.php:709 app/features/books.php:1099
253
- #: app/features/events.php:508 app/features/events.php:580
254
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
255
- #: app/modules/booking/steps/tickets.php:20
256
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
257
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
258
- #: app/skins/single/modern.php:146
259
- msgid "Date"
260
- msgstr "Fecha"
261
-
262
- #: app/features/books.php:335
263
- #, php-format
264
- msgid "%s to %s"
265
- msgstr "%s de %s"
266
-
267
- #: app/features/books.php:338 app/features/mec/notifications.php:140
268
- #: app/features/mec/notifications.php:177
269
- #: app/features/mec/notifications.php:214
270
- #: app/features/mec/notifications.php:255
271
- #: app/features/mec/notifications.php:307
272
- msgid "Total Attendees"
273
- msgstr ""
274
-
275
- #: app/features/books.php:341 app/features/books.php:384
276
- #: app/libraries/main.php:1553
277
- msgid "Attendees"
278
- msgstr ""
279
-
280
- #: app/features/books.php:347 app/features/books.php:651
281
- #: app/features/books.php:709 app/features/books.php:1114
282
- #: app/features/events.php:371 app/features/events.php:945
283
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
284
- #: app/features/organizers.php:110 app/features/organizers.php:150
285
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
286
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
287
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
288
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
289
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
290
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
291
- #: app/skins/single/modern.php:38
292
- msgid "Email"
293
- msgstr "Email"
294
-
295
- #: app/features/books.php:351 app/features/books.php:431
296
- #: app/features/books.php:651 app/features/books.php:709
297
- #: app/features/books.php:1106 app/libraries/main.php:1559
298
- #: app/libraries/main.php:3985
299
- msgid "Ticket"
300
- msgstr "Ticket"
301
-
302
- #: app/features/books.php:358 app/libraries/notifications.php:516
303
- msgid "Yes"
304
- msgstr ""
305
-
306
- #: app/features/books.php:358 app/libraries/notifications.php:516
307
- msgid "No"
308
- msgstr "No"
309
-
310
- #: app/features/books.php:390
311
- msgid "Book Date"
312
- msgstr "Fecha"
313
-
314
- #: app/features/books.php:602
315
- msgid "Confirm"
316
- msgstr "Confirmar"
317
-
318
- #: app/features/books.php:602
319
- msgid "Reject"
320
- msgstr "Rechazar"
321
-
322
- #: app/features/books.php:602 app/features/events.php:1569
323
- #: app/features/events.php:1570
324
- msgid "CSV Export"
325
- msgstr "Exportar CSV"
326
-
327
- #: app/features/books.php:602 app/features/events.php:1572
328
- #: app/features/events.php:1573
329
- msgid "MS Excel Export"
330
- msgstr "Exportar Excel"
331
-
332
- #: app/features/books.php:651 app/features/books.php:709
333
- #: app/features/events.php:1631 app/features/events.php:1675
334
- #: app/features/ix.php:2328 app/features/ix.php:2369
335
- #: app/features/labels.php:150 app/features/locations.php:228
336
- #: app/features/organizers.php:198
337
- msgid "ID"
338
- msgstr "ID"
339
-
340
- #: app/features/books.php:651 app/features/books.php:709
341
- msgid "Total Price"
342
- msgstr ""
343
-
344
- #: app/features/books.php:651 app/features/books.php:709
345
- #: app/features/books.php:1113 app/features/events.php:370
346
- #: app/features/fes/form.php:441 app/features/gateways.php:503
347
- #: app/features/labels.php:151 app/features/organizers.php:268
348
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
349
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
350
- msgid "Name"
351
- msgstr "Nombre"
352
-
353
- #: app/features/books.php:923
354
- #, fuzzy
355
- msgid "Security nonce is missing."
356
- msgstr "La seguridad no es válida."
357
-
358
- #: app/features/books.php:926
359
- #, fuzzy
360
- msgid "Security nonce is invalid."
361
- msgstr "La seguridad no es válida."
362
-
363
- #: app/features/books.php:935
364
- msgid "Invalid request."
365
- msgstr ""
366
-
367
- #: app/features/books.php:963
368
- msgid "Please select some tickets!"
369
- msgstr ""
370
-
371
- #: app/features/books.php:969
372
- msgid "Captcha is invalid. Please try again."
373
- msgstr ""
374
-
375
- #: app/features/books.php:1015
376
- msgid "Please fill the form correctly. Email and Name fields are required!"
377
- msgstr ""
378
-
379
- #: app/features/books.php:1085
380
- msgid "Event is invalid. Please select an event."
381
- msgstr ""
382
-
383
- #: app/features/books.php:1093
384
- msgid ""
385
- "No ticket ro future dates found for this event! Please try another event."
386
- msgstr ""
387
-
388
- #: app/features/books.php:1175
389
- msgid "Attendee Information"
390
- msgstr ""
391
-
392
  #: app/features/colors.php:50 app/features/fes/form.php:566
393
- #: app/features/mec/settings.php:842
394
  msgid "Event Color"
395
  msgstr "Color del evento"
396
 
397
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
398
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
399
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
400
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
401
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
402
  #: app/features/mec/support.php:18
403
  msgid "Settings"
404
  msgstr "Ajustes"
405
 
 
 
 
 
 
 
 
 
 
 
406
  #: app/features/contextual.php:63
407
  msgid ""
408
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -415,7 +76,7 @@ msgstr ""
415
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
416
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
417
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
418
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
419
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
420
  msgid "Payment Gateways"
421
  msgstr "Entradas de pago"
@@ -430,7 +91,7 @@ msgstr ""
430
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
431
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
432
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
433
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
434
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
435
  msgid "Notifications"
436
  msgstr "Notificaciones"
@@ -491,235 +152,105 @@ msgid ""
491
  "\"0\" allowfullscreen></iframe>"
492
  msgstr ""
493
 
494
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
495
- #: app/features/mec/settings.php:247
496
  msgid "General Options"
497
  msgstr "Opciones generales"
498
 
499
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
500
- #: app/features/mec/settings.php:399
501
  msgid "Slugs/Permalinks"
502
  msgstr ""
503
 
504
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
505
- #: app/features/mec/settings.php:419
506
  msgid "Event Details/Single Event Page"
507
  msgstr ""
508
 
509
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
510
- #: app/features/mec/settings.php:451
511
  msgid "Currency Options"
512
  msgstr "Opciones de moneda"
513
 
514
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
515
- #: app/features/mec/settings.php:503
516
  msgid "Google Maps Options"
517
  msgstr "Opciones de Google Maps"
518
 
519
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
520
- #: app/features/mec/settings.php:577
521
  #, fuzzy
522
  msgid "Google Recaptcha Options"
523
  msgstr "Opciones de Google Maps"
524
 
525
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
526
- #: app/features/mec/settings.php:695
527
  msgid "Countdown Options"
528
  msgstr "Opciones de cuenta atrás"
529
 
530
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
531
- #: app/features/mec/settings.php:716
532
  msgid "Social Networks"
533
  msgstr "Redes Sociales"
534
 
535
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
536
- #: app/features/mec/settings.php:741
537
  msgid "Next Event Module"
538
  msgstr ""
539
 
540
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
541
- #: app/features/mec/settings.php:769
542
  msgid "Frontend Event Submission"
543
  msgstr ""
544
 
545
  #: app/features/contextual.php:298 app/features/events.php:570
546
- #: app/features/mec/settings.php:126
547
  #, fuzzy
548
  msgid "Exceptional Days"
549
  msgstr "Día de expiración"
550
 
551
- #: app/features/contextual.php:318 app/features/coupons.php:76
552
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
553
- #: app/features/mec/settings.php:1014
 
 
 
 
554
  msgid "Coupons"
555
  msgstr "Cupones"
556
 
557
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
558
- #: app/features/mec/settings.php:1096
559
  msgid "BuddyPress Integration"
560
  msgstr ""
561
 
562
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
563
- #: app/features/mec/settings.php:1126
564
  msgid "Mailchimp Integration"
565
  msgstr ""
566
 
567
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
568
- #: app/features/mec/settings.php:1162
569
  #, fuzzy
570
  msgid "MEC Activation"
571
  msgstr "Lugar"
572
 
573
- #: app/features/coupons.php:79
574
- msgid "Coupon"
575
- msgstr "Cupón"
576
-
577
- #: app/features/coupons.php:80
578
- msgid "All Coupons"
579
- msgstr "Todos los cupones"
580
-
581
- #: app/features/coupons.php:81
582
- msgid "Edit Coupon"
583
- msgstr "Editar cupón"
584
-
585
- #: app/features/coupons.php:82
586
- msgid "View Coupon"
587
- msgstr "Ver cupón"
588
-
589
- #: app/features/coupons.php:83
590
- msgid "Update Coupon"
591
- msgstr "Actualizar cupón"
592
-
593
- #: app/features/coupons.php:84
594
- msgid "Add New Coupon"
595
- msgstr "Nuevo cupón"
596
-
597
- #: app/features/coupons.php:85
598
- msgid "New Coupon Name"
599
- msgstr "Nuevo nombre del cupón"
600
-
601
- #: app/features/coupons.php:86
602
- msgid "Popular Coupons"
603
- msgstr "Cupones populares"
604
-
605
- #: app/features/coupons.php:87
606
- msgid "Search Coupons"
607
- msgstr "Buscar cupones"
608
-
609
- #: app/features/coupons.php:116 app/features/coupons.php:177
610
- msgid "Discount Type"
611
- msgstr "Tipo de descuento"
612
-
613
- #: app/features/coupons.php:120 app/features/coupons.php:179
614
- #: app/features/events.php:854 app/features/events.php:879
615
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
616
- msgid "Percent"
617
- msgstr "Porcentaje"
618
-
619
- #: app/features/coupons.php:121 app/features/coupons.php:180
620
- #: app/features/events.php:849 app/features/events.php:874
621
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
622
- msgid "Amount"
623
- msgstr "Cantidad"
624
-
625
- #: app/features/coupons.php:127 app/features/coupons.php:184
626
- #: app/features/coupons.php:248 app/features/coupons.php:322
627
- #: app/libraries/book.php:505
628
- msgid "Discount"
629
- msgstr "Descuento"
630
-
631
- #: app/features/coupons.php:131 app/features/coupons.php:186
632
- msgid ""
633
- "Discount percent, considered as amount if you set the discount type to amount"
634
- msgstr "El porcentaje de descuento se aplica sobre la cantidad"
635
-
636
- #: app/features/coupons.php:136 app/features/coupons.php:189
637
- msgid "Usage Limit"
638
- msgstr "Límite de uso"
639
-
640
- #: app/features/coupons.php:140 app/features/coupons.php:191
641
- msgid "Insert -1 for unlimited usage"
642
- msgstr "Introduce -1 para uso ilimitado"
643
-
644
- #: app/features/coupons.php:145 app/features/coupons.php:194
645
- #: app/features/gateways.php:1202
646
- msgid "Expiration Date"
647
- msgstr "Día de expiración"
648
-
649
- #: app/features/coupons.php:149 app/features/coupons.php:196
650
- msgid "Leave it empty for no expiration!"
651
- msgstr ""
652
-
653
- #: app/features/coupons.php:154 app/features/coupons.php:199
654
- msgid "Target Event"
655
- msgstr ""
656
-
657
- #: app/features/coupons.php:158 app/features/coupons.php:201
658
- #: app/features/events.php:127
659
- msgid "All Events"
660
- msgstr "Todos los eventos"
661
-
662
- #: app/features/coupons.php:246
663
- msgid "Name/Code"
664
- msgstr "Nombre/Código"
665
-
666
- #: app/features/coupons.php:247 app/features/events.php:632
667
- #: app/features/events.php:644 app/features/events.php:752
668
- #: app/features/events.php:784
669
- msgid "Description"
670
- msgstr "Descripción"
671
-
672
- #: app/features/coupons.php:249
673
- #: app/features/mec/meta_boxes/display_options.php:85
674
- #: app/features/mec/meta_boxes/display_options.php:194
675
- #: app/features/mec/meta_boxes/display_options.php:244
676
- #: app/features/mec/meta_boxes/display_options.php:632
677
- #: app/features/mec/meta_boxes/display_options.php:806
678
- #: app/features/mec/meta_boxes/display_options.php:877
679
- msgid "Limit"
680
- msgstr "Límite"
681
-
682
- #: app/features/coupons.php:250 app/features/labels.php:153
683
- #: app/features/locations.php:231 app/features/organizers.php:201
684
- #: app/modules/booking/steps/tickets.php:36
685
- msgid "Count"
686
- msgstr "Contador"
687
-
688
- #: app/features/coupons.php:280 app/features/events.php:715
689
- #: app/features/events.php:769 app/features/events.php:801
690
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
691
- #: app/skins/available_spot/tpl.php:84
692
- msgid "Unlimited"
693
- msgstr "Ilimitado"
694
-
695
- #: app/features/coupons.php:309
696
- msgid "Discount coupon is invalid!"
697
- msgstr "El cupón de descuento no es válido!"
698
-
699
- #: app/features/coupons.php:311
700
- msgid "Discount coupon usage limit reached!"
701
- msgstr "El cupón de descuento ha finalizado!"
702
-
703
- #: app/features/coupons.php:313
704
- msgid "Discount coupon is expired!"
705
- msgstr ""
706
-
707
- #: app/features/coupons.php:315
708
- msgid "Discount is not valid for this event!"
709
- msgstr ""
710
-
711
- #: app/features/coupons.php:326
712
- #, php-format
713
- msgid "Coupon is valid and you get %s discount."
714
- msgstr "El cupón es correcto y se aplica un %s de descuento."
715
-
716
  #: app/features/events.php:122 app/features/ix/export.php:33
717
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
718
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
719
  msgid "Events"
720
  msgstr "Eventos"
721
 
722
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
723
  msgid "Add Event"
724
  msgstr "Nuevo evento"
725
 
@@ -732,6 +263,10 @@ msgstr "Añadir nuevo evento"
732
  msgid "No events found!"
733
  msgstr "No hay eventos"
734
 
 
 
 
 
735
  #: app/features/events.php:128
736
  msgid "Edit Event"
737
  msgstr ""
@@ -754,7 +289,7 @@ msgstr "No hay eventos en la papelera"
754
  #: app/features/mec/meta_boxes/search_form.php:285
755
  #: app/features/mec/meta_boxes/search_form.php:325
756
  #: app/features/mec/meta_boxes/search_form.php:372
757
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
758
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
759
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
760
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -762,8 +297,8 @@ msgid "Category"
762
  msgstr "Categoría"
763
 
764
  #: app/features/events.php:143 app/features/fes/form.php:518
765
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
766
- #: app/libraries/main.php:3952
767
  msgid "Categories"
768
  msgstr "Categorías"
769
 
@@ -830,12 +365,12 @@ msgstr "Detalle de evento"
830
  #: app/features/events.php:286 app/features/events.php:1631
831
  #: app/features/events.php:1675 app/features/fes/form.php:479
832
  #: app/features/ix.php:2328 app/features/ix.php:2369
833
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
834
  msgid "Event Cost"
835
  msgstr "Coste del evento"
836
 
837
  #: app/features/events.php:289 app/features/fes/form.php:482
838
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
839
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
840
  #: app/skins/single/modern.php:179
841
  msgid "Cost"
@@ -849,6 +384,26 @@ msgstr ""
849
  msgid "Guest Data"
850
  msgstr ""
851
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
852
  #: app/features/events.php:375 app/features/fes/form.php:221
853
  msgid "Date and Time"
854
  msgstr "Día y hora"
@@ -858,7 +413,7 @@ msgstr "Día y hora"
858
  #: app/features/events.php:1675 app/features/fes/form.php:225
859
  #: app/features/fes/form.php:229 app/features/ix.php:2328
860
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
861
- #: app/features/mec/dashboard.php:262
862
  #: app/features/mec/meta_boxes/display_options.php:42
863
  #: app/features/mec/meta_boxes/display_options.php:129
864
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -890,7 +445,7 @@ msgstr "PM"
890
  #: app/features/events.php:1675 app/features/fes/form.php:265
891
  #: app/features/fes/form.php:269 app/features/ix.php:2328
892
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
893
- #: app/features/mec/dashboard.php:263
894
  msgid "End Date"
895
  msgstr "Día final"
896
 
@@ -928,7 +483,7 @@ msgid "Repeats"
928
  msgstr "Repeticiones"
929
 
930
  #: app/features/events.php:481 app/features/fes/form.php:327
931
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
932
  msgid "Daily"
933
  msgstr "Diariamente"
934
 
@@ -951,12 +506,12 @@ msgid "Weekly"
951
  msgstr "Semanal"
952
 
953
  #: app/features/events.php:486 app/features/fes/form.php:332
954
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
955
  msgid "Monthly"
956
  msgstr "Mensual"
957
 
958
  #: app/features/events.php:487 app/features/fes/form.php:333
959
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
960
  msgid "Yearly"
961
  msgstr "Anual"
962
 
@@ -1013,6 +568,15 @@ msgstr ""
1013
  msgid "Sunday"
1014
  msgstr ""
1015
 
 
 
 
 
 
 
 
 
 
1016
  #: app/features/events.php:509 app/features/events.php:581
1017
  #: app/features/events.php:623 app/features/events.php:743
1018
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1060,7 +624,7 @@ msgstr "Cada día de la semana"
1060
  msgid "Exclude certain days from event occurrence dates."
1061
  msgstr ""
1062
 
1063
- #: app/features/events.php:620 app/features/mec/settings.php:866
1064
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1065
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1066
  msgid "Hourly Schedule"
@@ -1081,34 +645,36 @@ msgstr "a 8:45"
1081
  #: app/features/events.php:631 app/features/events.php:643
1082
  #: app/features/events.php:1449 app/features/events.php:1631
1083
  #: app/features/events.php:1675 app/features/fes/form.php:214
1084
- #: app/features/gateways.php:550 app/features/gateways.php:617
1085
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1086
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1087
- #: app/features/ix.php:2369
1088
  msgid "Title"
1089
  msgstr "Titulo"
1090
 
 
 
 
 
 
1091
  #: app/features/events.php:633 app/features/events.php:645
1092
  #: app/features/events.php:771 app/features/events.php:803
1093
  #: app/features/events.php:859 app/features/events.php:884
1094
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1095
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1096
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1097
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1098
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1099
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1100
- #: app/libraries/main.php:2162
1101
  msgid "Remove"
1102
  msgstr "Eliminar"
1103
 
1104
  #: app/features/events.php:665 app/features/fes/form.php:456
1105
- #: app/features/mec/settings.php:812
1106
  #, fuzzy
1107
  msgid "Event Links"
1108
  msgstr "Lugar del evento"
1109
 
1110
  #: app/features/events.php:667 app/features/fes/form.php:458
1111
- #: app/libraries/main.php:3981
1112
  #, fuzzy
1113
  msgid "Event Link"
1114
  msgstr "Lugar del evento"
@@ -1126,7 +692,7 @@ msgid ""
1126
  msgstr "Insertar vínculo completo incluyendo http(s)://"
1127
 
1128
  #: app/features/events.php:672 app/features/fes/form.php:463
1129
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1130
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1131
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1132
  msgid "More Info"
@@ -1156,12 +722,18 @@ msgstr "Insertar vínculo completo incluyendo http(s)://"
1156
  msgid "Total booking limits"
1157
  msgstr "Límite total de booking"
1158
 
 
 
 
 
 
 
1159
  #: app/features/events.php:717
1160
  msgid "100"
1161
  msgstr "100"
1162
 
1163
  #: app/features/events.php:735 app/libraries/book.php:59
1164
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1165
  msgid "Tickets"
1166
  msgstr "Tickets"
1167
 
@@ -1176,6 +748,10 @@ msgstr ""
1176
  msgid "Ticket Name"
1177
  msgstr "Nombre del ticket"
1178
 
 
 
 
 
1179
  #: app/features/events.php:757 app/features/events.php:789
1180
  msgid "Insert 0 for free ticket. Only numbers please."
1181
  msgstr "Introduzca un 0 para ticket gratuito. Usar únicamente números."
@@ -1201,12 +777,17 @@ msgid "Inherit from global options"
1201
  msgstr "Heredar opciones globales"
1202
 
1203
  #: app/features/events.php:845 app/features/events.php:870
1204
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1205
  msgid "Fee Title"
1206
  msgstr "Tarifa título"
1207
 
 
 
 
 
 
1208
  #: app/features/events.php:850 app/features/events.php:875
1209
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1210
  msgid ""
1211
  "Fee amount, considered as fixed amount if you set the type to amount "
1212
  "otherwise considered as percentage"
@@ -1214,39 +795,44 @@ msgstr ""
1214
  "Importe de la cuota, considerado como cantidad fija si se establece el tipo "
1215
  "de cantidad considerada de otra manera como porcentaje."
1216
 
 
 
 
 
 
1217
  #: app/features/events.php:855 app/features/events.php:880
1218
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1219
  msgid "Amount (Per Ticket)"
1220
  msgstr ""
1221
 
1222
  #: app/features/events.php:856 app/features/events.php:881
1223
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1224
  msgid "Amount (Per Booking)"
1225
  msgstr ""
1226
 
1227
  #: app/features/events.php:944 app/features/mec/regform.php:117
1228
- #: app/libraries/main.php:1841
1229
  msgid "Text"
1230
  msgstr "Texto"
1231
 
1232
  #: app/features/events.php:946 app/features/mec/regform.php:119
1233
  #: app/features/organizers.php:102 app/features/organizers.php:146
1234
- #: app/libraries/main.php:1899
1235
  msgid "Tel"
1236
  msgstr "Tel"
1237
 
1238
  #: app/features/events.php:947 app/features/mec/regform.php:120
1239
- #: app/libraries/main.php:1928
1240
  msgid "Textarea"
1241
  msgstr "Área de texto"
1242
 
1243
  #: app/features/events.php:948 app/features/mec/regform.php:121
1244
- #: app/libraries/main.php:1981
1245
  msgid "Checkboxes"
1246
  msgstr "Checkboxes"
1247
 
1248
  #: app/features/events.php:949 app/features/mec/regform.php:122
1249
- #: app/libraries/main.php:2025
1250
  msgid "Radio Buttons"
1251
  msgstr "Botón tipo radio"
1252
 
@@ -1295,17 +881,17 @@ msgstr "Botón tipo radio"
1295
  #: app/features/mec/meta_boxes/search_form.php:436
1296
  #: app/features/mec/meta_boxes/search_form.php:443
1297
  #: app/features/mec/meta_boxes/search_form.php:450
1298
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1299
  msgid "Dropdown"
1300
  msgstr "Desplegable"
1301
 
1302
  #: app/features/events.php:951 app/features/mec/regform.php:124
1303
- #: app/libraries/main.php:2116
1304
  msgid "Agreement"
1305
  msgstr ""
1306
 
1307
  #: app/features/events.php:952 app/features/mec/regform.php:125
1308
- #: app/libraries/main.php:1957
1309
  msgid "Paragraph"
1310
  msgstr "Párrafo"
1311
 
@@ -1331,7 +917,7 @@ msgstr ""
1331
  #: app/features/events.php:1675 app/features/ix.php:2328
1332
  #: app/features/ix.php:2369 app/features/locations.php:58
1333
  #: app/features/locations.php:229 app/features/locations.php:281
1334
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1335
  #: app/features/mec/meta_boxes/display_options.php:641
1336
  #: app/features/mec/meta_boxes/search_form.php:38
1337
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1341,8 +927,8 @@ msgstr ""
1341
  #: app/features/mec/meta_boxes/search_form.php:292
1342
  #: app/features/mec/meta_boxes/search_form.php:332
1343
  #: app/features/mec/meta_boxes/search_form.php:379
1344
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1345
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1346
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1347
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1348
  #: app/skins/single/modern.php:77
@@ -1351,7 +937,7 @@ msgstr "Localización"
1351
 
1352
  #: app/features/events.php:1451 app/features/events.php:1631
1353
  #: app/features/events.php:1675 app/features/ix.php:2328
1354
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1355
  #: app/features/mec/meta_boxes/display_options.php:642
1356
  #: app/features/mec/meta_boxes/search_form.php:45
1357
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1364,7 +950,7 @@ msgstr "Localización"
1364
  #: app/features/mec/meta_boxes/search_form.php:433
1365
  #: app/features/organizers.php:58 app/features/organizers.php:199
1366
  #: app/features/organizers.php:255 app/features/organizers.php:257
1367
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1368
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1369
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1370
  #: app/skins/single/modern.php:21
@@ -1383,6 +969,14 @@ msgstr "Autor"
1383
  msgid "iCal Export"
1384
  msgstr "Exportar iCal"
1385
 
 
 
 
 
 
 
 
 
1386
  #: app/features/events.php:1575 app/features/events.php:1576
1387
  msgid "XML Export"
1388
  msgstr ""
@@ -1395,6 +989,13 @@ msgstr ""
1395
  msgid "Duplicate"
1396
  msgstr ""
1397
 
 
 
 
 
 
 
 
1398
  #: app/features/events.php:1631 app/features/events.php:1675
1399
  #: app/features/ix.php:2328 app/features/ix.php:2369
1400
  msgid "Start Time"
@@ -1480,7 +1081,6 @@ msgid "Note to reviewer"
1480
  msgstr ""
1481
 
1482
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1483
- #: app/features/gateways.php:695
1484
  msgid "Submit"
1485
  msgstr "Enviar"
1486
 
@@ -1496,7 +1096,7 @@ msgstr ""
1496
  msgid "eg. John Smith"
1497
  msgstr "ej. John Smith"
1498
 
1499
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1500
  #, fuzzy
1501
  msgid "Featured Image"
1502
  msgstr "evento destacado"
@@ -1507,14 +1107,14 @@ msgid "Remove Image"
1507
  msgstr "Eliminar imagen"
1508
 
1509
  #: app/features/fes/form.php:543 app/features/labels.php:61
1510
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1511
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1512
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1513
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1514
  msgid "Labels"
1515
  msgstr "Etiquetas"
1516
 
1517
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1518
  #: app/features/mec/meta_boxes/filter.php:138
1519
  msgid "Tags"
1520
  msgstr "Tags"
@@ -1543,291 +1143,6 @@ msgstr "Ver mapa"
1543
  msgid "No events found! %s"
1544
  msgstr "No hay eventos"
1545
 
1546
- #: app/features/gateways.php:70 app/features/gateways.php:327
1547
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1548
- #: app/features/gateways.php:1396
1549
- msgid "Request is invalid!"
1550
- msgstr "Solicitud no válida!"
1551
-
1552
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1553
- #, fuzzy
1554
- msgid "Thanks for your booking."
1555
- msgstr "Gracias por su reserva."
1556
-
1557
- #: app/features/gateways.php:307 app/features/gateways.php:545
1558
- msgid "Stripe"
1559
- msgstr ""
1560
-
1561
- #: app/features/gateways.php:342 app/features/gateways.php:716
1562
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1563
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1564
- msgid "There is no attendee for booking!"
1565
- msgstr "No hay sistema de booking!"
1566
-
1567
- #: app/features/gateways.php:373 app/features/gateways.php:743
1568
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1569
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1570
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1571
- msgid ""
1572
- "Thanks for your booking. Your tickets booked, booking verification might be "
1573
- "needed, please check your email."
1574
- msgstr "Gracias por su reserva. Revise su correo electrónico."
1575
-
1576
- #: app/features/gateways.php:390
1577
- #, fuzzy, php-format
1578
- msgid "MEC Transaction ID: %s"
1579
- msgstr "ID Transacción"
1580
-
1581
- #: app/features/gateways.php:473 app/features/gateways.php:668
1582
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1583
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1584
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1585
- msgid "Download Invoice"
1586
- msgstr ""
1587
-
1588
- #: app/features/gateways.php:509
1589
- msgid "Card Number"
1590
- msgstr ""
1591
-
1592
- #: app/features/gateways.php:515
1593
- msgid "CVC"
1594
- msgstr ""
1595
-
1596
- #: app/features/gateways.php:521
1597
- msgid "Expiration (MM/YYYY)"
1598
- msgstr ""
1599
-
1600
- #: app/features/gateways.php:522
1601
- msgid "Month"
1602
- msgstr ""
1603
-
1604
- #: app/features/gateways.php:524
1605
- msgid "Year"
1606
- msgstr ""
1607
-
1608
- #: app/features/gateways.php:532 app/features/gateways.php:919
1609
- #: app/features/gateways.php:1223
1610
- msgid "Pay"
1611
- msgstr "Pagar"
1612
-
1613
- #: app/features/gateways.php:556 app/features/gateways.php:623
1614
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1615
- #: app/features/gateways.php:1621
1616
- msgid "Comment"
1617
- msgstr "Comentarios"
1618
-
1619
- #: app/features/gateways.php:559 app/features/gateways.php:626
1620
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1621
- #: app/features/gateways.php:1624
1622
- msgid "HTML allowed."
1623
- msgstr "HTML permitido."
1624
-
1625
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1626
- msgid "Secret Key"
1627
- msgstr ""
1628
-
1629
- #: app/features/gateways.php:569
1630
- msgid "Publishable Key"
1631
- msgstr ""
1632
-
1633
- #: app/features/gateways.php:598 app/features/gateways.php:612
1634
- msgid "Pay Locally"
1635
- msgstr "Pagué"
1636
-
1637
- #: app/features/gateways.php:766 app/features/gateways.php:780
1638
- msgid "PayPal Express"
1639
- msgstr "PayPal Express"
1640
-
1641
- #: app/features/gateways.php:798
1642
- msgid "Business Account"
1643
- msgstr "Cuenta de negocios"
1644
-
1645
- #: app/features/gateways.php:801
1646
- msgid "Normally PayPal Email."
1647
- msgstr "Paypal email."
1648
-
1649
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1650
- msgid "Mode"
1651
- msgstr "Modo"
1652
-
1653
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1654
- msgid "Live"
1655
- msgstr "Directo"
1656
-
1657
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1658
- msgid "Sandbox"
1659
- msgstr "Cajón"
1660
-
1661
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1662
- msgid "Waiting for getting response from gateway."
1663
- msgstr "Esperando obtener respuesta de entrada."
1664
-
1665
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1666
- msgid "Payment was invalid! Booking failed."
1667
- msgstr "El pago no es válido! Error en la reserva."
1668
-
1669
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1670
- msgid "PayPal Credit Card"
1671
- msgstr "Paypal Tarjeta de crédito"
1672
-
1673
- #: app/features/gateways.php:1089
1674
- msgid "API Username"
1675
- msgstr "API Username"
1676
-
1677
- #: app/features/gateways.php:1095
1678
- msgid "API Password"
1679
- msgstr "API Contraseña"
1680
-
1681
- #: app/features/gateways.php:1101
1682
- msgid "API Signature"
1683
- msgstr "API Firma"
1684
-
1685
- #: app/features/gateways.php:1181
1686
- msgid "First name"
1687
- msgstr "Primer nombre"
1688
-
1689
- #: app/features/gateways.php:1185
1690
- msgid "Last name"
1691
- msgstr "Segundo nombre"
1692
-
1693
- #: app/features/gateways.php:1189
1694
- msgid "Card Type"
1695
- msgstr "Tipo de tarjeta"
1696
-
1697
- #: app/features/gateways.php:1191
1698
- msgid "Visa"
1699
- msgstr "Visa"
1700
-
1701
- #: app/features/gateways.php:1192
1702
- msgid "MasterCard"
1703
- msgstr "MasterCard"
1704
-
1705
- #: app/features/gateways.php:1193
1706
- msgid "Discover"
1707
- msgstr "Descubre"
1708
-
1709
- #: app/features/gateways.php:1194
1710
- msgid "American Express"
1711
- msgstr "American Express"
1712
-
1713
- #: app/features/gateways.php:1198
1714
- msgid "CC Number"
1715
- msgstr "Numero CC"
1716
-
1717
- #: app/features/gateways.php:1215
1718
- msgid "CVV2"
1719
- msgstr "CVV2"
1720
-
1721
- #: app/features/gateways.php:1248
1722
- msgid "Payment is invalid."
1723
- msgstr "El pago no es válido."
1724
-
1725
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1726
- msgid "Pay by WooCommerce"
1727
- msgstr ""
1728
-
1729
- #: app/features/gateways.php:1418
1730
- #, php-format
1731
- msgid "Booking fee for %s"
1732
- msgstr ""
1733
-
1734
- #: app/features/gateways.php:1429
1735
- msgid "Your order is created. Please proceed with checkout."
1736
- msgstr ""
1737
-
1738
- #: app/features/gateways.php:1591
1739
- msgid "Add to Cart"
1740
- msgstr ""
1741
-
1742
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1743
- msgid "Checkout"
1744
- msgstr "Checkout"
1745
-
1746
- #: app/features/gateways.php:1612
1747
- msgid "WooCommerce must be installed and activated first."
1748
- msgstr ""
1749
-
1750
- #: app/features/gateways.php:1628
1751
- msgid "Automatically complete WC orders"
1752
- msgstr ""
1753
-
1754
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1755
- msgid "Enabled"
1756
- msgstr ""
1757
-
1758
- #: app/features/gateways.php:1632
1759
- #: app/features/mec/meta_boxes/search_form.php:33
1760
- #: app/features/mec/meta_boxes/search_form.php:40
1761
- #: app/features/mec/meta_boxes/search_form.php:47
1762
- #: app/features/mec/meta_boxes/search_form.php:54
1763
- #: app/features/mec/meta_boxes/search_form.php:61
1764
- #: app/features/mec/meta_boxes/search_form.php:68
1765
- #: app/features/mec/meta_boxes/search_form.php:80
1766
- #: app/features/mec/meta_boxes/search_form.php:87
1767
- #: app/features/mec/meta_boxes/search_form.php:94
1768
- #: app/features/mec/meta_boxes/search_form.php:101
1769
- #: app/features/mec/meta_boxes/search_form.php:108
1770
- #: app/features/mec/meta_boxes/search_form.php:115
1771
- #: app/features/mec/meta_boxes/search_form.php:127
1772
- #: app/features/mec/meta_boxes/search_form.php:134
1773
- #: app/features/mec/meta_boxes/search_form.php:141
1774
- #: app/features/mec/meta_boxes/search_form.php:148
1775
- #: app/features/mec/meta_boxes/search_form.php:155
1776
- #: app/features/mec/meta_boxes/search_form.php:162
1777
- #: app/features/mec/meta_boxes/search_form.php:174
1778
- #: app/features/mec/meta_boxes/search_form.php:181
1779
- #: app/features/mec/meta_boxes/search_form.php:193
1780
- #: app/features/mec/meta_boxes/search_form.php:200
1781
- #: app/features/mec/meta_boxes/search_form.php:207
1782
- #: app/features/mec/meta_boxes/search_form.php:214
1783
- #: app/features/mec/meta_boxes/search_form.php:221
1784
- #: app/features/mec/meta_boxes/search_form.php:228
1785
- #: app/features/mec/meta_boxes/search_form.php:240
1786
- #: app/features/mec/meta_boxes/search_form.php:247
1787
- #: app/features/mec/meta_boxes/search_form.php:254
1788
- #: app/features/mec/meta_boxes/search_form.php:261
1789
- #: app/features/mec/meta_boxes/search_form.php:268
1790
- #: app/features/mec/meta_boxes/search_form.php:275
1791
- #: app/features/mec/meta_boxes/search_form.php:287
1792
- #: app/features/mec/meta_boxes/search_form.php:294
1793
- #: app/features/mec/meta_boxes/search_form.php:301
1794
- #: app/features/mec/meta_boxes/search_form.php:308
1795
- #: app/features/mec/meta_boxes/search_form.php:315
1796
- #: app/features/mec/meta_boxes/search_form.php:327
1797
- #: app/features/mec/meta_boxes/search_form.php:334
1798
- #: app/features/mec/meta_boxes/search_form.php:341
1799
- #: app/features/mec/meta_boxes/search_form.php:348
1800
- #: app/features/mec/meta_boxes/search_form.php:355
1801
- #: app/features/mec/meta_boxes/search_form.php:362
1802
- #: app/features/mec/meta_boxes/search_form.php:374
1803
- #: app/features/mec/meta_boxes/search_form.php:381
1804
- #: app/features/mec/meta_boxes/search_form.php:388
1805
- #: app/features/mec/meta_boxes/search_form.php:395
1806
- #: app/features/mec/meta_boxes/search_form.php:402
1807
- #: app/features/mec/meta_boxes/search_form.php:409
1808
- #: app/features/mec/meta_boxes/search_form.php:421
1809
- #: app/features/mec/meta_boxes/search_form.php:428
1810
- #: app/features/mec/meta_boxes/search_form.php:435
1811
- #: app/features/mec/meta_boxes/search_form.php:442
1812
- #: app/features/mec/meta_boxes/search_form.php:449
1813
- #: app/features/mec/meta_boxes/search_form.php:456
1814
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1815
- #: app/features/mec/settings.php:549
1816
- msgid "Disabled"
1817
- msgstr "Desactivado"
1818
-
1819
- #: app/features/gateways.php:1634
1820
- msgid "It applies only to the orders that are related to MEC."
1821
- msgstr ""
1822
-
1823
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1824
- msgid "Free"
1825
- msgstr "Gratis"
1826
-
1827
- #: app/features/gateways.php:1744
1828
- msgid "This booking is not free!"
1829
- msgstr ""
1830
-
1831
  #: app/features/ix.php:95
1832
  msgid "MEC - Import / Export"
1833
  msgstr ""
@@ -1860,6 +1175,10 @@ msgstr ""
1860
  msgid "Third Party plugin is invalid!"
1861
  msgstr ""
1862
 
 
 
 
 
1863
  #: app/features/ix.php:1961 app/features/ix.php:2791
1864
  msgid "Please select some events to import!"
1865
  msgstr ""
@@ -1881,6 +1200,35 @@ msgstr ""
1881
  msgid "All seems good! Please click %s for authenticating your app."
1882
  msgstr ""
1883
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1884
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1885
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1886
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1926,7 +1274,7 @@ msgid ""
1926
  "This will export all of your website events' data into your desired format."
1927
  msgstr ""
1928
 
1929
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1930
  msgid "iCal"
1931
  msgstr "iCal"
1932
 
@@ -1964,6 +1312,10 @@ msgstr ""
1964
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1965
  msgstr ""
1966
 
 
 
 
 
1967
  #: app/features/ix/export_g_calendar.php:25
1968
  msgid "Add events to Google Calendar"
1969
  msgstr ""
@@ -2020,7 +1372,7 @@ msgstr "Toggle"
2020
  msgid "Add to Google Calendar"
2021
  msgstr ""
2022
 
2023
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
2024
  msgid "Checking ..."
2025
  msgstr ""
2026
 
@@ -2062,10 +1414,10 @@ msgstr ""
2062
  msgid "ICS Feed"
2063
  msgstr ""
2064
 
2065
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2066
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2067
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2068
- #: app/features/mec/settings.php:1034
2069
  #, php-format
2070
  msgid "%s is required to use this feature."
2071
  msgstr ""
@@ -2077,10 +1429,10 @@ msgstr ""
2077
  #: app/features/mec/meta_boxes/display_options.php:558
2078
  #: app/features/mec/meta_boxes/display_options.php:608
2079
  #: app/features/mec/meta_boxes/display_options.php:734
2080
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2081
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2082
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2083
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2084
  msgid "Pro version of Modern Events Calendar"
2085
  msgstr ""
2086
 
@@ -2297,6 +1649,11 @@ msgstr "Color"
2297
  msgid "Select label color"
2298
  msgstr "Elige un color de etiqueta"
2299
 
 
 
 
 
 
2300
  #: app/features/labels.php:154 app/features/locations.php:232
2301
  #: app/features/organizers.php:202
2302
  msgid "Slug"
@@ -2307,8 +1664,8 @@ msgstr "Slug"
2307
  msgid "Event %s"
2308
  msgstr ""
2309
 
2310
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2311
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2312
  msgid "Locations"
2313
  msgstr "Lugar"
2314
 
@@ -2376,7 +1733,7 @@ msgstr "Nombre del lugar"
2376
  msgid "eg. City Hall"
2377
  msgstr "ej. Almería"
2378
 
2379
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2380
  msgid "Event Location"
2381
  msgstr "Lugar del evento"
2382
 
@@ -2400,92 +1757,92 @@ msgstr "Cambiar imagen"
2400
  msgid "Don't show map in single event page"
2401
  msgstr "No mostrar el mapa en la página del detalle del evento"
2402
 
2403
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2404
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2405
  msgid "Organizers"
2406
  msgstr "Organizadores"
2407
 
2408
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2409
- #: app/features/mec/dashboard.php:92
2410
  msgid "Shortcodes"
2411
  msgstr "Shortcodes"
2412
 
2413
- #: app/features/modern-events-calendar-lite.php:195
2414
  msgid "MEC - Settings"
2415
  msgstr "Configuración"
2416
 
2417
- #: app/features/modern-events-calendar-lite.php:210
2418
  msgid "Add Shortcode"
2419
  msgstr "Nuevo Shortcode"
2420
 
2421
- #: app/features/modern-events-calendar-lite.php:211
2422
  msgid "Add New Shortcode"
2423
  msgstr "Añadir nuevo Shortcode"
2424
 
2425
- #: app/features/modern-events-calendar-lite.php:212
2426
  msgid "No shortcodes found!"
2427
  msgstr "No hay shortcodes"
2428
 
2429
- #: app/features/modern-events-calendar-lite.php:213
2430
  msgid "All Shortcodes"
2431
  msgstr "Todos los Shortcodes"
2432
 
2433
- #: app/features/modern-events-calendar-lite.php:214
2434
  msgid "Edit shortcodes"
2435
  msgstr "Editar Shortcodes"
2436
 
2437
- #: app/features/modern-events-calendar-lite.php:215
2438
  msgid "No shortcodes found in Trash!"
2439
  msgstr "No hay shortcodes en la papelera"
2440
 
2441
- #: app/features/modern-events-calendar-lite.php:262
2442
  msgid "Display Options"
2443
  msgstr "Opciones de pantalla"
2444
 
2445
- #: app/features/modern-events-calendar-lite.php:263
2446
  msgid "Filter Options"
2447
  msgstr "Opciones de filtros"
2448
 
2449
- #: app/features/modern-events-calendar-lite.php:265
2450
  #, fuzzy
2451
  msgid "Search Form"
2452
  msgstr "Buscar cupones"
2453
 
2454
- #: app/features/modern-events-calendar-lite.php:556
2455
  msgid "Single Event Display Method"
2456
  msgstr ""
2457
 
2458
- #: app/features/modern-events-calendar-lite.php:561
2459
  msgid "Separate Window"
2460
  msgstr ""
2461
 
2462
- #: app/features/modern-events-calendar-lite.php:562
2463
  msgid "Modal 1"
2464
  msgstr ""
2465
 
2466
- #: app/features/mec/dashboard.php:54
2467
  #, php-format
2468
  msgid "Welcome %s"
2469
  msgstr "Bienvenido %s"
2470
 
2471
- #: app/features/mec/dashboard.php:57
2472
  #, php-format
2473
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2474
  msgstr ""
2475
 
2476
- #: app/features/mec/dashboard.php:57
2477
  msgid "Modern Event Calendar"
2478
  msgstr ""
2479
 
2480
- #: app/features/mec/dashboard.php:57
2481
  msgid "Modern Event Calendar (Lite)"
2482
  msgstr ""
2483
 
2484
- #: app/features/mec/dashboard.php:66
2485
  msgid "Version"
2486
  msgstr "Versión"
2487
 
2488
- #: app/features/mec/dashboard.php:75
2489
  #, php-format
2490
  msgid ""
2491
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2493,40 +1850,40 @@ msgid ""
2493
  "Spots, etc you should %s to the Pro version."
2494
  msgstr ""
2495
 
2496
- #: app/features/mec/dashboard.php:75
2497
  msgid "lite"
2498
  msgstr ""
2499
 
2500
- #: app/features/mec/dashboard.php:75
2501
  msgid "upgrade"
2502
  msgstr ""
2503
 
2504
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2505
  msgid "Documentation"
2506
  msgstr "Documentación"
2507
 
2508
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2509
  msgid ""
2510
  "Our documentation is simple and functional with full details and cover all "
2511
  "essential aspects from beginning to the most advanced parts."
2512
  msgstr "Nuestra documentación es simple y funcional."
2513
 
2514
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2515
  msgid "DOCUMENTATION"
2516
  msgstr "DOCUMENTACIÓN"
2517
 
2518
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2519
  msgid "Support Forum"
2520
  msgstr "Soporte"
2521
 
2522
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2523
  msgid ""
2524
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2525
  "If you want to use this service you need to upgrade your plugin to Pro "
2526
  "version. Click on the following button."
2527
  msgstr ""
2528
 
2529
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2530
  #, fuzzy
2531
  msgid ""
2532
  "Webnus is elite and trusted author with high percentage of satisfied user. "
@@ -2536,80 +1893,80 @@ msgstr ""
2536
  "Si usted tiene algún problema por favor no dude en ponerse en contacto con "
2537
  "nosotros, le responderemos tan pronto como sea posible."
2538
 
2539
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2540
  msgid "GO PREMIUM"
2541
  msgstr ""
2542
 
2543
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2544
  msgid "OPEN A TICKET"
2545
  msgstr "ABRIR UN TICKET"
2546
 
2547
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2548
  msgid "Upcoming Events"
2549
  msgstr ""
2550
 
2551
- #: app/features/mec/dashboard.php:177
2552
  msgid "Popular Gateways"
2553
  msgstr ""
2554
 
2555
- #: app/features/mec/dashboard.php:228
2556
  msgid "Total Bookings"
2557
  msgstr ""
2558
 
2559
- #: app/features/mec/dashboard.php:255
2560
  msgid "This Month"
2561
  msgstr ""
2562
 
2563
- #: app/features/mec/dashboard.php:256
2564
  msgid "Last Month"
2565
  msgstr ""
2566
 
2567
- #: app/features/mec/dashboard.php:257
2568
  msgid "This Year"
2569
  msgstr ""
2570
 
2571
- #: app/features/mec/dashboard.php:258
2572
  msgid "Last Year"
2573
  msgstr ""
2574
 
2575
- #: app/features/mec/dashboard.php:270
2576
  msgid "Bar"
2577
  msgstr ""
2578
 
2579
- #: app/features/mec/dashboard.php:271
2580
  msgid "Line"
2581
  msgstr ""
2582
 
2583
- #: app/features/mec/dashboard.php:273
2584
  msgid "Filter"
2585
  msgstr ""
2586
 
2587
- #: app/features/mec/dashboard.php:289
2588
  #, php-format
2589
  msgid "Total Sells (%s)"
2590
  msgstr ""
2591
 
2592
- #: app/features/mec/dashboard.php:310
2593
  msgid "Change Log"
2594
  msgstr "Log"
2595
 
2596
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2597
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2598
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2599
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2600
  msgid "Styling Options"
2601
  msgstr "Opciones visuales"
2602
 
2603
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2604
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2605
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2606
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2607
  msgid "Custom CSS"
2608
  msgstr "CSS Custom"
2609
 
2610
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2611
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2612
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2613
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2614
  #: app/features/mec/support.php:64
2615
  msgid "Messages"
@@ -2617,7 +1974,7 @@ msgstr ""
2617
 
2618
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2619
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2620
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2621
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2622
  #: app/features/mec/support.php:84
2623
  msgid "Support"
@@ -2630,24 +1987,25 @@ msgstr "Soporte"
2630
  #: app/features/mec/notifications.php:409
2631
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2632
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2633
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2634
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2635
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2636
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2637
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2638
  msgid "Save Changes"
2639
  msgstr "Guardar Cambios"
2640
 
2641
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2642
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2643
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2644
  #: app/features/mec/styling.php:313
2645
  msgid "Saved"
2646
  msgstr ""
2647
 
2648
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2649
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2650
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2651
  #: app/features/mec/styling.php:314
2652
  msgid "Settings Saved!"
2653
  msgstr ""
@@ -2859,6 +2217,15 @@ msgstr "Valor por defecto del evento"
2859
  msgid "Default values are d and F"
2860
  msgstr "Valor por defecto del evento"
2861
 
 
 
 
 
 
 
 
 
 
2862
  #: app/features/mec/meta_boxes/display_options.php:86
2863
  #: app/features/mec/meta_boxes/display_options.php:195
2864
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -2942,13 +2309,13 @@ msgstr "Default"
2942
 
2943
  #: app/features/mec/meta_boxes/display_options.php:287
2944
  #: app/features/mec/meta_boxes/display_options.php:296
2945
- #: app/libraries/main.php:323 app/libraries/main.php:1118
2946
  msgid "List View"
2947
  msgstr "Ver lista"
2948
 
2949
  #: app/features/mec/meta_boxes/display_options.php:288
2950
  #: app/features/mec/meta_boxes/display_options.php:306
2951
- #: app/libraries/main.php:327 app/libraries/main.php:1112
2952
  msgid "Yearly View"
2953
  msgstr ""
2954
 
@@ -2960,13 +2327,13 @@ msgstr "Ver Calendario/Mes"
2960
 
2961
  #: app/features/mec/meta_boxes/display_options.php:290
2962
  #: app/features/mec/meta_boxes/display_options.php:326
2963
- #: app/libraries/main.php:330 app/libraries/main.php:1114
2964
  msgid "Weekly View"
2965
  msgstr "Ver semana"
2966
 
2967
  #: app/features/mec/meta_boxes/display_options.php:291
2968
  #: app/features/mec/meta_boxes/display_options.php:336
2969
- #: app/libraries/main.php:329 app/libraries/main.php:1115
2970
  msgid "Daily View"
2971
  msgstr "Ver día"
2972
 
@@ -3211,6 +2578,66 @@ msgstr ""
3211
  msgid "Show Search Form"
3212
  msgstr ""
3213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3214
  #: app/features/mec/meta_boxes/search_form.php:59
3215
  #: app/features/mec/meta_boxes/search_form.php:106
3216
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3449,6 +2876,14 @@ msgstr ""
3449
  msgid "Invoice Link"
3450
  msgstr ""
3451
 
 
 
 
 
 
 
 
 
3452
  #: app/features/mec/notifications.php:145
3453
  msgid "Booking Verification"
3454
  msgstr "Verificación de la reserva"
@@ -3466,7 +2901,7 @@ msgstr "Insertar varios destinatarios, separados por comas."
3466
  msgid "Email/Booking verification link."
3467
  msgstr "Email/Reserva enlace de verificación."
3468
 
3469
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3470
  msgid "Booking Confirmation"
3471
  msgstr "Confirmación de reserva"
3472
 
@@ -3549,7 +2984,7 @@ msgstr "Fecha de reserva del evento"
3549
  msgid "Status of event"
3550
  msgstr "Inicio del siguiente mes"
3551
 
3552
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3553
  msgid "Event Note"
3554
  msgstr ""
3555
 
@@ -3558,491 +2993,499 @@ msgstr ""
3558
  msgid "Admin events management link."
3559
  msgstr "Enlace del administrador de reservas."
3560
 
3561
- #: app/features/mec/settings.php:42
3562
  msgid "Archive Page Options"
3563
  msgstr ""
3564
 
3565
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3566
  msgid "Export Module Options"
3567
  msgstr "Exportar módulo de opciones"
3568
 
3569
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3570
  msgid "Local Time Module"
3571
  msgstr ""
3572
 
3573
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3574
  msgid "QR Code Module"
3575
  msgstr ""
3576
 
3577
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3578
  msgid "Weather Module"
3579
  msgstr ""
3580
 
3581
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3582
  #, fuzzy
3583
  msgid "Additional Organizers"
3584
  msgstr "Todos los organizadores"
3585
 
3586
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3587
  msgid "Taxes / Fees"
3588
  msgstr "Impuestos/Tasas"
3589
 
3590
- #: app/features/mec/settings.php:250
3591
  #, fuzzy
3592
  msgid "Time Format"
3593
  msgstr "Tiempo para comentar"
3594
 
3595
- #: app/features/mec/settings.php:253
3596
  msgid "12 hours format with AM/PM"
3597
  msgstr ""
3598
 
3599
- #: app/features/mec/settings.php:254
3600
  msgid "24 hours format"
3601
  msgstr ""
3602
 
3603
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3604
  msgid ""
3605
  "This option is for showing start/end time of events on frontend of website."
3606
  msgstr ""
3607
 
3608
- #: app/features/mec/settings.php:261
3609
  msgid "Hide Events"
3610
  msgstr ""
3611
 
3612
- #: app/features/mec/settings.php:264
3613
  msgid "On Event Start"
3614
  msgstr ""
3615
 
3616
- #: app/features/mec/settings.php:265
3617
  msgid "+1 Hour after start"
3618
  msgstr ""
3619
 
3620
- #: app/features/mec/settings.php:266
3621
  msgid "+2 Hours after start"
3622
  msgstr ""
3623
 
3624
- #: app/features/mec/settings.php:267
3625
  msgid "On Event End"
3626
  msgstr ""
3627
 
3628
- #: app/features/mec/settings.php:275
3629
  #, fuzzy
3630
  msgid "Multiple Day Events"
3631
  msgstr "Todos los eventos de hoy"
3632
 
3633
- #: app/features/mec/settings.php:278
3634
  msgid "Show only first day on List/Grid/Slider skins"
3635
  msgstr ""
3636
 
3637
- #: app/features/mec/settings.php:279
3638
  msgid "Show only first day on all skins"
3639
  msgstr ""
3640
 
3641
- #: app/features/mec/settings.php:280
3642
  #, fuzzy
3643
  msgid "Show all days"
3644
  msgstr "Mostrar todas las etiquetas"
3645
 
3646
- #: app/features/mec/settings.php:282
3647
  msgid ""
3648
  "For showing all days of multiple day events on frontend or only show the "
3649
  "first day."
3650
  msgstr ""
3651
 
3652
- #: app/features/mec/settings.php:288
3653
  msgid "Remove MEC Data on Plugin Uninstall"
3654
  msgstr ""
3655
 
3656
- #: app/features/mec/settings.php:298
 
 
 
 
3657
  msgid "Exclude Date Suffix"
3658
  msgstr ""
3659
 
3660
- #: app/features/mec/settings.php:301
3661
  msgid "Remove suffix from calendars"
3662
  msgstr ""
3663
 
3664
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3665
  msgid "Weekdays"
3666
  msgstr ""
3667
 
3668
- #: app/features/mec/settings.php:316
3669
  msgid ""
3670
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3671
  "and Friday."
3672
  msgstr ""
3673
 
3674
- #: app/features/mec/settings.php:323
3675
  msgid "Weekends"
3676
  msgstr ""
3677
 
3678
- #: app/features/mec/settings.php:331
3679
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3680
  msgstr ""
3681
 
3682
- #: app/features/mec/settings.php:339
3683
  msgid "Archive Pages"
3684
  msgstr ""
3685
 
3686
- #: app/features/mec/settings.php:342
3687
  msgid "Archive Page Title"
3688
  msgstr "Título de la página de archivo"
3689
 
3690
- #: app/features/mec/settings.php:345
3691
  msgid "Default value is Events"
3692
  msgstr "Valor por defecto del evento"
3693
 
3694
- #: app/features/mec/settings.php:350
3695
  msgid "Archive Page Skin"
3696
  msgstr "Tema de la página de archivo"
3697
 
3698
- #: app/features/mec/settings.php:357
3699
  msgid "Default value is Calendar/Monthly View"
3700
  msgstr "El valor por defecto es la vista Calendar/Monthly"
3701
 
3702
- #: app/features/mec/settings.php:362
3703
  #, fuzzy
3704
  msgid "Category Page Skin"
3705
  msgstr "Categoría"
3706
 
3707
- #: app/features/mec/settings.php:369
3708
  #, fuzzy
3709
  msgid "Default value is List View"
3710
  msgstr "Valor por defecto del evento"
3711
 
3712
- #: app/features/mec/settings.php:374
3713
  msgid "Category Events Method"
3714
  msgstr ""
3715
 
3716
- #: app/features/mec/settings.php:378
3717
  msgid "Expired Events"
3718
  msgstr ""
3719
 
3720
- #: app/features/mec/settings.php:380
3721
  msgid "Default value is Upcoming Events"
3722
  msgstr ""
3723
 
3724
- #: app/features/mec/settings.php:385
3725
  msgid "Events Archive Status"
3726
  msgstr ""
3727
 
3728
- #: app/features/mec/settings.php:388
3729
  msgid "Enabled (Recommended)"
3730
  msgstr ""
3731
 
3732
- #: app/features/mec/settings.php:391
3733
  msgid ""
3734
  "If you disable it, then you should create a page as archive page of MEC. "
3735
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3736
  "MEC rewrite rules."
3737
  msgstr ""
3738
 
3739
- #: app/features/mec/settings.php:401
3740
  msgid "Main Slug"
3741
  msgstr "Menu slug"
3742
 
3743
- #: app/features/mec/settings.php:404
3744
  msgid ""
3745
  "Default value is events. Valid characters are lowercase a-z, - character and "
3746
  "numbers."
3747
  msgstr ""
3748
 
3749
- #: app/features/mec/settings.php:408
3750
  #, fuzzy
3751
  msgid "Category Slug"
3752
  msgstr "Categoría"
3753
 
3754
- #: app/features/mec/settings.php:411
3755
  msgid ""
3756
  "It's slug of MEC categories, you can change it to events-cat or something "
3757
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3758
  "character and numbers."
3759
  msgstr ""
3760
 
3761
- #: app/features/mec/settings.php:421
3762
  msgid "Single Event Date Format"
3763
  msgstr ""
3764
 
3765
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3766
  #, fuzzy
3767
  msgid "Default is M d Y"
3768
  msgstr "Default"
3769
 
3770
- #: app/features/mec/settings.php:428
3771
  msgid "Date Method"
3772
  msgstr ""
3773
 
3774
- #: app/features/mec/settings.php:431
3775
  msgid "Next occurrence date"
3776
  msgstr ""
3777
 
3778
- #: app/features/mec/settings.php:432
3779
  msgid "Referred date"
3780
  msgstr ""
3781
 
3782
- #: app/features/mec/settings.php:434
3783
  msgid ""
3784
  "\"Referred date\" shows the event date based on referred date in event list."
3785
  msgstr ""
3786
 
3787
- #: app/features/mec/settings.php:438
3788
  msgid "Single Event Style"
3789
  msgstr ""
3790
 
3791
- #: app/features/mec/settings.php:441
3792
  msgid "Default Style"
3793
  msgstr ""
3794
 
3795
- #: app/features/mec/settings.php:442
3796
  msgid "Modern Style"
3797
  msgstr ""
3798
 
3799
- #: app/features/mec/settings.php:444
3800
  msgid "Choose your single event style."
3801
  msgstr ""
3802
 
3803
- #: app/features/mec/settings.php:453
3804
  msgid "Currency"
3805
  msgstr "Moneda corriente"
3806
 
3807
- #: app/features/mec/settings.php:463
3808
  msgid "Currency Sign"
3809
  msgstr "Tipo de moneda"
3810
 
3811
- #: app/features/mec/settings.php:466
3812
  msgid "Default value will be \"currency\" if you leave it empty."
3813
  msgstr ""
3814
 
3815
- #: app/features/mec/settings.php:470
3816
  #, fuzzy
3817
  msgid "Currency Position"
3818
  msgstr "Opciones de moneda"
3819
 
3820
- #: app/features/mec/settings.php:473
3821
  msgid "Before $10"
3822
  msgstr "Menos de 10€"
3823
 
3824
- #: app/features/mec/settings.php:474
3825
  msgid "After 10$"
3826
  msgstr "Más de 10€"
3827
 
3828
- #: app/features/mec/settings.php:479
3829
  msgid "Thousand Separator"
3830
  msgstr "Separador de miles"
3831
 
3832
- #: app/features/mec/settings.php:485
3833
  msgid "Decimal Separator"
3834
  msgstr "Separador de decimales"
3835
 
3836
- #: app/features/mec/settings.php:495
3837
  msgid "No decimal"
3838
  msgstr "No decimal"
3839
 
3840
- #: app/features/mec/settings.php:511
3841
  msgid "Show Google Maps on event page"
3842
  msgstr "Ver eventos en Google Maps"
3843
 
3844
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3845
- #: app/features/mec/settings.php:1135
3846
  msgid "API Key"
3847
  msgstr "API Key"
3848
 
3849
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3850
- #: app/features/mec/settings.php:1145
3851
  msgid "Required!"
3852
  msgstr "Obligatorio!"
3853
 
3854
- #: app/features/mec/settings.php:523
3855
  msgid "Zoom level"
3856
  msgstr "Nivel de zoom"
3857
 
3858
- #: app/features/mec/settings.php:530
3859
  msgid ""
3860
  "For Google Maps module in single event page. In Google Maps skin, it will "
3861
  "caculate the zoom level automatically based on event boundaries."
3862
  msgstr ""
3863
 
3864
- #: app/features/mec/settings.php:534
3865
  msgid "Google Maps Style"
3866
  msgstr "Estilo de Google Maps"
3867
 
3868
- #: app/features/mec/settings.php:538
3869
  msgid "Default"
3870
  msgstr "Default"
3871
 
3872
- #: app/features/mec/settings.php:546
3873
  msgid "Direction on single event"
3874
  msgstr "Dirección en la página del evento"
3875
 
3876
- #: app/features/mec/settings.php:550
3877
  msgid "Simple Method"
3878
  msgstr "Método simple"
3879
 
3880
- #: app/features/mec/settings.php:551
3881
  msgid "Advanced Method"
3882
  msgstr "Método avanzado"
3883
 
3884
- #: app/features/mec/settings.php:556
3885
  msgid "Lightbox Date Format"
3886
  msgstr ""
3887
 
3888
- #: app/features/mec/settings.php:559
3889
  #, fuzzy
3890
  msgid "Default value is M d Y"
3891
  msgstr "Valor por defecto del evento"
3892
 
3893
- #: app/features/mec/settings.php:563
3894
  #, fuzzy
3895
  msgid "Google Maps API"
3896
  msgstr "Estilo de Google Maps"
3897
 
3898
- #: app/features/mec/settings.php:567
3899
  msgid "Don't load Google Maps API library"
3900
  msgstr ""
3901
 
3902
- #: app/features/mec/settings.php:569
3903
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3904
  msgstr ""
3905
 
3906
- #: app/features/mec/settings.php:581
3907
  msgid "Enable Google Recaptcha"
3908
  msgstr ""
3909
 
3910
- #: app/features/mec/settings.php:588
3911
  #, fuzzy
3912
  msgid "Enable on booking form"
3913
  msgstr "Activar módulo de reservas"
3914
 
3915
- #: app/features/mec/settings.php:594
3916
  msgid "Enable on \"Frontend Event Submittion\" form"
3917
  msgstr ""
3918
 
3919
- #: app/features/mec/settings.php:598
3920
  msgid "Site Key"
3921
  msgstr ""
3922
 
3923
- #: app/features/mec/settings.php:618
 
 
 
 
3924
  msgid ""
3925
  "Show export module (iCal export and add to Google calendars) on event page"
3926
  msgstr "Ver modulo exportado (iCal y Google Calendars) en la página del evento"
3927
 
3928
- #: app/features/mec/settings.php:625
3929
  msgid "Google Calendar"
3930
  msgstr "Google Calendar"
3931
 
3932
- #: app/features/mec/settings.php:645
3933
  msgid "Show event time based on local time of visitor on event page"
3934
  msgstr ""
3935
 
3936
- #: app/features/mec/settings.php:661
3937
  msgid "Show QR code of event in details page and booking invoice"
3938
  msgstr ""
3939
 
3940
- #: app/features/mec/settings.php:679
3941
  msgid "Show weather module on event page"
3942
  msgstr ""
3943
 
3944
- #: app/features/mec/settings.php:687
3945
  #, php-format
3946
  msgid "You can get a free API Key from %s"
3947
  msgstr ""
3948
 
3949
- #: app/features/mec/settings.php:699
3950
  msgid "Show countdown module on event page"
3951
  msgstr "Mostrar módulo de cuenta atrás en la página del evento"
3952
 
3953
- #: app/features/mec/settings.php:704
3954
  msgid "Countdown Style"
3955
  msgstr ""
3956
 
3957
- #: app/features/mec/settings.php:707
3958
  msgid "Plain Style"
3959
  msgstr ""
3960
 
3961
- #: app/features/mec/settings.php:708
3962
  msgid "Flip Style"
3963
  msgstr ""
3964
 
3965
- #: app/features/mec/settings.php:720
3966
  msgid "Show social network module"
3967
  msgstr "Ver módulo de redes sociales"
3968
 
3969
- #: app/features/mec/settings.php:745
3970
  msgid "Show next event module on event page"
3971
  msgstr ""
3972
 
3973
- #: app/features/mec/settings.php:750
3974
  msgid "Method"
3975
  msgstr ""
3976
 
3977
- #: app/features/mec/settings.php:753
3978
  msgid "Next Occurrence of Current Event"
3979
  msgstr ""
3980
 
3981
- #: app/features/mec/settings.php:754
3982
  msgid "Next Occurrence of Other Events"
3983
  msgstr ""
3984
 
3985
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
3986
  #, fuzzy
3987
  msgid "Date Format"
3988
  msgstr "Tiempo para comentar"
3989
 
3990
- #: app/features/mec/settings.php:771
3991
  #, fuzzy
3992
  msgid "Events List Page"
3993
  msgstr "Título del evento"
3994
 
3995
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
3996
  #, php-format
3997
  msgid "Put %s shortcode into the page."
3998
  msgstr ""
3999
 
4000
- #: app/features/mec/settings.php:783
4001
  #, fuzzy
4002
  msgid "Add/Edit Events Page"
4003
  msgstr "Editar eventos"
4004
 
4005
- #: app/features/mec/settings.php:797
4006
  msgid "Enable event submission by guest (Not logged-in) users"
4007
  msgstr ""
4008
 
4009
- #: app/features/mec/settings.php:804
4010
  msgid "Enable mandatory email and name for guest user"
4011
  msgstr ""
4012
 
4013
- #: app/features/mec/settings.php:808
4014
  msgid "Frontend Event Submission Sections"
4015
  msgstr ""
4016
 
4017
- #: app/features/mec/settings.php:830
4018
  #, fuzzy
4019
  msgid "Event Categories"
4020
  msgstr "Categorías"
4021
 
4022
- #: app/features/mec/settings.php:836
4023
  msgid "Event Labels"
4024
  msgstr "Etiqueta de evento"
4025
 
4026
- #: app/features/mec/settings.php:848
4027
  #, fuzzy
4028
  msgid "Event Tags"
4029
  msgstr "Eventos"
4030
 
4031
- #: app/features/mec/settings.php:860
4032
  msgid "Event Organizer"
4033
  msgstr "Organizador de eventos"
4034
 
4035
- #: app/features/mec/settings.php:872
4036
  #, fuzzy
4037
  msgid "Booking Options"
4038
  msgstr "Opciones visuales"
4039
 
4040
- #: app/features/mec/settings.php:878
4041
  #, fuzzy
4042
  msgid "Fees/Taxes Options"
4043
  msgstr "Opciones generales"
4044
 
4045
- #: app/features/mec/settings.php:886
4046
  #, php-format
4047
  msgid ""
4048
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4050,210 +3493,215 @@ msgid ""
4050
  "users' note in email."
4051
  msgstr ""
4052
 
4053
- #: app/features/mec/settings.php:890
4054
  msgid "Visibility of Note"
4055
  msgstr ""
4056
 
4057
- #: app/features/mec/settings.php:893
4058
  msgid "Always"
4059
  msgstr ""
4060
 
4061
- #: app/features/mec/settings.php:894
4062
  msgid "While event is not published"
4063
  msgstr ""
4064
 
4065
- #: app/features/mec/settings.php:897
4066
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4067
  msgstr ""
4068
 
4069
- #: app/features/mec/settings.php:903
4070
  msgid "Exceptional days"
4071
  msgstr ""
4072
 
4073
- #: app/features/mec/settings.php:907
4074
  msgid "Show exceptional days option on Add/Edit events page"
4075
  msgstr ""
4076
 
4077
- #: app/features/mec/settings.php:908
4078
  msgid ""
4079
  "Using this option you can include/exclude certain days to/from event "
4080
  "occurrence dates."
4081
  msgstr ""
4082
 
4083
- #: app/features/mec/settings.php:918
4084
  msgid ""
4085
  "Show additional organizers option on Add/Edit events page and single event "
4086
  "page."
4087
  msgstr ""
4088
 
4089
- #: app/features/mec/settings.php:932
4090
  msgid "Enable booking module"
4091
  msgstr "Activar módulo de reservas"
4092
 
4093
- #: app/features/mec/settings.php:940
4094
  #, fuzzy
4095
  msgid "Default is Y-m-d"
4096
  msgstr "Default"
4097
 
4098
- #: app/features/mec/settings.php:944
4099
  #, fuzzy
4100
  msgid "Maximum Dates"
4101
  msgstr "Máximo de eventos"
4102
 
4103
- #: app/features/mec/settings.php:946
4104
  #, fuzzy
4105
  msgid "Default is 6"
4106
  msgstr "Default"
4107
 
4108
- #: app/features/mec/settings.php:950
4109
  msgid "Thank You Page"
4110
  msgstr ""
4111
 
4112
- #: app/features/mec/settings.php:958
4113
  msgid ""
4114
  "User redirects to this page after booking. Leave it empty if you want to "
4115
  "disable it."
4116
  msgstr ""
4117
 
4118
- #: app/features/mec/settings.php:966
4119
  msgid "Enable Express Attendees Form"
4120
  msgstr ""
4121
 
4122
- #: app/features/mec/settings.php:968
4123
  msgid ""
4124
  "Users are able to apply first attendee information for other attendees in "
4125
  "the booking form."
4126
  msgstr ""
4127
 
4128
- #: app/features/mec/settings.php:971
4129
  #, fuzzy
4130
  msgid "Email verification"
4131
  msgstr "Verificar"
4132
 
4133
- #: app/features/mec/settings.php:977
4134
  msgid "Auto verification for free bookings"
4135
  msgstr "Auto verificación para reservas gratuitas"
4136
 
4137
- #: app/features/mec/settings.php:986
4138
  msgid "Auto verification for paid bookings"
4139
  msgstr "Auto verificación para reservas de pago"
4140
 
4141
- #: app/features/mec/settings.php:996
4142
  #, fuzzy
4143
  msgid "Auto confirmation for free bookings"
4144
  msgstr "Auto verificación para reservas gratuitas"
4145
 
4146
- #: app/features/mec/settings.php:1005
4147
  #, fuzzy
4148
  msgid "Auto confirmation for paid bookings"
4149
  msgstr "Auto verificación para reservas de pago"
4150
 
4151
- #: app/features/mec/settings.php:1022
4152
  msgid "Enable coupons module"
4153
  msgstr "Activar módulo de cupones"
4154
 
4155
- #: app/features/mec/settings.php:1039
4156
  msgid "Enable taxes / fees module"
4157
  msgstr "Activar módulo de Impuestos/Tasas"
4158
 
4159
- #: app/features/mec/settings.php:1044
4160
  msgid "Add Fee"
4161
  msgstr "Nueva tasa"
4162
 
4163
- #: app/features/mec/settings.php:1100
4164
  msgid "Enable BuddyPress Integration"
4165
  msgstr ""
4166
 
4167
- #: app/features/mec/settings.php:1107
4168
  msgid "Show \"Attendees Module\" in event details page"
4169
  msgstr ""
4170
 
4171
- #: app/features/mec/settings.php:1111
4172
  msgid "Attendees Limit"
4173
  msgstr ""
4174
 
4175
- #: app/features/mec/settings.php:1119
4176
  msgid "Add booking activity to user profile"
4177
  msgstr ""
4178
 
4179
- #: app/features/mec/settings.php:1130
4180
  msgid "Enable Mailchimp Integration"
4181
  msgstr ""
4182
 
4183
- #: app/features/mec/settings.php:1142
4184
  msgid "List ID"
4185
  msgstr ""
4186
 
4187
- #: app/features/mec/settings.php:1149
4188
  msgid "Subscription Status"
4189
  msgstr ""
4190
 
4191
- #: app/features/mec/settings.php:1152
4192
  msgid "Subscribe automatically"
4193
  msgstr ""
4194
 
4195
- #: app/features/mec/settings.php:1153
4196
  msgid "Subscribe by verification"
4197
  msgstr ""
4198
 
4199
- #: app/features/mec/settings.php:1155
4200
  msgid ""
4201
  "If you choose \"Subscribe by verification\" then an email will send to user "
4202
  "by mailchimp for subscription verification."
4203
  msgstr ""
4204
 
4205
- #: app/features/mec/settings.php:1165
4206
  #, php-format
4207
  msgid "%s is required to use this section."
4208
  msgstr ""
4209
 
4210
- #: app/features/mec/settings.php:1168
4211
  msgid "Purchase Code"
4212
  msgstr ""
4213
 
4214
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4215
  #, fuzzy
4216
  msgid "UnVerified"
4217
  msgstr "Verificado"
4218
 
4219
- #: app/features/mec/settings.php:1177
4220
  msgid ""
4221
  "Please insert your purchase code validation. read documentation for more "
4222
  "information."
4223
  msgstr ""
4224
 
4225
- #: app/features/mec/settings.php:1180
4226
  msgid "Product Name"
4227
  msgstr ""
4228
 
4229
- #: app/features/mec/settings.php:1183
4230
  msgid "1 License for MEC Plugin"
4231
  msgstr ""
4232
 
4233
- #: app/features/mec/settings.php:1184
4234
  msgid "5 License for MEC Plugin"
4235
  msgstr ""
4236
 
4237
- #: app/features/mec/settings.php:1185
4238
  msgid "10 License for MEC Plugin"
4239
  msgstr ""
4240
 
4241
- #: app/features/mec/settings.php:1192
4242
  msgid "MEC Deactivation"
4243
  msgstr ""
4244
 
4245
- #: app/features/mec/settings.php:1194
4246
  msgid "Deactivate"
4247
  msgstr ""
4248
 
4249
- #: app/features/mec/settings.php:1196
4250
  msgid ""
4251
  "For deactivation first delete your purchase from above field then press save "
4252
  "after that click on deactivate for deactivate this purchase code from this "
4253
  "domain then you can activate another domain."
4254
  msgstr ""
4255
 
4256
- #: app/features/mec/settings.php:1257
4257
  msgid "Please Refresh Page"
4258
  msgstr ""
4259
 
@@ -4408,7 +3856,7 @@ msgstr "ej. user@yoursite.com"
4408
  msgid "eg. https://webnus.net"
4409
  msgstr "ej. https://webnus.net"
4410
 
4411
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4412
  #: app/skins/single.php:194
4413
  msgid "Other Organizers"
4414
  msgstr ""
@@ -4423,6 +3871,15 @@ msgstr ""
4423
  msgid "%s Price"
4424
  msgstr ""
4425
 
 
 
 
 
 
 
 
 
 
4426
  #: app/libraries/factory.php:148
4427
  #, fuzzy
4428
  msgid "M.E. Calendar"
@@ -4496,32 +3953,32 @@ msgstr ""
4496
  msgid "There is no excerpt because this is a protected post."
4497
  msgstr "No hay extracto porque es una entrada protegida."
4498
 
4499
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4500
  msgid "Grid View"
4501
  msgstr "Ver cuadrícula"
4502
 
4503
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4504
  msgid "Agenda View"
4505
  msgstr ""
4506
 
4507
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4508
  #, fuzzy
4509
  msgid "Full Calendar"
4510
  msgstr "Calendario"
4511
 
4512
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4513
  msgid "Calendar/Monthly View"
4514
  msgstr "Ver Calendario/Mes"
4515
 
4516
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4517
  msgid "Timetable View"
4518
  msgstr ""
4519
 
4520
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4521
  msgid "Masonry View"
4522
  msgstr ""
4523
 
4524
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4525
  msgid "Map View"
4526
  msgstr "Ver mapa"
4527
 
@@ -4547,31 +4004,31 @@ msgstr "Ver portada"
4547
  msgid "Slider View"
4548
  msgstr ""
4549
 
4550
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4551
  msgid "SU"
4552
  msgstr ""
4553
 
4554
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4555
  msgid "MO"
4556
  msgstr ""
4557
 
4558
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4559
  msgid "TU"
4560
  msgstr ""
4561
 
4562
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4563
  msgid "WE"
4564
  msgstr ""
4565
 
4566
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4567
  msgid "TH"
4568
  msgstr ""
4569
 
4570
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4571
  msgid "FR"
4572
  msgstr ""
4573
 
4574
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4575
  msgid "SA"
4576
  msgstr ""
4577
 
@@ -4595,226 +4052,252 @@ msgstr "Google+"
4595
  msgid "Twitter"
4596
  msgstr "Twitter"
4597
 
4598
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4599
  msgid "Linkedin"
4600
  msgstr "LinkedIn"
4601
 
4602
- #: app/libraries/main.php:1052
 
 
 
 
4603
  msgid "Share on Facebook"
4604
  msgstr "Compartir en Facebook"
4605
 
4606
- #: app/libraries/main.php:1064
4607
  msgid "Google Plus"
4608
  msgstr "Google Plus"
4609
 
4610
- #: app/libraries/main.php:1076
4611
  msgid "Tweet"
4612
  msgstr "Tweet"
4613
 
4614
- #: app/libraries/main.php:1456
4615
  msgid "Your booking successfully verified."
4616
  msgstr "Su reserva verificada correctamente."
4617
 
4618
- #: app/libraries/main.php:1457
4619
  msgid "Your booking cannot verify!"
4620
  msgstr "Su reserva no se puede verificar!"
4621
 
4622
- #: app/libraries/main.php:1469
4623
  msgid "Your booking successfully canceled."
4624
  msgstr "Su reserva se ha cancelado correctamente."
4625
 
4626
- #: app/libraries/main.php:1470
4627
  msgid "Your booking cannot be canceled."
4628
  msgstr "La reserva no puede cancelarse."
4629
 
4630
- #: app/libraries/main.php:1474
4631
  msgid "You canceled the payment successfully."
4632
  msgstr "Has cancelado el pago correctamente."
4633
 
4634
- #: app/libraries/main.php:1478
4635
  msgid "You returned from payment gateway successfully."
4636
  msgstr "Has vuelto correctamente de tu pasarela de pago."
4637
 
4638
- #: app/libraries/main.php:1502
4639
  msgid "Cannot find the booking!"
4640
  msgstr ""
4641
 
4642
- #: app/libraries/main.php:1502
4643
  msgid "Booking is invalid."
4644
  msgstr ""
4645
 
4646
- #: app/libraries/main.php:1523
4647
  #, php-format
4648
  msgid "%s Invoice"
4649
  msgstr ""
4650
 
4651
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4652
  msgid "Billing"
4653
  msgstr ""
4654
 
4655
- #: app/libraries/main.php:1586
4656
  msgid "Total"
4657
  msgstr ""
4658
 
4659
- #: app/libraries/main.php:1619
4660
  msgid "Security nonce is not valid."
4661
  msgstr "La seguridad no es válida."
4662
 
4663
- #: app/libraries/main.php:1619
4664
  msgid "iCal export stopped!"
4665
  msgstr "La exportación de iCal se detuvo!"
4666
 
4667
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4668
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4669
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4670
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4671
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4672
  msgid "Sort"
4673
  msgstr "Orden"
4674
 
4675
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4676
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4677
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4678
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4679
  msgid "Required Field"
4680
  msgstr "Campo obligatorio"
4681
 
4682
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4683
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4684
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4685
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4686
  msgid "Insert a label for this field"
4687
  msgstr "Introduzca una etiqueta para este campo"
4688
 
4689
- #: app/libraries/main.php:1962
4690
  msgid "HTML and shortcode are allowed."
4691
  msgstr "Se permite HTML"
4692
 
4693
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4694
- #: app/libraries/main.php:2093
4695
  msgid "Option"
4696
  msgstr "Opción"
4697
 
4698
- #: app/libraries/main.php:2127
4699
  #, php-format
4700
  msgid "Instead of %s, the page title with a link will be show."
4701
  msgstr ""
4702
 
4703
- #: app/libraries/main.php:2129
4704
  msgid "Agreement Page"
4705
  msgstr ""
4706
 
4707
- #: app/libraries/main.php:2138
4708
  msgid "Status"
4709
  msgstr ""
4710
 
4711
- #: app/libraries/main.php:2140
4712
  msgid "Checked by default"
4713
  msgstr ""
4714
 
4715
- #: app/libraries/main.php:2141
4716
  msgid "Unchecked by default"
4717
  msgstr ""
4718
 
4719
- #: app/libraries/main.php:2163
4720
  msgid "Insert a label for this option"
4721
  msgstr "Introduce una etiqueta para esta opción"
4722
 
4723
- #: app/libraries/main.php:2830
 
 
 
 
4724
  #, php-format
4725
  msgid "Copy of %s"
4726
  msgstr ""
4727
 
4728
- #: app/libraries/main.php:3467
4729
  msgid "Booked an event."
4730
  msgstr ""
4731
 
4732
- #: app/libraries/main.php:3508
4733
  #, php-format
4734
  msgid "%s booked %s event."
4735
  msgstr ""
4736
 
4737
- #: app/libraries/main.php:3950
4738
  msgid "Taxonomies"
4739
  msgstr ""
4740
 
4741
- #: app/libraries/main.php:3952
4742
  msgid "Category Plural Label"
4743
  msgstr ""
4744
 
4745
- #: app/libraries/main.php:3953
4746
  msgid "Category Singular Label"
4747
  msgstr ""
4748
 
4749
- #: app/libraries/main.php:3954
4750
  msgid "Label Plural Label"
4751
  msgstr ""
4752
 
4753
- #: app/libraries/main.php:3955
4754
  msgid "Label Singular Label"
4755
  msgstr ""
4756
 
4757
- #: app/libraries/main.php:3955
4758
  msgid "label"
4759
  msgstr ""
4760
 
4761
- #: app/libraries/main.php:3956
4762
  msgid "Location Plural Label"
4763
  msgstr ""
4764
 
4765
- #: app/libraries/main.php:3957
4766
  msgid "Location Singular Label"
4767
  msgstr ""
4768
 
4769
- #: app/libraries/main.php:3958
4770
  msgid "Organizer Plural Label"
4771
  msgstr ""
4772
 
4773
- #: app/libraries/main.php:3959
4774
  msgid "Organizer Singular Label"
4775
  msgstr ""
4776
 
4777
- #: app/libraries/main.php:3965
4778
  msgid "Sunday abbreviation"
4779
  msgstr ""
4780
 
4781
- #: app/libraries/main.php:3966
4782
  msgid "Monday abbreviation"
4783
  msgstr ""
4784
 
4785
- #: app/libraries/main.php:3967
4786
  msgid "Tuesday abbreviation"
4787
  msgstr ""
4788
 
4789
- #: app/libraries/main.php:3968
4790
  msgid "Wednesday abbreviation"
4791
  msgstr ""
4792
 
4793
- #: app/libraries/main.php:3969
4794
  msgid "Thursday abbreviation"
4795
  msgstr ""
4796
 
4797
- #: app/libraries/main.php:3970
4798
  msgid "Friday abbreviation"
4799
  msgstr ""
4800
 
4801
- #: app/libraries/main.php:3971
4802
  msgid "Saturday abbreviation"
4803
  msgstr ""
4804
 
4805
- #: app/libraries/main.php:3975
4806
  msgid "Others"
4807
  msgstr ""
4808
 
4809
- #: app/libraries/main.php:3977
4810
  msgid "Booking Success Message"
4811
  msgstr ""
4812
 
4813
- #: app/libraries/main.php:3978
 
 
 
 
 
 
4814
  msgid "Register Button"
4815
  msgstr ""
4816
 
4817
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4818
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4819
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4820
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4828,11 +4311,11 @@ msgstr ""
4828
  msgid "REGISTER"
4829
  msgstr "REGISTRAR"
4830
 
4831
- #: app/libraries/main.php:3979
4832
  msgid "View Detail Button"
4833
  msgstr ""
4834
 
4835
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4836
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4837
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4838
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4843,40 +4326,40 @@ msgstr ""
4843
  msgid "View Detail"
4844
  msgstr "Ver detalle"
4845
 
4846
- #: app/libraries/main.php:3980
4847
  msgid "Event Detail Button"
4848
  msgstr ""
4849
 
4850
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4851
  #, fuzzy
4852
  msgid "Event Detail"
4853
  msgstr "Detalle de evento"
4854
 
4855
- #: app/libraries/main.php:3982
4856
  msgid "More Info Link"
4857
  msgstr ""
4858
 
4859
- #: app/libraries/main.php:3985
4860
  msgid "Ticket (Singular)"
4861
  msgstr ""
4862
 
4863
- #: app/libraries/main.php:3986
4864
  msgid "Tickets (Plural)"
4865
  msgstr ""
4866
 
4867
- #: app/libraries/main.php:4052
4868
  msgid "EventON"
4869
  msgstr ""
4870
 
4871
- #: app/libraries/main.php:4053
4872
  msgid "The Events Calendar"
4873
  msgstr ""
4874
 
4875
- #: app/libraries/main.php:4054
4876
  msgid "Events Schedule WP Plugin"
4877
  msgstr ""
4878
 
4879
- #: app/libraries/main.php:4055
4880
  msgid "Calendarize It"
4881
  msgstr ""
4882
 
@@ -4900,6 +4383,14 @@ msgstr "Nueva reserva recibida."
4900
  msgid "A new event is added."
4901
  msgstr ""
4902
 
 
 
 
 
 
 
 
 
4903
  #: app/libraries/render.php:337
4904
  msgid "Skin controller does not exist."
4905
  msgstr "No existe skin controller."
@@ -4928,6 +4419,10 @@ msgstr ""
4928
  msgid "%s tickets"
4929
  msgstr ""
4930
 
 
 
 
 
4931
  #: app/modules/booking/steps/checkout.php:33
4932
  msgid "Discount Coupon"
4933
  msgstr "Descuento del cupón"
@@ -4954,6 +4449,11 @@ msgstr ""
4954
  msgid "Next"
4955
  msgstr "Siguiente"
4956
 
 
 
 
 
 
4957
  #: app/modules/booking/steps/tickets.php:18
4958
  msgid "Book Event"
4959
  msgstr "Reserva del evento"
@@ -5246,6 +4746,12 @@ msgstr ""
5246
  msgid "QR Code : "
5247
  msgstr ""
5248
 
 
 
 
 
 
 
5249
  #. Plugin URI of the plugin/theme
5250
  msgid "http://webnus.net/plugins/modern-events-calendar/"
5251
  msgstr ""
@@ -5262,6 +4768,215 @@ msgstr ""
5262
  msgid "http://webnus.net"
5263
  msgstr ""
5264
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5265
  #~ msgid "Attendee"
5266
  #~ msgstr "Asistente"
5267
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2018-09-09 16:07+0430\n"
5
+ "PO-Revision-Date: 2018-09-09 16:07+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: es_ES\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
 
23
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
24
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
25
  #: app/widgets/MEC.php:23
30
  msgid "Content"
31
  msgstr "Contenido"
32
 
33
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
34
+ #: app/features/mec.php:238 app/features/mec.php:264
35
  msgid "Shortcode"
36
  msgstr "Shortcode"
37
 
40
  msgid "Select from predefined shortcodes"
41
  msgstr "Selección de calendarios predefinidos"
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  #: app/features/colors.php:50 app/features/fes/form.php:566
44
+ #: app/features/mec/settings.php:847
45
  msgid "Event Color"
46
  msgstr "Color del evento"
47
 
48
+ #: app/features/contextual.php:55 app/features/mec.php:195
49
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
50
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
51
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
52
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
53
  #: app/features/mec/support.php:18
54
  msgid "Settings"
55
  msgstr "Ajustes"
56
 
57
+ #: app/features/contextual.php:62 app/features/events.php:910
58
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
59
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
60
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
61
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
62
+ #: app/features/mec/support.php:27
63
+ #, fuzzy
64
+ msgid "Booking Form"
65
+ msgstr "Reserva"
66
+
67
  #: app/features/contextual.php:63
68
  msgid ""
69
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
76
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
77
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
78
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
79
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
80
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
81
  msgid "Payment Gateways"
82
  msgstr "Entradas de pago"
91
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
92
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
93
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
94
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
95
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
96
  msgid "Notifications"
97
  msgstr "Notificaciones"
152
  "\"0\" allowfullscreen></iframe>"
153
  msgstr ""
154
 
155
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
156
+ #: app/features/mec/settings.php:252
157
  msgid "General Options"
158
  msgstr "Opciones generales"
159
 
160
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
161
+ #: app/features/mec/settings.php:404
162
  msgid "Slugs/Permalinks"
163
  msgstr ""
164
 
165
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
166
+ #: app/features/mec/settings.php:424
167
  msgid "Event Details/Single Event Page"
168
  msgstr ""
169
 
170
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
171
+ #: app/features/mec/settings.php:456
172
  msgid "Currency Options"
173
  msgstr "Opciones de moneda"
174
 
175
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
176
+ #: app/features/mec/settings.php:508
177
  msgid "Google Maps Options"
178
  msgstr "Opciones de Google Maps"
179
 
180
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
181
+ #: app/features/mec/settings.php:582
182
  #, fuzzy
183
  msgid "Google Recaptcha Options"
184
  msgstr "Opciones de Google Maps"
185
 
186
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
187
+ #: app/features/mec/settings.php:700
188
  msgid "Countdown Options"
189
  msgstr "Opciones de cuenta atrás"
190
 
191
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
192
+ #: app/features/mec/settings.php:721
193
  msgid "Social Networks"
194
  msgstr "Redes Sociales"
195
 
196
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
197
+ #: app/features/mec/settings.php:746
198
  msgid "Next Event Module"
199
  msgstr ""
200
 
201
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
202
+ #: app/features/mec/settings.php:774
203
  msgid "Frontend Event Submission"
204
  msgstr ""
205
 
206
  #: app/features/contextual.php:298 app/features/events.php:570
207
+ #: app/features/mec/settings.php:131
208
  #, fuzzy
209
  msgid "Exceptional Days"
210
  msgstr "Día de expiración"
211
 
212
+ #: app/features/contextual.php:308 app/features/events.php:253
213
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
214
+ msgid "Booking"
215
+ msgstr "Reserva"
216
+
217
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
218
+ #: app/features/mec/settings.php:1019
219
  msgid "Coupons"
220
  msgstr "Cupones"
221
 
222
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
223
+ #: app/features/mec/settings.php:1101
224
  msgid "BuddyPress Integration"
225
  msgstr ""
226
 
227
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
228
+ #: app/features/mec/settings.php:1131
229
  msgid "Mailchimp Integration"
230
  msgstr ""
231
 
232
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
233
+ #: app/features/mec/settings.php:1167
234
  #, fuzzy
235
  msgid "MEC Activation"
236
  msgstr "Lugar"
237
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
238
  #: app/features/events.php:122 app/features/ix/export.php:33
239
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
240
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
241
  msgid "Events"
242
  msgstr "Eventos"
243
 
244
+ #: app/features/events.php:123
245
+ #: app/features/mec/meta_boxes/display_options.php:678
246
+ #: app/features/mec/meta_boxes/display_options.php:716
247
+ #: app/features/mec/meta_boxes/display_options.php:745
248
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
249
+ #: app/skins/yearly_view/tpl.php:69
250
+ msgid "Event"
251
+ msgstr "Evento"
252
+
253
+ #: app/features/events.php:124 app/features/mec.php:188
254
  msgid "Add Event"
255
  msgstr "Nuevo evento"
256
 
263
  msgid "No events found!"
264
  msgstr "No hay eventos"
265
 
266
+ #: app/features/events.php:127
267
+ msgid "All Events"
268
+ msgstr "Todos los eventos"
269
+
270
  #: app/features/events.php:128
271
  msgid "Edit Event"
272
  msgstr ""
289
  #: app/features/mec/meta_boxes/search_form.php:285
290
  #: app/features/mec/meta_boxes/search_form.php:325
291
  #: app/features/mec/meta_boxes/search_form.php:372
292
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
293
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
294
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
295
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
297
  msgstr "Categoría"
298
 
299
  #: app/features/events.php:143 app/features/fes/form.php:518
300
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
301
+ #: app/libraries/main.php:3967
302
  msgid "Categories"
303
  msgstr "Categorías"
304
 
365
  #: app/features/events.php:286 app/features/events.php:1631
366
  #: app/features/events.php:1675 app/features/fes/form.php:479
367
  #: app/features/ix.php:2328 app/features/ix.php:2369
368
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
369
  msgid "Event Cost"
370
  msgstr "Coste del evento"
371
 
372
  #: app/features/events.php:289 app/features/fes/form.php:482
373
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
374
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
375
  #: app/skins/single/modern.php:179
376
  msgid "Cost"
384
  msgid "Guest Data"
385
  msgstr ""
386
 
387
+ #: app/features/events.php:370 app/features/fes/form.php:441
388
+ #: app/features/labels.php:151 app/features/organizers.php:268
389
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
390
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
391
+ msgid "Name"
392
+ msgstr "Nombre"
393
+
394
+ #: app/features/events.php:371 app/features/events.php:945
395
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
396
+ #: app/features/organizers.php:110 app/features/organizers.php:150
397
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
398
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
399
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
400
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
401
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
402
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
403
+ #: app/skins/single/modern.php:38
404
+ msgid "Email"
405
+ msgstr "Email"
406
+
407
  #: app/features/events.php:375 app/features/fes/form.php:221
408
  msgid "Date and Time"
409
  msgstr "Día y hora"
413
  #: app/features/events.php:1675 app/features/fes/form.php:225
414
  #: app/features/fes/form.php:229 app/features/ix.php:2328
415
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
416
+ #: app/features/mec/dashboard.php:266
417
  #: app/features/mec/meta_boxes/display_options.php:42
418
  #: app/features/mec/meta_boxes/display_options.php:129
419
  #: app/features/mec/meta_boxes/display_options.php:225
445
  #: app/features/events.php:1675 app/features/fes/form.php:265
446
  #: app/features/fes/form.php:269 app/features/ix.php:2328
447
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
448
+ #: app/features/mec/dashboard.php:267
449
  msgid "End Date"
450
  msgstr "Día final"
451
 
483
  msgstr "Repeticiones"
484
 
485
  #: app/features/events.php:481 app/features/fes/form.php:327
486
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
487
  msgid "Daily"
488
  msgstr "Diariamente"
489
 
506
  msgstr "Semanal"
507
 
508
  #: app/features/events.php:486 app/features/fes/form.php:332
509
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
510
  msgid "Monthly"
511
  msgstr "Mensual"
512
 
513
  #: app/features/events.php:487 app/features/fes/form.php:333
514
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
515
  msgid "Yearly"
516
  msgstr "Anual"
517
 
568
  msgid "Sunday"
569
  msgstr ""
570
 
571
+ #: app/features/events.php:508 app/features/events.php:580
572
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
573
+ #: app/modules/booking/steps/tickets.php:20
574
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
575
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
576
+ #: app/skins/single/modern.php:146
577
+ msgid "Date"
578
+ msgstr "Fecha"
579
+
580
  #: app/features/events.php:509 app/features/events.php:581
581
  #: app/features/events.php:623 app/features/events.php:743
582
  #: app/features/events.php:839 app/features/fes/form.php:355
624
  msgid "Exclude certain days from event occurrence dates."
625
  msgstr ""
626
 
627
+ #: app/features/events.php:620 app/features/mec/settings.php:871
628
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
629
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
630
  msgid "Hourly Schedule"
645
  #: app/features/events.php:631 app/features/events.php:643
646
  #: app/features/events.php:1449 app/features/events.php:1631
647
  #: app/features/events.php:1675 app/features/fes/form.php:214
648
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
649
  msgid "Title"
650
  msgstr "Titulo"
651
 
652
+ #: app/features/events.php:632 app/features/events.php:644
653
+ #: app/features/events.php:752 app/features/events.php:784
654
+ msgid "Description"
655
+ msgstr "Descripción"
656
+
657
  #: app/features/events.php:633 app/features/events.php:645
658
  #: app/features/events.php:771 app/features/events.php:803
659
  #: app/features/events.php:859 app/features/events.php:884
660
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
661
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
662
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
663
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
664
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
665
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
666
+ #: app/libraries/main.php:2177
667
  msgid "Remove"
668
  msgstr "Eliminar"
669
 
670
  #: app/features/events.php:665 app/features/fes/form.php:456
671
+ #: app/features/mec/settings.php:817
672
  #, fuzzy
673
  msgid "Event Links"
674
  msgstr "Lugar del evento"
675
 
676
  #: app/features/events.php:667 app/features/fes/form.php:458
677
+ #: app/libraries/main.php:3996
678
  #, fuzzy
679
  msgid "Event Link"
680
  msgstr "Lugar del evento"
692
  msgstr "Insertar vínculo completo incluyendo http(s)://"
693
 
694
  #: app/features/events.php:672 app/features/fes/form.php:463
695
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
696
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
697
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
698
  msgid "More Info"
722
  msgid "Total booking limits"
723
  msgstr "Límite total de booking"
724
 
725
+ #: app/features/events.php:715 app/features/events.php:769
726
+ #: app/features/events.php:801 app/modules/booking/default.php:82
727
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
728
+ msgid "Unlimited"
729
+ msgstr "Ilimitado"
730
+
731
  #: app/features/events.php:717
732
  msgid "100"
733
  msgstr "100"
734
 
735
  #: app/features/events.php:735 app/libraries/book.php:59
736
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
737
  msgid "Tickets"
738
  msgstr "Tickets"
739
 
748
  msgid "Ticket Name"
749
  msgstr "Nombre del ticket"
750
 
751
+ #: app/features/events.php:756 app/features/events.php:788
752
+ msgid "Price"
753
+ msgstr "Precio"
754
+
755
  #: app/features/events.php:757 app/features/events.php:789
756
  msgid "Insert 0 for free ticket. Only numbers please."
757
  msgstr "Introduzca un 0 para ticket gratuito. Usar únicamente números."
777
  msgstr "Heredar opciones globales"
778
 
779
  #: app/features/events.php:845 app/features/events.php:870
780
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
781
  msgid "Fee Title"
782
  msgstr "Tarifa título"
783
 
784
+ #: app/features/events.php:849 app/features/events.php:874
785
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
786
+ msgid "Amount"
787
+ msgstr "Cantidad"
788
+
789
  #: app/features/events.php:850 app/features/events.php:875
790
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
791
  msgid ""
792
  "Fee amount, considered as fixed amount if you set the type to amount "
793
  "otherwise considered as percentage"
795
  "Importe de la cuota, considerado como cantidad fija si se establece el tipo "
796
  "de cantidad considerada de otra manera como porcentaje."
797
 
798
+ #: app/features/events.php:854 app/features/events.php:879
799
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
800
+ msgid "Percent"
801
+ msgstr "Porcentaje"
802
+
803
  #: app/features/events.php:855 app/features/events.php:880
804
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
805
  msgid "Amount (Per Ticket)"
806
  msgstr ""
807
 
808
  #: app/features/events.php:856 app/features/events.php:881
809
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
810
  msgid "Amount (Per Booking)"
811
  msgstr ""
812
 
813
  #: app/features/events.php:944 app/features/mec/regform.php:117
814
+ #: app/libraries/main.php:1856
815
  msgid "Text"
816
  msgstr "Texto"
817
 
818
  #: app/features/events.php:946 app/features/mec/regform.php:119
819
  #: app/features/organizers.php:102 app/features/organizers.php:146
820
+ #: app/libraries/main.php:1914
821
  msgid "Tel"
822
  msgstr "Tel"
823
 
824
  #: app/features/events.php:947 app/features/mec/regform.php:120
825
+ #: app/libraries/main.php:1943
826
  msgid "Textarea"
827
  msgstr "Área de texto"
828
 
829
  #: app/features/events.php:948 app/features/mec/regform.php:121
830
+ #: app/libraries/main.php:1996
831
  msgid "Checkboxes"
832
  msgstr "Checkboxes"
833
 
834
  #: app/features/events.php:949 app/features/mec/regform.php:122
835
+ #: app/libraries/main.php:2040
836
  msgid "Radio Buttons"
837
  msgstr "Botón tipo radio"
838
 
881
  #: app/features/mec/meta_boxes/search_form.php:436
882
  #: app/features/mec/meta_boxes/search_form.php:443
883
  #: app/features/mec/meta_boxes/search_form.php:450
884
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
885
  msgid "Dropdown"
886
  msgstr "Desplegable"
887
 
888
  #: app/features/events.php:951 app/features/mec/regform.php:124
889
+ #: app/libraries/main.php:2131
890
  msgid "Agreement"
891
  msgstr ""
892
 
893
  #: app/features/events.php:952 app/features/mec/regform.php:125
894
+ #: app/libraries/main.php:1972
895
  msgid "Paragraph"
896
  msgstr "Párrafo"
897
 
917
  #: app/features/events.php:1675 app/features/ix.php:2328
918
  #: app/features/ix.php:2369 app/features/locations.php:58
919
  #: app/features/locations.php:229 app/features/locations.php:281
920
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
921
  #: app/features/mec/meta_boxes/display_options.php:641
922
  #: app/features/mec/meta_boxes/search_form.php:38
923
  #: app/features/mec/meta_boxes/search_form.php:85
927
  #: app/features/mec/meta_boxes/search_form.php:292
928
  #: app/features/mec/meta_boxes/search_form.php:332
929
  #: app/features/mec/meta_boxes/search_form.php:379
930
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
931
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
932
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
933
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
934
  #: app/skins/single/modern.php:77
937
 
938
  #: app/features/events.php:1451 app/features/events.php:1631
939
  #: app/features/events.php:1675 app/features/ix.php:2328
940
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
941
  #: app/features/mec/meta_boxes/display_options.php:642
942
  #: app/features/mec/meta_boxes/search_form.php:45
943
  #: app/features/mec/meta_boxes/search_form.php:92
950
  #: app/features/mec/meta_boxes/search_form.php:433
951
  #: app/features/organizers.php:58 app/features/organizers.php:199
952
  #: app/features/organizers.php:255 app/features/organizers.php:257
953
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
954
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
955
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
956
  #: app/skins/single/modern.php:21
969
  msgid "iCal Export"
970
  msgstr "Exportar iCal"
971
 
972
+ #: app/features/events.php:1569 app/features/events.php:1570
973
+ msgid "CSV Export"
974
+ msgstr "Exportar CSV"
975
+
976
+ #: app/features/events.php:1572 app/features/events.php:1573
977
+ msgid "MS Excel Export"
978
+ msgstr "Exportar Excel"
979
+
980
  #: app/features/events.php:1575 app/features/events.php:1576
981
  msgid "XML Export"
982
  msgstr ""
989
  msgid "Duplicate"
990
  msgstr ""
991
 
992
+ #: app/features/events.php:1631 app/features/events.php:1675
993
+ #: app/features/ix.php:2328 app/features/ix.php:2369
994
+ #: app/features/labels.php:150 app/features/locations.php:228
995
+ #: app/features/organizers.php:198
996
+ msgid "ID"
997
+ msgstr "ID"
998
+
999
  #: app/features/events.php:1631 app/features/events.php:1675
1000
  #: app/features/ix.php:2328 app/features/ix.php:2369
1001
  msgid "Start Time"
1081
  msgstr ""
1082
 
1083
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1084
  msgid "Submit"
1085
  msgstr "Enviar"
1086
 
1096
  msgid "eg. John Smith"
1097
  msgstr "ej. John Smith"
1098
 
1099
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1100
  #, fuzzy
1101
  msgid "Featured Image"
1102
  msgstr "evento destacado"
1107
  msgstr "Eliminar imagen"
1108
 
1109
  #: app/features/fes/form.php:543 app/features/labels.php:61
1110
+ #: app/features/labels.php:194 app/features/mec.php:191
1111
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1112
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1113
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1114
  msgid "Labels"
1115
  msgstr "Etiquetas"
1116
 
1117
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1118
  #: app/features/mec/meta_boxes/filter.php:138
1119
  msgid "Tags"
1120
  msgstr "Tags"
1143
  msgid "No events found! %s"
1144
  msgstr "No hay eventos"
1145
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1146
  #: app/features/ix.php:95
1147
  msgid "MEC - Import / Export"
1148
  msgstr ""
1175
  msgid "Third Party plugin is invalid!"
1176
  msgstr ""
1177
 
1178
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1179
+ msgid "Both of API key and Calendar ID are required!"
1180
+ msgstr ""
1181
+
1182
  #: app/features/ix.php:1961 app/features/ix.php:2791
1183
  msgid "Please select some events to import!"
1184
  msgstr ""
1200
  msgid "All seems good! Please click %s for authenticating your app."
1201
  msgstr ""
1202
 
1203
+ #: app/features/ix.php:2527
1204
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1205
+ msgstr ""
1206
+
1207
+ #: app/features/ix.php:2722
1208
+ #, php-format
1209
+ msgid "%s events added to Google Calendar successfully."
1210
+ msgstr ""
1211
+
1212
+ #: app/features/ix.php:2723
1213
+ #, php-format
1214
+ msgid "%s previously added events get updated."
1215
+ msgstr ""
1216
+
1217
+ #: app/features/ix.php:2724
1218
+ #, php-format
1219
+ msgid "%s events failed to add for following reasons: %s"
1220
+ msgstr ""
1221
+
1222
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1223
+ msgid "Please insert your facebook page's link."
1224
+ msgstr ""
1225
+
1226
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1227
+ msgid ""
1228
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1229
+ "valid facebook page link."
1230
+ msgstr ""
1231
+
1232
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1233
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1234
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1274
  "This will export all of your website events' data into your desired format."
1275
  msgstr ""
1276
 
1277
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1278
  msgid "iCal"
1279
  msgstr "iCal"
1280
 
1312
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1313
  msgstr ""
1314
 
1315
+ #: app/features/ix/export.php:37
1316
+ msgid "Bookings"
1317
+ msgstr "Reservas"
1318
+
1319
  #: app/features/ix/export_g_calendar.php:25
1320
  msgid "Add events to Google Calendar"
1321
  msgstr ""
1372
  msgid "Add to Google Calendar"
1373
  msgstr ""
1374
 
1375
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1376
  msgid "Checking ..."
1377
  msgstr ""
1378
 
1414
  msgid "ICS Feed"
1415
  msgstr ""
1416
 
1417
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1418
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1419
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1420
+ #: app/features/mec/settings.php:1039
1421
  #, php-format
1422
  msgid "%s is required to use this feature."
1423
  msgstr ""
1429
  #: app/features/mec/meta_boxes/display_options.php:558
1430
  #: app/features/mec/meta_boxes/display_options.php:608
1431
  #: app/features/mec/meta_boxes/display_options.php:734
1432
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1433
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1434
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1435
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1436
  msgid "Pro version of Modern Events Calendar"
1437
  msgstr ""
1438
 
1649
  msgid "Select label color"
1650
  msgstr "Elige un color de etiqueta"
1651
 
1652
+ #: app/features/labels.php:153 app/features/locations.php:231
1653
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1654
+ msgid "Count"
1655
+ msgstr "Contador"
1656
+
1657
  #: app/features/labels.php:154 app/features/locations.php:232
1658
  #: app/features/organizers.php:202
1659
  msgid "Slug"
1664
  msgid "Event %s"
1665
  msgstr ""
1666
 
1667
+ #: app/features/locations.php:59 app/features/mec.php:192
1668
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1669
  msgid "Locations"
1670
  msgstr "Lugar"
1671
 
1733
  msgid "eg. City Hall"
1734
  msgstr "ej. Almería"
1735
 
1736
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1737
  msgid "Event Location"
1738
  msgstr "Lugar del evento"
1739
 
1757
  msgid "Don't show map in single event page"
1758
  msgstr "No mostrar el mapa en la página del detalle del evento"
1759
 
1760
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1761
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1762
  msgid "Organizers"
1763
  msgstr "Organizadores"
1764
 
1765
+ #: app/features/mec.php:194 app/features/mec.php:208
1766
+ #: app/features/mec/dashboard.php:96
1767
  msgid "Shortcodes"
1768
  msgstr "Shortcodes"
1769
 
1770
+ #: app/features/mec.php:195
1771
  msgid "MEC - Settings"
1772
  msgstr "Configuración"
1773
 
1774
+ #: app/features/mec.php:210
1775
  msgid "Add Shortcode"
1776
  msgstr "Nuevo Shortcode"
1777
 
1778
+ #: app/features/mec.php:211
1779
  msgid "Add New Shortcode"
1780
  msgstr "Añadir nuevo Shortcode"
1781
 
1782
+ #: app/features/mec.php:212
1783
  msgid "No shortcodes found!"
1784
  msgstr "No hay shortcodes"
1785
 
1786
+ #: app/features/mec.php:213
1787
  msgid "All Shortcodes"
1788
  msgstr "Todos los Shortcodes"
1789
 
1790
+ #: app/features/mec.php:214
1791
  msgid "Edit shortcodes"
1792
  msgstr "Editar Shortcodes"
1793
 
1794
+ #: app/features/mec.php:215
1795
  msgid "No shortcodes found in Trash!"
1796
  msgstr "No hay shortcodes en la papelera"
1797
 
1798
+ #: app/features/mec.php:262
1799
  msgid "Display Options"
1800
  msgstr "Opciones de pantalla"
1801
 
1802
+ #: app/features/mec.php:263
1803
  msgid "Filter Options"
1804
  msgstr "Opciones de filtros"
1805
 
1806
+ #: app/features/mec.php:265
1807
  #, fuzzy
1808
  msgid "Search Form"
1809
  msgstr "Buscar cupones"
1810
 
1811
+ #: app/features/mec.php:553
1812
  msgid "Single Event Display Method"
1813
  msgstr ""
1814
 
1815
+ #: app/features/mec.php:558
1816
  msgid "Separate Window"
1817
  msgstr ""
1818
 
1819
+ #: app/features/mec.php:559
1820
  msgid "Modal 1"
1821
  msgstr ""
1822
 
1823
+ #: app/features/mec/dashboard.php:58
1824
  #, php-format
1825
  msgid "Welcome %s"
1826
  msgstr "Bienvenido %s"
1827
 
1828
+ #: app/features/mec/dashboard.php:61
1829
  #, php-format
1830
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1831
  msgstr ""
1832
 
1833
+ #: app/features/mec/dashboard.php:61
1834
  msgid "Modern Event Calendar"
1835
  msgstr ""
1836
 
1837
+ #: app/features/mec/dashboard.php:61
1838
  msgid "Modern Event Calendar (Lite)"
1839
  msgstr ""
1840
 
1841
+ #: app/features/mec/dashboard.php:70
1842
  msgid "Version"
1843
  msgstr "Versión"
1844
 
1845
+ #: app/features/mec/dashboard.php:79
1846
  #, php-format
1847
  msgid ""
1848
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1850
  "Spots, etc you should %s to the Pro version."
1851
  msgstr ""
1852
 
1853
+ #: app/features/mec/dashboard.php:79
1854
  msgid "lite"
1855
  msgstr ""
1856
 
1857
+ #: app/features/mec/dashboard.php:79
1858
  msgid "upgrade"
1859
  msgstr ""
1860
 
1861
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1862
  msgid "Documentation"
1863
  msgstr "Documentación"
1864
 
1865
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1866
  msgid ""
1867
  "Our documentation is simple and functional with full details and cover all "
1868
  "essential aspects from beginning to the most advanced parts."
1869
  msgstr "Nuestra documentación es simple y funcional."
1870
 
1871
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1872
  msgid "DOCUMENTATION"
1873
  msgstr "DOCUMENTACIÓN"
1874
 
1875
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1876
  msgid "Support Forum"
1877
  msgstr "Soporte"
1878
 
1879
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1880
  msgid ""
1881
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1882
  "If you want to use this service you need to upgrade your plugin to Pro "
1883
  "version. Click on the following button."
1884
  msgstr ""
1885
 
1886
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1887
  #, fuzzy
1888
  msgid ""
1889
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1893
  "Si usted tiene algún problema por favor no dude en ponerse en contacto con "
1894
  "nosotros, le responderemos tan pronto como sea posible."
1895
 
1896
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1897
  msgid "GO PREMIUM"
1898
  msgstr ""
1899
 
1900
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1901
  msgid "OPEN A TICKET"
1902
  msgstr "ABRIR UN TICKET"
1903
 
1904
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1905
  msgid "Upcoming Events"
1906
  msgstr ""
1907
 
1908
+ #: app/features/mec/dashboard.php:181
1909
  msgid "Popular Gateways"
1910
  msgstr ""
1911
 
1912
+ #: app/features/mec/dashboard.php:232
1913
  msgid "Total Bookings"
1914
  msgstr ""
1915
 
1916
+ #: app/features/mec/dashboard.php:259
1917
  msgid "This Month"
1918
  msgstr ""
1919
 
1920
+ #: app/features/mec/dashboard.php:260
1921
  msgid "Last Month"
1922
  msgstr ""
1923
 
1924
+ #: app/features/mec/dashboard.php:261
1925
  msgid "This Year"
1926
  msgstr ""
1927
 
1928
+ #: app/features/mec/dashboard.php:262
1929
  msgid "Last Year"
1930
  msgstr ""
1931
 
1932
+ #: app/features/mec/dashboard.php:274
1933
  msgid "Bar"
1934
  msgstr ""
1935
 
1936
+ #: app/features/mec/dashboard.php:275
1937
  msgid "Line"
1938
  msgstr ""
1939
 
1940
+ #: app/features/mec/dashboard.php:277
1941
  msgid "Filter"
1942
  msgstr ""
1943
 
1944
+ #: app/features/mec/dashboard.php:293
1945
  #, php-format
1946
  msgid "Total Sells (%s)"
1947
  msgstr ""
1948
 
1949
+ #: app/features/mec/dashboard.php:314
1950
  msgid "Change Log"
1951
  msgstr "Log"
1952
 
1953
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1954
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1955
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1956
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1957
  msgid "Styling Options"
1958
  msgstr "Opciones visuales"
1959
 
1960
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1961
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1962
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1963
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1964
  msgid "Custom CSS"
1965
  msgstr "CSS Custom"
1966
 
1967
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1968
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1969
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1970
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1971
  #: app/features/mec/support.php:64
1972
  msgid "Messages"
1974
 
1975
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1976
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1977
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1978
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1979
  #: app/features/mec/support.php:84
1980
  msgid "Support"
1987
  #: app/features/mec/notifications.php:409
1988
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
1989
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
1990
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
1991
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
1992
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
1993
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
1994
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
1995
+ #: app/features/mec/styling.php:335
1996
  msgid "Save Changes"
1997
  msgstr "Guardar Cambios"
1998
 
1999
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2000
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2001
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
2002
  #: app/features/mec/styling.php:313
2003
  msgid "Saved"
2004
  msgstr ""
2005
 
2006
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2007
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2008
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
2009
  #: app/features/mec/styling.php:314
2010
  msgid "Settings Saved!"
2011
  msgstr ""
2217
  msgid "Default values are d and F"
2218
  msgstr "Valor por defecto del evento"
2219
 
2220
+ #: app/features/mec/meta_boxes/display_options.php:85
2221
+ #: app/features/mec/meta_boxes/display_options.php:194
2222
+ #: app/features/mec/meta_boxes/display_options.php:244
2223
+ #: app/features/mec/meta_boxes/display_options.php:632
2224
+ #: app/features/mec/meta_boxes/display_options.php:806
2225
+ #: app/features/mec/meta_boxes/display_options.php:877
2226
+ msgid "Limit"
2227
+ msgstr "Límite"
2228
+
2229
  #: app/features/mec/meta_boxes/display_options.php:86
2230
  #: app/features/mec/meta_boxes/display_options.php:195
2231
  #: app/features/mec/meta_boxes/display_options.php:245
2309
 
2310
  #: app/features/mec/meta_boxes/display_options.php:287
2311
  #: app/features/mec/meta_boxes/display_options.php:296
2312
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2313
  msgid "List View"
2314
  msgstr "Ver lista"
2315
 
2316
  #: app/features/mec/meta_boxes/display_options.php:288
2317
  #: app/features/mec/meta_boxes/display_options.php:306
2318
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2319
  msgid "Yearly View"
2320
  msgstr ""
2321
 
2327
 
2328
  #: app/features/mec/meta_boxes/display_options.php:290
2329
  #: app/features/mec/meta_boxes/display_options.php:326
2330
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2331
  msgid "Weekly View"
2332
  msgstr "Ver semana"
2333
 
2334
  #: app/features/mec/meta_boxes/display_options.php:291
2335
  #: app/features/mec/meta_boxes/display_options.php:336
2336
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2337
  msgid "Daily View"
2338
  msgstr "Ver día"
2339
 
2578
  msgid "Show Search Form"
2579
  msgstr ""
2580
 
2581
+ #: app/features/mec/meta_boxes/search_form.php:33
2582
+ #: app/features/mec/meta_boxes/search_form.php:40
2583
+ #: app/features/mec/meta_boxes/search_form.php:47
2584
+ #: app/features/mec/meta_boxes/search_form.php:54
2585
+ #: app/features/mec/meta_boxes/search_form.php:61
2586
+ #: app/features/mec/meta_boxes/search_form.php:68
2587
+ #: app/features/mec/meta_boxes/search_form.php:80
2588
+ #: app/features/mec/meta_boxes/search_form.php:87
2589
+ #: app/features/mec/meta_boxes/search_form.php:94
2590
+ #: app/features/mec/meta_boxes/search_form.php:101
2591
+ #: app/features/mec/meta_boxes/search_form.php:108
2592
+ #: app/features/mec/meta_boxes/search_form.php:115
2593
+ #: app/features/mec/meta_boxes/search_form.php:127
2594
+ #: app/features/mec/meta_boxes/search_form.php:134
2595
+ #: app/features/mec/meta_boxes/search_form.php:141
2596
+ #: app/features/mec/meta_boxes/search_form.php:148
2597
+ #: app/features/mec/meta_boxes/search_form.php:155
2598
+ #: app/features/mec/meta_boxes/search_form.php:162
2599
+ #: app/features/mec/meta_boxes/search_form.php:174
2600
+ #: app/features/mec/meta_boxes/search_form.php:181
2601
+ #: app/features/mec/meta_boxes/search_form.php:193
2602
+ #: app/features/mec/meta_boxes/search_form.php:200
2603
+ #: app/features/mec/meta_boxes/search_form.php:207
2604
+ #: app/features/mec/meta_boxes/search_form.php:214
2605
+ #: app/features/mec/meta_boxes/search_form.php:221
2606
+ #: app/features/mec/meta_boxes/search_form.php:228
2607
+ #: app/features/mec/meta_boxes/search_form.php:240
2608
+ #: app/features/mec/meta_boxes/search_form.php:247
2609
+ #: app/features/mec/meta_boxes/search_form.php:254
2610
+ #: app/features/mec/meta_boxes/search_form.php:261
2611
+ #: app/features/mec/meta_boxes/search_form.php:268
2612
+ #: app/features/mec/meta_boxes/search_form.php:275
2613
+ #: app/features/mec/meta_boxes/search_form.php:287
2614
+ #: app/features/mec/meta_boxes/search_form.php:294
2615
+ #: app/features/mec/meta_boxes/search_form.php:301
2616
+ #: app/features/mec/meta_boxes/search_form.php:308
2617
+ #: app/features/mec/meta_boxes/search_form.php:315
2618
+ #: app/features/mec/meta_boxes/search_form.php:327
2619
+ #: app/features/mec/meta_boxes/search_form.php:334
2620
+ #: app/features/mec/meta_boxes/search_form.php:341
2621
+ #: app/features/mec/meta_boxes/search_form.php:348
2622
+ #: app/features/mec/meta_boxes/search_form.php:355
2623
+ #: app/features/mec/meta_boxes/search_form.php:362
2624
+ #: app/features/mec/meta_boxes/search_form.php:374
2625
+ #: app/features/mec/meta_boxes/search_form.php:381
2626
+ #: app/features/mec/meta_boxes/search_form.php:388
2627
+ #: app/features/mec/meta_boxes/search_form.php:395
2628
+ #: app/features/mec/meta_boxes/search_form.php:402
2629
+ #: app/features/mec/meta_boxes/search_form.php:409
2630
+ #: app/features/mec/meta_boxes/search_form.php:421
2631
+ #: app/features/mec/meta_boxes/search_form.php:428
2632
+ #: app/features/mec/meta_boxes/search_form.php:435
2633
+ #: app/features/mec/meta_boxes/search_form.php:442
2634
+ #: app/features/mec/meta_boxes/search_form.php:449
2635
+ #: app/features/mec/meta_boxes/search_form.php:456
2636
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2637
+ #: app/features/mec/settings.php:554
2638
+ msgid "Disabled"
2639
+ msgstr "Desactivado"
2640
+
2641
  #: app/features/mec/meta_boxes/search_form.php:59
2642
  #: app/features/mec/meta_boxes/search_form.php:106
2643
  #: app/features/mec/meta_boxes/search_form.php:153
2876
  msgid "Invoice Link"
2877
  msgstr ""
2878
 
2879
+ #: app/features/mec/notifications.php:140
2880
+ #: app/features/mec/notifications.php:177
2881
+ #: app/features/mec/notifications.php:214
2882
+ #: app/features/mec/notifications.php:255
2883
+ #: app/features/mec/notifications.php:307
2884
+ msgid "Total Attendees"
2885
+ msgstr ""
2886
+
2887
  #: app/features/mec/notifications.php:145
2888
  msgid "Booking Verification"
2889
  msgstr "Verificación de la reserva"
2901
  msgid "Email/Booking verification link."
2902
  msgstr "Email/Reserva enlace de verificación."
2903
 
2904
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2905
  msgid "Booking Confirmation"
2906
  msgstr "Confirmación de reserva"
2907
 
2984
  msgid "Status of event"
2985
  msgstr "Inicio del siguiente mes"
2986
 
2987
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
2988
  msgid "Event Note"
2989
  msgstr ""
2990
 
2993
  msgid "Admin events management link."
2994
  msgstr "Enlace del administrador de reservas."
2995
 
2996
+ #: app/features/mec/settings.php:47
2997
  msgid "Archive Page Options"
2998
  msgstr ""
2999
 
3000
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
3001
  msgid "Export Module Options"
3002
  msgstr "Exportar módulo de opciones"
3003
 
3004
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
3005
  msgid "Local Time Module"
3006
  msgstr ""
3007
 
3008
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
3009
  msgid "QR Code Module"
3010
  msgstr ""
3011
 
3012
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
3013
  msgid "Weather Module"
3014
  msgstr ""
3015
 
3016
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
3017
  #, fuzzy
3018
  msgid "Additional Organizers"
3019
  msgstr "Todos los organizadores"
3020
 
3021
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
3022
  msgid "Taxes / Fees"
3023
  msgstr "Impuestos/Tasas"
3024
 
3025
+ #: app/features/mec/settings.php:255
3026
  #, fuzzy
3027
  msgid "Time Format"
3028
  msgstr "Tiempo para comentar"
3029
 
3030
+ #: app/features/mec/settings.php:258
3031
  msgid "12 hours format with AM/PM"
3032
  msgstr ""
3033
 
3034
+ #: app/features/mec/settings.php:259
3035
  msgid "24 hours format"
3036
  msgstr ""
3037
 
3038
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3039
  msgid ""
3040
  "This option is for showing start/end time of events on frontend of website."
3041
  msgstr ""
3042
 
3043
+ #: app/features/mec/settings.php:266
3044
  msgid "Hide Events"
3045
  msgstr ""
3046
 
3047
+ #: app/features/mec/settings.php:269
3048
  msgid "On Event Start"
3049
  msgstr ""
3050
 
3051
+ #: app/features/mec/settings.php:270
3052
  msgid "+1 Hour after start"
3053
  msgstr ""
3054
 
3055
+ #: app/features/mec/settings.php:271
3056
  msgid "+2 Hours after start"
3057
  msgstr ""
3058
 
3059
+ #: app/features/mec/settings.php:272
3060
  msgid "On Event End"
3061
  msgstr ""
3062
 
3063
+ #: app/features/mec/settings.php:280
3064
  #, fuzzy
3065
  msgid "Multiple Day Events"
3066
  msgstr "Todos los eventos de hoy"
3067
 
3068
+ #: app/features/mec/settings.php:283
3069
  msgid "Show only first day on List/Grid/Slider skins"
3070
  msgstr ""
3071
 
3072
+ #: app/features/mec/settings.php:284
3073
  msgid "Show only first day on all skins"
3074
  msgstr ""
3075
 
3076
+ #: app/features/mec/settings.php:285
3077
  #, fuzzy
3078
  msgid "Show all days"
3079
  msgstr "Mostrar todas las etiquetas"
3080
 
3081
+ #: app/features/mec/settings.php:287
3082
  msgid ""
3083
  "For showing all days of multiple day events on frontend or only show the "
3084
  "first day."
3085
  msgstr ""
3086
 
3087
+ #: app/features/mec/settings.php:293
3088
  msgid "Remove MEC Data on Plugin Uninstall"
3089
  msgstr ""
3090
 
3091
+ #: app/features/mec/settings.php:297
3092
+ msgid "Enabled"
3093
+ msgstr ""
3094
+
3095
+ #: app/features/mec/settings.php:303
3096
  msgid "Exclude Date Suffix"
3097
  msgstr ""
3098
 
3099
+ #: app/features/mec/settings.php:306
3100
  msgid "Remove suffix from calendars"
3101
  msgstr ""
3102
 
3103
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3104
  msgid "Weekdays"
3105
  msgstr ""
3106
 
3107
+ #: app/features/mec/settings.php:321
3108
  msgid ""
3109
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3110
  "and Friday."
3111
  msgstr ""
3112
 
3113
+ #: app/features/mec/settings.php:328
3114
  msgid "Weekends"
3115
  msgstr ""
3116
 
3117
+ #: app/features/mec/settings.php:336
3118
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3119
  msgstr ""
3120
 
3121
+ #: app/features/mec/settings.php:344
3122
  msgid "Archive Pages"
3123
  msgstr ""
3124
 
3125
+ #: app/features/mec/settings.php:347
3126
  msgid "Archive Page Title"
3127
  msgstr "Título de la página de archivo"
3128
 
3129
+ #: app/features/mec/settings.php:350
3130
  msgid "Default value is Events"
3131
  msgstr "Valor por defecto del evento"
3132
 
3133
+ #: app/features/mec/settings.php:355
3134
  msgid "Archive Page Skin"
3135
  msgstr "Tema de la página de archivo"
3136
 
3137
+ #: app/features/mec/settings.php:362
3138
  msgid "Default value is Calendar/Monthly View"
3139
  msgstr "El valor por defecto es la vista Calendar/Monthly"
3140
 
3141
+ #: app/features/mec/settings.php:367
3142
  #, fuzzy
3143
  msgid "Category Page Skin"
3144
  msgstr "Categoría"
3145
 
3146
+ #: app/features/mec/settings.php:374
3147
  #, fuzzy
3148
  msgid "Default value is List View"
3149
  msgstr "Valor por defecto del evento"
3150
 
3151
+ #: app/features/mec/settings.php:379
3152
  msgid "Category Events Method"
3153
  msgstr ""
3154
 
3155
+ #: app/features/mec/settings.php:383
3156
  msgid "Expired Events"
3157
  msgstr ""
3158
 
3159
+ #: app/features/mec/settings.php:385
3160
  msgid "Default value is Upcoming Events"
3161
  msgstr ""
3162
 
3163
+ #: app/features/mec/settings.php:390
3164
  msgid "Events Archive Status"
3165
  msgstr ""
3166
 
3167
+ #: app/features/mec/settings.php:393
3168
  msgid "Enabled (Recommended)"
3169
  msgstr ""
3170
 
3171
+ #: app/features/mec/settings.php:396
3172
  msgid ""
3173
  "If you disable it, then you should create a page as archive page of MEC. "
3174
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3175
  "MEC rewrite rules."
3176
  msgstr ""
3177
 
3178
+ #: app/features/mec/settings.php:406
3179
  msgid "Main Slug"
3180
  msgstr "Menu slug"
3181
 
3182
+ #: app/features/mec/settings.php:409
3183
  msgid ""
3184
  "Default value is events. Valid characters are lowercase a-z, - character and "
3185
  "numbers."
3186
  msgstr ""
3187
 
3188
+ #: app/features/mec/settings.php:413
3189
  #, fuzzy
3190
  msgid "Category Slug"
3191
  msgstr "Categoría"
3192
 
3193
+ #: app/features/mec/settings.php:416
3194
  msgid ""
3195
  "It's slug of MEC categories, you can change it to events-cat or something "
3196
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3197
  "character and numbers."
3198
  msgstr ""
3199
 
3200
+ #: app/features/mec/settings.php:426
3201
  msgid "Single Event Date Format"
3202
  msgstr ""
3203
 
3204
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3205
  #, fuzzy
3206
  msgid "Default is M d Y"
3207
  msgstr "Default"
3208
 
3209
+ #: app/features/mec/settings.php:433
3210
  msgid "Date Method"
3211
  msgstr ""
3212
 
3213
+ #: app/features/mec/settings.php:436
3214
  msgid "Next occurrence date"
3215
  msgstr ""
3216
 
3217
+ #: app/features/mec/settings.php:437
3218
  msgid "Referred date"
3219
  msgstr ""
3220
 
3221
+ #: app/features/mec/settings.php:439
3222
  msgid ""
3223
  "\"Referred date\" shows the event date based on referred date in event list."
3224
  msgstr ""
3225
 
3226
+ #: app/features/mec/settings.php:443
3227
  msgid "Single Event Style"
3228
  msgstr ""
3229
 
3230
+ #: app/features/mec/settings.php:446
3231
  msgid "Default Style"
3232
  msgstr ""
3233
 
3234
+ #: app/features/mec/settings.php:447
3235
  msgid "Modern Style"
3236
  msgstr ""
3237
 
3238
+ #: app/features/mec/settings.php:449
3239
  msgid "Choose your single event style."
3240
  msgstr ""
3241
 
3242
+ #: app/features/mec/settings.php:458
3243
  msgid "Currency"
3244
  msgstr "Moneda corriente"
3245
 
3246
+ #: app/features/mec/settings.php:468
3247
  msgid "Currency Sign"
3248
  msgstr "Tipo de moneda"
3249
 
3250
+ #: app/features/mec/settings.php:471
3251
  msgid "Default value will be \"currency\" if you leave it empty."
3252
  msgstr ""
3253
 
3254
+ #: app/features/mec/settings.php:475
3255
  #, fuzzy
3256
  msgid "Currency Position"
3257
  msgstr "Opciones de moneda"
3258
 
3259
+ #: app/features/mec/settings.php:478
3260
  msgid "Before $10"
3261
  msgstr "Menos de 10€"
3262
 
3263
+ #: app/features/mec/settings.php:479
3264
  msgid "After 10$"
3265
  msgstr "Más de 10€"
3266
 
3267
+ #: app/features/mec/settings.php:484
3268
  msgid "Thousand Separator"
3269
  msgstr "Separador de miles"
3270
 
3271
+ #: app/features/mec/settings.php:490
3272
  msgid "Decimal Separator"
3273
  msgstr "Separador de decimales"
3274
 
3275
+ #: app/features/mec/settings.php:500
3276
  msgid "No decimal"
3277
  msgstr "No decimal"
3278
 
3279
+ #: app/features/mec/settings.php:516
3280
  msgid "Show Google Maps on event page"
3281
  msgstr "Ver eventos en Google Maps"
3282
 
3283
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3284
+ #: app/features/mec/settings.php:1140
3285
  msgid "API Key"
3286
  msgstr "API Key"
3287
 
3288
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3289
+ #: app/features/mec/settings.php:1150
3290
  msgid "Required!"
3291
  msgstr "Obligatorio!"
3292
 
3293
+ #: app/features/mec/settings.php:528
3294
  msgid "Zoom level"
3295
  msgstr "Nivel de zoom"
3296
 
3297
+ #: app/features/mec/settings.php:535
3298
  msgid ""
3299
  "For Google Maps module in single event page. In Google Maps skin, it will "
3300
  "caculate the zoom level automatically based on event boundaries."
3301
  msgstr ""
3302
 
3303
+ #: app/features/mec/settings.php:539
3304
  msgid "Google Maps Style"
3305
  msgstr "Estilo de Google Maps"
3306
 
3307
+ #: app/features/mec/settings.php:543
3308
  msgid "Default"
3309
  msgstr "Default"
3310
 
3311
+ #: app/features/mec/settings.php:551
3312
  msgid "Direction on single event"
3313
  msgstr "Dirección en la página del evento"
3314
 
3315
+ #: app/features/mec/settings.php:555
3316
  msgid "Simple Method"
3317
  msgstr "Método simple"
3318
 
3319
+ #: app/features/mec/settings.php:556
3320
  msgid "Advanced Method"
3321
  msgstr "Método avanzado"
3322
 
3323
+ #: app/features/mec/settings.php:561
3324
  msgid "Lightbox Date Format"
3325
  msgstr ""
3326
 
3327
+ #: app/features/mec/settings.php:564
3328
  #, fuzzy
3329
  msgid "Default value is M d Y"
3330
  msgstr "Valor por defecto del evento"
3331
 
3332
+ #: app/features/mec/settings.php:568
3333
  #, fuzzy
3334
  msgid "Google Maps API"
3335
  msgstr "Estilo de Google Maps"
3336
 
3337
+ #: app/features/mec/settings.php:572
3338
  msgid "Don't load Google Maps API library"
3339
  msgstr ""
3340
 
3341
+ #: app/features/mec/settings.php:574
3342
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3343
  msgstr ""
3344
 
3345
+ #: app/features/mec/settings.php:586
3346
  msgid "Enable Google Recaptcha"
3347
  msgstr ""
3348
 
3349
+ #: app/features/mec/settings.php:593
3350
  #, fuzzy
3351
  msgid "Enable on booking form"
3352
  msgstr "Activar módulo de reservas"
3353
 
3354
+ #: app/features/mec/settings.php:599
3355
  msgid "Enable on \"Frontend Event Submittion\" form"
3356
  msgstr ""
3357
 
3358
+ #: app/features/mec/settings.php:603
3359
  msgid "Site Key"
3360
  msgstr ""
3361
 
3362
+ #: app/features/mec/settings.php:609
3363
+ msgid "Secret Key"
3364
+ msgstr ""
3365
+
3366
+ #: app/features/mec/settings.php:623
3367
  msgid ""
3368
  "Show export module (iCal export and add to Google calendars) on event page"
3369
  msgstr "Ver modulo exportado (iCal y Google Calendars) en la página del evento"
3370
 
3371
+ #: app/features/mec/settings.php:630
3372
  msgid "Google Calendar"
3373
  msgstr "Google Calendar"
3374
 
3375
+ #: app/features/mec/settings.php:650
3376
  msgid "Show event time based on local time of visitor on event page"
3377
  msgstr ""
3378
 
3379
+ #: app/features/mec/settings.php:666
3380
  msgid "Show QR code of event in details page and booking invoice"
3381
  msgstr ""
3382
 
3383
+ #: app/features/mec/settings.php:684
3384
  msgid "Show weather module on event page"
3385
  msgstr ""
3386
 
3387
+ #: app/features/mec/settings.php:692
3388
  #, php-format
3389
  msgid "You can get a free API Key from %s"
3390
  msgstr ""
3391
 
3392
+ #: app/features/mec/settings.php:704
3393
  msgid "Show countdown module on event page"
3394
  msgstr "Mostrar módulo de cuenta atrás en la página del evento"
3395
 
3396
+ #: app/features/mec/settings.php:709
3397
  msgid "Countdown Style"
3398
  msgstr ""
3399
 
3400
+ #: app/features/mec/settings.php:712
3401
  msgid "Plain Style"
3402
  msgstr ""
3403
 
3404
+ #: app/features/mec/settings.php:713
3405
  msgid "Flip Style"
3406
  msgstr ""
3407
 
3408
+ #: app/features/mec/settings.php:725
3409
  msgid "Show social network module"
3410
  msgstr "Ver módulo de redes sociales"
3411
 
3412
+ #: app/features/mec/settings.php:750
3413
  msgid "Show next event module on event page"
3414
  msgstr ""
3415
 
3416
+ #: app/features/mec/settings.php:755
3417
  msgid "Method"
3418
  msgstr ""
3419
 
3420
+ #: app/features/mec/settings.php:758
3421
  msgid "Next Occurrence of Current Event"
3422
  msgstr ""
3423
 
3424
+ #: app/features/mec/settings.php:759
3425
  msgid "Next Occurrence of Other Events"
3426
  msgstr ""
3427
 
3428
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3429
  #, fuzzy
3430
  msgid "Date Format"
3431
  msgstr "Tiempo para comentar"
3432
 
3433
+ #: app/features/mec/settings.php:776
3434
  #, fuzzy
3435
  msgid "Events List Page"
3436
  msgstr "Título del evento"
3437
 
3438
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3439
  #, php-format
3440
  msgid "Put %s shortcode into the page."
3441
  msgstr ""
3442
 
3443
+ #: app/features/mec/settings.php:788
3444
  #, fuzzy
3445
  msgid "Add/Edit Events Page"
3446
  msgstr "Editar eventos"
3447
 
3448
+ #: app/features/mec/settings.php:802
3449
  msgid "Enable event submission by guest (Not logged-in) users"
3450
  msgstr ""
3451
 
3452
+ #: app/features/mec/settings.php:809
3453
  msgid "Enable mandatory email and name for guest user"
3454
  msgstr ""
3455
 
3456
+ #: app/features/mec/settings.php:813
3457
  msgid "Frontend Event Submission Sections"
3458
  msgstr ""
3459
 
3460
+ #: app/features/mec/settings.php:835
3461
  #, fuzzy
3462
  msgid "Event Categories"
3463
  msgstr "Categorías"
3464
 
3465
+ #: app/features/mec/settings.php:841
3466
  msgid "Event Labels"
3467
  msgstr "Etiqueta de evento"
3468
 
3469
+ #: app/features/mec/settings.php:853
3470
  #, fuzzy
3471
  msgid "Event Tags"
3472
  msgstr "Eventos"
3473
 
3474
+ #: app/features/mec/settings.php:865
3475
  msgid "Event Organizer"
3476
  msgstr "Organizador de eventos"
3477
 
3478
+ #: app/features/mec/settings.php:877
3479
  #, fuzzy
3480
  msgid "Booking Options"
3481
  msgstr "Opciones visuales"
3482
 
3483
+ #: app/features/mec/settings.php:883
3484
  #, fuzzy
3485
  msgid "Fees/Taxes Options"
3486
  msgstr "Opciones generales"
3487
 
3488
+ #: app/features/mec/settings.php:891
3489
  #, php-format
3490
  msgid ""
3491
  "Users can put a note for editors while they're submitting the event. Also "
3493
  "users' note in email."
3494
  msgstr ""
3495
 
3496
+ #: app/features/mec/settings.php:895
3497
  msgid "Visibility of Note"
3498
  msgstr ""
3499
 
3500
+ #: app/features/mec/settings.php:898
3501
  msgid "Always"
3502
  msgstr ""
3503
 
3504
+ #: app/features/mec/settings.php:899
3505
  msgid "While event is not published"
3506
  msgstr ""
3507
 
3508
+ #: app/features/mec/settings.php:902
3509
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3510
  msgstr ""
3511
 
3512
+ #: app/features/mec/settings.php:908
3513
  msgid "Exceptional days"
3514
  msgstr ""
3515
 
3516
+ #: app/features/mec/settings.php:912
3517
  msgid "Show exceptional days option on Add/Edit events page"
3518
  msgstr ""
3519
 
3520
+ #: app/features/mec/settings.php:913
3521
  msgid ""
3522
  "Using this option you can include/exclude certain days to/from event "
3523
  "occurrence dates."
3524
  msgstr ""
3525
 
3526
+ #: app/features/mec/settings.php:923
3527
  msgid ""
3528
  "Show additional organizers option on Add/Edit events page and single event "
3529
  "page."
3530
  msgstr ""
3531
 
3532
+ #: app/features/mec/settings.php:937
3533
  msgid "Enable booking module"
3534
  msgstr "Activar módulo de reservas"
3535
 
3536
+ #: app/features/mec/settings.php:945
3537
  #, fuzzy
3538
  msgid "Default is Y-m-d"
3539
  msgstr "Default"
3540
 
3541
+ #: app/features/mec/settings.php:949
3542
  #, fuzzy
3543
  msgid "Maximum Dates"
3544
  msgstr "Máximo de eventos"
3545
 
3546
+ #: app/features/mec/settings.php:951
3547
  #, fuzzy
3548
  msgid "Default is 6"
3549
  msgstr "Default"
3550
 
3551
+ #: app/features/mec/settings.php:955
3552
  msgid "Thank You Page"
3553
  msgstr ""
3554
 
3555
+ #: app/features/mec/settings.php:963
3556
  msgid ""
3557
  "User redirects to this page after booking. Leave it empty if you want to "
3558
  "disable it."
3559
  msgstr ""
3560
 
3561
+ #: app/features/mec/settings.php:971
3562
  msgid "Enable Express Attendees Form"
3563
  msgstr ""
3564
 
3565
+ #: app/features/mec/settings.php:973
3566
  msgid ""
3567
  "Users are able to apply first attendee information for other attendees in "
3568
  "the booking form."
3569
  msgstr ""
3570
 
3571
+ #: app/features/mec/settings.php:976
3572
  #, fuzzy
3573
  msgid "Email verification"
3574
  msgstr "Verificar"
3575
 
3576
+ #: app/features/mec/settings.php:982
3577
  msgid "Auto verification for free bookings"
3578
  msgstr "Auto verificación para reservas gratuitas"
3579
 
3580
+ #: app/features/mec/settings.php:991
3581
  msgid "Auto verification for paid bookings"
3582
  msgstr "Auto verificación para reservas de pago"
3583
 
3584
+ #: app/features/mec/settings.php:1001
3585
  #, fuzzy
3586
  msgid "Auto confirmation for free bookings"
3587
  msgstr "Auto verificación para reservas gratuitas"
3588
 
3589
+ #: app/features/mec/settings.php:1010
3590
  #, fuzzy
3591
  msgid "Auto confirmation for paid bookings"
3592
  msgstr "Auto verificación para reservas de pago"
3593
 
3594
+ #: app/features/mec/settings.php:1027
3595
  msgid "Enable coupons module"
3596
  msgstr "Activar módulo de cupones"
3597
 
3598
+ #: app/features/mec/settings.php:1044
3599
  msgid "Enable taxes / fees module"
3600
  msgstr "Activar módulo de Impuestos/Tasas"
3601
 
3602
+ #: app/features/mec/settings.php:1049
3603
  msgid "Add Fee"
3604
  msgstr "Nueva tasa"
3605
 
3606
+ #: app/features/mec/settings.php:1105
3607
  msgid "Enable BuddyPress Integration"
3608
  msgstr ""
3609
 
3610
+ #: app/features/mec/settings.php:1112
3611
  msgid "Show \"Attendees Module\" in event details page"
3612
  msgstr ""
3613
 
3614
+ #: app/features/mec/settings.php:1116
3615
  msgid "Attendees Limit"
3616
  msgstr ""
3617
 
3618
+ #: app/features/mec/settings.php:1124
3619
  msgid "Add booking activity to user profile"
3620
  msgstr ""
3621
 
3622
+ #: app/features/mec/settings.php:1135
3623
  msgid "Enable Mailchimp Integration"
3624
  msgstr ""
3625
 
3626
+ #: app/features/mec/settings.php:1147
3627
  msgid "List ID"
3628
  msgstr ""
3629
 
3630
+ #: app/features/mec/settings.php:1154
3631
  msgid "Subscription Status"
3632
  msgstr ""
3633
 
3634
+ #: app/features/mec/settings.php:1157
3635
  msgid "Subscribe automatically"
3636
  msgstr ""
3637
 
3638
+ #: app/features/mec/settings.php:1158
3639
  msgid "Subscribe by verification"
3640
  msgstr ""
3641
 
3642
+ #: app/features/mec/settings.php:1160
3643
  msgid ""
3644
  "If you choose \"Subscribe by verification\" then an email will send to user "
3645
  "by mailchimp for subscription verification."
3646
  msgstr ""
3647
 
3648
+ #: app/features/mec/settings.php:1170
3649
  #, php-format
3650
  msgid "%s is required to use this section."
3651
  msgstr ""
3652
 
3653
+ #: app/features/mec/settings.php:1173
3654
  msgid "Purchase Code"
3655
  msgstr ""
3656
 
3657
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3658
+ #: app/features/mec/settings.php:1262
3659
+ msgid "Verified"
3660
+ msgstr "Verificado"
3661
+
3662
+ #: app/features/mec/settings.php:1180
3663
  #, fuzzy
3664
  msgid "UnVerified"
3665
  msgstr "Verificado"
3666
 
3667
+ #: app/features/mec/settings.php:1182
3668
  msgid ""
3669
  "Please insert your purchase code validation. read documentation for more "
3670
  "information."
3671
  msgstr ""
3672
 
3673
+ #: app/features/mec/settings.php:1185
3674
  msgid "Product Name"
3675
  msgstr ""
3676
 
3677
+ #: app/features/mec/settings.php:1188
3678
  msgid "1 License for MEC Plugin"
3679
  msgstr ""
3680
 
3681
+ #: app/features/mec/settings.php:1189
3682
  msgid "5 License for MEC Plugin"
3683
  msgstr ""
3684
 
3685
+ #: app/features/mec/settings.php:1190
3686
  msgid "10 License for MEC Plugin"
3687
  msgstr ""
3688
 
3689
+ #: app/features/mec/settings.php:1197
3690
  msgid "MEC Deactivation"
3691
  msgstr ""
3692
 
3693
+ #: app/features/mec/settings.php:1199
3694
  msgid "Deactivate"
3695
  msgstr ""
3696
 
3697
+ #: app/features/mec/settings.php:1201
3698
  msgid ""
3699
  "For deactivation first delete your purchase from above field then press save "
3700
  "after that click on deactivate for deactivate this purchase code from this "
3701
  "domain then you can activate another domain."
3702
  msgstr ""
3703
 
3704
+ #: app/features/mec/settings.php:1264
3705
  msgid "Please Refresh Page"
3706
  msgstr ""
3707
 
3856
  msgid "eg. https://webnus.net"
3857
  msgstr "ej. https://webnus.net"
3858
 
3859
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3860
  #: app/skins/single.php:194
3861
  msgid "Other Organizers"
3862
  msgstr ""
3871
  msgid "%s Price"
3872
  msgstr ""
3873
 
3874
+ #: app/libraries/book.php:516
3875
+ msgid "Discount"
3876
+ msgstr "Descuento"
3877
+
3878
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3879
+ #: app/modules/booking/default.php:369
3880
+ msgid "Download Invoice"
3881
+ msgstr ""
3882
+
3883
  #: app/libraries/factory.php:148
3884
  #, fuzzy
3885
  msgid "M.E. Calendar"
3953
  msgid "There is no excerpt because this is a protected post."
3954
  msgstr "No hay extracto porque es una entrada protegida."
3955
 
3956
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
3957
  msgid "Grid View"
3958
  msgstr "Ver cuadrícula"
3959
 
3960
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
3961
  msgid "Agenda View"
3962
  msgstr ""
3963
 
3964
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
3965
  #, fuzzy
3966
  msgid "Full Calendar"
3967
  msgstr "Calendario"
3968
 
3969
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
3970
  msgid "Calendar/Monthly View"
3971
  msgstr "Ver Calendario/Mes"
3972
 
3973
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
3974
  msgid "Timetable View"
3975
  msgstr ""
3976
 
3977
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
3978
  msgid "Masonry View"
3979
  msgstr ""
3980
 
3981
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
3982
  msgid "Map View"
3983
  msgstr "Ver mapa"
3984
 
4004
  msgid "Slider View"
4005
  msgstr ""
4006
 
4007
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
4008
  msgid "SU"
4009
  msgstr ""
4010
 
4011
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
4012
  msgid "MO"
4013
  msgstr ""
4014
 
4015
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
4016
  msgid "TU"
4017
  msgstr ""
4018
 
4019
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
4020
  msgid "WE"
4021
  msgstr ""
4022
 
4023
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
4024
  msgid "TH"
4025
  msgstr ""
4026
 
4027
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
4028
  msgid "FR"
4029
  msgstr ""
4030
 
4031
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
4032
  msgid "SA"
4033
  msgstr ""
4034
 
4052
  msgid "Twitter"
4053
  msgstr "Twitter"
4054
 
4055
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
4056
  msgid "Linkedin"
4057
  msgstr "LinkedIn"
4058
 
4059
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
4060
+ msgid "VK"
4061
+ msgstr ""
4062
+
4063
+ #: app/libraries/main.php:1053
4064
  msgid "Share on Facebook"
4065
  msgstr "Compartir en Facebook"
4066
 
4067
+ #: app/libraries/main.php:1065
4068
  msgid "Google Plus"
4069
  msgstr "Google Plus"
4070
 
4071
+ #: app/libraries/main.php:1077
4072
  msgid "Tweet"
4073
  msgstr "Tweet"
4074
 
4075
+ #: app/libraries/main.php:1471
4076
  msgid "Your booking successfully verified."
4077
  msgstr "Su reserva verificada correctamente."
4078
 
4079
+ #: app/libraries/main.php:1472
4080
  msgid "Your booking cannot verify!"
4081
  msgstr "Su reserva no se puede verificar!"
4082
 
4083
+ #: app/libraries/main.php:1484
4084
  msgid "Your booking successfully canceled."
4085
  msgstr "Su reserva se ha cancelado correctamente."
4086
 
4087
+ #: app/libraries/main.php:1485
4088
  msgid "Your booking cannot be canceled."
4089
  msgstr "La reserva no puede cancelarse."
4090
 
4091
+ #: app/libraries/main.php:1489
4092
  msgid "You canceled the payment successfully."
4093
  msgstr "Has cancelado el pago correctamente."
4094
 
4095
+ #: app/libraries/main.php:1493
4096
  msgid "You returned from payment gateway successfully."
4097
  msgstr "Has vuelto correctamente de tu pasarela de pago."
4098
 
4099
+ #: app/libraries/main.php:1517
4100
  msgid "Cannot find the booking!"
4101
  msgstr ""
4102
 
4103
+ #: app/libraries/main.php:1517
4104
  msgid "Booking is invalid."
4105
  msgstr ""
4106
 
4107
+ #: app/libraries/main.php:1538
4108
  #, php-format
4109
  msgid "%s Invoice"
4110
  msgstr ""
4111
 
4112
+ #: app/libraries/main.php:1559
4113
+ msgid "Transaction ID"
4114
+ msgstr "ID Transacción"
4115
+
4116
+ #: app/libraries/main.php:1568
4117
+ msgid "Attendees"
4118
+ msgstr ""
4119
+
4120
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4121
+ msgid "Ticket"
4122
+ msgstr "Ticket"
4123
+
4124
+ #: app/libraries/main.php:1590
4125
  msgid "Billing"
4126
  msgstr ""
4127
 
4128
+ #: app/libraries/main.php:1601
4129
  msgid "Total"
4130
  msgstr ""
4131
 
4132
+ #: app/libraries/main.php:1634
4133
  msgid "Security nonce is not valid."
4134
  msgstr "La seguridad no es válida."
4135
 
4136
+ #: app/libraries/main.php:1634
4137
  msgid "iCal export stopped!"
4138
  msgstr "La exportación de iCal se detuvo!"
4139
 
4140
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4141
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4142
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4143
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4144
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4145
  msgid "Sort"
4146
  msgstr "Orden"
4147
 
4148
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4149
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4150
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4151
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4152
  msgid "Required Field"
4153
  msgstr "Campo obligatorio"
4154
 
4155
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4156
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4157
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4158
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4159
  msgid "Insert a label for this field"
4160
  msgstr "Introduzca una etiqueta para este campo"
4161
 
4162
+ #: app/libraries/main.php:1977
4163
  msgid "HTML and shortcode are allowed."
4164
  msgstr "Se permite HTML"
4165
 
4166
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4167
+ #: app/libraries/main.php:2108
4168
  msgid "Option"
4169
  msgstr "Opción"
4170
 
4171
+ #: app/libraries/main.php:2142
4172
  #, php-format
4173
  msgid "Instead of %s, the page title with a link will be show."
4174
  msgstr ""
4175
 
4176
+ #: app/libraries/main.php:2144
4177
  msgid "Agreement Page"
4178
  msgstr ""
4179
 
4180
+ #: app/libraries/main.php:2153
4181
  msgid "Status"
4182
  msgstr ""
4183
 
4184
+ #: app/libraries/main.php:2155
4185
  msgid "Checked by default"
4186
  msgstr ""
4187
 
4188
+ #: app/libraries/main.php:2156
4189
  msgid "Unchecked by default"
4190
  msgstr ""
4191
 
4192
+ #: app/libraries/main.php:2178
4193
  msgid "Insert a label for this option"
4194
  msgstr "Introduce una etiqueta para esta opción"
4195
 
4196
+ #: app/libraries/main.php:2193
4197
+ msgid "Free"
4198
+ msgstr "Gratis"
4199
+
4200
+ #: app/libraries/main.php:2845
4201
  #, php-format
4202
  msgid "Copy of %s"
4203
  msgstr ""
4204
 
4205
+ #: app/libraries/main.php:3482
4206
  msgid "Booked an event."
4207
  msgstr ""
4208
 
4209
+ #: app/libraries/main.php:3523
4210
  #, php-format
4211
  msgid "%s booked %s event."
4212
  msgstr ""
4213
 
4214
+ #: app/libraries/main.php:3965
4215
  msgid "Taxonomies"
4216
  msgstr ""
4217
 
4218
+ #: app/libraries/main.php:3967
4219
  msgid "Category Plural Label"
4220
  msgstr ""
4221
 
4222
+ #: app/libraries/main.php:3968
4223
  msgid "Category Singular Label"
4224
  msgstr ""
4225
 
4226
+ #: app/libraries/main.php:3969
4227
  msgid "Label Plural Label"
4228
  msgstr ""
4229
 
4230
+ #: app/libraries/main.php:3970
4231
  msgid "Label Singular Label"
4232
  msgstr ""
4233
 
4234
+ #: app/libraries/main.php:3970
4235
  msgid "label"
4236
  msgstr ""
4237
 
4238
+ #: app/libraries/main.php:3971
4239
  msgid "Location Plural Label"
4240
  msgstr ""
4241
 
4242
+ #: app/libraries/main.php:3972
4243
  msgid "Location Singular Label"
4244
  msgstr ""
4245
 
4246
+ #: app/libraries/main.php:3973
4247
  msgid "Organizer Plural Label"
4248
  msgstr ""
4249
 
4250
+ #: app/libraries/main.php:3974
4251
  msgid "Organizer Singular Label"
4252
  msgstr ""
4253
 
4254
+ #: app/libraries/main.php:3980
4255
  msgid "Sunday abbreviation"
4256
  msgstr ""
4257
 
4258
+ #: app/libraries/main.php:3981
4259
  msgid "Monday abbreviation"
4260
  msgstr ""
4261
 
4262
+ #: app/libraries/main.php:3982
4263
  msgid "Tuesday abbreviation"
4264
  msgstr ""
4265
 
4266
+ #: app/libraries/main.php:3983
4267
  msgid "Wednesday abbreviation"
4268
  msgstr ""
4269
 
4270
+ #: app/libraries/main.php:3984
4271
  msgid "Thursday abbreviation"
4272
  msgstr ""
4273
 
4274
+ #: app/libraries/main.php:3985
4275
  msgid "Friday abbreviation"
4276
  msgstr ""
4277
 
4278
+ #: app/libraries/main.php:3986
4279
  msgid "Saturday abbreviation"
4280
  msgstr ""
4281
 
4282
+ #: app/libraries/main.php:3990
4283
  msgid "Others"
4284
  msgstr ""
4285
 
4286
+ #: app/libraries/main.php:3992
4287
  msgid "Booking Success Message"
4288
  msgstr ""
4289
 
4290
+ #: app/libraries/main.php:3992
4291
+ msgid ""
4292
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4293
+ "needed, please check your email."
4294
+ msgstr "Gracias por su reserva. Revise su correo electrónico."
4295
+
4296
+ #: app/libraries/main.php:3993
4297
  msgid "Register Button"
4298
  msgstr ""
4299
 
4300
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4301
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4302
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4303
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4311
  msgid "REGISTER"
4312
  msgstr "REGISTRAR"
4313
 
4314
+ #: app/libraries/main.php:3994
4315
  msgid "View Detail Button"
4316
  msgstr ""
4317
 
4318
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4319
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4320
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4321
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4326
  msgid "View Detail"
4327
  msgstr "Ver detalle"
4328
 
4329
+ #: app/libraries/main.php:3995
4330
  msgid "Event Detail Button"
4331
  msgstr ""
4332
 
4333
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4334
  #, fuzzy
4335
  msgid "Event Detail"
4336
  msgstr "Detalle de evento"
4337
 
4338
+ #: app/libraries/main.php:3997
4339
  msgid "More Info Link"
4340
  msgstr ""
4341
 
4342
+ #: app/libraries/main.php:4000
4343
  msgid "Ticket (Singular)"
4344
  msgstr ""
4345
 
4346
+ #: app/libraries/main.php:4001
4347
  msgid "Tickets (Plural)"
4348
  msgstr ""
4349
 
4350
+ #: app/libraries/main.php:4067
4351
  msgid "EventON"
4352
  msgstr ""
4353
 
4354
+ #: app/libraries/main.php:4068
4355
  msgid "The Events Calendar"
4356
  msgstr ""
4357
 
4358
+ #: app/libraries/main.php:4069
4359
  msgid "Events Schedule WP Plugin"
4360
  msgstr ""
4361
 
4362
+ #: app/libraries/main.php:4070
4363
  msgid "Calendarize It"
4364
  msgstr ""
4365
 
4383
  msgid "A new event is added."
4384
  msgstr ""
4385
 
4386
+ #: app/libraries/notifications.php:516
4387
+ msgid "Yes"
4388
+ msgstr ""
4389
+
4390
+ #: app/libraries/notifications.php:516
4391
+ msgid "No"
4392
+ msgstr "No"
4393
+
4394
  #: app/libraries/render.php:337
4395
  msgid "Skin controller does not exist."
4396
  msgstr "No existe skin controller."
4419
  msgid "%s tickets"
4420
  msgstr ""
4421
 
4422
+ #: app/modules/booking/steps/checkout.php:16
4423
+ msgid "Checkout"
4424
+ msgstr "Checkout"
4425
+
4426
  #: app/modules/booking/steps/checkout.php:33
4427
  msgid "Discount Coupon"
4428
  msgstr "Descuento del cupón"
4449
  msgid "Next"
4450
  msgstr "Siguiente"
4451
 
4452
+ #: app/modules/booking/steps/message.php:7
4453
+ #, fuzzy
4454
+ msgid "Thanks for your booking."
4455
+ msgstr "Gracias por su reserva."
4456
+
4457
  #: app/modules/booking/steps/tickets.php:18
4458
  msgid "Book Event"
4459
  msgstr "Reserva del evento"
4746
  msgid "QR Code : "
4747
  msgstr ""
4748
 
4749
+ #. Plugin Name of the plugin/theme
4750
+ #, fuzzy
4751
+ #| msgid "Modern Events Calendar"
4752
+ msgid "Modern Events Calendar Lite"
4753
+ msgstr "Calendario moderno"
4754
+
4755
  #. Plugin URI of the plugin/theme
4756
  msgid "http://webnus.net/plugins/modern-events-calendar/"
4757
  msgstr ""
4768
  msgid "http://webnus.net"
4769
  msgstr ""
4770
 
4771
+ #~ msgid "Add Booking"
4772
+ #~ msgstr "Nueva reserva"
4773
+
4774
+ #~ msgid "No bookings found!"
4775
+ #~ msgstr "No hay reservas"
4776
+
4777
+ #~ msgid "Edit Bookings"
4778
+ #~ msgstr "Editar reserva"
4779
+
4780
+ #~ msgid "No bookings found in Trash!"
4781
+ #~ msgstr "No hay reservas en la papelera"
4782
+
4783
+ #~ msgid "Book Details"
4784
+ #~ msgstr "Detalle de la reserva"
4785
+
4786
+ #~ msgid "Confirmation"
4787
+ #~ msgstr "Confirmar"
4788
+
4789
+ #~ msgid "Pending"
4790
+ #~ msgstr "Pendiente"
4791
+
4792
+ #~ msgid "Confirmed"
4793
+ #~ msgstr "Confirmado"
4794
+
4795
+ #~ msgid "Rejected"
4796
+ #~ msgstr "Rechazado"
4797
+
4798
+ #~ msgid "Verification"
4799
+ #~ msgstr "Verificar"
4800
+
4801
+ #~ msgid "Waiting"
4802
+ #~ msgstr "Esperando"
4803
+
4804
+ #~ msgid "Canceled"
4805
+ #~ msgstr "Cancelado"
4806
+
4807
+ #~ msgid "Payment"
4808
+ #~ msgstr "Pago"
4809
+
4810
+ #~ msgid "Gateway"
4811
+ #~ msgstr "Entrada"
4812
+
4813
+ #~ msgid "Unknown"
4814
+ #~ msgstr "Desconocido"
4815
+
4816
+ #~ msgid "%s to %s"
4817
+ #~ msgstr "%s de %s"
4818
+
4819
+ #~ msgid "Book Date"
4820
+ #~ msgstr "Fecha"
4821
+
4822
+ #~ msgid "Confirm"
4823
+ #~ msgstr "Confirmar"
4824
+
4825
+ #~ msgid "Reject"
4826
+ #~ msgstr "Rechazar"
4827
+
4828
+ #, fuzzy
4829
+ #~ msgid "Security nonce is missing."
4830
+ #~ msgstr "La seguridad no es válida."
4831
+
4832
+ #, fuzzy
4833
+ #~ msgid "Security nonce is invalid."
4834
+ #~ msgstr "La seguridad no es válida."
4835
+
4836
+ #~ msgid "Coupon"
4837
+ #~ msgstr "Cupón"
4838
+
4839
+ #~ msgid "All Coupons"
4840
+ #~ msgstr "Todos los cupones"
4841
+
4842
+ #~ msgid "Edit Coupon"
4843
+ #~ msgstr "Editar cupón"
4844
+
4845
+ #~ msgid "View Coupon"
4846
+ #~ msgstr "Ver cupón"
4847
+
4848
+ #~ msgid "Update Coupon"
4849
+ #~ msgstr "Actualizar cupón"
4850
+
4851
+ #~ msgid "Add New Coupon"
4852
+ #~ msgstr "Nuevo cupón"
4853
+
4854
+ #~ msgid "New Coupon Name"
4855
+ #~ msgstr "Nuevo nombre del cupón"
4856
+
4857
+ #~ msgid "Popular Coupons"
4858
+ #~ msgstr "Cupones populares"
4859
+
4860
+ #~ msgid "Search Coupons"
4861
+ #~ msgstr "Buscar cupones"
4862
+
4863
+ #~ msgid "Discount Type"
4864
+ #~ msgstr "Tipo de descuento"
4865
+
4866
+ #~ msgid ""
4867
+ #~ "Discount percent, considered as amount if you set the discount type to "
4868
+ #~ "amount"
4869
+ #~ msgstr "El porcentaje de descuento se aplica sobre la cantidad"
4870
+
4871
+ #~ msgid "Usage Limit"
4872
+ #~ msgstr "Límite de uso"
4873
+
4874
+ #~ msgid "Insert -1 for unlimited usage"
4875
+ #~ msgstr "Introduce -1 para uso ilimitado"
4876
+
4877
+ #~ msgid "Expiration Date"
4878
+ #~ msgstr "Día de expiración"
4879
+
4880
+ #~ msgid "Name/Code"
4881
+ #~ msgstr "Nombre/Código"
4882
+
4883
+ #~ msgid "Discount coupon is invalid!"
4884
+ #~ msgstr "El cupón de descuento no es válido!"
4885
+
4886
+ #~ msgid "Discount coupon usage limit reached!"
4887
+ #~ msgstr "El cupón de descuento ha finalizado!"
4888
+
4889
+ #~ msgid "Coupon is valid and you get %s discount."
4890
+ #~ msgstr "El cupón es correcto y se aplica un %s de descuento."
4891
+
4892
+ #~ msgid "Request is invalid!"
4893
+ #~ msgstr "Solicitud no válida!"
4894
+
4895
+ #~ msgid "There is no attendee for booking!"
4896
+ #~ msgstr "No hay sistema de booking!"
4897
+
4898
+ #, fuzzy
4899
+ #~ msgid "MEC Transaction ID: %s"
4900
+ #~ msgstr "ID Transacción"
4901
+
4902
+ #~ msgid "Pay"
4903
+ #~ msgstr "Pagar"
4904
+
4905
+ #~ msgid "Comment"
4906
+ #~ msgstr "Comentarios"
4907
+
4908
+ #~ msgid "HTML allowed."
4909
+ #~ msgstr "HTML permitido."
4910
+
4911
+ #~ msgid "Pay Locally"
4912
+ #~ msgstr "Pagué"
4913
+
4914
+ #~ msgid "PayPal Express"
4915
+ #~ msgstr "PayPal Express"
4916
+
4917
+ #~ msgid "Business Account"
4918
+ #~ msgstr "Cuenta de negocios"
4919
+
4920
+ #~ msgid "Normally PayPal Email."
4921
+ #~ msgstr "Paypal email."
4922
+
4923
+ #~ msgid "Mode"
4924
+ #~ msgstr "Modo"
4925
+
4926
+ #~ msgid "Live"
4927
+ #~ msgstr "Directo"
4928
+
4929
+ #~ msgid "Sandbox"
4930
+ #~ msgstr "Cajón"
4931
+
4932
+ #~ msgid "Waiting for getting response from gateway."
4933
+ #~ msgstr "Esperando obtener respuesta de entrada."
4934
+
4935
+ #~ msgid "Payment was invalid! Booking failed."
4936
+ #~ msgstr "El pago no es válido! Error en la reserva."
4937
+
4938
+ #~ msgid "PayPal Credit Card"
4939
+ #~ msgstr "Paypal Tarjeta de crédito"
4940
+
4941
+ #~ msgid "API Username"
4942
+ #~ msgstr "API Username"
4943
+
4944
+ #~ msgid "API Password"
4945
+ #~ msgstr "API Contraseña"
4946
+
4947
+ #~ msgid "API Signature"
4948
+ #~ msgstr "API Firma"
4949
+
4950
+ #~ msgid "First name"
4951
+ #~ msgstr "Primer nombre"
4952
+
4953
+ #~ msgid "Last name"
4954
+ #~ msgstr "Segundo nombre"
4955
+
4956
+ #~ msgid "Card Type"
4957
+ #~ msgstr "Tipo de tarjeta"
4958
+
4959
+ #~ msgid "Visa"
4960
+ #~ msgstr "Visa"
4961
+
4962
+ #~ msgid "MasterCard"
4963
+ #~ msgstr "MasterCard"
4964
+
4965
+ #~ msgid "Discover"
4966
+ #~ msgstr "Descubre"
4967
+
4968
+ #~ msgid "American Express"
4969
+ #~ msgstr "American Express"
4970
+
4971
+ #~ msgid "CC Number"
4972
+ #~ msgstr "Numero CC"
4973
+
4974
+ #~ msgid "CVV2"
4975
+ #~ msgstr "CVV2"
4976
+
4977
+ #~ msgid "Payment is invalid."
4978
+ #~ msgstr "El pago no es válido."
4979
+
4980
  #~ msgid "Attendee"
4981
  #~ msgstr "Asistente"
4982
 
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: 2018-07-24 11:58+0430\n"
5
- "PO-Revision-Date: 2018-08-21 16:24+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -20,7 +20,6 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #. Plugin Name of the plugin/theme
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
25
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
26
  #: app/widgets/MEC.php:23
@@ -31,8 +30,8 @@ msgstr "Modern Events Calendar"
31
  msgid "Content"
32
  msgstr "Contenu"
33
 
34
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
35
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
36
  msgid "Shortcode"
37
  msgstr "Shortcode"
38
 
@@ -40,367 +39,29 @@ msgstr "Shortcode"
40
  msgid "Select from predefined shortcodes"
41
  msgstr "Sélectionnez des shortcodes prédéfinis"
42
 
43
- #: app/crons/booking-reminder.php:33
44
- msgid "Booking reminder notification is not enabled!"
45
- msgstr ""
46
-
47
- #: app/crons/booking-reminder.php:43
48
- msgid "Booking module is not enabled!"
49
- msgstr ""
50
-
51
- #: app/crons/booking-reminder.php:52
52
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
53
- msgstr ""
54
-
55
- #: app/crons/booking-reminder.php:104
56
- #, php-format
57
- msgid "%s reminders sent."
58
- msgstr ""
59
-
60
- #: app/crons/f-import.php:32
61
- msgid "Auto Facebook import is disabled!"
62
- msgstr "L'import Automatique de Facebook est désactivé !"
63
-
64
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
65
- msgid "Please insert your facebook page's link."
66
- msgstr "Merci d'insérer l'URL de votre Page Facebook."
67
-
68
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
69
- msgid ""
70
- "We couldn't recognize your Facebook page. Please check it and provide us a "
71
- "valid facebook page link."
72
- msgstr ""
73
- "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
74
- "une adresse Facebook Page valide."
75
-
76
- #: app/crons/f-import.php:198
77
- #, php-format
78
- msgid "%s facebook events imported/updated."
79
- msgstr "%s évènements Facebook importés / mis à jour."
80
-
81
- #: app/crons/g-export.php:37 app/features/ix.php:2527
82
- msgid "All of Client App, Client Secret and Calendar ID are required!"
83
- msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
84
-
85
- #: app/crons/g-export.php:234 app/features/ix.php:2722
86
- #, php-format
87
- msgid "%s events added to Google Calendar successfully."
88
- msgstr "%s évènements ajoutés à Google Agenda avec succès."
89
-
90
- #: app/crons/g-export.php:235 app/features/ix.php:2723
91
- #, php-format
92
- msgid "%s previously added events get updated."
93
- msgstr "%s évènements précédemment ajoutés ont été mis à jour."
94
-
95
- #: app/crons/g-export.php:236 app/features/ix.php:2724
96
- #, php-format
97
- msgid "%s events failed to add for following reasons: %s"
98
- msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
99
-
100
- #: app/crons/g-import.php:32
101
- msgid "Auto Google Calendar import is disabled!"
102
- msgstr "L'import Automatique de Google Agenda est désactivé !"
103
-
104
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
105
- msgid "Both of API key and Calendar ID are required!"
106
- msgstr "La clé API et le Calendar ID sont requis !"
107
-
108
- #: app/crons/g-import.php:370
109
- #, php-format
110
- msgid "%s google events imported/updated."
111
- msgstr "%s évènements Google importés / mis à jour."
112
-
113
- #: app/features/books.php:105 app/features/books.php:110
114
- #: app/features/ix/export.php:37
115
- msgid "Bookings"
116
- msgstr "Réservations"
117
-
118
- #: app/features/books.php:106 app/features/books.php:328
119
- #: app/features/contextual.php:308 app/features/events.php:253
120
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
121
- msgid "Booking"
122
- msgstr "Réservation"
123
-
124
- #: app/features/books.php:107 app/features/books.php:108
125
- msgid "Add Booking"
126
- msgstr "Ajouter une réservation"
127
-
128
- #: app/features/books.php:109
129
- msgid "No bookings found!"
130
- msgstr "Aucune réservation trouvée !"
131
-
132
- #: app/features/books.php:111
133
- msgid "Edit Bookings"
134
- msgstr "Modifier les réservations"
135
-
136
- #: app/features/books.php:112
137
- msgid "No bookings found in Trash!"
138
- msgstr "Aucune réservation trouvées dans la corbeille !"
139
-
140
- #: app/features/books.php:149
141
- msgid "Book Details"
142
- msgstr "Détails de la reservation"
143
-
144
- #: app/features/books.php:150
145
- msgid "Status & Invoice"
146
- msgstr ""
147
-
148
- #: app/features/books.php:176 app/features/books.php:387
149
- #: app/features/books.php:576 app/features/books.php:651
150
- #: app/features/books.php:709
151
- msgid "Confirmation"
152
- msgstr "Confirmation"
153
-
154
- #: app/features/books.php:178 app/features/books.php:578
155
- #: app/features/books.php:602 app/features/books.php:894
156
- msgid "Pending"
157
- msgstr "En attente"
158
-
159
- #: app/features/books.php:179 app/features/books.php:577
160
- #: app/features/books.php:892
161
- msgid "Confirmed"
162
- msgstr "Confirmé"
163
-
164
- #: app/features/books.php:180 app/features/books.php:579
165
- #: app/features/books.php:893
166
- msgid "Rejected"
167
- msgstr "Rejeté"
168
-
169
- #: app/features/books.php:184 app/features/books.php:388
170
- #: app/features/books.php:585 app/features/books.php:651
171
- #: app/features/books.php:709
172
- msgid "Verification"
173
- msgstr "Vérification"
174
-
175
- #: app/features/books.php:186 app/features/books.php:587
176
- #: app/features/books.php:909
177
- msgid "Waiting"
178
- msgstr "En attente"
179
-
180
- #: app/features/books.php:187 app/features/books.php:586
181
- #: app/features/books.php:907 app/features/mec/settings.php:1173
182
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
183
- msgid "Verified"
184
- msgstr "Vérifié"
185
-
186
- #: app/features/books.php:188 app/features/books.php:588
187
- #: app/features/books.php:908
188
- msgid "Canceled"
189
- msgstr "Annulé"
190
-
191
- #: app/features/books.php:203
192
- #, php-format
193
- msgid "Here, you can %s invoice of %s transaction."
194
- msgstr ""
195
-
196
- #: app/features/books.php:203
197
- msgid "download"
198
- msgstr ""
199
-
200
- #: app/features/books.php:246
201
- msgid "It will create a new booking under \"Pay Locally\" gateway."
202
- msgstr ""
203
-
204
- #: app/features/books.php:248 app/features/contextual.php:62
205
- #: app/features/events.php:910 app/features/mec/gateways.php:29
206
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
207
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
208
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
209
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
210
- msgid "Booking Form"
211
- msgstr "Formulaire de réservation"
212
-
213
- #: app/features/books.php:251 app/features/books.php:330
214
- #: app/features/books.php:385 app/features/books.php:569
215
- #: app/features/books.php:651 app/features/books.php:709
216
- #: app/features/events.php:123
217
- #: app/features/mec/meta_boxes/display_options.php:678
218
- #: app/features/mec/meta_boxes/display_options.php:716
219
- #: app/features/mec/meta_boxes/display_options.php:745
220
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
221
- #: app/skins/yearly_view/tpl.php:69
222
- msgid "Event"
223
- msgstr "Événement"
224
-
225
- #: app/features/books.php:315
226
- msgid "Payment"
227
- msgstr "Paiement"
228
-
229
- #: app/features/books.php:317 app/features/books.php:386
230
- #: app/features/events.php:756 app/features/events.php:788
231
- msgid "Price"
232
- msgstr "Tarif"
233
-
234
- #: app/features/books.php:321 app/features/gateways.php:148
235
- msgid "Gateway"
236
- msgstr "Passerelle"
237
-
238
- #: app/features/books.php:322 app/features/books.php:326
239
- #: app/features/books.php:331 app/features/books.php:335
240
- #: app/features/books.php:352 app/features/books.php:690
241
- #: app/features/books.php:748
242
- msgid "Unknown"
243
- msgstr "Inconnu"
244
-
245
- #: app/features/books.php:325 app/features/books.php:389
246
- #: app/features/books.php:651 app/features/books.php:709
247
- #: app/libraries/main.php:1544
248
- msgid "Transaction ID"
249
- msgstr "Numéro de transaction"
250
-
251
- #: app/features/books.php:334 app/features/books.php:651
252
- #: app/features/books.php:709 app/features/books.php:1099
253
- #: app/features/events.php:508 app/features/events.php:580
254
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
255
- #: app/modules/booking/steps/tickets.php:20
256
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
257
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
258
- #: app/skins/single/modern.php:146
259
- msgid "Date"
260
- msgstr "Date"
261
-
262
- #: app/features/books.php:335
263
- #, php-format
264
- msgid "%s to %s"
265
- msgstr "%s en %s"
266
-
267
- #: app/features/books.php:338 app/features/mec/notifications.php:140
268
- #: app/features/mec/notifications.php:177
269
- #: app/features/mec/notifications.php:214
270
- #: app/features/mec/notifications.php:255
271
- #: app/features/mec/notifications.php:307
272
- msgid "Total Attendees"
273
- msgstr ""
274
-
275
- #: app/features/books.php:341 app/features/books.php:384
276
- #: app/libraries/main.php:1553
277
- msgid "Attendees"
278
- msgstr ""
279
-
280
- #: app/features/books.php:347 app/features/books.php:651
281
- #: app/features/books.php:709 app/features/books.php:1114
282
- #: app/features/events.php:371 app/features/events.php:945
283
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
284
- #: app/features/organizers.php:110 app/features/organizers.php:150
285
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
286
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
287
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
288
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
289
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
290
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
291
- #: app/skins/single/modern.php:38
292
- msgid "Email"
293
- msgstr "Email"
294
-
295
- #: app/features/books.php:351 app/features/books.php:431
296
- #: app/features/books.php:651 app/features/books.php:709
297
- #: app/features/books.php:1106 app/libraries/main.php:1559
298
- #: app/libraries/main.php:3985
299
- msgid "Ticket"
300
- msgstr "Billets"
301
-
302
- #: app/features/books.php:358 app/libraries/notifications.php:516
303
- msgid "Yes"
304
- msgstr ""
305
-
306
- #: app/features/books.php:358 app/libraries/notifications.php:516
307
- msgid "No"
308
- msgstr ""
309
-
310
- #: app/features/books.php:390
311
- msgid "Book Date"
312
- msgstr "Date de réservation"
313
-
314
- #: app/features/books.php:602
315
- msgid "Confirm"
316
- msgstr "Confirmation"
317
-
318
- #: app/features/books.php:602
319
- msgid "Reject"
320
- msgstr "Rejet"
321
-
322
- #: app/features/books.php:602 app/features/events.php:1569
323
- #: app/features/events.php:1570
324
- msgid "CSV Export"
325
- msgstr "Exporter en CSV"
326
-
327
- #: app/features/books.php:602 app/features/events.php:1572
328
- #: app/features/events.php:1573
329
- msgid "MS Excel Export"
330
- msgstr "Exporter en Microsoft Excel"
331
-
332
- #: app/features/books.php:651 app/features/books.php:709
333
- #: app/features/events.php:1631 app/features/events.php:1675
334
- #: app/features/ix.php:2328 app/features/ix.php:2369
335
- #: app/features/labels.php:150 app/features/locations.php:228
336
- #: app/features/organizers.php:198
337
- msgid "ID"
338
- msgstr "ID"
339
-
340
- #: app/features/books.php:651 app/features/books.php:709
341
- msgid "Total Price"
342
- msgstr ""
343
-
344
- #: app/features/books.php:651 app/features/books.php:709
345
- #: app/features/books.php:1113 app/features/events.php:370
346
- #: app/features/fes/form.php:441 app/features/gateways.php:503
347
- #: app/features/labels.php:151 app/features/organizers.php:268
348
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
349
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
350
- msgid "Name"
351
- msgstr "Nom"
352
-
353
- #: app/features/books.php:923
354
- msgid "Security nonce is missing."
355
- msgstr "Le code de sécurité de la carte est manquant."
356
-
357
- #: app/features/books.php:926
358
- msgid "Security nonce is invalid."
359
- msgstr "Le code de sécurité de la carte n'est pas correct."
360
-
361
- #: app/features/books.php:935
362
- msgid "Invalid request."
363
- msgstr "Requête invalide."
364
-
365
- #: app/features/books.php:963
366
- msgid "Please select some tickets!"
367
- msgstr "Merci de sélectionner les billets !"
368
-
369
- #: app/features/books.php:969
370
- msgid "Captcha is invalid. Please try again."
371
- msgstr "Captcha invalide. Merci de Réessayer."
372
-
373
- #: app/features/books.php:1015
374
- msgid "Please fill the form correctly. Email and Name fields are required!"
375
- msgstr ""
376
-
377
- #: app/features/books.php:1085
378
- msgid "Event is invalid. Please select an event."
379
- msgstr ""
380
-
381
- #: app/features/books.php:1093
382
- msgid ""
383
- "No ticket ro future dates found for this event! Please try another event."
384
- msgstr ""
385
-
386
- #: app/features/books.php:1175
387
- msgid "Attendee Information"
388
- msgstr ""
389
-
390
  #: app/features/colors.php:50 app/features/fes/form.php:566
391
- #: app/features/mec/settings.php:842
392
  msgid "Event Color"
393
  msgstr "Couleur de l'événement"
394
 
395
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
396
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
397
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
398
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
399
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
400
  #: app/features/mec/support.php:18
401
  msgid "Settings"
402
  msgstr "Paramètres"
403
 
 
 
 
 
 
 
 
 
 
404
  #: app/features/contextual.php:63
405
  msgid ""
406
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -413,7 +74,7 @@ msgstr ""
413
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
414
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
415
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
416
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
417
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
418
  msgid "Payment Gateways"
419
  msgstr "Passerelle de paiement"
@@ -428,7 +89,7 @@ msgstr ""
428
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
429
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
430
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
431
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
432
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
433
  msgid "Notifications"
434
  msgstr "Notifications"
@@ -489,234 +150,102 @@ msgid ""
489
  "\"0\" allowfullscreen></iframe>"
490
  msgstr ""
491
 
492
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
493
- #: app/features/mec/settings.php:247
494
  msgid "General Options"
495
  msgstr "Options générales"
496
 
497
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
498
- #: app/features/mec/settings.php:399
499
  msgid "Slugs/Permalinks"
500
  msgstr "Permaliens/Ancres"
501
 
502
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
503
- #: app/features/mec/settings.php:419
504
  msgid "Event Details/Single Event Page"
505
  msgstr "Détail de l'événement/Page de l'événement"
506
 
507
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
508
- #: app/features/mec/settings.php:451
509
  msgid "Currency Options"
510
  msgstr "Options de devise"
511
 
512
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
513
- #: app/features/mec/settings.php:503
514
  msgid "Google Maps Options"
515
  msgstr "Option du plugin Google Maps"
516
 
517
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
518
- #: app/features/mec/settings.php:577
519
  msgid "Google Recaptcha Options"
520
  msgstr "Options de Google reCAPTCHA"
521
 
522
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
523
- #: app/features/mec/settings.php:695
524
  msgid "Countdown Options"
525
  msgstr "Options du Compte à Rebours"
526
 
527
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
528
- #: app/features/mec/settings.php:716
529
  msgid "Social Networks"
530
  msgstr "Réseaux Sociaux"
531
 
532
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
533
- #: app/features/mec/settings.php:741
534
  msgid "Next Event Module"
535
  msgstr "Module événement suivant"
536
 
537
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
538
- #: app/features/mec/settings.php:769
539
  msgid "Frontend Event Submission"
540
  msgstr "Réglages du formulaire de création d’événements"
541
 
542
  #: app/features/contextual.php:298 app/features/events.php:570
543
- #: app/features/mec/settings.php:126
544
  msgid "Exceptional Days"
545
  msgstr "Journées Exceptionnelles"
546
 
547
- #: app/features/contextual.php:318 app/features/coupons.php:76
548
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
549
- #: app/features/mec/settings.php:1014
 
 
 
 
550
  msgid "Coupons"
551
  msgstr "Bons de réduction"
552
 
553
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
554
- #: app/features/mec/settings.php:1096
555
  msgid "BuddyPress Integration"
556
  msgstr "Intégration BuddyPress"
557
 
558
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
559
- #: app/features/mec/settings.php:1126
560
  msgid "Mailchimp Integration"
561
  msgstr "Intégration de Mailchimp"
562
 
563
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
564
- #: app/features/mec/settings.php:1162
565
  msgid "MEC Activation"
566
  msgstr "Activation de l'extension"
567
 
568
- #: app/features/coupons.php:79
569
- msgid "Coupon"
570
- msgstr "Coupon"
571
-
572
- #: app/features/coupons.php:80
573
- msgid "All Coupons"
574
- msgstr "Tous les coupons"
575
-
576
- #: app/features/coupons.php:81
577
- msgid "Edit Coupon"
578
- msgstr "Modifier le coupon"
579
-
580
- #: app/features/coupons.php:82
581
- msgid "View Coupon"
582
- msgstr "Voir le coupon"
583
-
584
- #: app/features/coupons.php:83
585
- msgid "Update Coupon"
586
- msgstr "Mettre le coupon à jour"
587
-
588
- #: app/features/coupons.php:84
589
- msgid "Add New Coupon"
590
- msgstr "Ajouter un nouveau coupon"
591
-
592
- #: app/features/coupons.php:85
593
- msgid "New Coupon Name"
594
- msgstr "Nouveau nom de coupon"
595
-
596
- #: app/features/coupons.php:86
597
- msgid "Popular Coupons"
598
- msgstr "Coupons populaires"
599
-
600
- #: app/features/coupons.php:87
601
- msgid "Search Coupons"
602
- msgstr "Rechercher des coupons"
603
-
604
- #: app/features/coupons.php:116 app/features/coupons.php:177
605
- msgid "Discount Type"
606
- msgstr "Type de réduction"
607
-
608
- #: app/features/coupons.php:120 app/features/coupons.php:179
609
- #: app/features/events.php:854 app/features/events.php:879
610
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
611
- msgid "Percent"
612
- msgstr "Pourcentage"
613
-
614
- #: app/features/coupons.php:121 app/features/coupons.php:180
615
- #: app/features/events.php:849 app/features/events.php:874
616
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
617
- msgid "Amount"
618
- msgstr "Montant"
619
-
620
- #: app/features/coupons.php:127 app/features/coupons.php:184
621
- #: app/features/coupons.php:248 app/features/coupons.php:322
622
- #: app/libraries/book.php:505
623
- msgid "Discount"
624
- msgstr "Réduction"
625
-
626
- #: app/features/coupons.php:131 app/features/coupons.php:186
627
- msgid ""
628
- "Discount percent, considered as amount if you set the discount type to amount"
629
- msgstr ""
630
- "Pourcentage de remise, considéré ce montant si vous définissez le type de "
631
- "remise"
632
-
633
- #: app/features/coupons.php:136 app/features/coupons.php:189
634
- msgid "Usage Limit"
635
- msgstr "Date limite d'utilisation"
636
-
637
- #: app/features/coupons.php:140 app/features/coupons.php:191
638
- msgid "Insert -1 for unlimited usage"
639
- msgstr "Entrez -1 pour un nombre illimité de participant"
640
-
641
- #: app/features/coupons.php:145 app/features/coupons.php:194
642
- #: app/features/gateways.php:1202
643
- msgid "Expiration Date"
644
- msgstr "Date d’expiration"
645
-
646
- #: app/features/coupons.php:149 app/features/coupons.php:196
647
- msgid "Leave it empty for no expiration!"
648
- msgstr ""
649
-
650
- #: app/features/coupons.php:154 app/features/coupons.php:199
651
- msgid "Target Event"
652
- msgstr ""
653
-
654
- #: app/features/coupons.php:158 app/features/coupons.php:201
655
- #: app/features/events.php:127
656
- msgid "All Events"
657
- msgstr "Tous les évènements"
658
-
659
- #: app/features/coupons.php:246
660
- msgid "Name/Code"
661
- msgstr "Nom / Code"
662
-
663
- #: app/features/coupons.php:247 app/features/events.php:632
664
- #: app/features/events.php:644 app/features/events.php:752
665
- #: app/features/events.php:784
666
- msgid "Description"
667
- msgstr "Description"
668
-
669
- #: app/features/coupons.php:249
670
- #: app/features/mec/meta_boxes/display_options.php:85
671
- #: app/features/mec/meta_boxes/display_options.php:194
672
- #: app/features/mec/meta_boxes/display_options.php:244
673
- #: app/features/mec/meta_boxes/display_options.php:632
674
- #: app/features/mec/meta_boxes/display_options.php:806
675
- #: app/features/mec/meta_boxes/display_options.php:877
676
- msgid "Limit"
677
- msgstr "Nombre maximum"
678
-
679
- #: app/features/coupons.php:250 app/features/labels.php:153
680
- #: app/features/locations.php:231 app/features/organizers.php:201
681
- #: app/modules/booking/steps/tickets.php:36
682
- msgid "Count"
683
- msgstr "Apparition"
684
-
685
- #: app/features/coupons.php:280 app/features/events.php:715
686
- #: app/features/events.php:769 app/features/events.php:801
687
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
688
- #: app/skins/available_spot/tpl.php:84
689
- msgid "Unlimited"
690
- msgstr "Illimité"
691
-
692
- #: app/features/coupons.php:309
693
- msgid "Discount coupon is invalid!"
694
- msgstr "Coupon de réduction non valide !"
695
-
696
- #: app/features/coupons.php:311
697
- msgid "Discount coupon usage limit reached!"
698
- msgstr "Le coupon de réduction a expiré !"
699
-
700
- #: app/features/coupons.php:313
701
- msgid "Discount coupon is expired!"
702
- msgstr ""
703
-
704
- #: app/features/coupons.php:315
705
- msgid "Discount is not valid for this event!"
706
- msgstr ""
707
-
708
- #: app/features/coupons.php:326
709
- #, php-format
710
- msgid "Coupon is valid and you get %s discount."
711
- msgstr "Code promotion validé, vous obtenez %s de réduction."
712
-
713
  #: app/features/events.php:122 app/features/ix/export.php:33
714
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
715
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
716
  msgid "Events"
717
  msgstr "Évenements"
718
 
719
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
720
  msgid "Add Event"
721
  msgstr "Ajouter un événement"
722
 
@@ -729,6 +258,10 @@ msgstr "Ajouter un nouvel événement"
729
  msgid "No events found!"
730
  msgstr "Aucun événement trouvé !"
731
 
 
 
 
 
732
  #: app/features/events.php:128
733
  msgid "Edit Event"
734
  msgstr ""
@@ -751,7 +284,7 @@ msgstr "Aucun événement trouvé dans la corbeille !"
751
  #: app/features/mec/meta_boxes/search_form.php:285
752
  #: app/features/mec/meta_boxes/search_form.php:325
753
  #: app/features/mec/meta_boxes/search_form.php:372
754
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
755
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
756
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
757
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -759,8 +292,8 @@ msgid "Category"
759
  msgstr "Catégorie"
760
 
761
  #: app/features/events.php:143 app/features/fes/form.php:518
762
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
763
- #: app/libraries/main.php:3952
764
  msgid "Categories"
765
  msgstr "Catégories"
766
 
@@ -827,12 +360,12 @@ msgstr "Détails"
827
  #: app/features/events.php:286 app/features/events.php:1631
828
  #: app/features/events.php:1675 app/features/fes/form.php:479
829
  #: app/features/ix.php:2328 app/features/ix.php:2369
830
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
831
  msgid "Event Cost"
832
  msgstr "Tarif de l'événement"
833
 
834
  #: app/features/events.php:289 app/features/fes/form.php:482
835
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
836
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
837
  #: app/skins/single/modern.php:179
838
  msgid "Cost"
@@ -846,6 +379,26 @@ msgstr "Note pour l'administrateur"
846
  msgid "Guest Data"
847
  msgstr "Coordonnées de l'Invité"
848
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  #: app/features/events.php:375 app/features/fes/form.php:221
850
  msgid "Date and Time"
851
  msgstr "Date et heure"
@@ -855,7 +408,7 @@ msgstr "Date et heure"
855
  #: app/features/events.php:1675 app/features/fes/form.php:225
856
  #: app/features/fes/form.php:229 app/features/ix.php:2328
857
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
858
- #: app/features/mec/dashboard.php:262
859
  #: app/features/mec/meta_boxes/display_options.php:42
860
  #: app/features/mec/meta_boxes/display_options.php:129
861
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -887,7 +440,7 @@ msgstr "de l'après midi"
887
  #: app/features/events.php:1675 app/features/fes/form.php:265
888
  #: app/features/fes/form.php:269 app/features/ix.php:2328
889
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
890
- #: app/features/mec/dashboard.php:263
891
  msgid "End Date"
892
  msgstr "Date de fin"
893
 
@@ -924,7 +477,7 @@ msgid "Repeats"
924
  msgstr "Récurrence"
925
 
926
  #: app/features/events.php:481 app/features/fes/form.php:327
927
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
928
  msgid "Daily"
929
  msgstr "Quotidienne"
930
 
@@ -946,12 +499,12 @@ msgid "Weekly"
946
  msgstr "Hebdomadaire"
947
 
948
  #: app/features/events.php:486 app/features/fes/form.php:332
949
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
950
  msgid "Monthly"
951
  msgstr "Mensuelle"
952
 
953
  #: app/features/events.php:487 app/features/fes/form.php:333
954
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
955
  msgid "Yearly"
956
  msgstr "Annuelle"
957
 
@@ -1006,6 +559,15 @@ msgstr "Samedi"
1006
  msgid "Sunday"
1007
  msgstr "Dimanche"
1008
 
 
 
 
 
 
 
 
 
 
1009
  #: app/features/events.php:509 app/features/events.php:581
1010
  #: app/features/events.php:623 app/features/events.php:743
1011
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1053,7 +615,7 @@ msgstr "Exclure certains jours"
1053
  msgid "Exclude certain days from event occurrence dates."
1054
  msgstr "Exclure certains jours des dates de l'événement ."
1055
 
1056
- #: app/features/events.php:620 app/features/mec/settings.php:866
1057
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1058
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1059
  msgid "Hourly Schedule"
@@ -1074,33 +636,35 @@ msgstr "Ex : 8:45"
1074
  #: app/features/events.php:631 app/features/events.php:643
1075
  #: app/features/events.php:1449 app/features/events.php:1631
1076
  #: app/features/events.php:1675 app/features/fes/form.php:214
1077
- #: app/features/gateways.php:550 app/features/gateways.php:617
1078
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1079
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1080
- #: app/features/ix.php:2369
1081
  msgid "Title"
1082
  msgstr "Titre"
1083
 
 
 
 
 
 
1084
  #: app/features/events.php:633 app/features/events.php:645
1085
  #: app/features/events.php:771 app/features/events.php:803
1086
  #: app/features/events.php:859 app/features/events.php:884
1087
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1088
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1089
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1090
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1091
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1092
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1093
- #: app/libraries/main.php:2162
1094
  msgid "Remove"
1095
  msgstr "Supprimer"
1096
 
1097
  #: app/features/events.php:665 app/features/fes/form.php:456
1098
- #: app/features/mec/settings.php:812
1099
  msgid "Event Links"
1100
  msgstr "Liens de l'évenements"
1101
 
1102
  #: app/features/events.php:667 app/features/fes/form.php:458
1103
- #: app/libraries/main.php:3981
1104
  msgid "Event Link"
1105
  msgstr "Lien de l'événement"
1106
 
@@ -1116,7 +680,7 @@ msgid ""
1116
  msgstr "Lien principal. Affiché sur la page de l'événement"
1117
 
1118
  #: app/features/events.php:672 app/features/fes/form.php:463
1119
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1120
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1121
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1122
  msgid "More Info"
@@ -1144,12 +708,18 @@ msgstr "Lien Optionnel. Affiché sur la page de Détails"
1144
  msgid "Total booking limits"
1145
  msgstr "Nombre limite de réservation"
1146
 
 
 
 
 
 
 
1147
  #: app/features/events.php:717
1148
  msgid "100"
1149
  msgstr "100"
1150
 
1151
  #: app/features/events.php:735 app/libraries/book.php:59
1152
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1153
  msgid "Tickets"
1154
  msgstr "Billets"
1155
 
@@ -1164,6 +734,10 @@ msgstr ""
1164
  msgid "Ticket Name"
1165
  msgstr "Nom du billet"
1166
 
 
 
 
 
1167
  #: app/features/events.php:757 app/features/events.php:789
1168
  msgid "Insert 0 for free ticket. Only numbers please."
1169
  msgstr "0 = Participation Gratuite. Seulement un numéro SVP."
@@ -1189,12 +763,17 @@ msgid "Inherit from global options"
1189
  msgstr "Hériter des options globales"
1190
 
1191
  #: app/features/events.php:845 app/features/events.php:870
1192
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1193
  msgid "Fee Title"
1194
  msgstr "Titre"
1195
 
 
 
 
 
 
1196
  #: app/features/events.php:850 app/features/events.php:875
1197
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1198
  msgid ""
1199
  "Fee amount, considered as fixed amount if you set the type to amount "
1200
  "otherwise considered as percentage"
@@ -1202,39 +781,44 @@ msgstr ""
1202
  "Considéré comme montant fixe si vous définissez le type de montant. Sinon "
1203
  "considéré comme pourcentage à ajouter au prix"
1204
 
 
 
 
 
 
1205
  #: app/features/events.php:855 app/features/events.php:880
1206
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1207
  msgid "Amount (Per Ticket)"
1208
  msgstr "Montant (par Billet)"
1209
 
1210
  #: app/features/events.php:856 app/features/events.php:881
1211
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1212
  msgid "Amount (Per Booking)"
1213
  msgstr "Montant (par réservation)"
1214
 
1215
  #: app/features/events.php:944 app/features/mec/regform.php:117
1216
- #: app/libraries/main.php:1841
1217
  msgid "Text"
1218
  msgstr "Texte"
1219
 
1220
  #: app/features/events.php:946 app/features/mec/regform.php:119
1221
  #: app/features/organizers.php:102 app/features/organizers.php:146
1222
- #: app/libraries/main.php:1899
1223
  msgid "Tel"
1224
  msgstr "Téléphone"
1225
 
1226
  #: app/features/events.php:947 app/features/mec/regform.php:120
1227
- #: app/libraries/main.php:1928
1228
  msgid "Textarea"
1229
  msgstr "Zone de texte"
1230
 
1231
  #: app/features/events.php:948 app/features/mec/regform.php:121
1232
- #: app/libraries/main.php:1981
1233
  msgid "Checkboxes"
1234
  msgstr "Boîtes à cocher"
1235
 
1236
  #: app/features/events.php:949 app/features/mec/regform.php:122
1237
- #: app/libraries/main.php:2025
1238
  msgid "Radio Buttons"
1239
  msgstr "Boutons Radio"
1240
 
@@ -1283,17 +867,17 @@ msgstr "Boutons Radio"
1283
  #: app/features/mec/meta_boxes/search_form.php:436
1284
  #: app/features/mec/meta_boxes/search_form.php:443
1285
  #: app/features/mec/meta_boxes/search_form.php:450
1286
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1287
  msgid "Dropdown"
1288
  msgstr "Menu déroulant"
1289
 
1290
  #: app/features/events.php:951 app/features/mec/regform.php:124
1291
- #: app/libraries/main.php:2116
1292
  msgid "Agreement"
1293
  msgstr ""
1294
 
1295
  #: app/features/events.php:952 app/features/mec/regform.php:125
1296
- #: app/libraries/main.php:1957
1297
  msgid "Paragraph"
1298
  msgstr "Paragraphe"
1299
 
@@ -1319,7 +903,7 @@ msgstr "organisateurs"
1319
  #: app/features/events.php:1675 app/features/ix.php:2328
1320
  #: app/features/ix.php:2369 app/features/locations.php:58
1321
  #: app/features/locations.php:229 app/features/locations.php:281
1322
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1323
  #: app/features/mec/meta_boxes/display_options.php:641
1324
  #: app/features/mec/meta_boxes/search_form.php:38
1325
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1329,8 +913,8 @@ msgstr "organisateurs"
1329
  #: app/features/mec/meta_boxes/search_form.php:292
1330
  #: app/features/mec/meta_boxes/search_form.php:332
1331
  #: app/features/mec/meta_boxes/search_form.php:379
1332
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1333
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1334
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1335
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1336
  #: app/skins/single/modern.php:77
@@ -1339,7 +923,7 @@ msgstr "Lieu"
1339
 
1340
  #: app/features/events.php:1451 app/features/events.php:1631
1341
  #: app/features/events.php:1675 app/features/ix.php:2328
1342
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1343
  #: app/features/mec/meta_boxes/display_options.php:642
1344
  #: app/features/mec/meta_boxes/search_form.php:45
1345
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1352,7 +936,7 @@ msgstr "Lieu"
1352
  #: app/features/mec/meta_boxes/search_form.php:433
1353
  #: app/features/organizers.php:58 app/features/organizers.php:199
1354
  #: app/features/organizers.php:255 app/features/organizers.php:257
1355
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1356
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1357
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1358
  #: app/skins/single/modern.php:21
@@ -1371,6 +955,14 @@ msgstr "Auteur"
1371
  msgid "iCal Export"
1372
  msgstr "Exporter vers iCal"
1373
 
 
 
 
 
 
 
 
 
1374
  #: app/features/events.php:1575 app/features/events.php:1576
1375
  msgid "XML Export"
1376
  msgstr "Exporter en XML"
@@ -1383,6 +975,13 @@ msgstr "Exporter en JSON"
1383
  msgid "Duplicate"
1384
  msgstr "Dupliquer"
1385
 
 
 
 
 
 
 
 
1386
  #: app/features/events.php:1631 app/features/events.php:1675
1387
  #: app/features/ix.php:2328 app/features/ix.php:2369
1388
  msgid "Start Time"
@@ -1467,7 +1066,6 @@ msgid "Note to reviewer"
1467
  msgstr "Note à l'Administrateur"
1468
 
1469
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1470
- #: app/features/gateways.php:695
1471
  msgid "Submit"
1472
  msgstr "Envoyer"
1473
 
@@ -1483,7 +1081,7 @@ msgstr "votre@email.fr"
1483
  msgid "eg. John Smith"
1484
  msgstr "ex : Surnom"
1485
 
1486
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1487
  msgid "Featured Image"
1488
  msgstr "Image Principale"
1489
 
@@ -1492,14 +1090,14 @@ msgid "Remove Image"
1492
  msgstr "Supprimer l'image"
1493
 
1494
  #: app/features/fes/form.php:543 app/features/labels.php:61
1495
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1496
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1497
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1498
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1499
  msgid "Labels"
1500
  msgstr "Labels"
1501
 
1502
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1503
  #: app/features/mec/meta_boxes/filter.php:138
1504
  msgid "Tags"
1505
  msgstr "Étiquettes"
@@ -1525,293 +1123,6 @@ msgstr "Voir"
1525
  msgid "No events found! %s"
1526
  msgstr "Aucun événement trouvé ! %s"
1527
 
1528
- #: app/features/gateways.php:70 app/features/gateways.php:327
1529
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1530
- #: app/features/gateways.php:1396
1531
- msgid "Request is invalid!"
1532
- msgstr "Requête invalide !"
1533
-
1534
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1535
- msgid "Thanks for your booking."
1536
- msgstr "Merci pour votre réservation."
1537
-
1538
- #: app/features/gateways.php:307 app/features/gateways.php:545
1539
- #, fuzzy
1540
- msgid "Stripe"
1541
- msgstr "Stripe"
1542
-
1543
- #: app/features/gateways.php:342 app/features/gateways.php:716
1544
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1545
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1546
- msgid "There is no attendee for booking!"
1547
- msgstr "Il n'y a pas encore de participants inscrits depuis le site !"
1548
-
1549
- #: app/features/gateways.php:373 app/features/gateways.php:743
1550
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1551
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1552
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1553
- msgid ""
1554
- "Thanks for your booking. Your tickets booked, booking verification might be "
1555
- "needed, please check your email."
1556
- msgstr ""
1557
- "Merci pour votre réservation. Vos billets sont réservés, cependant une "
1558
- "vérification peut être nécessaires, contrôlez votre boite mail."
1559
-
1560
- #: app/features/gateways.php:390
1561
- #, php-format
1562
- msgid "MEC Transaction ID: %s"
1563
- msgstr "Numéro de transaction%s"
1564
-
1565
- #: app/features/gateways.php:473 app/features/gateways.php:668
1566
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1567
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1568
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1569
- msgid "Download Invoice"
1570
- msgstr ""
1571
-
1572
- #: app/features/gateways.php:509
1573
- msgid "Card Number"
1574
- msgstr "Numéro de Carte Bancaire"
1575
-
1576
- #: app/features/gateways.php:515
1577
- msgid "CVC"
1578
- msgstr "Cryptogramme Visuel"
1579
-
1580
- #: app/features/gateways.php:521
1581
- msgid "Expiration (MM/YYYY)"
1582
- msgstr "Date d'Expiration (MM/AAAA)"
1583
-
1584
- #: app/features/gateways.php:522
1585
- msgid "Month"
1586
- msgstr "Mois"
1587
-
1588
- #: app/features/gateways.php:524
1589
- msgid "Year"
1590
- msgstr "Année"
1591
-
1592
- #: app/features/gateways.php:532 app/features/gateways.php:919
1593
- #: app/features/gateways.php:1223
1594
- msgid "Pay"
1595
- msgstr "Paiement en ligne (sécurisé)"
1596
-
1597
- #: app/features/gateways.php:556 app/features/gateways.php:623
1598
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1599
- #: app/features/gateways.php:1621
1600
- msgid "Comment"
1601
- msgstr "Commentaires"
1602
-
1603
- #: app/features/gateways.php:559 app/features/gateways.php:626
1604
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1605
- #: app/features/gateways.php:1624
1606
- msgid "HTML allowed."
1607
- msgstr "HTML autorisé."
1608
-
1609
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1610
- msgid "Secret Key"
1611
- msgstr "Clef secrète"
1612
-
1613
- #: app/features/gateways.php:569
1614
- msgid "Publishable Key"
1615
- msgstr "Clé Publiable"
1616
-
1617
- #: app/features/gateways.php:598 app/features/gateways.php:612
1618
- msgid "Pay Locally"
1619
- msgstr "Régler sur place"
1620
-
1621
- #: app/features/gateways.php:766 app/features/gateways.php:780
1622
- msgid "PayPal Express"
1623
- msgstr "PayPal express"
1624
-
1625
- #: app/features/gateways.php:798
1626
- msgid "Business Account"
1627
- msgstr "Compte professionnel"
1628
-
1629
- #: app/features/gateways.php:801
1630
- msgid "Normally PayPal Email."
1631
- msgstr "Courriel PayPal."
1632
-
1633
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1634
- msgid "Mode"
1635
- msgstr "Mode"
1636
-
1637
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1638
- msgid "Live"
1639
- msgstr "En ligne"
1640
-
1641
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1642
- msgid "Sandbox"
1643
- msgstr "Sandbox"
1644
-
1645
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1646
- msgid "Waiting for getting response from gateway."
1647
- msgstr "En attente d'une réponse de la passerelle."
1648
-
1649
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1650
- msgid "Payment was invalid! Booking failed."
1651
- msgstr "Le paiement est non valide! La réservation a échoué."
1652
-
1653
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1654
- msgid "PayPal Credit Card"
1655
- msgstr "Carte de crédit via PayPal"
1656
-
1657
- #: app/features/gateways.php:1089
1658
- msgid "API Username"
1659
- msgstr "Identifiant API"
1660
-
1661
- #: app/features/gateways.php:1095
1662
- msgid "API Password"
1663
- msgstr "Mot de passe API"
1664
-
1665
- #: app/features/gateways.php:1101
1666
- msgid "API Signature"
1667
- msgstr "Signature API"
1668
-
1669
- #: app/features/gateways.php:1181
1670
- msgid "First name"
1671
- msgstr "Prénom"
1672
-
1673
- #: app/features/gateways.php:1185
1674
- msgid "Last name"
1675
- msgstr "Nom"
1676
-
1677
- #: app/features/gateways.php:1189
1678
- msgid "Card Type"
1679
- msgstr "Type de carte"
1680
-
1681
- #: app/features/gateways.php:1191
1682
- msgid "Visa"
1683
- msgstr "Visa"
1684
-
1685
- #: app/features/gateways.php:1192
1686
- msgid "MasterCard"
1687
- msgstr "Mastercard"
1688
-
1689
- #: app/features/gateways.php:1193
1690
- msgid "Discover"
1691
- msgstr "Discover"
1692
-
1693
- #: app/features/gateways.php:1194
1694
- msgid "American Express"
1695
- msgstr "American Express"
1696
-
1697
- #: app/features/gateways.php:1198
1698
- msgid "CC Number"
1699
- msgstr "Numéro de votre Carte Bancaire"
1700
-
1701
- #: app/features/gateways.php:1215
1702
- msgid "CVV2"
1703
- msgstr "Cryptogramme visuel 2"
1704
-
1705
- #: app/features/gateways.php:1248
1706
- msgid "Payment is invalid."
1707
- msgstr "Paiement refusé."
1708
-
1709
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1710
- msgid "Pay by WooCommerce"
1711
- msgstr "Payer via WooCommerce"
1712
-
1713
- #: app/features/gateways.php:1418
1714
- #, php-format
1715
- msgid "Booking fee for %s"
1716
- msgstr "Frais de réservation de %s"
1717
-
1718
- #: app/features/gateways.php:1429
1719
- msgid "Your order is created. Please proceed with checkout."
1720
- msgstr "Votre commande a été créée. Merci de procéder au paiement."
1721
-
1722
- #: app/features/gateways.php:1591
1723
- msgid "Add to Cart"
1724
- msgstr ""
1725
-
1726
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1727
- msgid "Checkout"
1728
- msgstr "Commander"
1729
-
1730
- #: app/features/gateways.php:1612
1731
- msgid "WooCommerce must be installed and activated first."
1732
- msgstr "WooCommerce doit être installé et activé."
1733
-
1734
- #: app/features/gateways.php:1628
1735
- msgid "Automatically complete WC orders"
1736
- msgstr "Compléter automatiquement les commandes WooCommerce"
1737
-
1738
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1739
- msgid "Enabled"
1740
- msgstr "Activé"
1741
-
1742
- #: app/features/gateways.php:1632
1743
- #: app/features/mec/meta_boxes/search_form.php:33
1744
- #: app/features/mec/meta_boxes/search_form.php:40
1745
- #: app/features/mec/meta_boxes/search_form.php:47
1746
- #: app/features/mec/meta_boxes/search_form.php:54
1747
- #: app/features/mec/meta_boxes/search_form.php:61
1748
- #: app/features/mec/meta_boxes/search_form.php:68
1749
- #: app/features/mec/meta_boxes/search_form.php:80
1750
- #: app/features/mec/meta_boxes/search_form.php:87
1751
- #: app/features/mec/meta_boxes/search_form.php:94
1752
- #: app/features/mec/meta_boxes/search_form.php:101
1753
- #: app/features/mec/meta_boxes/search_form.php:108
1754
- #: app/features/mec/meta_boxes/search_form.php:115
1755
- #: app/features/mec/meta_boxes/search_form.php:127
1756
- #: app/features/mec/meta_boxes/search_form.php:134
1757
- #: app/features/mec/meta_boxes/search_form.php:141
1758
- #: app/features/mec/meta_boxes/search_form.php:148
1759
- #: app/features/mec/meta_boxes/search_form.php:155
1760
- #: app/features/mec/meta_boxes/search_form.php:162
1761
- #: app/features/mec/meta_boxes/search_form.php:174
1762
- #: app/features/mec/meta_boxes/search_form.php:181
1763
- #: app/features/mec/meta_boxes/search_form.php:193
1764
- #: app/features/mec/meta_boxes/search_form.php:200
1765
- #: app/features/mec/meta_boxes/search_form.php:207
1766
- #: app/features/mec/meta_boxes/search_form.php:214
1767
- #: app/features/mec/meta_boxes/search_form.php:221
1768
- #: app/features/mec/meta_boxes/search_form.php:228
1769
- #: app/features/mec/meta_boxes/search_form.php:240
1770
- #: app/features/mec/meta_boxes/search_form.php:247
1771
- #: app/features/mec/meta_boxes/search_form.php:254
1772
- #: app/features/mec/meta_boxes/search_form.php:261
1773
- #: app/features/mec/meta_boxes/search_form.php:268
1774
- #: app/features/mec/meta_boxes/search_form.php:275
1775
- #: app/features/mec/meta_boxes/search_form.php:287
1776
- #: app/features/mec/meta_boxes/search_form.php:294
1777
- #: app/features/mec/meta_boxes/search_form.php:301
1778
- #: app/features/mec/meta_boxes/search_form.php:308
1779
- #: app/features/mec/meta_boxes/search_form.php:315
1780
- #: app/features/mec/meta_boxes/search_form.php:327
1781
- #: app/features/mec/meta_boxes/search_form.php:334
1782
- #: app/features/mec/meta_boxes/search_form.php:341
1783
- #: app/features/mec/meta_boxes/search_form.php:348
1784
- #: app/features/mec/meta_boxes/search_form.php:355
1785
- #: app/features/mec/meta_boxes/search_form.php:362
1786
- #: app/features/mec/meta_boxes/search_form.php:374
1787
- #: app/features/mec/meta_boxes/search_form.php:381
1788
- #: app/features/mec/meta_boxes/search_form.php:388
1789
- #: app/features/mec/meta_boxes/search_form.php:395
1790
- #: app/features/mec/meta_boxes/search_form.php:402
1791
- #: app/features/mec/meta_boxes/search_form.php:409
1792
- #: app/features/mec/meta_boxes/search_form.php:421
1793
- #: app/features/mec/meta_boxes/search_form.php:428
1794
- #: app/features/mec/meta_boxes/search_form.php:435
1795
- #: app/features/mec/meta_boxes/search_form.php:442
1796
- #: app/features/mec/meta_boxes/search_form.php:449
1797
- #: app/features/mec/meta_boxes/search_form.php:456
1798
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1799
- #: app/features/mec/settings.php:549
1800
- msgid "Disabled"
1801
- msgstr "Désactivé"
1802
-
1803
- #: app/features/gateways.php:1634
1804
- msgid "It applies only to the orders that are related to MEC."
1805
- msgstr "Cela s'applique uniquement aux commandes liées a l'extension M.E.C."
1806
-
1807
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1808
- msgid "Free"
1809
- msgstr "Gratuite"
1810
-
1811
- #: app/features/gateways.php:1744
1812
- msgid "This booking is not free!"
1813
- msgstr ""
1814
-
1815
  #: app/features/ix.php:95
1816
  msgid "MEC - Import / Export"
1817
  msgstr "M.E.C. - Importer / Exporter"
@@ -1844,6 +1155,10 @@ msgstr ""
1844
  msgid "Third Party plugin is invalid!"
1845
  msgstr ""
1846
 
 
 
 
 
1847
  #: app/features/ix.php:1961 app/features/ix.php:2791
1848
  msgid "Please select some events to import!"
1849
  msgstr "Merci de sélectionner les évènements à Importer !"
@@ -1865,6 +1180,37 @@ msgstr "Les Clients ID, Client Secret et Calendar ID sont requis !"
1865
  msgid "All seems good! Please click %s for authenticating your app."
1866
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
1867
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1868
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1869
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1870
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1910,7 +1256,7 @@ msgid ""
1910
  "This will export all of your website events' data into your desired format."
1911
  msgstr "Ceci va exporter toutes les données d'évènements au format choisi."
1912
 
1913
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1914
  msgid "iCal"
1915
  msgstr "iCal"
1916
 
@@ -1952,6 +1298,10 @@ msgstr ""
1952
  "Pour exporter des réservations d'évènements, vous pouvez utiliser les "
1953
  "actions sur la page %s ."
1954
 
 
 
 
 
1955
  #: app/features/ix/export_g_calendar.php:25
1956
  msgid "Add events to Google Calendar"
1957
  msgstr "Ajouter des évènements à Google Agenda"
@@ -2010,7 +1360,7 @@ msgstr "Basculer"
2010
  msgid "Add to Google Calendar"
2011
  msgstr "Ajouter à Google Agenda"
2012
 
2013
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
2014
  msgid "Checking ..."
2015
  msgstr "Vérification..."
2016
 
@@ -2052,10 +1402,10 @@ msgstr ""
2052
  msgid "ICS Feed"
2053
  msgstr ""
2054
 
2055
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2056
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2057
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2058
- #: app/features/mec/settings.php:1034
2059
  #, php-format
2060
  msgid "%s is required to use this feature."
2061
  msgstr ""
@@ -2067,10 +1417,10 @@ msgstr ""
2067
  #: app/features/mec/meta_boxes/display_options.php:558
2068
  #: app/features/mec/meta_boxes/display_options.php:608
2069
  #: app/features/mec/meta_boxes/display_options.php:734
2070
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2071
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2072
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2073
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2074
  msgid "Pro version of Modern Events Calendar"
2075
  msgstr ""
2076
 
@@ -2301,6 +1651,11 @@ msgstr "Couleur"
2301
  msgid "Select label color"
2302
  msgstr "Sélectionner la couleur du label"
2303
 
 
 
 
 
 
2304
  #: app/features/labels.php:154 app/features/locations.php:232
2305
  #: app/features/organizers.php:202
2306
  msgid "Slug"
@@ -2311,8 +1666,8 @@ msgstr "Identifiant de la catégorie."
2311
  msgid "Event %s"
2312
  msgstr "%s événement"
2313
 
2314
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2315
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2316
  msgid "Locations"
2317
  msgstr "Lieux"
2318
 
@@ -2380,7 +1735,7 @@ msgstr "Nom du Lieu"
2380
  msgid "eg. City Hall"
2381
  msgstr "Ex : La Source"
2382
 
2383
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2384
  msgid "Event Location"
2385
  msgstr "Lieu de l'événement"
2386
 
@@ -2404,91 +1759,91 @@ msgstr "Choisir une image"
2404
  msgid "Don't show map in single event page"
2405
  msgstr "Ne pas afficher de carte pour cet événement"
2406
 
2407
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2408
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2409
  msgid "Organizers"
2410
  msgstr "Organisateurs"
2411
 
2412
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2413
- #: app/features/mec/dashboard.php:92
2414
  msgid "Shortcodes"
2415
  msgstr "Shortcodes"
2416
 
2417
- #: app/features/modern-events-calendar-lite.php:195
2418
  msgid "MEC - Settings"
2419
  msgstr "Agenda - Paramètres"
2420
 
2421
- #: app/features/modern-events-calendar-lite.php:210
2422
  msgid "Add Shortcode"
2423
  msgstr "Ajouter un Shortcode"
2424
 
2425
- #: app/features/modern-events-calendar-lite.php:211
2426
  msgid "Add New Shortcode"
2427
  msgstr "Ajouter un nouveau Shortcode"
2428
 
2429
- #: app/features/modern-events-calendar-lite.php:212
2430
  msgid "No shortcodes found!"
2431
  msgstr "Aucun shortcode trouvé !"
2432
 
2433
- #: app/features/modern-events-calendar-lite.php:213
2434
  msgid "All Shortcodes"
2435
  msgstr "Tous les Shortcode"
2436
 
2437
- #: app/features/modern-events-calendar-lite.php:214
2438
  msgid "Edit shortcodes"
2439
  msgstr "Modifier les shortcodes"
2440
 
2441
- #: app/features/modern-events-calendar-lite.php:215
2442
  msgid "No shortcodes found in Trash!"
2443
  msgstr "Pas de shortcode dans la corbeille"
2444
 
2445
- #: app/features/modern-events-calendar-lite.php:262
2446
  msgid "Display Options"
2447
  msgstr "Options d'affichage"
2448
 
2449
- #: app/features/modern-events-calendar-lite.php:263
2450
  msgid "Filter Options"
2451
  msgstr "Options des filtres"
2452
 
2453
- #: app/features/modern-events-calendar-lite.php:265
2454
  msgid "Search Form"
2455
  msgstr "Formulaire de Recherche"
2456
 
2457
- #: app/features/modern-events-calendar-lite.php:556
2458
  msgid "Single Event Display Method"
2459
  msgstr "Méthode d'affichage"
2460
 
2461
- #: app/features/modern-events-calendar-lite.php:561
2462
  msgid "Separate Window"
2463
  msgstr "Page séparé"
2464
 
2465
- #: app/features/modern-events-calendar-lite.php:562
2466
  msgid "Modal 1"
2467
  msgstr "Pop-up"
2468
 
2469
- #: app/features/mec/dashboard.php:54
2470
  #, php-format
2471
  msgid "Welcome %s"
2472
  msgstr "Bienvenue %s"
2473
 
2474
- #: app/features/mec/dashboard.php:57
2475
  #, php-format
2476
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2477
  msgstr ""
2478
 
2479
- #: app/features/mec/dashboard.php:57
2480
  msgid "Modern Event Calendar"
2481
  msgstr ""
2482
 
2483
- #: app/features/mec/dashboard.php:57
2484
  msgid "Modern Event Calendar (Lite)"
2485
  msgstr ""
2486
 
2487
- #: app/features/mec/dashboard.php:66
2488
  msgid "Version"
2489
  msgstr "Version"
2490
 
2491
- #: app/features/mec/dashboard.php:75
2492
  #, php-format
2493
  msgid ""
2494
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2496,19 +1851,19 @@ msgid ""
2496
  "Spots, etc you should %s to the Pro version."
2497
  msgstr ""
2498
 
2499
- #: app/features/mec/dashboard.php:75
2500
  msgid "lite"
2501
  msgstr ""
2502
 
2503
- #: app/features/mec/dashboard.php:75
2504
  msgid "upgrade"
2505
  msgstr ""
2506
 
2507
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2508
  msgid "Documentation"
2509
  msgstr "Documentation"
2510
 
2511
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2512
  msgid ""
2513
  "Our documentation is simple and functional with full details and cover all "
2514
  "essential aspects from beginning to the most advanced parts."
@@ -2516,22 +1871,22 @@ msgstr ""
2516
  "Notre documentation est simple et fonctionnelle, avec tous les détails et "
2517
  "couvre tous les aspects essentiels du début des parties les plus avancées."
2518
 
2519
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2520
  msgid "DOCUMENTATION"
2521
  msgstr "DOCUMENTATION"
2522
 
2523
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2524
  msgid "Support Forum"
2525
  msgstr "Forum d’aide (en Anglais)"
2526
 
2527
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2528
  msgid ""
2529
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2530
  "If you want to use this service you need to upgrade your plugin to Pro "
2531
  "version. Click on the following button."
2532
  msgstr ""
2533
 
2534
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2535
  msgid ""
2536
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2537
  "If you have any issues please don't hesitate to contact us, we will reply as "
@@ -2542,80 +1897,80 @@ msgstr ""
2542
  "n'hésitez pas à nous contacter, nous vous répondrons dans les plus brefs "
2543
  "délais."
2544
 
2545
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2546
  msgid "GO PREMIUM"
2547
  msgstr ""
2548
 
2549
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2550
  msgid "OPEN A TICKET"
2551
  msgstr "Ouvrir un ticket"
2552
 
2553
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2554
  msgid "Upcoming Events"
2555
  msgstr "Prochains évenements"
2556
 
2557
- #: app/features/mec/dashboard.php:177
2558
  msgid "Popular Gateways"
2559
  msgstr "Passerelle populaire"
2560
 
2561
- #: app/features/mec/dashboard.php:228
2562
  msgid "Total Bookings"
2563
  msgstr "Total de réservation"
2564
 
2565
- #: app/features/mec/dashboard.php:255
2566
  msgid "This Month"
2567
  msgstr "Ce mois"
2568
 
2569
- #: app/features/mec/dashboard.php:256
2570
  msgid "Last Month"
2571
  msgstr "Le mois dernier"
2572
 
2573
- #: app/features/mec/dashboard.php:257
2574
  msgid "This Year"
2575
  msgstr "Cette année"
2576
 
2577
- #: app/features/mec/dashboard.php:258
2578
  msgid "Last Year"
2579
  msgstr "L'année dernière"
2580
 
2581
- #: app/features/mec/dashboard.php:270
2582
  msgid "Bar"
2583
  msgstr "Barre"
2584
 
2585
- #: app/features/mec/dashboard.php:271
2586
  msgid "Line"
2587
  msgstr "Ligne"
2588
 
2589
- #: app/features/mec/dashboard.php:273
2590
  msgid "Filter"
2591
  msgstr "Filtre"
2592
 
2593
- #: app/features/mec/dashboard.php:289
2594
  #, php-format
2595
  msgid "Total Sells (%s)"
2596
  msgstr "Ventes totales (%s)"
2597
 
2598
- #: app/features/mec/dashboard.php:310
2599
  msgid "Change Log"
2600
  msgstr "Journal des modifications"
2601
 
2602
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2603
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2604
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2605
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2606
  msgid "Styling Options"
2607
  msgstr "Options de style"
2608
 
2609
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2610
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2611
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2612
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2613
  msgid "Custom CSS"
2614
  msgstr "Modifier le CSS"
2615
 
2616
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2617
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2618
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2619
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2620
  #: app/features/mec/support.php:64
2621
  msgid "Messages"
@@ -2623,7 +1978,7 @@ msgstr "Messages"
2623
 
2624
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2625
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2626
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2627
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2628
  #: app/features/mec/support.php:84
2629
  msgid "Support"
@@ -2636,24 +1991,25 @@ msgstr "Aide"
2636
  #: app/features/mec/notifications.php:409
2637
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2638
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2639
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2640
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2641
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2642
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2643
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2644
  msgid "Save Changes"
2645
  msgstr "Sauvegarder"
2646
 
2647
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2648
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2649
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2650
  #: app/features/mec/styling.php:313
2651
  msgid "Saved"
2652
  msgstr "Sauvegardé"
2653
 
2654
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2655
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2656
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2657
  #: app/features/mec/styling.php:314
2658
  msgid "Settings Saved!"
2659
  msgstr ""
@@ -2864,6 +2220,15 @@ msgstr "La valeur par défaut est \"M d\""
2864
  msgid "Default values are d and F"
2865
  msgstr "La valeur par défaut est d et F"
2866
 
 
 
 
 
 
 
 
 
 
2867
  #: app/features/mec/meta_boxes/display_options.php:86
2868
  #: app/features/mec/meta_boxes/display_options.php:195
2869
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -2943,13 +2308,13 @@ msgstr "Vue par Défaut"
2943
 
2944
  #: app/features/mec/meta_boxes/display_options.php:287
2945
  #: app/features/mec/meta_boxes/display_options.php:296
2946
- #: app/libraries/main.php:323 app/libraries/main.php:1118
2947
  msgid "List View"
2948
  msgstr "Vue liste"
2949
 
2950
  #: app/features/mec/meta_boxes/display_options.php:288
2951
  #: app/features/mec/meta_boxes/display_options.php:306
2952
- #: app/libraries/main.php:327 app/libraries/main.php:1112
2953
  msgid "Yearly View"
2954
  msgstr ""
2955
 
@@ -2960,13 +2325,13 @@ msgstr "Vue Calendrier / Mensuelle"
2960
 
2961
  #: app/features/mec/meta_boxes/display_options.php:290
2962
  #: app/features/mec/meta_boxes/display_options.php:326
2963
- #: app/libraries/main.php:330 app/libraries/main.php:1114
2964
  msgid "Weekly View"
2965
  msgstr "Vue Hebdomadaire"
2966
 
2967
  #: app/features/mec/meta_boxes/display_options.php:291
2968
  #: app/features/mec/meta_boxes/display_options.php:336
2969
- #: app/libraries/main.php:329 app/libraries/main.php:1115
2970
  msgid "Daily View"
2971
  msgstr "Vue Quotidienne"
2972
 
@@ -3206,6 +2571,66 @@ msgstr ""
3206
  msgid "Show Search Form"
3207
  msgstr "Afficher le champ de recherche"
3208
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3209
  #: app/features/mec/meta_boxes/search_form.php:59
3210
  #: app/features/mec/meta_boxes/search_form.php:106
3211
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3444,6 +2869,14 @@ msgstr ""
3444
  msgid "Invoice Link"
3445
  msgstr ""
3446
 
 
 
 
 
 
 
 
 
3447
  #: app/features/mec/notifications.php:145
3448
  msgid "Booking Verification"
3449
  msgstr "Vérification de réservation"
@@ -3460,7 +2893,7 @@ msgstr "Insérez plusieurs destinataires, séparés par une virgule."
3460
  msgid "Email/Booking verification link."
3461
  msgstr "Vérification des réservations."
3462
 
3463
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3464
  msgid "Booking Confirmation"
3465
  msgstr "Confirmation de réservation"
3466
 
@@ -3543,7 +2976,7 @@ msgstr "Titre de l'événement"
3543
  msgid "Status of event"
3544
  msgstr "Statut de l'événement"
3545
 
3546
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3547
  msgid "Event Note"
3548
  msgstr "Note sur l'événement"
3549
 
@@ -3551,92 +2984,92 @@ msgstr "Note sur l'événement"
3551
  msgid "Admin events management link."
3552
  msgstr "Lien d'administration d'événements."
3553
 
3554
- #: app/features/mec/settings.php:42
3555
  msgid "Archive Page Options"
3556
  msgstr ""
3557
 
3558
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3559
  msgid "Export Module Options"
3560
  msgstr "Options du Module d'Export"
3561
 
3562
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3563
  msgid "Local Time Module"
3564
  msgstr "Module d'Heure Locale"
3565
 
3566
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3567
  msgid "QR Code Module"
3568
  msgstr ""
3569
 
3570
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3571
  msgid "Weather Module"
3572
  msgstr ""
3573
 
3574
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3575
  #, fuzzy
3576
  msgid "Additional Organizers"
3577
  msgstr "Tous les organisateurs"
3578
 
3579
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3580
  msgid "Taxes / Fees"
3581
  msgstr "Taxes et frais"
3582
 
3583
- #: app/features/mec/settings.php:250
3584
  msgid "Time Format"
3585
  msgstr "Format d'heure"
3586
 
3587
- #: app/features/mec/settings.php:253
3588
  msgid "12 hours format with AM/PM"
3589
  msgstr "Affichage sur 12 heures avec \"du matin\" / \"de l'après midi\""
3590
 
3591
- #: app/features/mec/settings.php:254
3592
  msgid "24 hours format"
3593
  msgstr "Affichage sur 24 heures"
3594
 
3595
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3596
  msgid ""
3597
  "This option is for showing start/end time of events on frontend of website."
3598
  msgstr ""
3599
  "Cette option sert à montrer le temps de début/fin, des événements sur "
3600
  "l'affichage du site"
3601
 
3602
- #: app/features/mec/settings.php:261
3603
  msgid "Hide Events"
3604
  msgstr "Cacher l'évenements"
3605
 
3606
- #: app/features/mec/settings.php:264
3607
  msgid "On Event Start"
3608
  msgstr "Au début de l'événement"
3609
 
3610
- #: app/features/mec/settings.php:265
3611
  msgid "+1 Hour after start"
3612
  msgstr "1 Heure après le début"
3613
 
3614
- #: app/features/mec/settings.php:266
3615
  msgid "+2 Hours after start"
3616
  msgstr "2 Heures après le début"
3617
 
3618
- #: app/features/mec/settings.php:267
3619
  msgid "On Event End"
3620
  msgstr "À la fin de l'événement"
3621
 
3622
- #: app/features/mec/settings.php:275
3623
  msgid "Multiple Day Events"
3624
  msgstr "Événements à Dates Multiples"
3625
 
3626
- #: app/features/mec/settings.php:278
3627
  msgid "Show only first day on List/Grid/Slider skins"
3628
  msgstr ""
3629
  "Afficher uniquement le premier jour sous forme de Liste/Grille/Carrousel"
3630
 
3631
- #: app/features/mec/settings.php:279
3632
  msgid "Show only first day on all skins"
3633
  msgstr "Afficher uniquement le premier jour sur tous les styles"
3634
 
3635
- #: app/features/mec/settings.php:280
3636
  msgid "Show all days"
3637
  msgstr "Afficher tous les jours"
3638
 
3639
- #: app/features/mec/settings.php:282
3640
  msgid ""
3641
  "For showing all days of multiple day events on frontend or only show the "
3642
  "first day."
@@ -3644,85 +3077,89 @@ msgstr ""
3644
  "Pour afficher toutes les dates d'un événement de plusieurs jours sur le "
3645
  "frontend ou seulement afficher le premier jour."
3646
 
3647
- #: app/features/mec/settings.php:288
3648
  msgid "Remove MEC Data on Plugin Uninstall"
3649
  msgstr "Retirer les données de M.E.C. lors de la désinstallation"
3650
 
3651
- #: app/features/mec/settings.php:298
 
 
 
 
3652
  msgid "Exclude Date Suffix"
3653
  msgstr "Retiré les suffixes de dates "
3654
 
3655
- #: app/features/mec/settings.php:301
3656
  msgid "Remove suffix from calendars"
3657
  msgstr "Retirer les suffixes de date des Calendriers"
3658
 
3659
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3660
  msgid "Weekdays"
3661
  msgstr "Jours de la Semaine"
3662
 
3663
- #: app/features/mec/settings.php:316
3664
  msgid ""
3665
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3666
  "and Friday."
3667
  msgstr "Attention : Par défaut Lundi, Mardi, Mercredi, Jeudi, Vendredi."
3668
 
3669
- #: app/features/mec/settings.php:323
3670
  msgid "Weekends"
3671
  msgstr "Jour du Week End"
3672
 
3673
- #: app/features/mec/settings.php:331
3674
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3675
  msgstr "Attention : Par défaut Samedi et Dimanche ."
3676
 
3677
- #: app/features/mec/settings.php:339
3678
  msgid "Archive Pages"
3679
  msgstr ""
3680
 
3681
- #: app/features/mec/settings.php:342
3682
  msgid "Archive Page Title"
3683
  msgstr "Titre de la page archive"
3684
 
3685
- #: app/features/mec/settings.php:345
3686
  msgid "Default value is Events"
3687
  msgstr "La valeur par défaut est \"Events\""
3688
 
3689
- #: app/features/mec/settings.php:350
3690
  msgid "Archive Page Skin"
3691
  msgstr "Style de la page des archives"
3692
 
3693
- #: app/features/mec/settings.php:357
3694
  msgid "Default value is Calendar/Monthly View"
3695
  msgstr "La valeur par défaut est Calendrier / Mensuel"
3696
 
3697
- #: app/features/mec/settings.php:362
3698
  msgid "Category Page Skin"
3699
  msgstr "Apparence page de catégorie"
3700
 
3701
- #: app/features/mec/settings.php:369
3702
  msgid "Default value is List View"
3703
  msgstr "La valeur par défaut est l'apparence \"liste\""
3704
 
3705
- #: app/features/mec/settings.php:374
3706
  msgid "Category Events Method"
3707
  msgstr ""
3708
 
3709
- #: app/features/mec/settings.php:378
3710
  msgid "Expired Events"
3711
  msgstr ""
3712
 
3713
- #: app/features/mec/settings.php:380
3714
  msgid "Default value is Upcoming Events"
3715
  msgstr ""
3716
 
3717
- #: app/features/mec/settings.php:385
3718
  msgid "Events Archive Status"
3719
  msgstr "Archivage des Événements"
3720
 
3721
- #: app/features/mec/settings.php:388
3722
  msgid "Enabled (Recommended)"
3723
  msgstr "Activé (Recommandé)"
3724
 
3725
- #: app/features/mec/settings.php:391
3726
  msgid ""
3727
  "If you disable it, then you should create a page as archive page of MEC. "
3728
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -3733,11 +3170,11 @@ msgstr ""
3733
  "E.C. . Aussi, cela désactivera également toutes les règles de réécriture de "
3734
  "M.E.C. ."
3735
 
3736
- #: app/features/mec/settings.php:401
3737
  msgid "Main Slug"
3738
  msgstr "Identifiant des événements"
3739
 
3740
- #: app/features/mec/settings.php:404
3741
  msgid ""
3742
  "Default value is events. Valid characters are lowercase a-z, - character and "
3743
  "numbers."
@@ -3745,11 +3182,11 @@ msgstr ""
3745
  "La valeur par défaut est events. Les caractères valides sont les lettres "
3746
  "minuscules (a-z) et les chiffres"
3747
 
3748
- #: app/features/mec/settings.php:408
3749
  msgid "Category Slug"
3750
  msgstr "Identifiant de la catégorie"
3751
 
3752
- #: app/features/mec/settings.php:411
3753
  msgid ""
3754
  "It's slug of MEC categories, you can change it to events-cat or something "
3755
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
@@ -3760,104 +3197,104 @@ msgstr ""
3760
  "category. Les caractères valides sont les lettres minuscules (a-z) et les "
3761
  "chiffres."
3762
 
3763
- #: app/features/mec/settings.php:421
3764
  msgid "Single Event Date Format"
3765
  msgstr "Format de date des événements"
3766
 
3767
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3768
  msgid "Default is M d Y"
3769
  msgstr "Par défaut : M d Y"
3770
 
3771
- #: app/features/mec/settings.php:428
3772
  msgid "Date Method"
3773
  msgstr "Méthode de date"
3774
 
3775
- #: app/features/mec/settings.php:431
3776
  msgid "Next occurrence date"
3777
  msgstr "Date de la prochaine occurence"
3778
 
3779
- #: app/features/mec/settings.php:432
3780
  msgid "Referred date"
3781
  msgstr "Date référée"
3782
 
3783
- #: app/features/mec/settings.php:434
3784
  msgid ""
3785
  "\"Referred date\" shows the event date based on referred date in event list."
3786
  msgstr ""
3787
  "\"Date Référée\" montre la date de l'événement basée sur la date référée "
3788
  "dans la liste d'événements."
3789
 
3790
- #: app/features/mec/settings.php:438
3791
  msgid "Single Event Style"
3792
  msgstr "Style de la page d'événement"
3793
 
3794
- #: app/features/mec/settings.php:441
3795
  msgid "Default Style"
3796
  msgstr "Style par défaut"
3797
 
3798
- #: app/features/mec/settings.php:442
3799
  msgid "Modern Style"
3800
  msgstr "Style moderne"
3801
 
3802
- #: app/features/mec/settings.php:444
3803
  msgid "Choose your single event style."
3804
  msgstr "Choisissez le style de votre page d'événement."
3805
 
3806
- #: app/features/mec/settings.php:453
3807
  msgid "Currency"
3808
  msgstr "Devise"
3809
 
3810
- #: app/features/mec/settings.php:463
3811
  msgid "Currency Sign"
3812
  msgstr "Symbole de la devise"
3813
 
3814
- #: app/features/mec/settings.php:466
3815
  msgid "Default value will be \"currency\" if you leave it empty."
3816
  msgstr "Si elle est vide, la valeur par défaut sera utilisée."
3817
 
3818
- #: app/features/mec/settings.php:470
3819
  msgid "Currency Position"
3820
  msgstr "Position du symbole de devise"
3821
 
3822
- #: app/features/mec/settings.php:473
3823
  msgid "Before $10"
3824
  msgstr "Avant €10"
3825
 
3826
- #: app/features/mec/settings.php:474
3827
  msgid "After 10$"
3828
  msgstr "Après 10€"
3829
 
3830
- #: app/features/mec/settings.php:479
3831
  msgid "Thousand Separator"
3832
  msgstr "Séparateur des milliers"
3833
 
3834
- #: app/features/mec/settings.php:485
3835
  msgid "Decimal Separator"
3836
  msgstr "Séparateur des décimales"
3837
 
3838
- #: app/features/mec/settings.php:495
3839
  msgid "No decimal"
3840
  msgstr "Pas de décimales"
3841
 
3842
- #: app/features/mec/settings.php:511
3843
  msgid "Show Google Maps on event page"
3844
  msgstr "Montrer la Carte sur les pages d'événement"
3845
 
3846
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3847
- #: app/features/mec/settings.php:1135
3848
  msgid "API Key"
3849
  msgstr "Clés API"
3850
 
3851
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3852
- #: app/features/mec/settings.php:1145
3853
  msgid "Required!"
3854
  msgstr "Requis !"
3855
 
3856
- #: app/features/mec/settings.php:523
3857
  msgid "Zoom level"
3858
  msgstr "Niveau de Zoom"
3859
 
3860
- #: app/features/mec/settings.php:530
3861
  msgid ""
3862
  "For Google Maps module in single event page. In Google Maps skin, it will "
3863
  "caculate the zoom level automatically based on event boundaries."
@@ -3866,184 +3303,188 @@ msgstr ""
3866
  "calculera automatiquement le niveau de zoom en fonction de l'emplacement des "
3867
  "événements."
3868
 
3869
- #: app/features/mec/settings.php:534
3870
  msgid "Google Maps Style"
3871
  msgstr "Style de Google Map"
3872
 
3873
- #: app/features/mec/settings.php:538
3874
  msgid "Default"
3875
  msgstr "Par défaut"
3876
 
3877
- #: app/features/mec/settings.php:546
3878
  msgid "Direction on single event"
3879
  msgstr "Adresse sur page d'Evénement"
3880
 
3881
- #: app/features/mec/settings.php:550
3882
  msgid "Simple Method"
3883
  msgstr "Méthode simple"
3884
 
3885
- #: app/features/mec/settings.php:551
3886
  msgid "Advanced Method"
3887
  msgstr "Méthode avancée"
3888
 
3889
- #: app/features/mec/settings.php:556
3890
  msgid "Lightbox Date Format"
3891
  msgstr "Format de Date de la Lightbox"
3892
 
3893
- #: app/features/mec/settings.php:559
3894
  msgid "Default value is M d Y"
3895
  msgstr "La valeur par défaut est M d Y"
3896
 
3897
- #: app/features/mec/settings.php:563
3898
  msgid "Google Maps API"
3899
  msgstr "Google Maps API"
3900
 
3901
- #: app/features/mec/settings.php:567
3902
  msgid "Don't load Google Maps API library"
3903
  msgstr "Ne pas charger la bibliothèque de l'API Google Maps"
3904
 
3905
- #: app/features/mec/settings.php:569
3906
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3907
  msgstr ""
3908
  "Cochez-le uniquement si un autre plug-in / thème charge l'API Google Maps"
3909
 
3910
- #: app/features/mec/settings.php:581
3911
  msgid "Enable Google Recaptcha"
3912
  msgstr "Activer Google Recaptcha"
3913
 
3914
- #: app/features/mec/settings.php:588
3915
  msgid "Enable on booking form"
3916
  msgstr "Activer le formulaire de réservation"
3917
 
3918
- #: app/features/mec/settings.php:594
3919
  msgid "Enable on \"Frontend Event Submittion\" form"
3920
  msgstr "Activer le formulaire d'ajout d'événement"
3921
 
3922
- #: app/features/mec/settings.php:598
3923
  msgid "Site Key"
3924
  msgstr "Site Key"
3925
 
3926
- #: app/features/mec/settings.php:618
 
 
 
 
3927
  msgid ""
3928
  "Show export module (iCal export and add to Google calendars) on event page"
3929
  msgstr ""
3930
  "Afficher module d'exportation (iCal export et ajouter des calendriers "
3931
  "Google) à la page de l'événement"
3932
 
3933
- #: app/features/mec/settings.php:625
3934
  msgid "Google Calendar"
3935
  msgstr "Google Calendar"
3936
 
3937
- #: app/features/mec/settings.php:645
3938
  msgid "Show event time based on local time of visitor on event page"
3939
  msgstr ""
3940
  "Afficher l'heure des événement en fonction de l'heure locale des visiteurs"
3941
 
3942
- #: app/features/mec/settings.php:661
3943
  msgid "Show QR code of event in details page and booking invoice"
3944
  msgstr ""
3945
 
3946
- #: app/features/mec/settings.php:679
3947
  msgid "Show weather module on event page"
3948
  msgstr ""
3949
 
3950
- #: app/features/mec/settings.php:687
3951
  #, php-format
3952
  msgid "You can get a free API Key from %s"
3953
  msgstr ""
3954
 
3955
- #: app/features/mec/settings.php:699
3956
  msgid "Show countdown module on event page"
3957
  msgstr "Afficher le module de compte à rebours sur la page de l'événement"
3958
 
3959
- #: app/features/mec/settings.php:704
3960
  msgid "Countdown Style"
3961
  msgstr "Style du compte à rebours"
3962
 
3963
- #: app/features/mec/settings.php:707
3964
  msgid "Plain Style"
3965
  msgstr "Simple"
3966
 
3967
- #: app/features/mec/settings.php:708
3968
  msgid "Flip Style"
3969
  msgstr "Horloge Flip-Flap"
3970
 
3971
- #: app/features/mec/settings.php:720
3972
  msgid "Show social network module"
3973
  msgstr "Afficher le Module de Réseau Social"
3974
 
3975
- #: app/features/mec/settings.php:745
3976
  msgid "Show next event module on event page"
3977
  msgstr "Afficher le module événement suivant sur la page d'un événement"
3978
 
3979
- #: app/features/mec/settings.php:750
3980
  msgid "Method"
3981
  msgstr "Méthode"
3982
 
3983
- #: app/features/mec/settings.php:753
3984
  msgid "Next Occurrence of Current Event"
3985
  msgstr "Prochaine occurrence de l'événement en cours"
3986
 
3987
- #: app/features/mec/settings.php:754
3988
  msgid "Next Occurrence of Other Events"
3989
  msgstr "Prochaine Occurrence de l'événement à venir"
3990
 
3991
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
3992
  msgid "Date Format"
3993
  msgstr "Format de date"
3994
 
3995
- #: app/features/mec/settings.php:771
3996
  msgid "Events List Page"
3997
  msgstr "Page liste des événements"
3998
 
3999
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
4000
  #, php-format
4001
  msgid "Put %s shortcode into the page."
4002
  msgstr "Mettez %s le shortcode de dans la page."
4003
 
4004
- #: app/features/mec/settings.php:783
4005
  msgid "Add/Edit Events Page"
4006
  msgstr "Ajouter/Éditer page d'événement"
4007
 
4008
- #: app/features/mec/settings.php:797
4009
  msgid "Enable event submission by guest (Not logged-in) users"
4010
  msgstr ""
4011
  "Activer l'inscription d’événements pour les utilisateurs invités (non "
4012
  "connecté)."
4013
 
4014
- #: app/features/mec/settings.php:804
4015
  msgid "Enable mandatory email and name for guest user"
4016
  msgstr "Activer la demande de Nom / Mail pour les utilisateurs invités"
4017
 
4018
- #: app/features/mec/settings.php:808
4019
  msgid "Frontend Event Submission Sections"
4020
  msgstr "Réglages du formulaire de Création d’Événements"
4021
 
4022
- #: app/features/mec/settings.php:830
4023
  msgid "Event Categories"
4024
  msgstr "Catégories de l'évènements"
4025
 
4026
- #: app/features/mec/settings.php:836
4027
  msgid "Event Labels"
4028
  msgstr "Labels d'événement"
4029
 
4030
- #: app/features/mec/settings.php:848
4031
  msgid "Event Tags"
4032
  msgstr "Étiquettes de l'évenement"
4033
 
4034
- #: app/features/mec/settings.php:860
4035
  msgid "Event Organizer"
4036
  msgstr "Organisateur d'événements"
4037
 
4038
- #: app/features/mec/settings.php:872
4039
  msgid "Booking Options"
4040
  msgstr "Options de Réservation"
4041
 
4042
- #: app/features/mec/settings.php:878
4043
  msgid "Fees/Taxes Options"
4044
  msgstr "Options de Frais/Taxes"
4045
 
4046
- #: app/features/mec/settings.php:886
4047
  #, php-format
4048
  msgid ""
4049
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4054,35 +3495,35 @@ msgstr ""
4054
  "Ajouter %%event_note%% dans le formulaire de notification par mail pour les "
4055
  "recevoir."
4056
 
4057
- #: app/features/mec/settings.php:890
4058
  msgid "Visibility of Note"
4059
  msgstr "Visibilité de la Note"
4060
 
4061
- #: app/features/mec/settings.php:893
4062
  msgid "Always"
4063
  msgstr "Toujours"
4064
 
4065
- #: app/features/mec/settings.php:894
4066
  msgid "While event is not published"
4067
  msgstr "Tant que l'événement n'est pas publié"
4068
 
4069
- #: app/features/mec/settings.php:897
4070
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4071
  msgstr ""
4072
  "La Note est visible sur le formulaire de soumission d'événement et dans le "
4073
  "menu d'édition d'un événement en backend."
4074
 
4075
- #: app/features/mec/settings.php:903
4076
  msgid "Exceptional days"
4077
  msgstr "Journées Exceptionnelles"
4078
 
4079
- #: app/features/mec/settings.php:907
4080
  msgid "Show exceptional days option on Add/Edit events page"
4081
  msgstr ""
4082
  "Afficher l'option \"Journée Exceptionnelle\" lors de la création/édition de "
4083
  "la page d'un événement"
4084
 
4085
- #: app/features/mec/settings.php:908
4086
  msgid ""
4087
  "Using this option you can include/exclude certain days to/from event "
4088
  "occurrence dates."
@@ -4090,7 +3531,7 @@ msgstr ""
4090
  "En utilisant cette option, vous pouvez inclure / exclure certains jours des "
4091
  "dates d'occurrence d'un événement."
4092
 
4093
- #: app/features/mec/settings.php:918
4094
  #, fuzzy
4095
  msgid ""
4096
  "Show additional organizers option on Add/Edit events page and single event "
@@ -4099,27 +3540,27 @@ msgstr ""
4099
  "Afficher l'option \"Journée Exceptionnelle\" lors de la création/édition de "
4100
  "la page d'un événement"
4101
 
4102
- #: app/features/mec/settings.php:932
4103
  msgid "Enable booking module"
4104
  msgstr "Activer le module de réservation"
4105
 
4106
- #: app/features/mec/settings.php:940
4107
  msgid "Default is Y-m-d"
4108
  msgstr "Par défaut: A-m-j"
4109
 
4110
- #: app/features/mec/settings.php:944
4111
  msgid "Maximum Dates"
4112
  msgstr "Nb d'événements maximum"
4113
 
4114
- #: app/features/mec/settings.php:946
4115
  msgid "Default is 6"
4116
  msgstr "Par défaut: 6"
4117
 
4118
- #: app/features/mec/settings.php:950
4119
  msgid "Thank You Page"
4120
  msgstr "Page de Remerciement"
4121
 
4122
- #: app/features/mec/settings.php:958
4123
  msgid ""
4124
  "User redirects to this page after booking. Leave it empty if you want to "
4125
  "disable it."
@@ -4127,85 +3568,85 @@ msgstr ""
4127
  "L'Utilisateur est redirigé vers cette page après avoir réservé. Laisser vide "
4128
  "pour désactiver."
4129
 
4130
- #: app/features/mec/settings.php:966
4131
  msgid "Enable Express Attendees Form"
4132
  msgstr ""
4133
 
4134
- #: app/features/mec/settings.php:968
4135
  msgid ""
4136
  "Users are able to apply first attendee information for other attendees in "
4137
  "the booking form."
4138
  msgstr ""
4139
 
4140
- #: app/features/mec/settings.php:971
4141
  msgid "Email verification"
4142
  msgstr "Vérification de l’email"
4143
 
4144
- #: app/features/mec/settings.php:977
4145
  msgid "Auto verification for free bookings"
4146
  msgstr "Vérification automatique pour les réservations gratuites"
4147
 
4148
- #: app/features/mec/settings.php:986
4149
  msgid "Auto verification for paid bookings"
4150
  msgstr "Vérification automatique des réservations payées"
4151
 
4152
- #: app/features/mec/settings.php:996
4153
  msgid "Auto confirmation for free bookings"
4154
  msgstr "Confirmation automatique pour les réservations gratuites"
4155
 
4156
- #: app/features/mec/settings.php:1005
4157
  msgid "Auto confirmation for paid bookings"
4158
  msgstr "Confirmation automatique pour les réservations payées"
4159
 
4160
- #: app/features/mec/settings.php:1022
4161
  msgid "Enable coupons module"
4162
  msgstr "Activer module de coupons"
4163
 
4164
- #: app/features/mec/settings.php:1039
4165
  msgid "Enable taxes / fees module"
4166
  msgstr "Activer le module de taxes / frais"
4167
 
4168
- #: app/features/mec/settings.php:1044
4169
  msgid "Add Fee"
4170
  msgstr "Ajouter frais"
4171
 
4172
- #: app/features/mec/settings.php:1100
4173
  msgid "Enable BuddyPress Integration"
4174
  msgstr "Activer l'intégration de BuddyPress"
4175
 
4176
- #: app/features/mec/settings.php:1107
4177
  msgid "Show \"Attendees Module\" in event details page"
4178
  msgstr "Afficher le \"Module des Participants\" sur la page d'Évènements"
4179
 
4180
- #: app/features/mec/settings.php:1111
4181
  msgid "Attendees Limit"
4182
  msgstr "Limite de Participants"
4183
 
4184
- #: app/features/mec/settings.php:1119
4185
  msgid "Add booking activity to user profile"
4186
  msgstr "Ajouter les activités de réservation sur les profiles"
4187
 
4188
- #: app/features/mec/settings.php:1130
4189
  msgid "Enable Mailchimp Integration"
4190
  msgstr "Activer l'intégration de MailChimp"
4191
 
4192
- #: app/features/mec/settings.php:1142
4193
  msgid "List ID"
4194
  msgstr "ID de Liste"
4195
 
4196
- #: app/features/mec/settings.php:1149
4197
  msgid "Subscription Status"
4198
  msgstr "Statut des Souscriptions"
4199
 
4200
- #: app/features/mec/settings.php:1152
4201
  msgid "Subscribe automatically"
4202
  msgstr "Souscrire Automatiquement"
4203
 
4204
- #: app/features/mec/settings.php:1153
4205
  msgid "Subscribe by verification"
4206
  msgstr "Souscrire après vérification"
4207
 
4208
- #: app/features/mec/settings.php:1155
4209
  msgid ""
4210
  "If you choose \"Subscribe by verification\" then an email will send to user "
4211
  "by mailchimp for subscription verification."
@@ -4213,50 +3654,55 @@ msgstr ""
4213
  "Si vous choisissez \"Souscrire après vérification\", un email sera envoyé à "
4214
  "l'utilisateur par Mailchimp pour valider son inscription."
4215
 
4216
- #: app/features/mec/settings.php:1165
4217
  #, php-format
4218
  msgid "%s is required to use this section."
4219
  msgstr ""
4220
 
4221
- #: app/features/mec/settings.php:1168
4222
  msgid "Purchase Code"
4223
  msgstr "Code d'achat"
4224
 
4225
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4226
  msgid "UnVerified"
4227
  msgstr "Non vérifié"
4228
 
4229
- #: app/features/mec/settings.php:1177
4230
  msgid ""
4231
  "Please insert your purchase code validation. read documentation for more "
4232
  "information."
4233
  msgstr "Merci d'insérer votre code d'achat."
4234
 
4235
- #: app/features/mec/settings.php:1180
4236
  msgid "Product Name"
4237
  msgstr ""
4238
 
4239
- #: app/features/mec/settings.php:1183
4240
  msgid "1 License for MEC Plugin"
4241
  msgstr ""
4242
 
4243
- #: app/features/mec/settings.php:1184
4244
  msgid "5 License for MEC Plugin"
4245
  msgstr ""
4246
 
4247
- #: app/features/mec/settings.php:1185
4248
  msgid "10 License for MEC Plugin"
4249
  msgstr ""
4250
 
4251
- #: app/features/mec/settings.php:1192
4252
  msgid "MEC Deactivation"
4253
  msgstr "M.E.C. Désactivation"
4254
 
4255
- #: app/features/mec/settings.php:1194
4256
  msgid "Deactivate"
4257
  msgstr "Désactiver"
4258
 
4259
- #: app/features/mec/settings.php:1196
4260
  msgid ""
4261
  "For deactivation first delete your purchase from above field then press save "
4262
  "after that click on deactivate for deactivate this purchase code from this "
@@ -4266,7 +3712,7 @@ msgstr ""
4266
  "formulaire puis appuyer sur save. Le code sera utilisable pour un autre "
4267
  "domaine."
4268
 
4269
- #: app/features/mec/settings.php:1257
4270
  msgid "Please Refresh Page"
4271
  msgstr "Merci de Rafraichir la Page"
4272
 
@@ -4423,7 +3869,7 @@ msgstr "ex : votre@surnom.com"
4423
  msgid "eg. https://webnus.net"
4424
  msgstr "ex : http://www.votre-site.fr/"
4425
 
4426
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4427
  #: app/skins/single.php:194
4428
  msgid "Other Organizers"
4429
  msgstr ""
@@ -4438,6 +3884,15 @@ msgstr ""
4438
  msgid "%s Price"
4439
  msgstr ""
4440
 
 
 
 
 
 
 
 
 
 
4441
  #: app/libraries/factory.php:148
4442
  msgid "M.E. Calendar"
4443
  msgstr "M.E Calendrier"
@@ -4511,31 +3966,31 @@ msgstr ""
4511
  msgid "There is no excerpt because this is a protected post."
4512
  msgstr "Il n’y a aucun extrait car ce post est protégé."
4513
 
4514
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4515
  msgid "Grid View"
4516
  msgstr "Vue en grille"
4517
 
4518
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4519
  msgid "Agenda View"
4520
  msgstr ""
4521
 
4522
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4523
  msgid "Full Calendar"
4524
  msgstr "Calendrier complet"
4525
 
4526
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4527
  msgid "Calendar/Monthly View"
4528
  msgstr "Calendrier / Mensuel"
4529
 
4530
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4531
  msgid "Timetable View"
4532
  msgstr ""
4533
 
4534
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4535
  msgid "Masonry View"
4536
  msgstr ""
4537
 
4538
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4539
  msgid "Map View"
4540
  msgstr "Vue sur Carte (Map)"
4541
 
@@ -4559,31 +4014,31 @@ msgstr "Vue Caroussel"
4559
  msgid "Slider View"
4560
  msgstr "Vue sur Slider"
4561
 
4562
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4563
  msgid "SU"
4564
  msgstr "DIM."
4565
 
4566
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4567
  msgid "MO"
4568
  msgstr "LUN."
4569
 
4570
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4571
  msgid "TU"
4572
  msgstr "MAR."
4573
 
4574
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4575
  msgid "WE"
4576
  msgstr "MER."
4577
 
4578
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4579
  msgid "TH"
4580
  msgstr "JEU."
4581
 
4582
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4583
  msgid "FR"
4584
  msgstr "VEN."
4585
 
4586
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4587
  msgid "SA"
4588
  msgstr "SAM."
4589
 
@@ -4607,226 +4062,254 @@ msgstr "Google+"
4607
  msgid "Twitter"
4608
  msgstr "Twitter"
4609
 
4610
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4611
  msgid "Linkedin"
4612
  msgstr "Linkedin"
4613
 
4614
- #: app/libraries/main.php:1052
 
 
 
 
4615
  msgid "Share on Facebook"
4616
  msgstr "Partager sur Facebook"
4617
 
4618
- #: app/libraries/main.php:1064
4619
  msgid "Google Plus"
4620
  msgstr "Google +"
4621
 
4622
- #: app/libraries/main.php:1076
4623
  msgid "Tweet"
4624
  msgstr "Tweeter"
4625
 
4626
- #: app/libraries/main.php:1456
4627
  msgid "Your booking successfully verified."
4628
  msgstr "Votre réservation est vérifiée avec succès."
4629
 
4630
- #: app/libraries/main.php:1457
4631
  msgid "Your booking cannot verify!"
4632
  msgstr "Votre réservation ne peut pas être vérifiée!"
4633
 
4634
- #: app/libraries/main.php:1469
4635
  msgid "Your booking successfully canceled."
4636
  msgstr "Votre réservation est annulée."
4637
 
4638
- #: app/libraries/main.php:1470
4639
  msgid "Your booking cannot be canceled."
4640
  msgstr "Votre réservation ne peut être annulée."
4641
 
4642
- #: app/libraries/main.php:1474
4643
  msgid "You canceled the payment successfully."
4644
  msgstr "Vous avez annulé le paiement avec succès."
4645
 
4646
- #: app/libraries/main.php:1478
4647
  msgid "You returned from payment gateway successfully."
4648
  msgstr "Votre paiement à bien été validé."
4649
 
4650
- #: app/libraries/main.php:1502
4651
  msgid "Cannot find the booking!"
4652
  msgstr ""
4653
 
4654
- #: app/libraries/main.php:1502
4655
  msgid "Booking is invalid."
4656
  msgstr ""
4657
 
4658
- #: app/libraries/main.php:1523
4659
  #, php-format
4660
  msgid "%s Invoice"
4661
  msgstr ""
4662
 
4663
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4664
  msgid "Billing"
4665
  msgstr ""
4666
 
4667
- #: app/libraries/main.php:1586
4668
  msgid "Total"
4669
  msgstr ""
4670
 
4671
- #: app/libraries/main.php:1619
4672
  msgid "Security nonce is not valid."
4673
  msgstr "Le Code de Sécurité n'est pas valide."
4674
 
4675
- #: app/libraries/main.php:1619
4676
  msgid "iCal export stopped!"
4677
  msgstr "Export vers iCal arrêté !"
4678
 
4679
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4680
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4681
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4682
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4683
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4684
  msgid "Sort"
4685
  msgstr "Trier"
4686
 
4687
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4688
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4689
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4690
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4691
  msgid "Required Field"
4692
  msgstr "Champ obligatoire"
4693
 
4694
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4695
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4696
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4697
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4698
  msgid "Insert a label for this field"
4699
  msgstr "Insérez une label pour ce champ"
4700
 
4701
- #: app/libraries/main.php:1962
4702
  msgid "HTML and shortcode are allowed."
4703
  msgstr "HTML et shortcode sont autorisés."
4704
 
4705
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4706
- #: app/libraries/main.php:2093
4707
  msgid "Option"
4708
  msgstr "Option"
4709
 
4710
- #: app/libraries/main.php:2127
4711
  #, php-format
4712
  msgid "Instead of %s, the page title with a link will be show."
4713
  msgstr ""
4714
 
4715
- #: app/libraries/main.php:2129
4716
  msgid "Agreement Page"
4717
  msgstr ""
4718
 
4719
- #: app/libraries/main.php:2138
4720
  msgid "Status"
4721
  msgstr ""
4722
 
4723
- #: app/libraries/main.php:2140
4724
  msgid "Checked by default"
4725
  msgstr ""
4726
 
4727
- #: app/libraries/main.php:2141
4728
  msgid "Unchecked by default"
4729
  msgstr ""
4730
 
4731
- #: app/libraries/main.php:2163
4732
  msgid "Insert a label for this option"
4733
  msgstr "Insérez une étiquette pour cette option"
4734
 
4735
- #: app/libraries/main.php:2830
 
 
 
 
4736
  #, php-format
4737
  msgid "Copy of %s"
4738
  msgstr "Copie de %s"
4739
 
4740
- #: app/libraries/main.php:3467
4741
  msgid "Booked an event."
4742
  msgstr "Réserver un Évènements"
4743
 
4744
- #: app/libraries/main.php:3508
4745
  #, php-format
4746
  msgid "%s booked %s event."
4747
  msgstr "%s réservé %s événement"
4748
 
4749
- #: app/libraries/main.php:3950
4750
  msgid "Taxonomies"
4751
  msgstr "Taxonomies"
4752
 
4753
- #: app/libraries/main.php:3952
4754
  msgid "Category Plural Label"
4755
  msgstr "Catégorie au pluriel"
4756
 
4757
- #: app/libraries/main.php:3953
4758
  msgid "Category Singular Label"
4759
  msgstr "Catégorie au singulier"
4760
 
4761
- #: app/libraries/main.php:3954
4762
  msgid "Label Plural Label"
4763
  msgstr "Étiquettes au pluriel"
4764
 
4765
- #: app/libraries/main.php:3955
4766
  msgid "Label Singular Label"
4767
  msgstr "Étiquettes au singulier"
4768
 
4769
- #: app/libraries/main.php:3955
4770
  msgid "label"
4771
  msgstr "texte"
4772
 
4773
- #: app/libraries/main.php:3956
4774
  msgid "Location Plural Label"
4775
  msgstr "Lieu au pluriel"
4776
 
4777
- #: app/libraries/main.php:3957
4778
  msgid "Location Singular Label"
4779
  msgstr "Lieu au singulier"
4780
 
4781
- #: app/libraries/main.php:3958
4782
  msgid "Organizer Plural Label"
4783
  msgstr "Organisateur au pluriel"
4784
 
4785
- #: app/libraries/main.php:3959
4786
  msgid "Organizer Singular Label"
4787
  msgstr "Organisateur au singulier"
4788
 
4789
- #: app/libraries/main.php:3965
4790
  msgid "Sunday abbreviation"
4791
  msgstr "Abréviation de Dimanche"
4792
 
4793
- #: app/libraries/main.php:3966
4794
  msgid "Monday abbreviation"
4795
  msgstr "Abréviation de Lundi"
4796
 
4797
- #: app/libraries/main.php:3967
4798
  msgid "Tuesday abbreviation"
4799
  msgstr "Abréviation de Mardi"
4800
 
4801
- #: app/libraries/main.php:3968
4802
  msgid "Wednesday abbreviation"
4803
  msgstr "Abréviation de Mercredi"
4804
 
4805
- #: app/libraries/main.php:3969
4806
  msgid "Thursday abbreviation"
4807
  msgstr "Abréviation de Jeudi"
4808
 
4809
- #: app/libraries/main.php:3970
4810
  msgid "Friday abbreviation"
4811
  msgstr "Abréviation de Vendredi"
4812
 
4813
- #: app/libraries/main.php:3971
4814
  msgid "Saturday abbreviation"
4815
  msgstr "Abréviation de Samedi"
4816
 
4817
- #: app/libraries/main.php:3975
4818
  msgid "Others"
4819
  msgstr "Autres"
4820
 
4821
- #: app/libraries/main.php:3977
4822
  msgid "Booking Success Message"
4823
  msgstr "Message de succès de réservation"
4824
 
4825
- #: app/libraries/main.php:3978
 
 
 
 
 
 
 
 
4826
  msgid "Register Button"
4827
  msgstr "Boutons d'inscription"
4828
 
4829
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4830
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4831
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4832
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4840,11 +4323,11 @@ msgstr "Boutons d'inscription"
4840
  msgid "REGISTER"
4841
  msgstr "S'INSCRIRE"
4842
 
4843
- #: app/libraries/main.php:3979
4844
  msgid "View Detail Button"
4845
  msgstr "Afficher le boutons de détail"
4846
 
4847
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4848
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4849
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4850
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4855,39 +4338,39 @@ msgstr "Afficher le boutons de détail"
4855
  msgid "View Detail"
4856
  msgstr "En savoir plus"
4857
 
4858
- #: app/libraries/main.php:3980
4859
  msgid "Event Detail Button"
4860
  msgstr "Bouton de détail de l'événement"
4861
 
4862
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4863
  msgid "Event Detail"
4864
  msgstr "Détails"
4865
 
4866
- #: app/libraries/main.php:3982
4867
  msgid "More Info Link"
4868
  msgstr "Plus de lien d'info"
4869
 
4870
- #: app/libraries/main.php:3985
4871
  msgid "Ticket (Singular)"
4872
  msgstr ""
4873
 
4874
- #: app/libraries/main.php:3986
4875
  msgid "Tickets (Plural)"
4876
  msgstr ""
4877
 
4878
- #: app/libraries/main.php:4052
4879
  msgid "EventON"
4880
  msgstr ""
4881
 
4882
- #: app/libraries/main.php:4053
4883
  msgid "The Events Calendar"
4884
  msgstr ""
4885
 
4886
- #: app/libraries/main.php:4054
4887
  msgid "Events Schedule WP Plugin"
4888
  msgstr ""
4889
 
4890
- #: app/libraries/main.php:4055
4891
  msgid "Calendarize It"
4892
  msgstr ""
4893
 
@@ -4911,6 +4394,14 @@ msgstr "Une nouvelle réservation est enregistrée."
4911
  msgid "A new event is added."
4912
  msgstr "Un nouvel événement est ajouté."
4913
 
 
 
 
 
 
 
 
 
4914
  #: app/libraries/render.php:337
4915
  msgid "Skin controller does not exist."
4916
  msgstr "Le contrôleur de Skin n'existe pas."
@@ -4941,6 +4432,10 @@ msgstr ""
4941
  msgid "%s tickets"
4942
  msgstr "%s billets"
4943
 
 
 
 
 
4944
  #: app/modules/booking/steps/checkout.php:33
4945
  msgid "Discount Coupon"
4946
  msgstr "Code de réduction"
@@ -4967,6 +4462,10 @@ msgstr ""
4967
  msgid "Next"
4968
  msgstr "Prochain"
4969
 
 
 
 
 
4970
  #: app/modules/booking/steps/tickets.php:18
4971
  msgid "Book Event"
4972
  msgstr "Réservez pour cet événement"
@@ -5259,6 +4758,12 @@ msgstr "Google Maps : "
5259
  msgid "QR Code : "
5260
  msgstr ""
5261
 
 
 
 
 
 
 
5262
  #. Plugin URI of the plugin/theme
5263
  msgid "http://webnus.net/plugins/modern-events-calendar/"
5264
  msgstr ""
@@ -5275,6 +4780,275 @@ msgstr "L'équipe Webmus"
5275
  msgid "http://webnus.net"
5276
  msgstr ""
5277
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5278
  #~ msgid "Attendee"
5279
  #~ msgstr "Participants"
5280
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2018-09-09 16:07+0430\n"
5
+ "PO-Revision-Date: 2018-09-09 16:07+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
 
23
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
24
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
25
  #: app/widgets/MEC.php:23
30
  msgid "Content"
31
  msgstr "Contenu"
32
 
33
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
34
+ #: app/features/mec.php:238 app/features/mec.php:264
35
  msgid "Shortcode"
36
  msgstr "Shortcode"
37
 
39
  msgid "Select from predefined shortcodes"
40
  msgstr "Sélectionnez des shortcodes prédéfinis"
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  #: app/features/colors.php:50 app/features/fes/form.php:566
43
+ #: app/features/mec/settings.php:847
44
  msgid "Event Color"
45
  msgstr "Couleur de l'événement"
46
 
47
+ #: app/features/contextual.php:55 app/features/mec.php:195
48
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
49
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
50
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
51
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
52
  #: app/features/mec/support.php:18
53
  msgid "Settings"
54
  msgstr "Paramètres"
55
 
56
+ #: app/features/contextual.php:62 app/features/events.php:910
57
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
58
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
59
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
60
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
61
+ #: app/features/mec/support.php:27
62
+ msgid "Booking Form"
63
+ msgstr "Formulaire de réservation"
64
+
65
  #: app/features/contextual.php:63
66
  msgid ""
67
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
74
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
75
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
76
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
77
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
78
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
79
  msgid "Payment Gateways"
80
  msgstr "Passerelle de paiement"
89
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
90
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
91
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
92
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
93
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
94
  msgid "Notifications"
95
  msgstr "Notifications"
150
  "\"0\" allowfullscreen></iframe>"
151
  msgstr ""
152
 
153
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
154
+ #: app/features/mec/settings.php:252
155
  msgid "General Options"
156
  msgstr "Options générales"
157
 
158
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
159
+ #: app/features/mec/settings.php:404
160
  msgid "Slugs/Permalinks"
161
  msgstr "Permaliens/Ancres"
162
 
163
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
164
+ #: app/features/mec/settings.php:424
165
  msgid "Event Details/Single Event Page"
166
  msgstr "Détail de l'événement/Page de l'événement"
167
 
168
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
169
+ #: app/features/mec/settings.php:456
170
  msgid "Currency Options"
171
  msgstr "Options de devise"
172
 
173
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
174
+ #: app/features/mec/settings.php:508
175
  msgid "Google Maps Options"
176
  msgstr "Option du plugin Google Maps"
177
 
178
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
179
+ #: app/features/mec/settings.php:582
180
  msgid "Google Recaptcha Options"
181
  msgstr "Options de Google reCAPTCHA"
182
 
183
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
184
+ #: app/features/mec/settings.php:700
185
  msgid "Countdown Options"
186
  msgstr "Options du Compte à Rebours"
187
 
188
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
189
+ #: app/features/mec/settings.php:721
190
  msgid "Social Networks"
191
  msgstr "Réseaux Sociaux"
192
 
193
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
194
+ #: app/features/mec/settings.php:746
195
  msgid "Next Event Module"
196
  msgstr "Module événement suivant"
197
 
198
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
199
+ #: app/features/mec/settings.php:774
200
  msgid "Frontend Event Submission"
201
  msgstr "Réglages du formulaire de création d’événements"
202
 
203
  #: app/features/contextual.php:298 app/features/events.php:570
204
+ #: app/features/mec/settings.php:131
205
  msgid "Exceptional Days"
206
  msgstr "Journées Exceptionnelles"
207
 
208
+ #: app/features/contextual.php:308 app/features/events.php:253
209
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
210
+ msgid "Booking"
211
+ msgstr "Réservation"
212
+
213
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
214
+ #: app/features/mec/settings.php:1019
215
  msgid "Coupons"
216
  msgstr "Bons de réduction"
217
 
218
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
219
+ #: app/features/mec/settings.php:1101
220
  msgid "BuddyPress Integration"
221
  msgstr "Intégration BuddyPress"
222
 
223
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
224
+ #: app/features/mec/settings.php:1131
225
  msgid "Mailchimp Integration"
226
  msgstr "Intégration de Mailchimp"
227
 
228
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
229
+ #: app/features/mec/settings.php:1167
230
  msgid "MEC Activation"
231
  msgstr "Activation de l'extension"
232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  #: app/features/events.php:122 app/features/ix/export.php:33
234
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
235
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
236
  msgid "Events"
237
  msgstr "Évenements"
238
 
239
+ #: app/features/events.php:123
240
+ #: app/features/mec/meta_boxes/display_options.php:678
241
+ #: app/features/mec/meta_boxes/display_options.php:716
242
+ #: app/features/mec/meta_boxes/display_options.php:745
243
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
244
+ #: app/skins/yearly_view/tpl.php:69
245
+ msgid "Event"
246
+ msgstr "Événement"
247
+
248
+ #: app/features/events.php:124 app/features/mec.php:188
249
  msgid "Add Event"
250
  msgstr "Ajouter un événement"
251
 
258
  msgid "No events found!"
259
  msgstr "Aucun événement trouvé !"
260
 
261
+ #: app/features/events.php:127
262
+ msgid "All Events"
263
+ msgstr "Tous les évènements"
264
+
265
  #: app/features/events.php:128
266
  msgid "Edit Event"
267
  msgstr ""
284
  #: app/features/mec/meta_boxes/search_form.php:285
285
  #: app/features/mec/meta_boxes/search_form.php:325
286
  #: app/features/mec/meta_boxes/search_form.php:372
287
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
288
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
289
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
290
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
292
  msgstr "Catégorie"
293
 
294
  #: app/features/events.php:143 app/features/fes/form.php:518
295
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
296
+ #: app/libraries/main.php:3967
297
  msgid "Categories"
298
  msgstr "Catégories"
299
 
360
  #: app/features/events.php:286 app/features/events.php:1631
361
  #: app/features/events.php:1675 app/features/fes/form.php:479
362
  #: app/features/ix.php:2328 app/features/ix.php:2369
363
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
364
  msgid "Event Cost"
365
  msgstr "Tarif de l'événement"
366
 
367
  #: app/features/events.php:289 app/features/fes/form.php:482
368
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
369
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
370
  #: app/skins/single/modern.php:179
371
  msgid "Cost"
379
  msgid "Guest Data"
380
  msgstr "Coordonnées de l'Invité"
381
 
382
+ #: app/features/events.php:370 app/features/fes/form.php:441
383
+ #: app/features/labels.php:151 app/features/organizers.php:268
384
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
385
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
386
+ msgid "Name"
387
+ msgstr "Nom"
388
+
389
+ #: app/features/events.php:371 app/features/events.php:945
390
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
391
+ #: app/features/organizers.php:110 app/features/organizers.php:150
392
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
393
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
394
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
395
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
396
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
397
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
398
+ #: app/skins/single/modern.php:38
399
+ msgid "Email"
400
+ msgstr "Email"
401
+
402
  #: app/features/events.php:375 app/features/fes/form.php:221
403
  msgid "Date and Time"
404
  msgstr "Date et heure"
408
  #: app/features/events.php:1675 app/features/fes/form.php:225
409
  #: app/features/fes/form.php:229 app/features/ix.php:2328
410
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
411
+ #: app/features/mec/dashboard.php:266
412
  #: app/features/mec/meta_boxes/display_options.php:42
413
  #: app/features/mec/meta_boxes/display_options.php:129
414
  #: app/features/mec/meta_boxes/display_options.php:225
440
  #: app/features/events.php:1675 app/features/fes/form.php:265
441
  #: app/features/fes/form.php:269 app/features/ix.php:2328
442
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
443
+ #: app/features/mec/dashboard.php:267
444
  msgid "End Date"
445
  msgstr "Date de fin"
446
 
477
  msgstr "Récurrence"
478
 
479
  #: app/features/events.php:481 app/features/fes/form.php:327
480
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
481
  msgid "Daily"
482
  msgstr "Quotidienne"
483
 
499
  msgstr "Hebdomadaire"
500
 
501
  #: app/features/events.php:486 app/features/fes/form.php:332
502
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
503
  msgid "Monthly"
504
  msgstr "Mensuelle"
505
 
506
  #: app/features/events.php:487 app/features/fes/form.php:333
507
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
508
  msgid "Yearly"
509
  msgstr "Annuelle"
510
 
559
  msgid "Sunday"
560
  msgstr "Dimanche"
561
 
562
+ #: app/features/events.php:508 app/features/events.php:580
563
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
564
+ #: app/modules/booking/steps/tickets.php:20
565
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
566
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
567
+ #: app/skins/single/modern.php:146
568
+ msgid "Date"
569
+ msgstr "Date"
570
+
571
  #: app/features/events.php:509 app/features/events.php:581
572
  #: app/features/events.php:623 app/features/events.php:743
573
  #: app/features/events.php:839 app/features/fes/form.php:355
615
  msgid "Exclude certain days from event occurrence dates."
616
  msgstr "Exclure certains jours des dates de l'événement ."
617
 
618
+ #: app/features/events.php:620 app/features/mec/settings.php:871
619
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
620
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
621
  msgid "Hourly Schedule"
636
  #: app/features/events.php:631 app/features/events.php:643
637
  #: app/features/events.php:1449 app/features/events.php:1631
638
  #: app/features/events.php:1675 app/features/fes/form.php:214
639
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
640
  msgid "Title"
641
  msgstr "Titre"
642
 
643
+ #: app/features/events.php:632 app/features/events.php:644
644
+ #: app/features/events.php:752 app/features/events.php:784
645
+ msgid "Description"
646
+ msgstr "Description"
647
+
648
  #: app/features/events.php:633 app/features/events.php:645
649
  #: app/features/events.php:771 app/features/events.php:803
650
  #: app/features/events.php:859 app/features/events.php:884
651
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
652
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
653
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
654
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
655
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
656
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
657
+ #: app/libraries/main.php:2177
658
  msgid "Remove"
659
  msgstr "Supprimer"
660
 
661
  #: app/features/events.php:665 app/features/fes/form.php:456
662
+ #: app/features/mec/settings.php:817
663
  msgid "Event Links"
664
  msgstr "Liens de l'évenements"
665
 
666
  #: app/features/events.php:667 app/features/fes/form.php:458
667
+ #: app/libraries/main.php:3996
668
  msgid "Event Link"
669
  msgstr "Lien de l'événement"
670
 
680
  msgstr "Lien principal. Affiché sur la page de l'événement"
681
 
682
  #: app/features/events.php:672 app/features/fes/form.php:463
683
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
684
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
685
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
686
  msgid "More Info"
708
  msgid "Total booking limits"
709
  msgstr "Nombre limite de réservation"
710
 
711
+ #: app/features/events.php:715 app/features/events.php:769
712
+ #: app/features/events.php:801 app/modules/booking/default.php:82
713
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
714
+ msgid "Unlimited"
715
+ msgstr "Illimité"
716
+
717
  #: app/features/events.php:717
718
  msgid "100"
719
  msgstr "100"
720
 
721
  #: app/features/events.php:735 app/libraries/book.php:59
722
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
723
  msgid "Tickets"
724
  msgstr "Billets"
725
 
734
  msgid "Ticket Name"
735
  msgstr "Nom du billet"
736
 
737
+ #: app/features/events.php:756 app/features/events.php:788
738
+ msgid "Price"
739
+ msgstr "Tarif"
740
+
741
  #: app/features/events.php:757 app/features/events.php:789
742
  msgid "Insert 0 for free ticket. Only numbers please."
743
  msgstr "0 = Participation Gratuite. Seulement un numéro SVP."
763
  msgstr "Hériter des options globales"
764
 
765
  #: app/features/events.php:845 app/features/events.php:870
766
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
767
  msgid "Fee Title"
768
  msgstr "Titre"
769
 
770
+ #: app/features/events.php:849 app/features/events.php:874
771
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
772
+ msgid "Amount"
773
+ msgstr "Montant"
774
+
775
  #: app/features/events.php:850 app/features/events.php:875
776
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
777
  msgid ""
778
  "Fee amount, considered as fixed amount if you set the type to amount "
779
  "otherwise considered as percentage"
781
  "Considéré comme montant fixe si vous définissez le type de montant. Sinon "
782
  "considéré comme pourcentage à ajouter au prix"
783
 
784
+ #: app/features/events.php:854 app/features/events.php:879
785
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
786
+ msgid "Percent"
787
+ msgstr "Pourcentage"
788
+
789
  #: app/features/events.php:855 app/features/events.php:880
790
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
791
  msgid "Amount (Per Ticket)"
792
  msgstr "Montant (par Billet)"
793
 
794
  #: app/features/events.php:856 app/features/events.php:881
795
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
796
  msgid "Amount (Per Booking)"
797
  msgstr "Montant (par réservation)"
798
 
799
  #: app/features/events.php:944 app/features/mec/regform.php:117
800
+ #: app/libraries/main.php:1856
801
  msgid "Text"
802
  msgstr "Texte"
803
 
804
  #: app/features/events.php:946 app/features/mec/regform.php:119
805
  #: app/features/organizers.php:102 app/features/organizers.php:146
806
+ #: app/libraries/main.php:1914
807
  msgid "Tel"
808
  msgstr "Téléphone"
809
 
810
  #: app/features/events.php:947 app/features/mec/regform.php:120
811
+ #: app/libraries/main.php:1943
812
  msgid "Textarea"
813
  msgstr "Zone de texte"
814
 
815
  #: app/features/events.php:948 app/features/mec/regform.php:121
816
+ #: app/libraries/main.php:1996
817
  msgid "Checkboxes"
818
  msgstr "Boîtes à cocher"
819
 
820
  #: app/features/events.php:949 app/features/mec/regform.php:122
821
+ #: app/libraries/main.php:2040
822
  msgid "Radio Buttons"
823
  msgstr "Boutons Radio"
824
 
867
  #: app/features/mec/meta_boxes/search_form.php:436
868
  #: app/features/mec/meta_boxes/search_form.php:443
869
  #: app/features/mec/meta_boxes/search_form.php:450
870
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
871
  msgid "Dropdown"
872
  msgstr "Menu déroulant"
873
 
874
  #: app/features/events.php:951 app/features/mec/regform.php:124
875
+ #: app/libraries/main.php:2131
876
  msgid "Agreement"
877
  msgstr ""
878
 
879
  #: app/features/events.php:952 app/features/mec/regform.php:125
880
+ #: app/libraries/main.php:1972
881
  msgid "Paragraph"
882
  msgstr "Paragraphe"
883
 
903
  #: app/features/events.php:1675 app/features/ix.php:2328
904
  #: app/features/ix.php:2369 app/features/locations.php:58
905
  #: app/features/locations.php:229 app/features/locations.php:281
906
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
907
  #: app/features/mec/meta_boxes/display_options.php:641
908
  #: app/features/mec/meta_boxes/search_form.php:38
909
  #: app/features/mec/meta_boxes/search_form.php:85
913
  #: app/features/mec/meta_boxes/search_form.php:292
914
  #: app/features/mec/meta_boxes/search_form.php:332
915
  #: app/features/mec/meta_boxes/search_form.php:379
916
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
917
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
918
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
919
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
920
  #: app/skins/single/modern.php:77
923
 
924
  #: app/features/events.php:1451 app/features/events.php:1631
925
  #: app/features/events.php:1675 app/features/ix.php:2328
926
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
927
  #: app/features/mec/meta_boxes/display_options.php:642
928
  #: app/features/mec/meta_boxes/search_form.php:45
929
  #: app/features/mec/meta_boxes/search_form.php:92
936
  #: app/features/mec/meta_boxes/search_form.php:433
937
  #: app/features/organizers.php:58 app/features/organizers.php:199
938
  #: app/features/organizers.php:255 app/features/organizers.php:257
939
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
940
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
941
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
942
  #: app/skins/single/modern.php:21
955
  msgid "iCal Export"
956
  msgstr "Exporter vers iCal"
957
 
958
+ #: app/features/events.php:1569 app/features/events.php:1570
959
+ msgid "CSV Export"
960
+ msgstr "Exporter en CSV"
961
+
962
+ #: app/features/events.php:1572 app/features/events.php:1573
963
+ msgid "MS Excel Export"
964
+ msgstr "Exporter en Microsoft Excel"
965
+
966
  #: app/features/events.php:1575 app/features/events.php:1576
967
  msgid "XML Export"
968
  msgstr "Exporter en XML"
975
  msgid "Duplicate"
976
  msgstr "Dupliquer"
977
 
978
+ #: app/features/events.php:1631 app/features/events.php:1675
979
+ #: app/features/ix.php:2328 app/features/ix.php:2369
980
+ #: app/features/labels.php:150 app/features/locations.php:228
981
+ #: app/features/organizers.php:198
982
+ msgid "ID"
983
+ msgstr "ID"
984
+
985
  #: app/features/events.php:1631 app/features/events.php:1675
986
  #: app/features/ix.php:2328 app/features/ix.php:2369
987
  msgid "Start Time"
1066
  msgstr "Note à l'Administrateur"
1067
 
1068
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1069
  msgid "Submit"
1070
  msgstr "Envoyer"
1071
 
1081
  msgid "eg. John Smith"
1082
  msgstr "ex : Surnom"
1083
 
1084
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1085
  msgid "Featured Image"
1086
  msgstr "Image Principale"
1087
 
1090
  msgstr "Supprimer l'image"
1091
 
1092
  #: app/features/fes/form.php:543 app/features/labels.php:61
1093
+ #: app/features/labels.php:194 app/features/mec.php:191
1094
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1095
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1096
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1097
  msgid "Labels"
1098
  msgstr "Labels"
1099
 
1100
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1101
  #: app/features/mec/meta_boxes/filter.php:138
1102
  msgid "Tags"
1103
  msgstr "Étiquettes"
1123
  msgid "No events found! %s"
1124
  msgstr "Aucun événement trouvé ! %s"
1125
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
  #: app/features/ix.php:95
1127
  msgid "MEC - Import / Export"
1128
  msgstr "M.E.C. - Importer / Exporter"
1155
  msgid "Third Party plugin is invalid!"
1156
  msgstr ""
1157
 
1158
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1159
+ msgid "Both of API key and Calendar ID are required!"
1160
+ msgstr "La clé API et le Calendar ID sont requis !"
1161
+
1162
  #: app/features/ix.php:1961 app/features/ix.php:2791
1163
  msgid "Please select some events to import!"
1164
  msgstr "Merci de sélectionner les évènements à Importer !"
1180
  msgid "All seems good! Please click %s for authenticating your app."
1181
  msgstr "Tout semble bon ! Merci de cliquer sur %s pour authentifier votre APP."
1182
 
1183
+ #: app/features/ix.php:2527
1184
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1185
+ msgstr "Client APP, Client Secret et Calendar ID sont tous requis !"
1186
+
1187
+ #: app/features/ix.php:2722
1188
+ #, php-format
1189
+ msgid "%s events added to Google Calendar successfully."
1190
+ msgstr "%s évènements ajoutés à Google Agenda avec succès."
1191
+
1192
+ #: app/features/ix.php:2723
1193
+ #, php-format
1194
+ msgid "%s previously added events get updated."
1195
+ msgstr "%s évènements précédemment ajoutés ont été mis à jour."
1196
+
1197
+ #: app/features/ix.php:2724
1198
+ #, php-format
1199
+ msgid "%s events failed to add for following reasons: %s"
1200
+ msgstr "%s évènements n'ont pu être ajoutés pour les raisons suivantes : %s"
1201
+
1202
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1203
+ msgid "Please insert your facebook page's link."
1204
+ msgstr "Merci d'insérer l'URL de votre Page Facebook."
1205
+
1206
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1207
+ msgid ""
1208
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1209
+ "valid facebook page link."
1210
+ msgstr ""
1211
+ "Cette page ne peut être reconnue. Merci de vérifier l'URL et de renseigner "
1212
+ "une adresse Facebook Page valide."
1213
+
1214
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1215
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1216
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1256
  "This will export all of your website events' data into your desired format."
1257
  msgstr "Ceci va exporter toutes les données d'évènements au format choisi."
1258
 
1259
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1260
  msgid "iCal"
1261
  msgstr "iCal"
1262
 
1298
  "Pour exporter des réservations d'évènements, vous pouvez utiliser les "
1299
  "actions sur la page %s ."
1300
 
1301
+ #: app/features/ix/export.php:37
1302
+ msgid "Bookings"
1303
+ msgstr "Réservations"
1304
+
1305
  #: app/features/ix/export_g_calendar.php:25
1306
  msgid "Add events to Google Calendar"
1307
  msgstr "Ajouter des évènements à Google Agenda"
1360
  msgid "Add to Google Calendar"
1361
  msgstr "Ajouter à Google Agenda"
1362
 
1363
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1364
  msgid "Checking ..."
1365
  msgstr "Vérification..."
1366
 
1402
  msgid "ICS Feed"
1403
  msgstr ""
1404
 
1405
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1406
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1407
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1408
+ #: app/features/mec/settings.php:1039
1409
  #, php-format
1410
  msgid "%s is required to use this feature."
1411
  msgstr ""
1417
  #: app/features/mec/meta_boxes/display_options.php:558
1418
  #: app/features/mec/meta_boxes/display_options.php:608
1419
  #: app/features/mec/meta_boxes/display_options.php:734
1420
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1421
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1422
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1423
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1424
  msgid "Pro version of Modern Events Calendar"
1425
  msgstr ""
1426
 
1651
  msgid "Select label color"
1652
  msgstr "Sélectionner la couleur du label"
1653
 
1654
+ #: app/features/labels.php:153 app/features/locations.php:231
1655
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1656
+ msgid "Count"
1657
+ msgstr "Apparition"
1658
+
1659
  #: app/features/labels.php:154 app/features/locations.php:232
1660
  #: app/features/organizers.php:202
1661
  msgid "Slug"
1666
  msgid "Event %s"
1667
  msgstr "%s événement"
1668
 
1669
+ #: app/features/locations.php:59 app/features/mec.php:192
1670
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1671
  msgid "Locations"
1672
  msgstr "Lieux"
1673
 
1735
  msgid "eg. City Hall"
1736
  msgstr "Ex : La Source"
1737
 
1738
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1739
  msgid "Event Location"
1740
  msgstr "Lieu de l'événement"
1741
 
1759
  msgid "Don't show map in single event page"
1760
  msgstr "Ne pas afficher de carte pour cet événement"
1761
 
1762
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1763
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1764
  msgid "Organizers"
1765
  msgstr "Organisateurs"
1766
 
1767
+ #: app/features/mec.php:194 app/features/mec.php:208
1768
+ #: app/features/mec/dashboard.php:96
1769
  msgid "Shortcodes"
1770
  msgstr "Shortcodes"
1771
 
1772
+ #: app/features/mec.php:195
1773
  msgid "MEC - Settings"
1774
  msgstr "Agenda - Paramètres"
1775
 
1776
+ #: app/features/mec.php:210
1777
  msgid "Add Shortcode"
1778
  msgstr "Ajouter un Shortcode"
1779
 
1780
+ #: app/features/mec.php:211
1781
  msgid "Add New Shortcode"
1782
  msgstr "Ajouter un nouveau Shortcode"
1783
 
1784
+ #: app/features/mec.php:212
1785
  msgid "No shortcodes found!"
1786
  msgstr "Aucun shortcode trouvé !"
1787
 
1788
+ #: app/features/mec.php:213
1789
  msgid "All Shortcodes"
1790
  msgstr "Tous les Shortcode"
1791
 
1792
+ #: app/features/mec.php:214
1793
  msgid "Edit shortcodes"
1794
  msgstr "Modifier les shortcodes"
1795
 
1796
+ #: app/features/mec.php:215
1797
  msgid "No shortcodes found in Trash!"
1798
  msgstr "Pas de shortcode dans la corbeille"
1799
 
1800
+ #: app/features/mec.php:262
1801
  msgid "Display Options"
1802
  msgstr "Options d'affichage"
1803
 
1804
+ #: app/features/mec.php:263
1805
  msgid "Filter Options"
1806
  msgstr "Options des filtres"
1807
 
1808
+ #: app/features/mec.php:265
1809
  msgid "Search Form"
1810
  msgstr "Formulaire de Recherche"
1811
 
1812
+ #: app/features/mec.php:553
1813
  msgid "Single Event Display Method"
1814
  msgstr "Méthode d'affichage"
1815
 
1816
+ #: app/features/mec.php:558
1817
  msgid "Separate Window"
1818
  msgstr "Page séparé"
1819
 
1820
+ #: app/features/mec.php:559
1821
  msgid "Modal 1"
1822
  msgstr "Pop-up"
1823
 
1824
+ #: app/features/mec/dashboard.php:58
1825
  #, php-format
1826
  msgid "Welcome %s"
1827
  msgstr "Bienvenue %s"
1828
 
1829
+ #: app/features/mec/dashboard.php:61
1830
  #, php-format
1831
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1832
  msgstr ""
1833
 
1834
+ #: app/features/mec/dashboard.php:61
1835
  msgid "Modern Event Calendar"
1836
  msgstr ""
1837
 
1838
+ #: app/features/mec/dashboard.php:61
1839
  msgid "Modern Event Calendar (Lite)"
1840
  msgstr ""
1841
 
1842
+ #: app/features/mec/dashboard.php:70
1843
  msgid "Version"
1844
  msgstr "Version"
1845
 
1846
+ #: app/features/mec/dashboard.php:79
1847
  #, php-format
1848
  msgid ""
1849
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1851
  "Spots, etc you should %s to the Pro version."
1852
  msgstr ""
1853
 
1854
+ #: app/features/mec/dashboard.php:79
1855
  msgid "lite"
1856
  msgstr ""
1857
 
1858
+ #: app/features/mec/dashboard.php:79
1859
  msgid "upgrade"
1860
  msgstr ""
1861
 
1862
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1863
  msgid "Documentation"
1864
  msgstr "Documentation"
1865
 
1866
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1867
  msgid ""
1868
  "Our documentation is simple and functional with full details and cover all "
1869
  "essential aspects from beginning to the most advanced parts."
1871
  "Notre documentation est simple et fonctionnelle, avec tous les détails et "
1872
  "couvre tous les aspects essentiels du début des parties les plus avancées."
1873
 
1874
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1875
  msgid "DOCUMENTATION"
1876
  msgstr "DOCUMENTATION"
1877
 
1878
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1879
  msgid "Support Forum"
1880
  msgstr "Forum d’aide (en Anglais)"
1881
 
1882
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1883
  msgid ""
1884
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1885
  "If you want to use this service you need to upgrade your plugin to Pro "
1886
  "version. Click on the following button."
1887
  msgstr ""
1888
 
1889
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1890
  msgid ""
1891
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1892
  "If you have any issues please don't hesitate to contact us, we will reply as "
1897
  "n'hésitez pas à nous contacter, nous vous répondrons dans les plus brefs "
1898
  "délais."
1899
 
1900
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1901
  msgid "GO PREMIUM"
1902
  msgstr ""
1903
 
1904
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1905
  msgid "OPEN A TICKET"
1906
  msgstr "Ouvrir un ticket"
1907
 
1908
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1909
  msgid "Upcoming Events"
1910
  msgstr "Prochains évenements"
1911
 
1912
+ #: app/features/mec/dashboard.php:181
1913
  msgid "Popular Gateways"
1914
  msgstr "Passerelle populaire"
1915
 
1916
+ #: app/features/mec/dashboard.php:232
1917
  msgid "Total Bookings"
1918
  msgstr "Total de réservation"
1919
 
1920
+ #: app/features/mec/dashboard.php:259
1921
  msgid "This Month"
1922
  msgstr "Ce mois"
1923
 
1924
+ #: app/features/mec/dashboard.php:260
1925
  msgid "Last Month"
1926
  msgstr "Le mois dernier"
1927
 
1928
+ #: app/features/mec/dashboard.php:261
1929
  msgid "This Year"
1930
  msgstr "Cette année"
1931
 
1932
+ #: app/features/mec/dashboard.php:262
1933
  msgid "Last Year"
1934
  msgstr "L'année dernière"
1935
 
1936
+ #: app/features/mec/dashboard.php:274
1937
  msgid "Bar"
1938
  msgstr "Barre"
1939
 
1940
+ #: app/features/mec/dashboard.php:275
1941
  msgid "Line"
1942
  msgstr "Ligne"
1943
 
1944
+ #: app/features/mec/dashboard.php:277
1945
  msgid "Filter"
1946
  msgstr "Filtre"
1947
 
1948
+ #: app/features/mec/dashboard.php:293
1949
  #, php-format
1950
  msgid "Total Sells (%s)"
1951
  msgstr "Ventes totales (%s)"
1952
 
1953
+ #: app/features/mec/dashboard.php:314
1954
  msgid "Change Log"
1955
  msgstr "Journal des modifications"
1956
 
1957
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1958
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1959
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1960
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1961
  msgid "Styling Options"
1962
  msgstr "Options de style"
1963
 
1964
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1965
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1966
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1967
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1968
  msgid "Custom CSS"
1969
  msgstr "Modifier le CSS"
1970
 
1971
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1972
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1973
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1974
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1975
  #: app/features/mec/support.php:64
1976
  msgid "Messages"
1978
 
1979
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1980
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1981
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1982
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1983
  #: app/features/mec/support.php:84
1984
  msgid "Support"
1991
  #: app/features/mec/notifications.php:409
1992
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
1993
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
1994
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
1995
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
1996
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
1997
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
1998
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
1999
+ #: app/features/mec/styling.php:335
2000
  msgid "Save Changes"
2001
  msgstr "Sauvegarder"
2002
 
2003
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2004
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2005
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
2006
  #: app/features/mec/styling.php:313
2007
  msgid "Saved"
2008
  msgstr "Sauvegardé"
2009
 
2010
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2011
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2012
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
2013
  #: app/features/mec/styling.php:314
2014
  msgid "Settings Saved!"
2015
  msgstr ""
2220
  msgid "Default values are d and F"
2221
  msgstr "La valeur par défaut est d et F"
2222
 
2223
+ #: app/features/mec/meta_boxes/display_options.php:85
2224
+ #: app/features/mec/meta_boxes/display_options.php:194
2225
+ #: app/features/mec/meta_boxes/display_options.php:244
2226
+ #: app/features/mec/meta_boxes/display_options.php:632
2227
+ #: app/features/mec/meta_boxes/display_options.php:806
2228
+ #: app/features/mec/meta_boxes/display_options.php:877
2229
+ msgid "Limit"
2230
+ msgstr "Nombre maximum"
2231
+
2232
  #: app/features/mec/meta_boxes/display_options.php:86
2233
  #: app/features/mec/meta_boxes/display_options.php:195
2234
  #: app/features/mec/meta_boxes/display_options.php:245
2308
 
2309
  #: app/features/mec/meta_boxes/display_options.php:287
2310
  #: app/features/mec/meta_boxes/display_options.php:296
2311
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2312
  msgid "List View"
2313
  msgstr "Vue liste"
2314
 
2315
  #: app/features/mec/meta_boxes/display_options.php:288
2316
  #: app/features/mec/meta_boxes/display_options.php:306
2317
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2318
  msgid "Yearly View"
2319
  msgstr ""
2320
 
2325
 
2326
  #: app/features/mec/meta_boxes/display_options.php:290
2327
  #: app/features/mec/meta_boxes/display_options.php:326
2328
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2329
  msgid "Weekly View"
2330
  msgstr "Vue Hebdomadaire"
2331
 
2332
  #: app/features/mec/meta_boxes/display_options.php:291
2333
  #: app/features/mec/meta_boxes/display_options.php:336
2334
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2335
  msgid "Daily View"
2336
  msgstr "Vue Quotidienne"
2337
 
2571
  msgid "Show Search Form"
2572
  msgstr "Afficher le champ de recherche"
2573
 
2574
+ #: app/features/mec/meta_boxes/search_form.php:33
2575
+ #: app/features/mec/meta_boxes/search_form.php:40
2576
+ #: app/features/mec/meta_boxes/search_form.php:47
2577
+ #: app/features/mec/meta_boxes/search_form.php:54
2578
+ #: app/features/mec/meta_boxes/search_form.php:61
2579
+ #: app/features/mec/meta_boxes/search_form.php:68
2580
+ #: app/features/mec/meta_boxes/search_form.php:80
2581
+ #: app/features/mec/meta_boxes/search_form.php:87
2582
+ #: app/features/mec/meta_boxes/search_form.php:94
2583
+ #: app/features/mec/meta_boxes/search_form.php:101
2584
+ #: app/features/mec/meta_boxes/search_form.php:108
2585
+ #: app/features/mec/meta_boxes/search_form.php:115
2586
+ #: app/features/mec/meta_boxes/search_form.php:127
2587
+ #: app/features/mec/meta_boxes/search_form.php:134
2588
+ #: app/features/mec/meta_boxes/search_form.php:141
2589
+ #: app/features/mec/meta_boxes/search_form.php:148
2590
+ #: app/features/mec/meta_boxes/search_form.php:155
2591
+ #: app/features/mec/meta_boxes/search_form.php:162
2592
+ #: app/features/mec/meta_boxes/search_form.php:174
2593
+ #: app/features/mec/meta_boxes/search_form.php:181
2594
+ #: app/features/mec/meta_boxes/search_form.php:193
2595
+ #: app/features/mec/meta_boxes/search_form.php:200
2596
+ #: app/features/mec/meta_boxes/search_form.php:207
2597
+ #: app/features/mec/meta_boxes/search_form.php:214
2598
+ #: app/features/mec/meta_boxes/search_form.php:221
2599
+ #: app/features/mec/meta_boxes/search_form.php:228
2600
+ #: app/features/mec/meta_boxes/search_form.php:240
2601
+ #: app/features/mec/meta_boxes/search_form.php:247
2602
+ #: app/features/mec/meta_boxes/search_form.php:254
2603
+ #: app/features/mec/meta_boxes/search_form.php:261
2604
+ #: app/features/mec/meta_boxes/search_form.php:268
2605
+ #: app/features/mec/meta_boxes/search_form.php:275
2606
+ #: app/features/mec/meta_boxes/search_form.php:287
2607
+ #: app/features/mec/meta_boxes/search_form.php:294
2608
+ #: app/features/mec/meta_boxes/search_form.php:301
2609
+ #: app/features/mec/meta_boxes/search_form.php:308
2610
+ #: app/features/mec/meta_boxes/search_form.php:315
2611
+ #: app/features/mec/meta_boxes/search_form.php:327
2612
+ #: app/features/mec/meta_boxes/search_form.php:334
2613
+ #: app/features/mec/meta_boxes/search_form.php:341
2614
+ #: app/features/mec/meta_boxes/search_form.php:348
2615
+ #: app/features/mec/meta_boxes/search_form.php:355
2616
+ #: app/features/mec/meta_boxes/search_form.php:362
2617
+ #: app/features/mec/meta_boxes/search_form.php:374
2618
+ #: app/features/mec/meta_boxes/search_form.php:381
2619
+ #: app/features/mec/meta_boxes/search_form.php:388
2620
+ #: app/features/mec/meta_boxes/search_form.php:395
2621
+ #: app/features/mec/meta_boxes/search_form.php:402
2622
+ #: app/features/mec/meta_boxes/search_form.php:409
2623
+ #: app/features/mec/meta_boxes/search_form.php:421
2624
+ #: app/features/mec/meta_boxes/search_form.php:428
2625
+ #: app/features/mec/meta_boxes/search_form.php:435
2626
+ #: app/features/mec/meta_boxes/search_form.php:442
2627
+ #: app/features/mec/meta_boxes/search_form.php:449
2628
+ #: app/features/mec/meta_boxes/search_form.php:456
2629
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2630
+ #: app/features/mec/settings.php:554
2631
+ msgid "Disabled"
2632
+ msgstr "Désactivé"
2633
+
2634
  #: app/features/mec/meta_boxes/search_form.php:59
2635
  #: app/features/mec/meta_boxes/search_form.php:106
2636
  #: app/features/mec/meta_boxes/search_form.php:153
2869
  msgid "Invoice Link"
2870
  msgstr ""
2871
 
2872
+ #: app/features/mec/notifications.php:140
2873
+ #: app/features/mec/notifications.php:177
2874
+ #: app/features/mec/notifications.php:214
2875
+ #: app/features/mec/notifications.php:255
2876
+ #: app/features/mec/notifications.php:307
2877
+ msgid "Total Attendees"
2878
+ msgstr ""
2879
+
2880
  #: app/features/mec/notifications.php:145
2881
  msgid "Booking Verification"
2882
  msgstr "Vérification de réservation"
2893
  msgid "Email/Booking verification link."
2894
  msgstr "Vérification des réservations."
2895
 
2896
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2897
  msgid "Booking Confirmation"
2898
  msgstr "Confirmation de réservation"
2899
 
2976
  msgid "Status of event"
2977
  msgstr "Statut de l'événement"
2978
 
2979
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
2980
  msgid "Event Note"
2981
  msgstr "Note sur l'événement"
2982
 
2984
  msgid "Admin events management link."
2985
  msgstr "Lien d'administration d'événements."
2986
 
2987
+ #: app/features/mec/settings.php:47
2988
  msgid "Archive Page Options"
2989
  msgstr ""
2990
 
2991
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
2992
  msgid "Export Module Options"
2993
  msgstr "Options du Module d'Export"
2994
 
2995
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
2996
  msgid "Local Time Module"
2997
  msgstr "Module d'Heure Locale"
2998
 
2999
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
3000
  msgid "QR Code Module"
3001
  msgstr ""
3002
 
3003
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
3004
  msgid "Weather Module"
3005
  msgstr ""
3006
 
3007
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
3008
  #, fuzzy
3009
  msgid "Additional Organizers"
3010
  msgstr "Tous les organisateurs"
3011
 
3012
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
3013
  msgid "Taxes / Fees"
3014
  msgstr "Taxes et frais"
3015
 
3016
+ #: app/features/mec/settings.php:255
3017
  msgid "Time Format"
3018
  msgstr "Format d'heure"
3019
 
3020
+ #: app/features/mec/settings.php:258
3021
  msgid "12 hours format with AM/PM"
3022
  msgstr "Affichage sur 12 heures avec \"du matin\" / \"de l'après midi\""
3023
 
3024
+ #: app/features/mec/settings.php:259
3025
  msgid "24 hours format"
3026
  msgstr "Affichage sur 24 heures"
3027
 
3028
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3029
  msgid ""
3030
  "This option is for showing start/end time of events on frontend of website."
3031
  msgstr ""
3032
  "Cette option sert à montrer le temps de début/fin, des événements sur "
3033
  "l'affichage du site"
3034
 
3035
+ #: app/features/mec/settings.php:266
3036
  msgid "Hide Events"
3037
  msgstr "Cacher l'évenements"
3038
 
3039
+ #: app/features/mec/settings.php:269
3040
  msgid "On Event Start"
3041
  msgstr "Au début de l'événement"
3042
 
3043
+ #: app/features/mec/settings.php:270
3044
  msgid "+1 Hour after start"
3045
  msgstr "1 Heure après le début"
3046
 
3047
+ #: app/features/mec/settings.php:271
3048
  msgid "+2 Hours after start"
3049
  msgstr "2 Heures après le début"
3050
 
3051
+ #: app/features/mec/settings.php:272
3052
  msgid "On Event End"
3053
  msgstr "À la fin de l'événement"
3054
 
3055
+ #: app/features/mec/settings.php:280
3056
  msgid "Multiple Day Events"
3057
  msgstr "Événements à Dates Multiples"
3058
 
3059
+ #: app/features/mec/settings.php:283
3060
  msgid "Show only first day on List/Grid/Slider skins"
3061
  msgstr ""
3062
  "Afficher uniquement le premier jour sous forme de Liste/Grille/Carrousel"
3063
 
3064
+ #: app/features/mec/settings.php:284
3065
  msgid "Show only first day on all skins"
3066
  msgstr "Afficher uniquement le premier jour sur tous les styles"
3067
 
3068
+ #: app/features/mec/settings.php:285
3069
  msgid "Show all days"
3070
  msgstr "Afficher tous les jours"
3071
 
3072
+ #: app/features/mec/settings.php:287
3073
  msgid ""
3074
  "For showing all days of multiple day events on frontend or only show the "
3075
  "first day."
3077
  "Pour afficher toutes les dates d'un événement de plusieurs jours sur le "
3078
  "frontend ou seulement afficher le premier jour."
3079
 
3080
+ #: app/features/mec/settings.php:293
3081
  msgid "Remove MEC Data on Plugin Uninstall"
3082
  msgstr "Retirer les données de M.E.C. lors de la désinstallation"
3083
 
3084
+ #: app/features/mec/settings.php:297
3085
+ msgid "Enabled"
3086
+ msgstr "Activé"
3087
+
3088
+ #: app/features/mec/settings.php:303
3089
  msgid "Exclude Date Suffix"
3090
  msgstr "Retiré les suffixes de dates "
3091
 
3092
+ #: app/features/mec/settings.php:306
3093
  msgid "Remove suffix from calendars"
3094
  msgstr "Retirer les suffixes de date des Calendriers"
3095
 
3096
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3097
  msgid "Weekdays"
3098
  msgstr "Jours de la Semaine"
3099
 
3100
+ #: app/features/mec/settings.php:321
3101
  msgid ""
3102
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3103
  "and Friday."
3104
  msgstr "Attention : Par défaut Lundi, Mardi, Mercredi, Jeudi, Vendredi."
3105
 
3106
+ #: app/features/mec/settings.php:328
3107
  msgid "Weekends"
3108
  msgstr "Jour du Week End"
3109
 
3110
+ #: app/features/mec/settings.php:336
3111
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3112
  msgstr "Attention : Par défaut Samedi et Dimanche ."
3113
 
3114
+ #: app/features/mec/settings.php:344
3115
  msgid "Archive Pages"
3116
  msgstr ""
3117
 
3118
+ #: app/features/mec/settings.php:347
3119
  msgid "Archive Page Title"
3120
  msgstr "Titre de la page archive"
3121
 
3122
+ #: app/features/mec/settings.php:350
3123
  msgid "Default value is Events"
3124
  msgstr "La valeur par défaut est \"Events\""
3125
 
3126
+ #: app/features/mec/settings.php:355
3127
  msgid "Archive Page Skin"
3128
  msgstr "Style de la page des archives"
3129
 
3130
+ #: app/features/mec/settings.php:362
3131
  msgid "Default value is Calendar/Monthly View"
3132
  msgstr "La valeur par défaut est Calendrier / Mensuel"
3133
 
3134
+ #: app/features/mec/settings.php:367
3135
  msgid "Category Page Skin"
3136
  msgstr "Apparence page de catégorie"
3137
 
3138
+ #: app/features/mec/settings.php:374
3139
  msgid "Default value is List View"
3140
  msgstr "La valeur par défaut est l'apparence \"liste\""
3141
 
3142
+ #: app/features/mec/settings.php:379
3143
  msgid "Category Events Method"
3144
  msgstr ""
3145
 
3146
+ #: app/features/mec/settings.php:383
3147
  msgid "Expired Events"
3148
  msgstr ""
3149
 
3150
+ #: app/features/mec/settings.php:385
3151
  msgid "Default value is Upcoming Events"
3152
  msgstr ""
3153
 
3154
+ #: app/features/mec/settings.php:390
3155
  msgid "Events Archive Status"
3156
  msgstr "Archivage des Événements"
3157
 
3158
+ #: app/features/mec/settings.php:393
3159
  msgid "Enabled (Recommended)"
3160
  msgstr "Activé (Recommandé)"
3161
 
3162
+ #: app/features/mec/settings.php:396
3163
  msgid ""
3164
  "If you disable it, then you should create a page as archive page of MEC. "
3165
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3170
  "E.C. . Aussi, cela désactivera également toutes les règles de réécriture de "
3171
  "M.E.C. ."
3172
 
3173
+ #: app/features/mec/settings.php:406
3174
  msgid "Main Slug"
3175
  msgstr "Identifiant des événements"
3176
 
3177
+ #: app/features/mec/settings.php:409
3178
  msgid ""
3179
  "Default value is events. Valid characters are lowercase a-z, - character and "
3180
  "numbers."
3182
  "La valeur par défaut est events. Les caractères valides sont les lettres "
3183
  "minuscules (a-z) et les chiffres"
3184
 
3185
+ #: app/features/mec/settings.php:413
3186
  msgid "Category Slug"
3187
  msgstr "Identifiant de la catégorie"
3188
 
3189
+ #: app/features/mec/settings.php:416
3190
  msgid ""
3191
  "It's slug of MEC categories, you can change it to events-cat or something "
3192
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3197
  "category. Les caractères valides sont les lettres minuscules (a-z) et les "
3198
  "chiffres."
3199
 
3200
+ #: app/features/mec/settings.php:426
3201
  msgid "Single Event Date Format"
3202
  msgstr "Format de date des événements"
3203
 
3204
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3205
  msgid "Default is M d Y"
3206
  msgstr "Par défaut : M d Y"
3207
 
3208
+ #: app/features/mec/settings.php:433
3209
  msgid "Date Method"
3210
  msgstr "Méthode de date"
3211
 
3212
+ #: app/features/mec/settings.php:436
3213
  msgid "Next occurrence date"
3214
  msgstr "Date de la prochaine occurence"
3215
 
3216
+ #: app/features/mec/settings.php:437
3217
  msgid "Referred date"
3218
  msgstr "Date référée"
3219
 
3220
+ #: app/features/mec/settings.php:439
3221
  msgid ""
3222
  "\"Referred date\" shows the event date based on referred date in event list."
3223
  msgstr ""
3224
  "\"Date Référée\" montre la date de l'événement basée sur la date référée "
3225
  "dans la liste d'événements."
3226
 
3227
+ #: app/features/mec/settings.php:443
3228
  msgid "Single Event Style"
3229
  msgstr "Style de la page d'événement"
3230
 
3231
+ #: app/features/mec/settings.php:446
3232
  msgid "Default Style"
3233
  msgstr "Style par défaut"
3234
 
3235
+ #: app/features/mec/settings.php:447
3236
  msgid "Modern Style"
3237
  msgstr "Style moderne"
3238
 
3239
+ #: app/features/mec/settings.php:449
3240
  msgid "Choose your single event style."
3241
  msgstr "Choisissez le style de votre page d'événement."
3242
 
3243
+ #: app/features/mec/settings.php:458
3244
  msgid "Currency"
3245
  msgstr "Devise"
3246
 
3247
+ #: app/features/mec/settings.php:468
3248
  msgid "Currency Sign"
3249
  msgstr "Symbole de la devise"
3250
 
3251
+ #: app/features/mec/settings.php:471
3252
  msgid "Default value will be \"currency\" if you leave it empty."
3253
  msgstr "Si elle est vide, la valeur par défaut sera utilisée."
3254
 
3255
+ #: app/features/mec/settings.php:475
3256
  msgid "Currency Position"
3257
  msgstr "Position du symbole de devise"
3258
 
3259
+ #: app/features/mec/settings.php:478
3260
  msgid "Before $10"
3261
  msgstr "Avant €10"
3262
 
3263
+ #: app/features/mec/settings.php:479
3264
  msgid "After 10$"
3265
  msgstr "Après 10€"
3266
 
3267
+ #: app/features/mec/settings.php:484
3268
  msgid "Thousand Separator"
3269
  msgstr "Séparateur des milliers"
3270
 
3271
+ #: app/features/mec/settings.php:490
3272
  msgid "Decimal Separator"
3273
  msgstr "Séparateur des décimales"
3274
 
3275
+ #: app/features/mec/settings.php:500
3276
  msgid "No decimal"
3277
  msgstr "Pas de décimales"
3278
 
3279
+ #: app/features/mec/settings.php:516
3280
  msgid "Show Google Maps on event page"
3281
  msgstr "Montrer la Carte sur les pages d'événement"
3282
 
3283
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3284
+ #: app/features/mec/settings.php:1140
3285
  msgid "API Key"
3286
  msgstr "Clés API"
3287
 
3288
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3289
+ #: app/features/mec/settings.php:1150
3290
  msgid "Required!"
3291
  msgstr "Requis !"
3292
 
3293
+ #: app/features/mec/settings.php:528
3294
  msgid "Zoom level"
3295
  msgstr "Niveau de Zoom"
3296
 
3297
+ #: app/features/mec/settings.php:535
3298
  msgid ""
3299
  "For Google Maps module in single event page. In Google Maps skin, it will "
3300
  "caculate the zoom level automatically based on event boundaries."
3303
  "calculera automatiquement le niveau de zoom en fonction de l'emplacement des "
3304
  "événements."
3305
 
3306
+ #: app/features/mec/settings.php:539
3307
  msgid "Google Maps Style"
3308
  msgstr "Style de Google Map"
3309
 
3310
+ #: app/features/mec/settings.php:543
3311
  msgid "Default"
3312
  msgstr "Par défaut"
3313
 
3314
+ #: app/features/mec/settings.php:551
3315
  msgid "Direction on single event"
3316
  msgstr "Adresse sur page d'Evénement"
3317
 
3318
+ #: app/features/mec/settings.php:555
3319
  msgid "Simple Method"
3320
  msgstr "Méthode simple"
3321
 
3322
+ #: app/features/mec/settings.php:556
3323
  msgid "Advanced Method"
3324
  msgstr "Méthode avancée"
3325
 
3326
+ #: app/features/mec/settings.php:561
3327
  msgid "Lightbox Date Format"
3328
  msgstr "Format de Date de la Lightbox"
3329
 
3330
+ #: app/features/mec/settings.php:564
3331
  msgid "Default value is M d Y"
3332
  msgstr "La valeur par défaut est M d Y"
3333
 
3334
+ #: app/features/mec/settings.php:568
3335
  msgid "Google Maps API"
3336
  msgstr "Google Maps API"
3337
 
3338
+ #: app/features/mec/settings.php:572
3339
  msgid "Don't load Google Maps API library"
3340
  msgstr "Ne pas charger la bibliothèque de l'API Google Maps"
3341
 
3342
+ #: app/features/mec/settings.php:574
3343
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3344
  msgstr ""
3345
  "Cochez-le uniquement si un autre plug-in / thème charge l'API Google Maps"
3346
 
3347
+ #: app/features/mec/settings.php:586
3348
  msgid "Enable Google Recaptcha"
3349
  msgstr "Activer Google Recaptcha"
3350
 
3351
+ #: app/features/mec/settings.php:593
3352
  msgid "Enable on booking form"
3353
  msgstr "Activer le formulaire de réservation"
3354
 
3355
+ #: app/features/mec/settings.php:599
3356
  msgid "Enable on \"Frontend Event Submittion\" form"
3357
  msgstr "Activer le formulaire d'ajout d'événement"
3358
 
3359
+ #: app/features/mec/settings.php:603
3360
  msgid "Site Key"
3361
  msgstr "Site Key"
3362
 
3363
+ #: app/features/mec/settings.php:609
3364
+ msgid "Secret Key"
3365
+ msgstr "Clef secrète"
3366
+
3367
+ #: app/features/mec/settings.php:623
3368
  msgid ""
3369
  "Show export module (iCal export and add to Google calendars) on event page"
3370
  msgstr ""
3371
  "Afficher module d'exportation (iCal export et ajouter des calendriers "
3372
  "Google) à la page de l'événement"
3373
 
3374
+ #: app/features/mec/settings.php:630
3375
  msgid "Google Calendar"
3376
  msgstr "Google Calendar"
3377
 
3378
+ #: app/features/mec/settings.php:650
3379
  msgid "Show event time based on local time of visitor on event page"
3380
  msgstr ""
3381
  "Afficher l'heure des événement en fonction de l'heure locale des visiteurs"
3382
 
3383
+ #: app/features/mec/settings.php:666
3384
  msgid "Show QR code of event in details page and booking invoice"
3385
  msgstr ""
3386
 
3387
+ #: app/features/mec/settings.php:684
3388
  msgid "Show weather module on event page"
3389
  msgstr ""
3390
 
3391
+ #: app/features/mec/settings.php:692
3392
  #, php-format
3393
  msgid "You can get a free API Key from %s"
3394
  msgstr ""
3395
 
3396
+ #: app/features/mec/settings.php:704
3397
  msgid "Show countdown module on event page"
3398
  msgstr "Afficher le module de compte à rebours sur la page de l'événement"
3399
 
3400
+ #: app/features/mec/settings.php:709
3401
  msgid "Countdown Style"
3402
  msgstr "Style du compte à rebours"
3403
 
3404
+ #: app/features/mec/settings.php:712
3405
  msgid "Plain Style"
3406
  msgstr "Simple"
3407
 
3408
+ #: app/features/mec/settings.php:713
3409
  msgid "Flip Style"
3410
  msgstr "Horloge Flip-Flap"
3411
 
3412
+ #: app/features/mec/settings.php:725
3413
  msgid "Show social network module"
3414
  msgstr "Afficher le Module de Réseau Social"
3415
 
3416
+ #: app/features/mec/settings.php:750
3417
  msgid "Show next event module on event page"
3418
  msgstr "Afficher le module événement suivant sur la page d'un événement"
3419
 
3420
+ #: app/features/mec/settings.php:755
3421
  msgid "Method"
3422
  msgstr "Méthode"
3423
 
3424
+ #: app/features/mec/settings.php:758
3425
  msgid "Next Occurrence of Current Event"
3426
  msgstr "Prochaine occurrence de l'événement en cours"
3427
 
3428
+ #: app/features/mec/settings.php:759
3429
  msgid "Next Occurrence of Other Events"
3430
  msgstr "Prochaine Occurrence de l'événement à venir"
3431
 
3432
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3433
  msgid "Date Format"
3434
  msgstr "Format de date"
3435
 
3436
+ #: app/features/mec/settings.php:776
3437
  msgid "Events List Page"
3438
  msgstr "Page liste des événements"
3439
 
3440
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3441
  #, php-format
3442
  msgid "Put %s shortcode into the page."
3443
  msgstr "Mettez %s le shortcode de dans la page."
3444
 
3445
+ #: app/features/mec/settings.php:788
3446
  msgid "Add/Edit Events Page"
3447
  msgstr "Ajouter/Éditer page d'événement"
3448
 
3449
+ #: app/features/mec/settings.php:802
3450
  msgid "Enable event submission by guest (Not logged-in) users"
3451
  msgstr ""
3452
  "Activer l'inscription d’événements pour les utilisateurs invités (non "
3453
  "connecté)."
3454
 
3455
+ #: app/features/mec/settings.php:809
3456
  msgid "Enable mandatory email and name for guest user"
3457
  msgstr "Activer la demande de Nom / Mail pour les utilisateurs invités"
3458
 
3459
+ #: app/features/mec/settings.php:813
3460
  msgid "Frontend Event Submission Sections"
3461
  msgstr "Réglages du formulaire de Création d’Événements"
3462
 
3463
+ #: app/features/mec/settings.php:835
3464
  msgid "Event Categories"
3465
  msgstr "Catégories de l'évènements"
3466
 
3467
+ #: app/features/mec/settings.php:841
3468
  msgid "Event Labels"
3469
  msgstr "Labels d'événement"
3470
 
3471
+ #: app/features/mec/settings.php:853
3472
  msgid "Event Tags"
3473
  msgstr "Étiquettes de l'évenement"
3474
 
3475
+ #: app/features/mec/settings.php:865
3476
  msgid "Event Organizer"
3477
  msgstr "Organisateur d'événements"
3478
 
3479
+ #: app/features/mec/settings.php:877
3480
  msgid "Booking Options"
3481
  msgstr "Options de Réservation"
3482
 
3483
+ #: app/features/mec/settings.php:883
3484
  msgid "Fees/Taxes Options"
3485
  msgstr "Options de Frais/Taxes"
3486
 
3487
+ #: app/features/mec/settings.php:891
3488
  #, php-format
3489
  msgid ""
3490
  "Users can put a note for editors while they're submitting the event. Also "
3495
  "Ajouter %%event_note%% dans le formulaire de notification par mail pour les "
3496
  "recevoir."
3497
 
3498
+ #: app/features/mec/settings.php:895
3499
  msgid "Visibility of Note"
3500
  msgstr "Visibilité de la Note"
3501
 
3502
+ #: app/features/mec/settings.php:898
3503
  msgid "Always"
3504
  msgstr "Toujours"
3505
 
3506
+ #: app/features/mec/settings.php:899
3507
  msgid "While event is not published"
3508
  msgstr "Tant que l'événement n'est pas publié"
3509
 
3510
+ #: app/features/mec/settings.php:902
3511
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3512
  msgstr ""
3513
  "La Note est visible sur le formulaire de soumission d'événement et dans le "
3514
  "menu d'édition d'un événement en backend."
3515
 
3516
+ #: app/features/mec/settings.php:908
3517
  msgid "Exceptional days"
3518
  msgstr "Journées Exceptionnelles"
3519
 
3520
+ #: app/features/mec/settings.php:912
3521
  msgid "Show exceptional days option on Add/Edit events page"
3522
  msgstr ""
3523
  "Afficher l'option \"Journée Exceptionnelle\" lors de la création/édition de "
3524
  "la page d'un événement"
3525
 
3526
+ #: app/features/mec/settings.php:913
3527
  msgid ""
3528
  "Using this option you can include/exclude certain days to/from event "
3529
  "occurrence dates."
3531
  "En utilisant cette option, vous pouvez inclure / exclure certains jours des "
3532
  "dates d'occurrence d'un événement."
3533
 
3534
+ #: app/features/mec/settings.php:923
3535
  #, fuzzy
3536
  msgid ""
3537
  "Show additional organizers option on Add/Edit events page and single event "
3540
  "Afficher l'option \"Journée Exceptionnelle\" lors de la création/édition de "
3541
  "la page d'un événement"
3542
 
3543
+ #: app/features/mec/settings.php:937
3544
  msgid "Enable booking module"
3545
  msgstr "Activer le module de réservation"
3546
 
3547
+ #: app/features/mec/settings.php:945
3548
  msgid "Default is Y-m-d"
3549
  msgstr "Par défaut: A-m-j"
3550
 
3551
+ #: app/features/mec/settings.php:949
3552
  msgid "Maximum Dates"
3553
  msgstr "Nb d'événements maximum"
3554
 
3555
+ #: app/features/mec/settings.php:951
3556
  msgid "Default is 6"
3557
  msgstr "Par défaut: 6"
3558
 
3559
+ #: app/features/mec/settings.php:955
3560
  msgid "Thank You Page"
3561
  msgstr "Page de Remerciement"
3562
 
3563
+ #: app/features/mec/settings.php:963
3564
  msgid ""
3565
  "User redirects to this page after booking. Leave it empty if you want to "
3566
  "disable it."
3568
  "L'Utilisateur est redirigé vers cette page après avoir réservé. Laisser vide "
3569
  "pour désactiver."
3570
 
3571
+ #: app/features/mec/settings.php:971
3572
  msgid "Enable Express Attendees Form"
3573
  msgstr ""
3574
 
3575
+ #: app/features/mec/settings.php:973
3576
  msgid ""
3577
  "Users are able to apply first attendee information for other attendees in "
3578
  "the booking form."
3579
  msgstr ""
3580
 
3581
+ #: app/features/mec/settings.php:976
3582
  msgid "Email verification"
3583
  msgstr "Vérification de l’email"
3584
 
3585
+ #: app/features/mec/settings.php:982
3586
  msgid "Auto verification for free bookings"
3587
  msgstr "Vérification automatique pour les réservations gratuites"
3588
 
3589
+ #: app/features/mec/settings.php:991
3590
  msgid "Auto verification for paid bookings"
3591
  msgstr "Vérification automatique des réservations payées"
3592
 
3593
+ #: app/features/mec/settings.php:1001
3594
  msgid "Auto confirmation for free bookings"
3595
  msgstr "Confirmation automatique pour les réservations gratuites"
3596
 
3597
+ #: app/features/mec/settings.php:1010
3598
  msgid "Auto confirmation for paid bookings"
3599
  msgstr "Confirmation automatique pour les réservations payées"
3600
 
3601
+ #: app/features/mec/settings.php:1027
3602
  msgid "Enable coupons module"
3603
  msgstr "Activer module de coupons"
3604
 
3605
+ #: app/features/mec/settings.php:1044
3606
  msgid "Enable taxes / fees module"
3607
  msgstr "Activer le module de taxes / frais"
3608
 
3609
+ #: app/features/mec/settings.php:1049
3610
  msgid "Add Fee"
3611
  msgstr "Ajouter frais"
3612
 
3613
+ #: app/features/mec/settings.php:1105
3614
  msgid "Enable BuddyPress Integration"
3615
  msgstr "Activer l'intégration de BuddyPress"
3616
 
3617
+ #: app/features/mec/settings.php:1112
3618
  msgid "Show \"Attendees Module\" in event details page"
3619
  msgstr "Afficher le \"Module des Participants\" sur la page d'Évènements"
3620
 
3621
+ #: app/features/mec/settings.php:1116
3622
  msgid "Attendees Limit"
3623
  msgstr "Limite de Participants"
3624
 
3625
+ #: app/features/mec/settings.php:1124
3626
  msgid "Add booking activity to user profile"
3627
  msgstr "Ajouter les activités de réservation sur les profiles"
3628
 
3629
+ #: app/features/mec/settings.php:1135
3630
  msgid "Enable Mailchimp Integration"
3631
  msgstr "Activer l'intégration de MailChimp"
3632
 
3633
+ #: app/features/mec/settings.php:1147
3634
  msgid "List ID"
3635
  msgstr "ID de Liste"
3636
 
3637
+ #: app/features/mec/settings.php:1154
3638
  msgid "Subscription Status"
3639
  msgstr "Statut des Souscriptions"
3640
 
3641
+ #: app/features/mec/settings.php:1157
3642
  msgid "Subscribe automatically"
3643
  msgstr "Souscrire Automatiquement"
3644
 
3645
+ #: app/features/mec/settings.php:1158
3646
  msgid "Subscribe by verification"
3647
  msgstr "Souscrire après vérification"
3648
 
3649
+ #: app/features/mec/settings.php:1160
3650
  msgid ""
3651
  "If you choose \"Subscribe by verification\" then an email will send to user "
3652
  "by mailchimp for subscription verification."
3654
  "Si vous choisissez \"Souscrire après vérification\", un email sera envoyé à "
3655
  "l'utilisateur par Mailchimp pour valider son inscription."
3656
 
3657
+ #: app/features/mec/settings.php:1170
3658
  #, php-format
3659
  msgid "%s is required to use this section."
3660
  msgstr ""
3661
 
3662
+ #: app/features/mec/settings.php:1173
3663
  msgid "Purchase Code"
3664
  msgstr "Code d'achat"
3665
 
3666
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3667
+ #: app/features/mec/settings.php:1262
3668
+ msgid "Verified"
3669
+ msgstr "Vérifié"
3670
+
3671
+ #: app/features/mec/settings.php:1180
3672
  msgid "UnVerified"
3673
  msgstr "Non vérifié"
3674
 
3675
+ #: app/features/mec/settings.php:1182
3676
  msgid ""
3677
  "Please insert your purchase code validation. read documentation for more "
3678
  "information."
3679
  msgstr "Merci d'insérer votre code d'achat."
3680
 
3681
+ #: app/features/mec/settings.php:1185
3682
  msgid "Product Name"
3683
  msgstr ""
3684
 
3685
+ #: app/features/mec/settings.php:1188
3686
  msgid "1 License for MEC Plugin"
3687
  msgstr ""
3688
 
3689
+ #: app/features/mec/settings.php:1189
3690
  msgid "5 License for MEC Plugin"
3691
  msgstr ""
3692
 
3693
+ #: app/features/mec/settings.php:1190
3694
  msgid "10 License for MEC Plugin"
3695
  msgstr ""
3696
 
3697
+ #: app/features/mec/settings.php:1197
3698
  msgid "MEC Deactivation"
3699
  msgstr "M.E.C. Désactivation"
3700
 
3701
+ #: app/features/mec/settings.php:1199
3702
  msgid "Deactivate"
3703
  msgstr "Désactiver"
3704
 
3705
+ #: app/features/mec/settings.php:1201
3706
  msgid ""
3707
  "For deactivation first delete your purchase from above field then press save "
3708
  "after that click on deactivate for deactivate this purchase code from this "
3712
  "formulaire puis appuyer sur save. Le code sera utilisable pour un autre "
3713
  "domaine."
3714
 
3715
+ #: app/features/mec/settings.php:1264
3716
  msgid "Please Refresh Page"
3717
  msgstr "Merci de Rafraichir la Page"
3718
 
3869
  msgid "eg. https://webnus.net"
3870
  msgstr "ex : http://www.votre-site.fr/"
3871
 
3872
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3873
  #: app/skins/single.php:194
3874
  msgid "Other Organizers"
3875
  msgstr ""
3884
  msgid "%s Price"
3885
  msgstr ""
3886
 
3887
+ #: app/libraries/book.php:516
3888
+ msgid "Discount"
3889
+ msgstr "Réduction"
3890
+
3891
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3892
+ #: app/modules/booking/default.php:369
3893
+ msgid "Download Invoice"
3894
+ msgstr ""
3895
+
3896
  #: app/libraries/factory.php:148
3897
  msgid "M.E. Calendar"
3898
  msgstr "M.E Calendrier"
3966
  msgid "There is no excerpt because this is a protected post."
3967
  msgstr "Il n’y a aucun extrait car ce post est protégé."
3968
 
3969
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
3970
  msgid "Grid View"
3971
  msgstr "Vue en grille"
3972
 
3973
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
3974
  msgid "Agenda View"
3975
  msgstr ""
3976
 
3977
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
3978
  msgid "Full Calendar"
3979
  msgstr "Calendrier complet"
3980
 
3981
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
3982
  msgid "Calendar/Monthly View"
3983
  msgstr "Calendrier / Mensuel"
3984
 
3985
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
3986
  msgid "Timetable View"
3987
  msgstr ""
3988
 
3989
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
3990
  msgid "Masonry View"
3991
  msgstr ""
3992
 
3993
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
3994
  msgid "Map View"
3995
  msgstr "Vue sur Carte (Map)"
3996
 
4014
  msgid "Slider View"
4015
  msgstr "Vue sur Slider"
4016
 
4017
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
4018
  msgid "SU"
4019
  msgstr "DIM."
4020
 
4021
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
4022
  msgid "MO"
4023
  msgstr "LUN."
4024
 
4025
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
4026
  msgid "TU"
4027
  msgstr "MAR."
4028
 
4029
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
4030
  msgid "WE"
4031
  msgstr "MER."
4032
 
4033
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
4034
  msgid "TH"
4035
  msgstr "JEU."
4036
 
4037
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
4038
  msgid "FR"
4039
  msgstr "VEN."
4040
 
4041
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
4042
  msgid "SA"
4043
  msgstr "SAM."
4044
 
4062
  msgid "Twitter"
4063
  msgstr "Twitter"
4064
 
4065
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
4066
  msgid "Linkedin"
4067
  msgstr "Linkedin"
4068
 
4069
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
4070
+ msgid "VK"
4071
+ msgstr ""
4072
+
4073
+ #: app/libraries/main.php:1053
4074
  msgid "Share on Facebook"
4075
  msgstr "Partager sur Facebook"
4076
 
4077
+ #: app/libraries/main.php:1065
4078
  msgid "Google Plus"
4079
  msgstr "Google +"
4080
 
4081
+ #: app/libraries/main.php:1077
4082
  msgid "Tweet"
4083
  msgstr "Tweeter"
4084
 
4085
+ #: app/libraries/main.php:1471
4086
  msgid "Your booking successfully verified."
4087
  msgstr "Votre réservation est vérifiée avec succès."
4088
 
4089
+ #: app/libraries/main.php:1472
4090
  msgid "Your booking cannot verify!"
4091
  msgstr "Votre réservation ne peut pas être vérifiée!"
4092
 
4093
+ #: app/libraries/main.php:1484
4094
  msgid "Your booking successfully canceled."
4095
  msgstr "Votre réservation est annulée."
4096
 
4097
+ #: app/libraries/main.php:1485
4098
  msgid "Your booking cannot be canceled."
4099
  msgstr "Votre réservation ne peut être annulée."
4100
 
4101
+ #: app/libraries/main.php:1489
4102
  msgid "You canceled the payment successfully."
4103
  msgstr "Vous avez annulé le paiement avec succès."
4104
 
4105
+ #: app/libraries/main.php:1493
4106
  msgid "You returned from payment gateway successfully."
4107
  msgstr "Votre paiement à bien été validé."
4108
 
4109
+ #: app/libraries/main.php:1517
4110
  msgid "Cannot find the booking!"
4111
  msgstr ""
4112
 
4113
+ #: app/libraries/main.php:1517
4114
  msgid "Booking is invalid."
4115
  msgstr ""
4116
 
4117
+ #: app/libraries/main.php:1538
4118
  #, php-format
4119
  msgid "%s Invoice"
4120
  msgstr ""
4121
 
4122
+ #: app/libraries/main.php:1559
4123
+ msgid "Transaction ID"
4124
+ msgstr "Numéro de transaction"
4125
+
4126
+ #: app/libraries/main.php:1568
4127
+ msgid "Attendees"
4128
+ msgstr ""
4129
+
4130
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4131
+ msgid "Ticket"
4132
+ msgstr "Billets"
4133
+
4134
+ #: app/libraries/main.php:1590
4135
  msgid "Billing"
4136
  msgstr ""
4137
 
4138
+ #: app/libraries/main.php:1601
4139
  msgid "Total"
4140
  msgstr ""
4141
 
4142
+ #: app/libraries/main.php:1634
4143
  msgid "Security nonce is not valid."
4144
  msgstr "Le Code de Sécurité n'est pas valide."
4145
 
4146
+ #: app/libraries/main.php:1634
4147
  msgid "iCal export stopped!"
4148
  msgstr "Export vers iCal arrêté !"
4149
 
4150
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4151
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4152
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4153
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4154
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4155
  msgid "Sort"
4156
  msgstr "Trier"
4157
 
4158
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4159
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4160
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4161
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4162
  msgid "Required Field"
4163
  msgstr "Champ obligatoire"
4164
 
4165
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4166
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4167
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4168
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4169
  msgid "Insert a label for this field"
4170
  msgstr "Insérez une label pour ce champ"
4171
 
4172
+ #: app/libraries/main.php:1977
4173
  msgid "HTML and shortcode are allowed."
4174
  msgstr "HTML et shortcode sont autorisés."
4175
 
4176
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4177
+ #: app/libraries/main.php:2108
4178
  msgid "Option"
4179
  msgstr "Option"
4180
 
4181
+ #: app/libraries/main.php:2142
4182
  #, php-format
4183
  msgid "Instead of %s, the page title with a link will be show."
4184
  msgstr ""
4185
 
4186
+ #: app/libraries/main.php:2144
4187
  msgid "Agreement Page"
4188
  msgstr ""
4189
 
4190
+ #: app/libraries/main.php:2153
4191
  msgid "Status"
4192
  msgstr ""
4193
 
4194
+ #: app/libraries/main.php:2155
4195
  msgid "Checked by default"
4196
  msgstr ""
4197
 
4198
+ #: app/libraries/main.php:2156
4199
  msgid "Unchecked by default"
4200
  msgstr ""
4201
 
4202
+ #: app/libraries/main.php:2178
4203
  msgid "Insert a label for this option"
4204
  msgstr "Insérez une étiquette pour cette option"
4205
 
4206
+ #: app/libraries/main.php:2193
4207
+ msgid "Free"
4208
+ msgstr "Gratuite"
4209
+
4210
+ #: app/libraries/main.php:2845
4211
  #, php-format
4212
  msgid "Copy of %s"
4213
  msgstr "Copie de %s"
4214
 
4215
+ #: app/libraries/main.php:3482
4216
  msgid "Booked an event."
4217
  msgstr "Réserver un Évènements"
4218
 
4219
+ #: app/libraries/main.php:3523
4220
  #, php-format
4221
  msgid "%s booked %s event."
4222
  msgstr "%s réservé %s événement"
4223
 
4224
+ #: app/libraries/main.php:3965
4225
  msgid "Taxonomies"
4226
  msgstr "Taxonomies"
4227
 
4228
+ #: app/libraries/main.php:3967
4229
  msgid "Category Plural Label"
4230
  msgstr "Catégorie au pluriel"
4231
 
4232
+ #: app/libraries/main.php:3968
4233
  msgid "Category Singular Label"
4234
  msgstr "Catégorie au singulier"
4235
 
4236
+ #: app/libraries/main.php:3969
4237
  msgid "Label Plural Label"
4238
  msgstr "Étiquettes au pluriel"
4239
 
4240
+ #: app/libraries/main.php:3970
4241
  msgid "Label Singular Label"
4242
  msgstr "Étiquettes au singulier"
4243
 
4244
+ #: app/libraries/main.php:3970
4245
  msgid "label"
4246
  msgstr "texte"
4247
 
4248
+ #: app/libraries/main.php:3971
4249
  msgid "Location Plural Label"
4250
  msgstr "Lieu au pluriel"
4251
 
4252
+ #: app/libraries/main.php:3972
4253
  msgid "Location Singular Label"
4254
  msgstr "Lieu au singulier"
4255
 
4256
+ #: app/libraries/main.php:3973
4257
  msgid "Organizer Plural Label"
4258
  msgstr "Organisateur au pluriel"
4259
 
4260
+ #: app/libraries/main.php:3974
4261
  msgid "Organizer Singular Label"
4262
  msgstr "Organisateur au singulier"
4263
 
4264
+ #: app/libraries/main.php:3980
4265
  msgid "Sunday abbreviation"
4266
  msgstr "Abréviation de Dimanche"
4267
 
4268
+ #: app/libraries/main.php:3981
4269
  msgid "Monday abbreviation"
4270
  msgstr "Abréviation de Lundi"
4271
 
4272
+ #: app/libraries/main.php:3982
4273
  msgid "Tuesday abbreviation"
4274
  msgstr "Abréviation de Mardi"
4275
 
4276
+ #: app/libraries/main.php:3983
4277
  msgid "Wednesday abbreviation"
4278
  msgstr "Abréviation de Mercredi"
4279
 
4280
+ #: app/libraries/main.php:3984
4281
  msgid "Thursday abbreviation"
4282
  msgstr "Abréviation de Jeudi"
4283
 
4284
+ #: app/libraries/main.php:3985
4285
  msgid "Friday abbreviation"
4286
  msgstr "Abréviation de Vendredi"
4287
 
4288
+ #: app/libraries/main.php:3986
4289
  msgid "Saturday abbreviation"
4290
  msgstr "Abréviation de Samedi"
4291
 
4292
+ #: app/libraries/main.php:3990
4293
  msgid "Others"
4294
  msgstr "Autres"
4295
 
4296
+ #: app/libraries/main.php:3992
4297
  msgid "Booking Success Message"
4298
  msgstr "Message de succès de réservation"
4299
 
4300
+ #: app/libraries/main.php:3992
4301
+ msgid ""
4302
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4303
+ "needed, please check your email."
4304
+ msgstr ""
4305
+ "Merci pour votre réservation. Vos billets sont réservés, cependant une "
4306
+ "vérification peut être nécessaires, contrôlez votre boite mail."
4307
+
4308
+ #: app/libraries/main.php:3993
4309
  msgid "Register Button"
4310
  msgstr "Boutons d'inscription"
4311
 
4312
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4313
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4314
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4315
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4323
  msgid "REGISTER"
4324
  msgstr "S'INSCRIRE"
4325
 
4326
+ #: app/libraries/main.php:3994
4327
  msgid "View Detail Button"
4328
  msgstr "Afficher le boutons de détail"
4329
 
4330
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4331
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4332
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4333
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4338
  msgid "View Detail"
4339
  msgstr "En savoir plus"
4340
 
4341
+ #: app/libraries/main.php:3995
4342
  msgid "Event Detail Button"
4343
  msgstr "Bouton de détail de l'événement"
4344
 
4345
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4346
  msgid "Event Detail"
4347
  msgstr "Détails"
4348
 
4349
+ #: app/libraries/main.php:3997
4350
  msgid "More Info Link"
4351
  msgstr "Plus de lien d'info"
4352
 
4353
+ #: app/libraries/main.php:4000
4354
  msgid "Ticket (Singular)"
4355
  msgstr ""
4356
 
4357
+ #: app/libraries/main.php:4001
4358
  msgid "Tickets (Plural)"
4359
  msgstr ""
4360
 
4361
+ #: app/libraries/main.php:4067
4362
  msgid "EventON"
4363
  msgstr ""
4364
 
4365
+ #: app/libraries/main.php:4068
4366
  msgid "The Events Calendar"
4367
  msgstr ""
4368
 
4369
+ #: app/libraries/main.php:4069
4370
  msgid "Events Schedule WP Plugin"
4371
  msgstr ""
4372
 
4373
+ #: app/libraries/main.php:4070
4374
  msgid "Calendarize It"
4375
  msgstr ""
4376
 
4394
  msgid "A new event is added."
4395
  msgstr "Un nouvel événement est ajouté."
4396
 
4397
+ #: app/libraries/notifications.php:516
4398
+ msgid "Yes"
4399
+ msgstr ""
4400
+
4401
+ #: app/libraries/notifications.php:516
4402
+ msgid "No"
4403
+ msgstr ""
4404
+
4405
  #: app/libraries/render.php:337
4406
  msgid "Skin controller does not exist."
4407
  msgstr "Le contrôleur de Skin n'existe pas."
4432
  msgid "%s tickets"
4433
  msgstr "%s billets"
4434
 
4435
+ #: app/modules/booking/steps/checkout.php:16
4436
+ msgid "Checkout"
4437
+ msgstr "Commander"
4438
+
4439
  #: app/modules/booking/steps/checkout.php:33
4440
  msgid "Discount Coupon"
4441
  msgstr "Code de réduction"
4462
  msgid "Next"
4463
  msgstr "Prochain"
4464
 
4465
+ #: app/modules/booking/steps/message.php:7
4466
+ msgid "Thanks for your booking."
4467
+ msgstr "Merci pour votre réservation."
4468
+
4469
  #: app/modules/booking/steps/tickets.php:18
4470
  msgid "Book Event"
4471
  msgstr "Réservez pour cet événement"
4758
  msgid "QR Code : "
4759
  msgstr ""
4760
 
4761
+ #. Plugin Name of the plugin/theme
4762
+ #, fuzzy
4763
+ #| msgid "Modern Events Calendar"
4764
+ msgid "Modern Events Calendar Lite"
4765
+ msgstr "Modern Events Calendar"
4766
+
4767
  #. Plugin URI of the plugin/theme
4768
  msgid "http://webnus.net/plugins/modern-events-calendar/"
4769
  msgstr ""
4780
  msgid "http://webnus.net"
4781
  msgstr ""
4782
 
4783
+ #~ msgid "Auto Facebook import is disabled!"
4784
+ #~ msgstr "L'import Automatique de Facebook est désactivé !"
4785
+
4786
+ #~ msgid "%s facebook events imported/updated."
4787
+ #~ msgstr "%s évènements Facebook importés / mis à jour."
4788
+
4789
+ #~ msgid "Auto Google Calendar import is disabled!"
4790
+ #~ msgstr "L'import Automatique de Google Agenda est désactivé !"
4791
+
4792
+ #~ msgid "%s google events imported/updated."
4793
+ #~ msgstr "%s évènements Google importés / mis à jour."
4794
+
4795
+ #~ msgid "Add Booking"
4796
+ #~ msgstr "Ajouter une réservation"
4797
+
4798
+ #~ msgid "No bookings found!"
4799
+ #~ msgstr "Aucune réservation trouvée !"
4800
+
4801
+ #~ msgid "Edit Bookings"
4802
+ #~ msgstr "Modifier les réservations"
4803
+
4804
+ #~ msgid "No bookings found in Trash!"
4805
+ #~ msgstr "Aucune réservation trouvées dans la corbeille !"
4806
+
4807
+ #~ msgid "Book Details"
4808
+ #~ msgstr "Détails de la reservation"
4809
+
4810
+ #~ msgid "Confirmation"
4811
+ #~ msgstr "Confirmation"
4812
+
4813
+ #~ msgid "Pending"
4814
+ #~ msgstr "En attente"
4815
+
4816
+ #~ msgid "Confirmed"
4817
+ #~ msgstr "Confirmé"
4818
+
4819
+ #~ msgid "Rejected"
4820
+ #~ msgstr "Rejeté"
4821
+
4822
+ #~ msgid "Verification"
4823
+ #~ msgstr "Vérification"
4824
+
4825
+ #~ msgid "Waiting"
4826
+ #~ msgstr "En attente"
4827
+
4828
+ #~ msgid "Canceled"
4829
+ #~ msgstr "Annulé"
4830
+
4831
+ #~ msgid "Payment"
4832
+ #~ msgstr "Paiement"
4833
+
4834
+ #~ msgid "Gateway"
4835
+ #~ msgstr "Passerelle"
4836
+
4837
+ #~ msgid "Unknown"
4838
+ #~ msgstr "Inconnu"
4839
+
4840
+ #~ msgid "%s to %s"
4841
+ #~ msgstr "%s en %s"
4842
+
4843
+ #~ msgid "Book Date"
4844
+ #~ msgstr "Date de réservation"
4845
+
4846
+ #~ msgid "Confirm"
4847
+ #~ msgstr "Confirmation"
4848
+
4849
+ #~ msgid "Reject"
4850
+ #~ msgstr "Rejet"
4851
+
4852
+ #~ msgid "Security nonce is missing."
4853
+ #~ msgstr "Le code de sécurité de la carte est manquant."
4854
+
4855
+ #~ msgid "Security nonce is invalid."
4856
+ #~ msgstr "Le code de sécurité de la carte n'est pas correct."
4857
+
4858
+ #~ msgid "Invalid request."
4859
+ #~ msgstr "Requête invalide."
4860
+
4861
+ #~ msgid "Please select some tickets!"
4862
+ #~ msgstr "Merci de sélectionner les billets !"
4863
+
4864
+ #~ msgid "Captcha is invalid. Please try again."
4865
+ #~ msgstr "Captcha invalide. Merci de Réessayer."
4866
+
4867
+ #~ msgid "Coupon"
4868
+ #~ msgstr "Coupon"
4869
+
4870
+ #~ msgid "All Coupons"
4871
+ #~ msgstr "Tous les coupons"
4872
+
4873
+ #~ msgid "Edit Coupon"
4874
+ #~ msgstr "Modifier le coupon"
4875
+
4876
+ #~ msgid "View Coupon"
4877
+ #~ msgstr "Voir le coupon"
4878
+
4879
+ #~ msgid "Update Coupon"
4880
+ #~ msgstr "Mettre le coupon à jour"
4881
+
4882
+ #~ msgid "Add New Coupon"
4883
+ #~ msgstr "Ajouter un nouveau coupon"
4884
+
4885
+ #~ msgid "New Coupon Name"
4886
+ #~ msgstr "Nouveau nom de coupon"
4887
+
4888
+ #~ msgid "Popular Coupons"
4889
+ #~ msgstr "Coupons populaires"
4890
+
4891
+ #~ msgid "Search Coupons"
4892
+ #~ msgstr "Rechercher des coupons"
4893
+
4894
+ #~ msgid "Discount Type"
4895
+ #~ msgstr "Type de réduction"
4896
+
4897
+ #~ msgid ""
4898
+ #~ "Discount percent, considered as amount if you set the discount type to "
4899
+ #~ "amount"
4900
+ #~ msgstr ""
4901
+ #~ "Pourcentage de remise, considéré ce montant si vous définissez le type de "
4902
+ #~ "remise"
4903
+
4904
+ #~ msgid "Usage Limit"
4905
+ #~ msgstr "Date limite d'utilisation"
4906
+
4907
+ #~ msgid "Insert -1 for unlimited usage"
4908
+ #~ msgstr "Entrez -1 pour un nombre illimité de participant"
4909
+
4910
+ #~ msgid "Expiration Date"
4911
+ #~ msgstr "Date d’expiration"
4912
+
4913
+ #~ msgid "Name/Code"
4914
+ #~ msgstr "Nom / Code"
4915
+
4916
+ #~ msgid "Discount coupon is invalid!"
4917
+ #~ msgstr "Coupon de réduction non valide !"
4918
+
4919
+ #~ msgid "Discount coupon usage limit reached!"
4920
+ #~ msgstr "Le coupon de réduction a expiré !"
4921
+
4922
+ #~ msgid "Coupon is valid and you get %s discount."
4923
+ #~ msgstr "Code promotion validé, vous obtenez %s de réduction."
4924
+
4925
+ #~ msgid "Request is invalid!"
4926
+ #~ msgstr "Requête invalide !"
4927
+
4928
+ #, fuzzy
4929
+ #~ msgid "Stripe"
4930
+ #~ msgstr "Stripe"
4931
+
4932
+ #~ msgid "There is no attendee for booking!"
4933
+ #~ msgstr "Il n'y a pas encore de participants inscrits depuis le site !"
4934
+
4935
+ #~ msgid "MEC Transaction ID: %s"
4936
+ #~ msgstr "Numéro de transaction%s"
4937
+
4938
+ #~ msgid "Card Number"
4939
+ #~ msgstr "Numéro de Carte Bancaire"
4940
+
4941
+ #~ msgid "CVC"
4942
+ #~ msgstr "Cryptogramme Visuel"
4943
+
4944
+ #~ msgid "Expiration (MM/YYYY)"
4945
+ #~ msgstr "Date d'Expiration (MM/AAAA)"
4946
+
4947
+ #~ msgid "Month"
4948
+ #~ msgstr "Mois"
4949
+
4950
+ #~ msgid "Year"
4951
+ #~ msgstr "Année"
4952
+
4953
+ #~ msgid "Pay"
4954
+ #~ msgstr "Paiement en ligne (sécurisé)"
4955
+
4956
+ #~ msgid "Comment"
4957
+ #~ msgstr "Commentaires"
4958
+
4959
+ #~ msgid "HTML allowed."
4960
+ #~ msgstr "HTML autorisé."
4961
+
4962
+ #~ msgid "Publishable Key"
4963
+ #~ msgstr "Clé Publiable"
4964
+
4965
+ #~ msgid "Pay Locally"
4966
+ #~ msgstr "Régler sur place"
4967
+
4968
+ #~ msgid "PayPal Express"
4969
+ #~ msgstr "PayPal express"
4970
+
4971
+ #~ msgid "Business Account"
4972
+ #~ msgstr "Compte professionnel"
4973
+
4974
+ #~ msgid "Normally PayPal Email."
4975
+ #~ msgstr "Courriel PayPal."
4976
+
4977
+ #~ msgid "Mode"
4978
+ #~ msgstr "Mode"
4979
+
4980
+ #~ msgid "Live"
4981
+ #~ msgstr "En ligne"
4982
+
4983
+ #~ msgid "Sandbox"
4984
+ #~ msgstr "Sandbox"
4985
+
4986
+ #~ msgid "Waiting for getting response from gateway."
4987
+ #~ msgstr "En attente d'une réponse de la passerelle."
4988
+
4989
+ #~ msgid "Payment was invalid! Booking failed."
4990
+ #~ msgstr "Le paiement est non valide! La réservation a échoué."
4991
+
4992
+ #~ msgid "PayPal Credit Card"
4993
+ #~ msgstr "Carte de crédit via PayPal"
4994
+
4995
+ #~ msgid "API Username"
4996
+ #~ msgstr "Identifiant API"
4997
+
4998
+ #~ msgid "API Password"
4999
+ #~ msgstr "Mot de passe API"
5000
+
5001
+ #~ msgid "API Signature"
5002
+ #~ msgstr "Signature API"
5003
+
5004
+ #~ msgid "First name"
5005
+ #~ msgstr "Prénom"
5006
+
5007
+ #~ msgid "Last name"
5008
+ #~ msgstr "Nom"
5009
+
5010
+ #~ msgid "Card Type"
5011
+ #~ msgstr "Type de carte"
5012
+
5013
+ #~ msgid "Visa"
5014
+ #~ msgstr "Visa"
5015
+
5016
+ #~ msgid "MasterCard"
5017
+ #~ msgstr "Mastercard"
5018
+
5019
+ #~ msgid "Discover"
5020
+ #~ msgstr "Discover"
5021
+
5022
+ #~ msgid "American Express"
5023
+ #~ msgstr "American Express"
5024
+
5025
+ #~ msgid "CC Number"
5026
+ #~ msgstr "Numéro de votre Carte Bancaire"
5027
+
5028
+ #~ msgid "CVV2"
5029
+ #~ msgstr "Cryptogramme visuel 2"
5030
+
5031
+ #~ msgid "Payment is invalid."
5032
+ #~ msgstr "Paiement refusé."
5033
+
5034
+ #~ msgid "Pay by WooCommerce"
5035
+ #~ msgstr "Payer via WooCommerce"
5036
+
5037
+ #~ msgid "Booking fee for %s"
5038
+ #~ msgstr "Frais de réservation de %s"
5039
+
5040
+ #~ msgid "Your order is created. Please proceed with checkout."
5041
+ #~ msgstr "Votre commande a été créée. Merci de procéder au paiement."
5042
+
5043
+ #~ msgid "WooCommerce must be installed and activated first."
5044
+ #~ msgstr "WooCommerce doit être installé et activé."
5045
+
5046
+ #~ msgid "Automatically complete WC orders"
5047
+ #~ msgstr "Compléter automatiquement les commandes WooCommerce"
5048
+
5049
+ #~ msgid "It applies only to the orders that are related to MEC."
5050
+ #~ msgstr "Cela s'applique uniquement aux commandes liées a l'extension M.E.C."
5051
+
5052
  #~ msgid "Attendee"
5053
  #~ msgstr "Participants"
5054
 
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: 2018-07-24 11:58+0430\n"
5
- "PO-Revision-Date: 2018-08-21 16:24+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
@@ -20,7 +20,6 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #. Plugin Name of the plugin/theme
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
25
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
26
  #: app/widgets/MEC.php:23
@@ -31,8 +30,8 @@ msgstr ""
31
  msgid "Content"
32
  msgstr "Tartalom"
33
 
34
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
35
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
36
  msgid "Shortcode"
37
  msgstr ""
38
 
@@ -40,365 +39,29 @@ msgstr ""
40
  msgid "Select from predefined shortcodes"
41
  msgstr ""
42
 
43
- #: app/crons/booking-reminder.php:33
44
- msgid "Booking reminder notification is not enabled!"
45
- msgstr ""
46
-
47
- #: app/crons/booking-reminder.php:43
48
- msgid "Booking module is not enabled!"
49
- msgstr ""
50
-
51
- #: app/crons/booking-reminder.php:52
52
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
53
- msgstr ""
54
-
55
- #: app/crons/booking-reminder.php:104
56
- #, php-format
57
- msgid "%s reminders sent."
58
- msgstr ""
59
-
60
- #: app/crons/f-import.php:32
61
- msgid "Auto Facebook import is disabled!"
62
- msgstr ""
63
-
64
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
65
- msgid "Please insert your facebook page's link."
66
- msgstr ""
67
-
68
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
69
- msgid ""
70
- "We couldn't recognize your Facebook page. Please check it and provide us a "
71
- "valid facebook page link."
72
- msgstr ""
73
-
74
- #: app/crons/f-import.php:198
75
- #, php-format
76
- msgid "%s facebook events imported/updated."
77
- msgstr ""
78
-
79
- #: app/crons/g-export.php:37 app/features/ix.php:2527
80
- msgid "All of Client App, Client Secret and Calendar ID are required!"
81
- msgstr ""
82
-
83
- #: app/crons/g-export.php:234 app/features/ix.php:2722
84
- #, php-format
85
- msgid "%s events added to Google Calendar successfully."
86
- msgstr ""
87
-
88
- #: app/crons/g-export.php:235 app/features/ix.php:2723
89
- #, php-format
90
- msgid "%s previously added events get updated."
91
- msgstr ""
92
-
93
- #: app/crons/g-export.php:236 app/features/ix.php:2724
94
- #, php-format
95
- msgid "%s events failed to add for following reasons: %s"
96
- msgstr ""
97
-
98
- #: app/crons/g-import.php:32
99
- msgid "Auto Google Calendar import is disabled!"
100
- msgstr ""
101
-
102
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
103
- msgid "Both of API key and Calendar ID are required!"
104
- msgstr ""
105
-
106
- #: app/crons/g-import.php:370
107
- #, php-format
108
- msgid "%s google events imported/updated."
109
- msgstr ""
110
-
111
- #: app/features/books.php:105 app/features/books.php:110
112
- #: app/features/ix/export.php:37
113
- msgid "Bookings"
114
- msgstr "Foglalások"
115
-
116
- #: app/features/books.php:106 app/features/books.php:328
117
- #: app/features/contextual.php:308 app/features/events.php:253
118
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
119
- msgid "Booking"
120
- msgstr ""
121
-
122
- #: app/features/books.php:107 app/features/books.php:108
123
- msgid "Add Booking"
124
- msgstr ""
125
-
126
- #: app/features/books.php:109
127
- msgid "No bookings found!"
128
- msgstr ""
129
-
130
- #: app/features/books.php:111
131
- msgid "Edit Bookings"
132
- msgstr ""
133
-
134
- #: app/features/books.php:112
135
- msgid "No bookings found in Trash!"
136
- msgstr ""
137
-
138
- #: app/features/books.php:149
139
- msgid "Book Details"
140
- msgstr ""
141
-
142
- #: app/features/books.php:150
143
- msgid "Status & Invoice"
144
- msgstr ""
145
-
146
- #: app/features/books.php:176 app/features/books.php:387
147
- #: app/features/books.php:576 app/features/books.php:651
148
- #: app/features/books.php:709
149
- msgid "Confirmation"
150
- msgstr ""
151
-
152
- #: app/features/books.php:178 app/features/books.php:578
153
- #: app/features/books.php:602 app/features/books.php:894
154
- msgid "Pending"
155
- msgstr ""
156
-
157
- #: app/features/books.php:179 app/features/books.php:577
158
- #: app/features/books.php:892
159
- msgid "Confirmed"
160
- msgstr ""
161
-
162
- #: app/features/books.php:180 app/features/books.php:579
163
- #: app/features/books.php:893
164
- msgid "Rejected"
165
- msgstr ""
166
-
167
- #: app/features/books.php:184 app/features/books.php:388
168
- #: app/features/books.php:585 app/features/books.php:651
169
- #: app/features/books.php:709
170
- msgid "Verification"
171
- msgstr ""
172
-
173
- #: app/features/books.php:186 app/features/books.php:587
174
- #: app/features/books.php:909
175
- msgid "Waiting"
176
- msgstr ""
177
-
178
- #: app/features/books.php:187 app/features/books.php:586
179
- #: app/features/books.php:907 app/features/mec/settings.php:1173
180
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
181
- msgid "Verified"
182
- msgstr ""
183
-
184
- #: app/features/books.php:188 app/features/books.php:588
185
- #: app/features/books.php:908
186
- msgid "Canceled"
187
- msgstr ""
188
-
189
- #: app/features/books.php:203
190
- #, php-format
191
- msgid "Here, you can %s invoice of %s transaction."
192
- msgstr ""
193
-
194
- #: app/features/books.php:203
195
- msgid "download"
196
- msgstr ""
197
-
198
- #: app/features/books.php:246
199
- msgid "It will create a new booking under \"Pay Locally\" gateway."
200
- msgstr ""
201
-
202
- #: app/features/books.php:248 app/features/contextual.php:62
203
- #: app/features/events.php:910 app/features/mec/gateways.php:29
204
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
205
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
206
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
207
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
208
- msgid "Booking Form"
209
- msgstr ""
210
-
211
- #: app/features/books.php:251 app/features/books.php:330
212
- #: app/features/books.php:385 app/features/books.php:569
213
- #: app/features/books.php:651 app/features/books.php:709
214
- #: app/features/events.php:123
215
- #: app/features/mec/meta_boxes/display_options.php:678
216
- #: app/features/mec/meta_boxes/display_options.php:716
217
- #: app/features/mec/meta_boxes/display_options.php:745
218
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
219
- #: app/skins/yearly_view/tpl.php:69
220
- msgid "Event"
221
- msgstr ""
222
-
223
- #: app/features/books.php:315
224
- msgid "Payment"
225
- msgstr ""
226
-
227
- #: app/features/books.php:317 app/features/books.php:386
228
- #: app/features/events.php:756 app/features/events.php:788
229
- msgid "Price"
230
- msgstr ""
231
-
232
- #: app/features/books.php:321 app/features/gateways.php:148
233
- msgid "Gateway"
234
- msgstr ""
235
-
236
- #: app/features/books.php:322 app/features/books.php:326
237
- #: app/features/books.php:331 app/features/books.php:335
238
- #: app/features/books.php:352 app/features/books.php:690
239
- #: app/features/books.php:748
240
- msgid "Unknown"
241
- msgstr ""
242
-
243
- #: app/features/books.php:325 app/features/books.php:389
244
- #: app/features/books.php:651 app/features/books.php:709
245
- #: app/libraries/main.php:1544
246
- msgid "Transaction ID"
247
- msgstr ""
248
-
249
- #: app/features/books.php:334 app/features/books.php:651
250
- #: app/features/books.php:709 app/features/books.php:1099
251
- #: app/features/events.php:508 app/features/events.php:580
252
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
253
- #: app/modules/booking/steps/tickets.php:20
254
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
255
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
256
- #: app/skins/single/modern.php:146
257
- msgid "Date"
258
- msgstr "dátum"
259
-
260
- #: app/features/books.php:335
261
- #, php-format
262
- msgid "%s to %s"
263
- msgstr ""
264
-
265
- #: app/features/books.php:338 app/features/mec/notifications.php:140
266
- #: app/features/mec/notifications.php:177
267
- #: app/features/mec/notifications.php:214
268
- #: app/features/mec/notifications.php:255
269
- #: app/features/mec/notifications.php:307
270
- msgid "Total Attendees"
271
- msgstr ""
272
-
273
- #: app/features/books.php:341 app/features/books.php:384
274
- #: app/libraries/main.php:1553
275
- msgid "Attendees"
276
- msgstr ""
277
-
278
- #: app/features/books.php:347 app/features/books.php:651
279
- #: app/features/books.php:709 app/features/books.php:1114
280
- #: app/features/events.php:371 app/features/events.php:945
281
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
282
- #: app/features/organizers.php:110 app/features/organizers.php:150
283
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
284
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
285
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
286
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
287
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
288
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
289
- #: app/skins/single/modern.php:38
290
- msgid "Email"
291
- msgstr ""
292
-
293
- #: app/features/books.php:351 app/features/books.php:431
294
- #: app/features/books.php:651 app/features/books.php:709
295
- #: app/features/books.php:1106 app/libraries/main.php:1559
296
- #: app/libraries/main.php:3985
297
- msgid "Ticket"
298
- msgstr ""
299
-
300
- #: app/features/books.php:358 app/libraries/notifications.php:516
301
- msgid "Yes"
302
- msgstr ""
303
-
304
- #: app/features/books.php:358 app/libraries/notifications.php:516
305
- msgid "No"
306
- msgstr ""
307
-
308
- #: app/features/books.php:390
309
- msgid "Book Date"
310
- msgstr ""
311
-
312
- #: app/features/books.php:602
313
- msgid "Confirm"
314
- msgstr ""
315
-
316
- #: app/features/books.php:602
317
- msgid "Reject"
318
- msgstr ""
319
-
320
- #: app/features/books.php:602 app/features/events.php:1569
321
- #: app/features/events.php:1570
322
- msgid "CSV Export"
323
- msgstr ""
324
-
325
- #: app/features/books.php:602 app/features/events.php:1572
326
- #: app/features/events.php:1573
327
- msgid "MS Excel Export"
328
- msgstr ""
329
-
330
- #: app/features/books.php:651 app/features/books.php:709
331
- #: app/features/events.php:1631 app/features/events.php:1675
332
- #: app/features/ix.php:2328 app/features/ix.php:2369
333
- #: app/features/labels.php:150 app/features/locations.php:228
334
- #: app/features/organizers.php:198
335
- msgid "ID"
336
- msgstr ""
337
-
338
- #: app/features/books.php:651 app/features/books.php:709
339
- msgid "Total Price"
340
- msgstr ""
341
-
342
- #: app/features/books.php:651 app/features/books.php:709
343
- #: app/features/books.php:1113 app/features/events.php:370
344
- #: app/features/fes/form.php:441 app/features/gateways.php:503
345
- #: app/features/labels.php:151 app/features/organizers.php:268
346
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
347
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
348
- msgid "Name"
349
- msgstr "Név"
350
-
351
- #: app/features/books.php:923
352
- msgid "Security nonce is missing."
353
- msgstr ""
354
-
355
- #: app/features/books.php:926
356
- msgid "Security nonce is invalid."
357
- msgstr ""
358
-
359
- #: app/features/books.php:935
360
- msgid "Invalid request."
361
- msgstr ""
362
-
363
- #: app/features/books.php:963
364
- msgid "Please select some tickets!"
365
- msgstr "Kérjük, válasszon néhány jegyet!"
366
-
367
- #: app/features/books.php:969
368
- msgid "Captcha is invalid. Please try again."
369
- msgstr ""
370
-
371
- #: app/features/books.php:1015
372
- msgid "Please fill the form correctly. Email and Name fields are required!"
373
- msgstr ""
374
-
375
- #: app/features/books.php:1085
376
- msgid "Event is invalid. Please select an event."
377
- msgstr ""
378
-
379
- #: app/features/books.php:1093
380
- msgid ""
381
- "No ticket ro future dates found for this event! Please try another event."
382
- msgstr ""
383
-
384
- #: app/features/books.php:1175
385
- msgid "Attendee Information"
386
- msgstr ""
387
-
388
  #: app/features/colors.php:50 app/features/fes/form.php:566
389
- #: app/features/mec/settings.php:842
390
  msgid "Event Color"
391
  msgstr ""
392
 
393
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
394
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
395
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
396
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
397
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
398
  #: app/features/mec/support.php:18
399
  msgid "Settings"
400
  msgstr ""
401
 
 
 
 
 
 
 
 
 
 
402
  #: app/features/contextual.php:63
403
  msgid ""
404
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -411,7 +74,7 @@ msgstr ""
411
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
412
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
413
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
414
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
415
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
416
  msgid "Payment Gateways"
417
  msgstr ""
@@ -426,7 +89,7 @@ msgstr ""
426
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
427
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
428
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
429
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
430
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
431
  msgid "Notifications"
432
  msgstr ""
@@ -487,232 +150,102 @@ msgid ""
487
  "\"0\" allowfullscreen></iframe>"
488
  msgstr ""
489
 
490
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
491
- #: app/features/mec/settings.php:247
492
  msgid "General Options"
493
  msgstr ""
494
 
495
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
496
- #: app/features/mec/settings.php:399
497
  msgid "Slugs/Permalinks"
498
  msgstr ""
499
 
500
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
501
- #: app/features/mec/settings.php:419
502
  msgid "Event Details/Single Event Page"
503
  msgstr ""
504
 
505
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
506
- #: app/features/mec/settings.php:451
507
  msgid "Currency Options"
508
  msgstr ""
509
 
510
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
511
- #: app/features/mec/settings.php:503
512
  msgid "Google Maps Options"
513
  msgstr ""
514
 
515
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
516
- #: app/features/mec/settings.php:577
517
  msgid "Google Recaptcha Options"
518
  msgstr ""
519
 
520
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
521
- #: app/features/mec/settings.php:695
522
  msgid "Countdown Options"
523
  msgstr ""
524
 
525
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
526
- #: app/features/mec/settings.php:716
527
  msgid "Social Networks"
528
  msgstr ""
529
 
530
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
531
- #: app/features/mec/settings.php:741
532
  msgid "Next Event Module"
533
  msgstr ""
534
 
535
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
536
- #: app/features/mec/settings.php:769
537
  msgid "Frontend Event Submission"
538
  msgstr ""
539
 
540
  #: app/features/contextual.php:298 app/features/events.php:570
541
- #: app/features/mec/settings.php:126
542
  msgid "Exceptional Days"
543
  msgstr ""
544
 
545
- #: app/features/contextual.php:318 app/features/coupons.php:76
546
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
547
- #: app/features/mec/settings.php:1014
 
 
 
 
548
  msgid "Coupons"
549
  msgstr ""
550
 
551
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
552
- #: app/features/mec/settings.php:1096
553
  msgid "BuddyPress Integration"
554
  msgstr ""
555
 
556
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
557
- #: app/features/mec/settings.php:1126
558
  msgid "Mailchimp Integration"
559
  msgstr ""
560
 
561
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
562
- #: app/features/mec/settings.php:1162
563
  msgid "MEC Activation"
564
  msgstr ""
565
 
566
- #: app/features/coupons.php:79
567
- msgid "Coupon"
568
- msgstr ""
569
-
570
- #: app/features/coupons.php:80
571
- msgid "All Coupons"
572
- msgstr ""
573
-
574
- #: app/features/coupons.php:81
575
- msgid "Edit Coupon"
576
- msgstr ""
577
-
578
- #: app/features/coupons.php:82
579
- msgid "View Coupon"
580
- msgstr ""
581
-
582
- #: app/features/coupons.php:83
583
- msgid "Update Coupon"
584
- msgstr ""
585
-
586
- #: app/features/coupons.php:84
587
- msgid "Add New Coupon"
588
- msgstr ""
589
-
590
- #: app/features/coupons.php:85
591
- msgid "New Coupon Name"
592
- msgstr ""
593
-
594
- #: app/features/coupons.php:86
595
- msgid "Popular Coupons"
596
- msgstr ""
597
-
598
- #: app/features/coupons.php:87
599
- msgid "Search Coupons"
600
- msgstr ""
601
-
602
- #: app/features/coupons.php:116 app/features/coupons.php:177
603
- msgid "Discount Type"
604
- msgstr ""
605
-
606
- #: app/features/coupons.php:120 app/features/coupons.php:179
607
- #: app/features/events.php:854 app/features/events.php:879
608
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
609
- msgid "Percent"
610
- msgstr ""
611
-
612
- #: app/features/coupons.php:121 app/features/coupons.php:180
613
- #: app/features/events.php:849 app/features/events.php:874
614
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
615
- msgid "Amount"
616
- msgstr ""
617
-
618
- #: app/features/coupons.php:127 app/features/coupons.php:184
619
- #: app/features/coupons.php:248 app/features/coupons.php:322
620
- #: app/libraries/book.php:505
621
- msgid "Discount"
622
- msgstr ""
623
-
624
- #: app/features/coupons.php:131 app/features/coupons.php:186
625
- msgid ""
626
- "Discount percent, considered as amount if you set the discount type to amount"
627
- msgstr ""
628
-
629
- #: app/features/coupons.php:136 app/features/coupons.php:189
630
- msgid "Usage Limit"
631
- msgstr ""
632
-
633
- #: app/features/coupons.php:140 app/features/coupons.php:191
634
- msgid "Insert -1 for unlimited usage"
635
- msgstr ""
636
-
637
- #: app/features/coupons.php:145 app/features/coupons.php:194
638
- #: app/features/gateways.php:1202
639
- msgid "Expiration Date"
640
- msgstr ""
641
-
642
- #: app/features/coupons.php:149 app/features/coupons.php:196
643
- msgid "Leave it empty for no expiration!"
644
- msgstr ""
645
-
646
- #: app/features/coupons.php:154 app/features/coupons.php:199
647
- msgid "Target Event"
648
- msgstr ""
649
-
650
- #: app/features/coupons.php:158 app/features/coupons.php:201
651
- #: app/features/events.php:127
652
- msgid "All Events"
653
- msgstr ""
654
-
655
- #: app/features/coupons.php:246
656
- msgid "Name/Code"
657
- msgstr ""
658
-
659
- #: app/features/coupons.php:247 app/features/events.php:632
660
- #: app/features/events.php:644 app/features/events.php:752
661
- #: app/features/events.php:784
662
- msgid "Description"
663
- msgstr ""
664
-
665
- #: app/features/coupons.php:249
666
- #: app/features/mec/meta_boxes/display_options.php:85
667
- #: app/features/mec/meta_boxes/display_options.php:194
668
- #: app/features/mec/meta_boxes/display_options.php:244
669
- #: app/features/mec/meta_boxes/display_options.php:632
670
- #: app/features/mec/meta_boxes/display_options.php:806
671
- #: app/features/mec/meta_boxes/display_options.php:877
672
- msgid "Limit"
673
- msgstr ""
674
-
675
- #: app/features/coupons.php:250 app/features/labels.php:153
676
- #: app/features/locations.php:231 app/features/organizers.php:201
677
- #: app/modules/booking/steps/tickets.php:36
678
- msgid "Count"
679
- msgstr ""
680
-
681
- #: app/features/coupons.php:280 app/features/events.php:715
682
- #: app/features/events.php:769 app/features/events.php:801
683
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
684
- #: app/skins/available_spot/tpl.php:84
685
- msgid "Unlimited"
686
- msgstr ""
687
-
688
- #: app/features/coupons.php:309
689
- msgid "Discount coupon is invalid!"
690
- msgstr ""
691
-
692
- #: app/features/coupons.php:311
693
- msgid "Discount coupon usage limit reached!"
694
- msgstr ""
695
-
696
- #: app/features/coupons.php:313
697
- msgid "Discount coupon is expired!"
698
- msgstr ""
699
-
700
- #: app/features/coupons.php:315
701
- msgid "Discount is not valid for this event!"
702
- msgstr ""
703
-
704
- #: app/features/coupons.php:326
705
- #, php-format
706
- msgid "Coupon is valid and you get %s discount."
707
- msgstr ""
708
-
709
  #: app/features/events.php:122 app/features/ix/export.php:33
710
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
711
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
712
  msgid "Events"
713
  msgstr ""
714
 
715
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
716
  msgid "Add Event"
717
  msgstr ""
718
 
@@ -725,6 +258,10 @@ msgstr ""
725
  msgid "No events found!"
726
  msgstr ""
727
 
 
 
 
 
728
  #: app/features/events.php:128
729
  msgid "Edit Event"
730
  msgstr ""
@@ -747,7 +284,7 @@ msgstr ""
747
  #: app/features/mec/meta_boxes/search_form.php:285
748
  #: app/features/mec/meta_boxes/search_form.php:325
749
  #: app/features/mec/meta_boxes/search_form.php:372
750
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
751
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
752
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
753
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -755,8 +292,8 @@ msgid "Category"
755
  msgstr "kategória"
756
 
757
  #: app/features/events.php:143 app/features/fes/form.php:518
758
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
759
- #: app/libraries/main.php:3952
760
  msgid "Categories"
761
  msgstr ""
762
 
@@ -823,12 +360,12 @@ msgstr ""
823
  #: app/features/events.php:286 app/features/events.php:1631
824
  #: app/features/events.php:1675 app/features/fes/form.php:479
825
  #: app/features/ix.php:2328 app/features/ix.php:2369
826
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
827
  msgid "Event Cost"
828
  msgstr ""
829
 
830
  #: app/features/events.php:289 app/features/fes/form.php:482
831
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
832
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
833
  #: app/skins/single/modern.php:179
834
  msgid "Cost"
@@ -838,8 +375,28 @@ msgstr "Résztvételi díj"
838
  msgid "Note for reviewer"
839
  msgstr ""
840
 
841
- #: app/features/events.php:369
842
- msgid "Guest Data"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
843
  msgstr ""
844
 
845
  #: app/features/events.php:375 app/features/fes/form.php:221
@@ -851,7 +408,7 @@ msgstr ""
851
  #: app/features/events.php:1675 app/features/fes/form.php:225
852
  #: app/features/fes/form.php:229 app/features/ix.php:2328
853
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
854
- #: app/features/mec/dashboard.php:262
855
  #: app/features/mec/meta_boxes/display_options.php:42
856
  #: app/features/mec/meta_boxes/display_options.php:129
857
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -883,7 +440,7 @@ msgstr ""
883
  #: app/features/events.php:1675 app/features/fes/form.php:265
884
  #: app/features/fes/form.php:269 app/features/ix.php:2328
885
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
886
- #: app/features/mec/dashboard.php:263
887
  msgid "End Date"
888
  msgstr ""
889
 
@@ -918,7 +475,7 @@ msgid "Repeats"
918
  msgstr ""
919
 
920
  #: app/features/events.php:481 app/features/fes/form.php:327
921
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
922
  msgid "Daily"
923
  msgstr ""
924
 
@@ -940,12 +497,12 @@ msgid "Weekly"
940
  msgstr ""
941
 
942
  #: app/features/events.php:486 app/features/fes/form.php:332
943
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
944
  msgid "Monthly"
945
  msgstr ""
946
 
947
  #: app/features/events.php:487 app/features/fes/form.php:333
948
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
949
  msgid "Yearly"
950
  msgstr ""
951
 
@@ -1000,6 +557,15 @@ msgstr ""
1000
  msgid "Sunday"
1001
  msgstr ""
1002
 
 
 
 
 
 
 
 
 
 
1003
  #: app/features/events.php:509 app/features/events.php:581
1004
  #: app/features/events.php:623 app/features/events.php:743
1005
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1044,7 +610,7 @@ msgstr ""
1044
  msgid "Exclude certain days from event occurrence dates."
1045
  msgstr ""
1046
 
1047
- #: app/features/events.php:620 app/features/mec/settings.php:866
1048
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1049
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1050
  msgid "Hourly Schedule"
@@ -1065,33 +631,35 @@ msgstr ""
1065
  #: app/features/events.php:631 app/features/events.php:643
1066
  #: app/features/events.php:1449 app/features/events.php:1631
1067
  #: app/features/events.php:1675 app/features/fes/form.php:214
1068
- #: app/features/gateways.php:550 app/features/gateways.php:617
1069
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1070
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1071
- #: app/features/ix.php:2369
1072
  msgid "Title"
1073
  msgstr ""
1074
 
 
 
 
 
 
1075
  #: app/features/events.php:633 app/features/events.php:645
1076
  #: app/features/events.php:771 app/features/events.php:803
1077
  #: app/features/events.php:859 app/features/events.php:884
1078
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1079
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1080
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1081
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1082
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1083
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1084
- #: app/libraries/main.php:2162
1085
  msgid "Remove"
1086
  msgstr ""
1087
 
1088
  #: app/features/events.php:665 app/features/fes/form.php:456
1089
- #: app/features/mec/settings.php:812
1090
  msgid "Event Links"
1091
  msgstr ""
1092
 
1093
  #: app/features/events.php:667 app/features/fes/form.php:458
1094
- #: app/libraries/main.php:3981
1095
  msgid "Event Link"
1096
  msgstr ""
1097
 
@@ -1107,7 +675,7 @@ msgid ""
1107
  msgstr ""
1108
 
1109
  #: app/features/events.php:672 app/features/fes/form.php:463
1110
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1111
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1112
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1113
  msgid "More Info"
@@ -1135,12 +703,18 @@ msgstr ""
1135
  msgid "Total booking limits"
1136
  msgstr ""
1137
 
 
 
 
 
 
 
1138
  #: app/features/events.php:717
1139
  msgid "100"
1140
  msgstr ""
1141
 
1142
  #: app/features/events.php:735 app/libraries/book.php:59
1143
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1144
  msgid "Tickets"
1145
  msgstr ""
1146
 
@@ -1155,6 +729,10 @@ msgstr ""
1155
  msgid "Ticket Name"
1156
  msgstr ""
1157
 
 
 
 
 
1158
  #: app/features/events.php:757 app/features/events.php:789
1159
  msgid "Insert 0 for free ticket. Only numbers please."
1160
  msgstr ""
@@ -1180,50 +758,60 @@ msgid "Inherit from global options"
1180
  msgstr ""
1181
 
1182
  #: app/features/events.php:845 app/features/events.php:870
1183
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1184
  msgid "Fee Title"
1185
  msgstr ""
1186
 
 
 
 
 
 
1187
  #: app/features/events.php:850 app/features/events.php:875
1188
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1189
  msgid ""
1190
  "Fee amount, considered as fixed amount if you set the type to amount "
1191
  "otherwise considered as percentage"
1192
  msgstr ""
1193
 
 
 
 
 
 
1194
  #: app/features/events.php:855 app/features/events.php:880
1195
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1196
  msgid "Amount (Per Ticket)"
1197
  msgstr ""
1198
 
1199
  #: app/features/events.php:856 app/features/events.php:881
1200
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1201
  msgid "Amount (Per Booking)"
1202
  msgstr ""
1203
 
1204
  #: app/features/events.php:944 app/features/mec/regform.php:117
1205
- #: app/libraries/main.php:1841
1206
  msgid "Text"
1207
  msgstr ""
1208
 
1209
  #: app/features/events.php:946 app/features/mec/regform.php:119
1210
  #: app/features/organizers.php:102 app/features/organizers.php:146
1211
- #: app/libraries/main.php:1899
1212
  msgid "Tel"
1213
  msgstr ""
1214
 
1215
  #: app/features/events.php:947 app/features/mec/regform.php:120
1216
- #: app/libraries/main.php:1928
1217
  msgid "Textarea"
1218
  msgstr ""
1219
 
1220
  #: app/features/events.php:948 app/features/mec/regform.php:121
1221
- #: app/libraries/main.php:1981
1222
  msgid "Checkboxes"
1223
  msgstr ""
1224
 
1225
  #: app/features/events.php:949 app/features/mec/regform.php:122
1226
- #: app/libraries/main.php:2025
1227
  msgid "Radio Buttons"
1228
  msgstr ""
1229
 
@@ -1272,17 +860,17 @@ msgstr ""
1272
  #: app/features/mec/meta_boxes/search_form.php:436
1273
  #: app/features/mec/meta_boxes/search_form.php:443
1274
  #: app/features/mec/meta_boxes/search_form.php:450
1275
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1276
  msgid "Dropdown"
1277
  msgstr ""
1278
 
1279
  #: app/features/events.php:951 app/features/mec/regform.php:124
1280
- #: app/libraries/main.php:2116
1281
  msgid "Agreement"
1282
  msgstr ""
1283
 
1284
  #: app/features/events.php:952 app/features/mec/regform.php:125
1285
- #: app/libraries/main.php:1957
1286
  msgid "Paragraph"
1287
  msgstr ""
1288
 
@@ -1308,7 +896,7 @@ msgstr ""
1308
  #: app/features/events.php:1675 app/features/ix.php:2328
1309
  #: app/features/ix.php:2369 app/features/locations.php:58
1310
  #: app/features/locations.php:229 app/features/locations.php:281
1311
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1312
  #: app/features/mec/meta_boxes/display_options.php:641
1313
  #: app/features/mec/meta_boxes/search_form.php:38
1314
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1318,8 +906,8 @@ msgstr ""
1318
  #: app/features/mec/meta_boxes/search_form.php:292
1319
  #: app/features/mec/meta_boxes/search_form.php:332
1320
  #: app/features/mec/meta_boxes/search_form.php:379
1321
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1322
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1323
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1324
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1325
  #: app/skins/single/modern.php:77
@@ -1328,7 +916,7 @@ msgstr "helyszín"
1328
 
1329
  #: app/features/events.php:1451 app/features/events.php:1631
1330
  #: app/features/events.php:1675 app/features/ix.php:2328
1331
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1332
  #: app/features/mec/meta_boxes/display_options.php:642
1333
  #: app/features/mec/meta_boxes/search_form.php:45
1334
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1341,7 +929,7 @@ msgstr "helyszín"
1341
  #: app/features/mec/meta_boxes/search_form.php:433
1342
  #: app/features/organizers.php:58 app/features/organizers.php:199
1343
  #: app/features/organizers.php:255 app/features/organizers.php:257
1344
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1345
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1346
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1347
  #: app/skins/single/modern.php:21
@@ -1360,6 +948,14 @@ msgstr ""
1360
  msgid "iCal Export"
1361
  msgstr "iCal naptárba mentés"
1362
 
 
 
 
 
 
 
 
 
1363
  #: app/features/events.php:1575 app/features/events.php:1576
1364
  msgid "XML Export"
1365
  msgstr ""
@@ -1372,6 +968,13 @@ msgstr ""
1372
  msgid "Duplicate"
1373
  msgstr ""
1374
 
 
 
 
 
 
 
 
1375
  #: app/features/events.php:1631 app/features/events.php:1675
1376
  #: app/features/ix.php:2328 app/features/ix.php:2369
1377
  msgid "Start Time"
@@ -1456,7 +1059,6 @@ msgid "Note to reviewer"
1456
  msgstr ""
1457
 
1458
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1459
- #: app/features/gateways.php:695
1460
  msgid "Submit"
1461
  msgstr "Jóváhagyás"
1462
 
@@ -1472,332 +1074,46 @@ msgstr ""
1472
  msgid "eg. John Smith"
1473
  msgstr ""
1474
 
1475
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1476
- msgid "Featured Image"
1477
- msgstr ""
1478
-
1479
- #: app/features/fes/form.php:501
1480
- msgid "Remove Image"
1481
- msgstr ""
1482
-
1483
- #: app/features/fes/form.php:543 app/features/labels.php:61
1484
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1485
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1486
- #: app/skins/single/default.php:131 app/skins/single/default.php:333
1487
- #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1488
- msgid "Labels"
1489
- msgstr ""
1490
-
1491
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1492
- #: app/features/mec/meta_boxes/filter.php:138
1493
- msgid "Tags"
1494
- msgstr ""
1495
-
1496
- #: app/features/fes/form.php:590
1497
- msgid "Insert your desired tags, comma separated."
1498
- msgstr ""
1499
-
1500
- #: app/features/fes/list.php:21
1501
- msgid "Click again to remove!"
1502
- msgstr ""
1503
-
1504
- #: app/features/fes/list.php:64 app/features/fes/list.php:78
1505
- msgid "Add new"
1506
- msgstr ""
1507
-
1508
- #: app/features/fes/list.php:70
1509
- msgid "View"
1510
- msgstr ""
1511
-
1512
- #: app/features/fes/list.php:78
1513
- #, php-format
1514
- msgid "No events found! %s"
1515
- msgstr ""
1516
-
1517
- #: app/features/gateways.php:70 app/features/gateways.php:327
1518
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1519
- #: app/features/gateways.php:1396
1520
- msgid "Request is invalid!"
1521
- msgstr ""
1522
-
1523
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1524
- msgid "Thanks for your booking."
1525
- msgstr ""
1526
-
1527
- #: app/features/gateways.php:307 app/features/gateways.php:545
1528
- msgid "Stripe"
1529
- msgstr ""
1530
-
1531
- #: app/features/gateways.php:342 app/features/gateways.php:716
1532
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1533
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1534
- msgid "There is no attendee for booking!"
1535
- msgstr ""
1536
-
1537
- #: app/features/gateways.php:373 app/features/gateways.php:743
1538
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1539
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1540
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1541
- msgid ""
1542
- "Thanks for your booking. Your tickets booked, booking verification might be "
1543
- "needed, please check your email."
1544
- msgstr ""
1545
- "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
1546
- "jóváhagyásra lesz szükség!"
1547
-
1548
- #: app/features/gateways.php:390
1549
- #, php-format
1550
- msgid "MEC Transaction ID: %s"
1551
- msgstr ""
1552
-
1553
- #: app/features/gateways.php:473 app/features/gateways.php:668
1554
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1555
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1556
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1557
- msgid "Download Invoice"
1558
- msgstr ""
1559
-
1560
- #: app/features/gateways.php:509
1561
- msgid "Card Number"
1562
- msgstr ""
1563
-
1564
- #: app/features/gateways.php:515
1565
- msgid "CVC"
1566
- msgstr ""
1567
-
1568
- #: app/features/gateways.php:521
1569
- msgid "Expiration (MM/YYYY)"
1570
- msgstr ""
1571
-
1572
- #: app/features/gateways.php:522
1573
- msgid "Month"
1574
- msgstr ""
1575
-
1576
- #: app/features/gateways.php:524
1577
- msgid "Year"
1578
- msgstr ""
1579
-
1580
- #: app/features/gateways.php:532 app/features/gateways.php:919
1581
- #: app/features/gateways.php:1223
1582
- msgid "Pay"
1583
- msgstr ""
1584
-
1585
- #: app/features/gateways.php:556 app/features/gateways.php:623
1586
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1587
- #: app/features/gateways.php:1621
1588
- msgid "Comment"
1589
- msgstr ""
1590
-
1591
- #: app/features/gateways.php:559 app/features/gateways.php:626
1592
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1593
- #: app/features/gateways.php:1624
1594
- msgid "HTML allowed."
1595
- msgstr ""
1596
-
1597
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1598
- msgid "Secret Key"
1599
- msgstr ""
1600
-
1601
- #: app/features/gateways.php:569
1602
- msgid "Publishable Key"
1603
- msgstr ""
1604
-
1605
- #: app/features/gateways.php:598 app/features/gateways.php:612
1606
- msgid "Pay Locally"
1607
- msgstr ""
1608
-
1609
- #: app/features/gateways.php:766 app/features/gateways.php:780
1610
- msgid "PayPal Express"
1611
- msgstr ""
1612
-
1613
- #: app/features/gateways.php:798
1614
- msgid "Business Account"
1615
- msgstr ""
1616
-
1617
- #: app/features/gateways.php:801
1618
- msgid "Normally PayPal Email."
1619
- msgstr ""
1620
-
1621
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1622
- msgid "Mode"
1623
- msgstr ""
1624
-
1625
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1626
- msgid "Live"
1627
- msgstr ""
1628
-
1629
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1630
- msgid "Sandbox"
1631
- msgstr ""
1632
-
1633
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1634
- msgid "Waiting for getting response from gateway."
1635
- msgstr ""
1636
-
1637
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1638
- msgid "Payment was invalid! Booking failed."
1639
- msgstr ""
1640
-
1641
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1642
- msgid "PayPal Credit Card"
1643
- msgstr ""
1644
-
1645
- #: app/features/gateways.php:1089
1646
- msgid "API Username"
1647
- msgstr ""
1648
-
1649
- #: app/features/gateways.php:1095
1650
- msgid "API Password"
1651
- msgstr ""
1652
-
1653
- #: app/features/gateways.php:1101
1654
- msgid "API Signature"
1655
- msgstr ""
1656
-
1657
- #: app/features/gateways.php:1181
1658
- msgid "First name"
1659
- msgstr "Keresztnév"
1660
-
1661
- #: app/features/gateways.php:1185
1662
- msgid "Last name"
1663
- msgstr "Vezetéknév"
1664
-
1665
- #: app/features/gateways.php:1189
1666
- msgid "Card Type"
1667
- msgstr ""
1668
-
1669
- #: app/features/gateways.php:1191
1670
- msgid "Visa"
1671
- msgstr ""
1672
-
1673
- #: app/features/gateways.php:1192
1674
- msgid "MasterCard"
1675
- msgstr ""
1676
-
1677
- #: app/features/gateways.php:1193
1678
- msgid "Discover"
1679
- msgstr ""
1680
-
1681
- #: app/features/gateways.php:1194
1682
- msgid "American Express"
1683
- msgstr ""
1684
-
1685
- #: app/features/gateways.php:1198
1686
- msgid "CC Number"
1687
- msgstr ""
1688
-
1689
- #: app/features/gateways.php:1215
1690
- msgid "CVV2"
1691
- msgstr ""
1692
-
1693
- #: app/features/gateways.php:1248
1694
- msgid "Payment is invalid."
1695
- msgstr "Fizetés érvénytelen"
1696
-
1697
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1698
- msgid "Pay by WooCommerce"
1699
- msgstr ""
1700
-
1701
- #: app/features/gateways.php:1418
1702
- #, php-format
1703
- msgid "Booking fee for %s"
1704
- msgstr ""
1705
-
1706
- #: app/features/gateways.php:1429
1707
- msgid "Your order is created. Please proceed with checkout."
1708
- msgstr "A foglalás megtörtént. Kérjük ellenőrizze azt!"
1709
-
1710
- #: app/features/gateways.php:1591
1711
- msgid "Add to Cart"
1712
- msgstr ""
1713
-
1714
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1715
- msgid "Checkout"
1716
- msgstr "Ellenőrzés"
1717
-
1718
- #: app/features/gateways.php:1612
1719
- msgid "WooCommerce must be installed and activated first."
1720
- msgstr ""
1721
-
1722
- #: app/features/gateways.php:1628
1723
- msgid "Automatically complete WC orders"
1724
- msgstr ""
1725
-
1726
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1727
- msgid "Enabled"
1728
- msgstr ""
1729
-
1730
- #: app/features/gateways.php:1632
1731
- #: app/features/mec/meta_boxes/search_form.php:33
1732
- #: app/features/mec/meta_boxes/search_form.php:40
1733
- #: app/features/mec/meta_boxes/search_form.php:47
1734
- #: app/features/mec/meta_boxes/search_form.php:54
1735
- #: app/features/mec/meta_boxes/search_form.php:61
1736
- #: app/features/mec/meta_boxes/search_form.php:68
1737
- #: app/features/mec/meta_boxes/search_form.php:80
1738
- #: app/features/mec/meta_boxes/search_form.php:87
1739
- #: app/features/mec/meta_boxes/search_form.php:94
1740
- #: app/features/mec/meta_boxes/search_form.php:101
1741
- #: app/features/mec/meta_boxes/search_form.php:108
1742
- #: app/features/mec/meta_boxes/search_form.php:115
1743
- #: app/features/mec/meta_boxes/search_form.php:127
1744
- #: app/features/mec/meta_boxes/search_form.php:134
1745
- #: app/features/mec/meta_boxes/search_form.php:141
1746
- #: app/features/mec/meta_boxes/search_form.php:148
1747
- #: app/features/mec/meta_boxes/search_form.php:155
1748
- #: app/features/mec/meta_boxes/search_form.php:162
1749
- #: app/features/mec/meta_boxes/search_form.php:174
1750
- #: app/features/mec/meta_boxes/search_form.php:181
1751
- #: app/features/mec/meta_boxes/search_form.php:193
1752
- #: app/features/mec/meta_boxes/search_form.php:200
1753
- #: app/features/mec/meta_boxes/search_form.php:207
1754
- #: app/features/mec/meta_boxes/search_form.php:214
1755
- #: app/features/mec/meta_boxes/search_form.php:221
1756
- #: app/features/mec/meta_boxes/search_form.php:228
1757
- #: app/features/mec/meta_boxes/search_form.php:240
1758
- #: app/features/mec/meta_boxes/search_form.php:247
1759
- #: app/features/mec/meta_boxes/search_form.php:254
1760
- #: app/features/mec/meta_boxes/search_form.php:261
1761
- #: app/features/mec/meta_boxes/search_form.php:268
1762
- #: app/features/mec/meta_boxes/search_form.php:275
1763
- #: app/features/mec/meta_boxes/search_form.php:287
1764
- #: app/features/mec/meta_boxes/search_form.php:294
1765
- #: app/features/mec/meta_boxes/search_form.php:301
1766
- #: app/features/mec/meta_boxes/search_form.php:308
1767
- #: app/features/mec/meta_boxes/search_form.php:315
1768
- #: app/features/mec/meta_boxes/search_form.php:327
1769
- #: app/features/mec/meta_boxes/search_form.php:334
1770
- #: app/features/mec/meta_boxes/search_form.php:341
1771
- #: app/features/mec/meta_boxes/search_form.php:348
1772
- #: app/features/mec/meta_boxes/search_form.php:355
1773
- #: app/features/mec/meta_boxes/search_form.php:362
1774
- #: app/features/mec/meta_boxes/search_form.php:374
1775
- #: app/features/mec/meta_boxes/search_form.php:381
1776
- #: app/features/mec/meta_boxes/search_form.php:388
1777
- #: app/features/mec/meta_boxes/search_form.php:395
1778
- #: app/features/mec/meta_boxes/search_form.php:402
1779
- #: app/features/mec/meta_boxes/search_form.php:409
1780
- #: app/features/mec/meta_boxes/search_form.php:421
1781
- #: app/features/mec/meta_boxes/search_form.php:428
1782
- #: app/features/mec/meta_boxes/search_form.php:435
1783
- #: app/features/mec/meta_boxes/search_form.php:442
1784
- #: app/features/mec/meta_boxes/search_form.php:449
1785
- #: app/features/mec/meta_boxes/search_form.php:456
1786
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1787
- #: app/features/mec/settings.php:549
1788
- msgid "Disabled"
1789
  msgstr ""
1790
 
1791
- #: app/features/gateways.php:1634
1792
- msgid "It applies only to the orders that are related to MEC."
1793
  msgstr ""
1794
 
1795
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1796
- msgid "Free"
1797
- msgstr "Ingyenes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1798
 
1799
- #: app/features/gateways.php:1744
1800
- msgid "This booking is not free!"
 
1801
  msgstr ""
1802
 
1803
  #: app/features/ix.php:95
@@ -1832,6 +1148,10 @@ msgstr ""
1832
  msgid "Third Party plugin is invalid!"
1833
  msgstr ""
1834
 
 
 
 
 
1835
  #: app/features/ix.php:1961 app/features/ix.php:2791
1836
  msgid "Please select some events to import!"
1837
  msgstr ""
@@ -1853,6 +1173,35 @@ msgstr ""
1853
  msgid "All seems good! Please click %s for authenticating your app."
1854
  msgstr ""
1855
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1856
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1857
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1858
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1898,7 +1247,7 @@ msgid ""
1898
  "This will export all of your website events' data into your desired format."
1899
  msgstr ""
1900
 
1901
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1902
  msgid "iCal"
1903
  msgstr ""
1904
 
@@ -1936,6 +1285,10 @@ msgstr ""
1936
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1937
  msgstr ""
1938
 
 
 
 
 
1939
  #: app/features/ix/export_g_calendar.php:25
1940
  msgid "Add events to Google Calendar"
1941
  msgstr ""
@@ -1992,7 +1345,7 @@ msgstr ""
1992
  msgid "Add to Google Calendar"
1993
  msgstr "Google Naptárba mentés"
1994
 
1995
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
1996
  msgid "Checking ..."
1997
  msgstr ""
1998
 
@@ -2034,10 +1387,10 @@ msgstr ""
2034
  msgid "ICS Feed"
2035
  msgstr ""
2036
 
2037
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2038
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2039
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2040
- #: app/features/mec/settings.php:1034
2041
  #, php-format
2042
  msgid "%s is required to use this feature."
2043
  msgstr ""
@@ -2049,10 +1402,10 @@ msgstr ""
2049
  #: app/features/mec/meta_boxes/display_options.php:558
2050
  #: app/features/mec/meta_boxes/display_options.php:608
2051
  #: app/features/mec/meta_boxes/display_options.php:734
2052
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2053
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2054
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2055
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2056
  msgid "Pro version of Modern Events Calendar"
2057
  msgstr ""
2058
 
@@ -2269,6 +1622,11 @@ msgstr ""
2269
  msgid "Select label color"
2270
  msgstr ""
2271
 
 
 
 
 
 
2272
  #: app/features/labels.php:154 app/features/locations.php:232
2273
  #: app/features/organizers.php:202
2274
  msgid "Slug"
@@ -2279,8 +1637,8 @@ msgstr ""
2279
  msgid "Event %s"
2280
  msgstr ""
2281
 
2282
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2283
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2284
  msgid "Locations"
2285
  msgstr ""
2286
 
@@ -2348,7 +1706,7 @@ msgstr ""
2348
  msgid "eg. City Hall"
2349
  msgstr ""
2350
 
2351
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2352
  msgid "Event Location"
2353
  msgstr ""
2354
 
@@ -2370,91 +1728,91 @@ msgstr ""
2370
  msgid "Don't show map in single event page"
2371
  msgstr ""
2372
 
2373
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2374
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2375
  msgid "Organizers"
2376
  msgstr ""
2377
 
2378
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2379
- #: app/features/mec/dashboard.php:92
2380
  msgid "Shortcodes"
2381
  msgstr ""
2382
 
2383
- #: app/features/modern-events-calendar-lite.php:195
2384
  msgid "MEC - Settings"
2385
  msgstr ""
2386
 
2387
- #: app/features/modern-events-calendar-lite.php:210
2388
  msgid "Add Shortcode"
2389
  msgstr ""
2390
 
2391
- #: app/features/modern-events-calendar-lite.php:211
2392
  msgid "Add New Shortcode"
2393
  msgstr ""
2394
 
2395
- #: app/features/modern-events-calendar-lite.php:212
2396
  msgid "No shortcodes found!"
2397
  msgstr ""
2398
 
2399
- #: app/features/modern-events-calendar-lite.php:213
2400
  msgid "All Shortcodes"
2401
  msgstr ""
2402
 
2403
- #: app/features/modern-events-calendar-lite.php:214
2404
  msgid "Edit shortcodes"
2405
  msgstr ""
2406
 
2407
- #: app/features/modern-events-calendar-lite.php:215
2408
  msgid "No shortcodes found in Trash!"
2409
  msgstr ""
2410
 
2411
- #: app/features/modern-events-calendar-lite.php:262
2412
  msgid "Display Options"
2413
  msgstr ""
2414
 
2415
- #: app/features/modern-events-calendar-lite.php:263
2416
  msgid "Filter Options"
2417
  msgstr ""
2418
 
2419
- #: app/features/modern-events-calendar-lite.php:265
2420
  msgid "Search Form"
2421
  msgstr ""
2422
 
2423
- #: app/features/modern-events-calendar-lite.php:556
2424
  msgid "Single Event Display Method"
2425
  msgstr ""
2426
 
2427
- #: app/features/modern-events-calendar-lite.php:561
2428
  msgid "Separate Window"
2429
  msgstr ""
2430
 
2431
- #: app/features/modern-events-calendar-lite.php:562
2432
  msgid "Modal 1"
2433
  msgstr ""
2434
 
2435
- #: app/features/mec/dashboard.php:54
2436
  #, php-format
2437
  msgid "Welcome %s"
2438
  msgstr ""
2439
 
2440
- #: app/features/mec/dashboard.php:57
2441
  #, php-format
2442
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2443
  msgstr ""
2444
 
2445
- #: app/features/mec/dashboard.php:57
2446
  msgid "Modern Event Calendar"
2447
  msgstr ""
2448
 
2449
- #: app/features/mec/dashboard.php:57
2450
  msgid "Modern Event Calendar (Lite)"
2451
  msgstr ""
2452
 
2453
- #: app/features/mec/dashboard.php:66
2454
  msgid "Version"
2455
  msgstr ""
2456
 
2457
- #: app/features/mec/dashboard.php:75
2458
  #, php-format
2459
  msgid ""
2460
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2462,120 +1820,120 @@ msgid ""
2462
  "Spots, etc you should %s to the Pro version."
2463
  msgstr ""
2464
 
2465
- #: app/features/mec/dashboard.php:75
2466
  msgid "lite"
2467
  msgstr ""
2468
 
2469
- #: app/features/mec/dashboard.php:75
2470
  msgid "upgrade"
2471
  msgstr ""
2472
 
2473
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2474
  msgid "Documentation"
2475
  msgstr ""
2476
 
2477
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2478
  msgid ""
2479
  "Our documentation is simple and functional with full details and cover all "
2480
  "essential aspects from beginning to the most advanced parts."
2481
  msgstr ""
2482
 
2483
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2484
  msgid "DOCUMENTATION"
2485
  msgstr ""
2486
 
2487
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2488
  msgid "Support Forum"
2489
  msgstr ""
2490
 
2491
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2492
  msgid ""
2493
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2494
  "If you want to use this service you need to upgrade your plugin to Pro "
2495
  "version. Click on the following button."
2496
  msgstr ""
2497
 
2498
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2499
  msgid ""
2500
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2501
  "If you have any issues please don't hesitate to contact us, we will reply as "
2502
  "soon as possible."
2503
  msgstr ""
2504
 
2505
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2506
  msgid "GO PREMIUM"
2507
  msgstr ""
2508
 
2509
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2510
  msgid "OPEN A TICKET"
2511
  msgstr ""
2512
 
2513
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2514
  msgid "Upcoming Events"
2515
  msgstr ""
2516
 
2517
- #: app/features/mec/dashboard.php:177
2518
  msgid "Popular Gateways"
2519
  msgstr ""
2520
 
2521
- #: app/features/mec/dashboard.php:228
2522
  msgid "Total Bookings"
2523
  msgstr ""
2524
 
2525
- #: app/features/mec/dashboard.php:255
2526
  msgid "This Month"
2527
  msgstr ""
2528
 
2529
- #: app/features/mec/dashboard.php:256
2530
  msgid "Last Month"
2531
  msgstr ""
2532
 
2533
- #: app/features/mec/dashboard.php:257
2534
  msgid "This Year"
2535
  msgstr ""
2536
 
2537
- #: app/features/mec/dashboard.php:258
2538
  msgid "Last Year"
2539
  msgstr ""
2540
 
2541
- #: app/features/mec/dashboard.php:270
2542
  msgid "Bar"
2543
  msgstr ""
2544
 
2545
- #: app/features/mec/dashboard.php:271
2546
  msgid "Line"
2547
  msgstr ""
2548
 
2549
- #: app/features/mec/dashboard.php:273
2550
  msgid "Filter"
2551
  msgstr ""
2552
 
2553
- #: app/features/mec/dashboard.php:289
2554
  #, php-format
2555
  msgid "Total Sells (%s)"
2556
  msgstr ""
2557
 
2558
- #: app/features/mec/dashboard.php:310
2559
  msgid "Change Log"
2560
  msgstr ""
2561
 
2562
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2563
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2564
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2565
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2566
  msgid "Styling Options"
2567
  msgstr ""
2568
 
2569
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2570
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2571
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2572
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2573
  msgid "Custom CSS"
2574
  msgstr ""
2575
 
2576
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2577
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2578
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2579
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2580
  #: app/features/mec/support.php:64
2581
  msgid "Messages"
@@ -2583,7 +1941,7 @@ msgstr ""
2583
 
2584
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2585
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2586
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2587
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2588
  #: app/features/mec/support.php:84
2589
  msgid "Support"
@@ -2596,24 +1954,25 @@ msgstr ""
2596
  #: app/features/mec/notifications.php:409
2597
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2598
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2599
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2600
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2601
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2602
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2603
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2604
  msgid "Save Changes"
2605
  msgstr ""
2606
 
2607
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2608
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2609
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2610
  #: app/features/mec/styling.php:313
2611
  msgid "Saved"
2612
  msgstr ""
2613
 
2614
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2615
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2616
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2617
  #: app/features/mec/styling.php:314
2618
  msgid "Settings Saved!"
2619
  msgstr ""
@@ -2819,6 +2178,15 @@ msgstr ""
2819
  msgid "Default values are d and F"
2820
  msgstr ""
2821
 
 
 
 
 
 
 
 
 
 
2822
  #: app/features/mec/meta_boxes/display_options.php:86
2823
  #: app/features/mec/meta_boxes/display_options.php:195
2824
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -2898,13 +2266,13 @@ msgstr ""
2898
 
2899
  #: app/features/mec/meta_boxes/display_options.php:287
2900
  #: app/features/mec/meta_boxes/display_options.php:296
2901
- #: app/libraries/main.php:323 app/libraries/main.php:1118
2902
  msgid "List View"
2903
  msgstr ""
2904
 
2905
  #: app/features/mec/meta_boxes/display_options.php:288
2906
  #: app/features/mec/meta_boxes/display_options.php:306
2907
- #: app/libraries/main.php:327 app/libraries/main.php:1112
2908
  msgid "Yearly View"
2909
  msgstr ""
2910
 
@@ -2915,13 +2283,13 @@ msgstr ""
2915
 
2916
  #: app/features/mec/meta_boxes/display_options.php:290
2917
  #: app/features/mec/meta_boxes/display_options.php:326
2918
- #: app/libraries/main.php:330 app/libraries/main.php:1114
2919
  msgid "Weekly View"
2920
  msgstr ""
2921
 
2922
  #: app/features/mec/meta_boxes/display_options.php:291
2923
  #: app/features/mec/meta_boxes/display_options.php:336
2924
- #: app/libraries/main.php:329 app/libraries/main.php:1115
2925
  msgid "Daily View"
2926
  msgstr ""
2927
 
@@ -3157,6 +2525,66 @@ msgstr ""
3157
  msgid "Show Search Form"
3158
  msgstr ""
3159
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3160
  #: app/features/mec/meta_boxes/search_form.php:59
3161
  #: app/features/mec/meta_boxes/search_form.php:106
3162
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3391,6 +2819,14 @@ msgstr ""
3391
  msgid "Invoice Link"
3392
  msgstr ""
3393
 
 
 
 
 
 
 
 
 
3394
  #: app/features/mec/notifications.php:145
3395
  msgid "Booking Verification"
3396
  msgstr ""
@@ -3407,7 +2843,7 @@ msgstr ""
3407
  msgid "Email/Booking verification link."
3408
  msgstr ""
3409
 
3410
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3411
  msgid "Booking Confirmation"
3412
  msgstr ""
3413
 
@@ -3484,7 +2920,7 @@ msgstr ""
3484
  msgid "Status of event"
3485
  msgstr ""
3486
 
3487
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3488
  msgid "Event Note"
3489
  msgstr ""
3490
 
@@ -3492,472 +2928,480 @@ msgstr ""
3492
  msgid "Admin events management link."
3493
  msgstr ""
3494
 
3495
- #: app/features/mec/settings.php:42
3496
  msgid "Archive Page Options"
3497
  msgstr ""
3498
 
3499
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3500
  msgid "Export Module Options"
3501
  msgstr ""
3502
 
3503
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3504
  msgid "Local Time Module"
3505
  msgstr ""
3506
 
3507
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3508
  msgid "QR Code Module"
3509
  msgstr ""
3510
 
3511
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3512
  msgid "Weather Module"
3513
  msgstr ""
3514
 
3515
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3516
  msgid "Additional Organizers"
3517
  msgstr ""
3518
 
3519
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3520
  msgid "Taxes / Fees"
3521
  msgstr ""
3522
 
3523
- #: app/features/mec/settings.php:250
3524
  msgid "Time Format"
3525
  msgstr ""
3526
 
3527
- #: app/features/mec/settings.php:253
3528
  msgid "12 hours format with AM/PM"
3529
  msgstr ""
3530
 
3531
- #: app/features/mec/settings.php:254
3532
  msgid "24 hours format"
3533
  msgstr ""
3534
 
3535
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3536
  msgid ""
3537
  "This option is for showing start/end time of events on frontend of website."
3538
  msgstr ""
3539
 
3540
- #: app/features/mec/settings.php:261
3541
  msgid "Hide Events"
3542
  msgstr ""
3543
 
3544
- #: app/features/mec/settings.php:264
3545
  msgid "On Event Start"
3546
  msgstr ""
3547
 
3548
- #: app/features/mec/settings.php:265
3549
  msgid "+1 Hour after start"
3550
  msgstr ""
3551
 
3552
- #: app/features/mec/settings.php:266
3553
  msgid "+2 Hours after start"
3554
  msgstr ""
3555
 
3556
- #: app/features/mec/settings.php:267
3557
  msgid "On Event End"
3558
  msgstr ""
3559
 
3560
- #: app/features/mec/settings.php:275
3561
  msgid "Multiple Day Events"
3562
  msgstr ""
3563
 
3564
- #: app/features/mec/settings.php:278
3565
  msgid "Show only first day on List/Grid/Slider skins"
3566
  msgstr ""
3567
 
3568
- #: app/features/mec/settings.php:279
3569
  msgid "Show only first day on all skins"
3570
  msgstr ""
3571
 
3572
- #: app/features/mec/settings.php:280
3573
  msgid "Show all days"
3574
  msgstr ""
3575
 
3576
- #: app/features/mec/settings.php:282
3577
  msgid ""
3578
  "For showing all days of multiple day events on frontend or only show the "
3579
  "first day."
3580
  msgstr ""
3581
 
3582
- #: app/features/mec/settings.php:288
3583
  msgid "Remove MEC Data on Plugin Uninstall"
3584
  msgstr ""
3585
 
3586
- #: app/features/mec/settings.php:298
 
 
 
 
3587
  msgid "Exclude Date Suffix"
3588
  msgstr ""
3589
 
3590
- #: app/features/mec/settings.php:301
3591
  msgid "Remove suffix from calendars"
3592
  msgstr ""
3593
 
3594
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3595
  msgid "Weekdays"
3596
  msgstr ""
3597
 
3598
- #: app/features/mec/settings.php:316
3599
  msgid ""
3600
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3601
  "and Friday."
3602
  msgstr ""
3603
 
3604
- #: app/features/mec/settings.php:323
3605
  msgid "Weekends"
3606
  msgstr ""
3607
 
3608
- #: app/features/mec/settings.php:331
3609
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3610
  msgstr ""
3611
 
3612
- #: app/features/mec/settings.php:339
3613
  msgid "Archive Pages"
3614
  msgstr ""
3615
 
3616
- #: app/features/mec/settings.php:342
3617
  msgid "Archive Page Title"
3618
  msgstr ""
3619
 
3620
- #: app/features/mec/settings.php:345
3621
  msgid "Default value is Events"
3622
  msgstr ""
3623
 
3624
- #: app/features/mec/settings.php:350
3625
  msgid "Archive Page Skin"
3626
  msgstr ""
3627
 
3628
- #: app/features/mec/settings.php:357
3629
  msgid "Default value is Calendar/Monthly View"
3630
  msgstr ""
3631
 
3632
- #: app/features/mec/settings.php:362
3633
  msgid "Category Page Skin"
3634
  msgstr ""
3635
 
3636
- #: app/features/mec/settings.php:369
3637
  msgid "Default value is List View"
3638
  msgstr ""
3639
 
3640
- #: app/features/mec/settings.php:374
3641
  msgid "Category Events Method"
3642
  msgstr ""
3643
 
3644
- #: app/features/mec/settings.php:378
3645
  msgid "Expired Events"
3646
  msgstr ""
3647
 
3648
- #: app/features/mec/settings.php:380
3649
  msgid "Default value is Upcoming Events"
3650
  msgstr ""
3651
 
3652
- #: app/features/mec/settings.php:385
3653
  msgid "Events Archive Status"
3654
  msgstr ""
3655
 
3656
- #: app/features/mec/settings.php:388
3657
  msgid "Enabled (Recommended)"
3658
  msgstr ""
3659
 
3660
- #: app/features/mec/settings.php:391
3661
  msgid ""
3662
  "If you disable it, then you should create a page as archive page of MEC. "
3663
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3664
  "MEC rewrite rules."
3665
  msgstr ""
3666
 
3667
- #: app/features/mec/settings.php:401
3668
  msgid "Main Slug"
3669
  msgstr ""
3670
 
3671
- #: app/features/mec/settings.php:404
3672
  msgid ""
3673
  "Default value is events. Valid characters are lowercase a-z, - character and "
3674
  "numbers."
3675
  msgstr ""
3676
 
3677
- #: app/features/mec/settings.php:408
3678
  msgid "Category Slug"
3679
  msgstr ""
3680
 
3681
- #: app/features/mec/settings.php:411
3682
  msgid ""
3683
  "It's slug of MEC categories, you can change it to events-cat or something "
3684
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3685
  "character and numbers."
3686
  msgstr ""
3687
 
3688
- #: app/features/mec/settings.php:421
3689
  msgid "Single Event Date Format"
3690
  msgstr ""
3691
 
3692
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3693
  msgid "Default is M d Y"
3694
  msgstr ""
3695
 
3696
- #: app/features/mec/settings.php:428
3697
  msgid "Date Method"
3698
  msgstr ""
3699
 
3700
- #: app/features/mec/settings.php:431
3701
  msgid "Next occurrence date"
3702
  msgstr ""
3703
 
3704
- #: app/features/mec/settings.php:432
3705
  msgid "Referred date"
3706
  msgstr ""
3707
 
3708
- #: app/features/mec/settings.php:434
3709
  msgid ""
3710
  "\"Referred date\" shows the event date based on referred date in event list."
3711
  msgstr ""
3712
 
3713
- #: app/features/mec/settings.php:438
3714
  msgid "Single Event Style"
3715
  msgstr ""
3716
 
3717
- #: app/features/mec/settings.php:441
3718
  msgid "Default Style"
3719
  msgstr ""
3720
 
3721
- #: app/features/mec/settings.php:442
3722
  msgid "Modern Style"
3723
  msgstr ""
3724
 
3725
- #: app/features/mec/settings.php:444
3726
  msgid "Choose your single event style."
3727
  msgstr ""
3728
 
3729
- #: app/features/mec/settings.php:453
3730
  msgid "Currency"
3731
  msgstr ""
3732
 
3733
- #: app/features/mec/settings.php:463
3734
  msgid "Currency Sign"
3735
  msgstr ""
3736
 
3737
- #: app/features/mec/settings.php:466
3738
  msgid "Default value will be \"currency\" if you leave it empty."
3739
  msgstr ""
3740
 
3741
- #: app/features/mec/settings.php:470
3742
  msgid "Currency Position"
3743
  msgstr ""
3744
 
3745
- #: app/features/mec/settings.php:473
3746
  msgid "Before $10"
3747
  msgstr ""
3748
 
3749
- #: app/features/mec/settings.php:474
3750
  msgid "After 10$"
3751
  msgstr ""
3752
 
3753
- #: app/features/mec/settings.php:479
3754
  msgid "Thousand Separator"
3755
  msgstr ""
3756
 
3757
- #: app/features/mec/settings.php:485
3758
  msgid "Decimal Separator"
3759
  msgstr ""
3760
 
3761
- #: app/features/mec/settings.php:495
3762
  msgid "No decimal"
3763
  msgstr ""
3764
 
3765
- #: app/features/mec/settings.php:511
3766
  msgid "Show Google Maps on event page"
3767
  msgstr ""
3768
 
3769
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3770
- #: app/features/mec/settings.php:1135
3771
  msgid "API Key"
3772
  msgstr ""
3773
 
3774
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3775
- #: app/features/mec/settings.php:1145
3776
  msgid "Required!"
3777
  msgstr ""
3778
 
3779
- #: app/features/mec/settings.php:523
3780
  msgid "Zoom level"
3781
  msgstr ""
3782
 
3783
- #: app/features/mec/settings.php:530
3784
  msgid ""
3785
  "For Google Maps module in single event page. In Google Maps skin, it will "
3786
  "caculate the zoom level automatically based on event boundaries."
3787
  msgstr ""
3788
 
3789
- #: app/features/mec/settings.php:534
3790
  msgid "Google Maps Style"
3791
  msgstr ""
3792
 
3793
- #: app/features/mec/settings.php:538
3794
  msgid "Default"
3795
  msgstr ""
3796
 
3797
- #: app/features/mec/settings.php:546
3798
  msgid "Direction on single event"
3799
  msgstr ""
3800
 
3801
- #: app/features/mec/settings.php:550
3802
  msgid "Simple Method"
3803
  msgstr ""
3804
 
3805
- #: app/features/mec/settings.php:551
3806
  msgid "Advanced Method"
3807
  msgstr ""
3808
 
3809
- #: app/features/mec/settings.php:556
3810
  msgid "Lightbox Date Format"
3811
  msgstr ""
3812
 
3813
- #: app/features/mec/settings.php:559
3814
  msgid "Default value is M d Y"
3815
  msgstr ""
3816
 
3817
- #: app/features/mec/settings.php:563
3818
  msgid "Google Maps API"
3819
  msgstr ""
3820
 
3821
- #: app/features/mec/settings.php:567
3822
  msgid "Don't load Google Maps API library"
3823
  msgstr ""
3824
 
3825
- #: app/features/mec/settings.php:569
3826
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3827
  msgstr ""
3828
 
3829
- #: app/features/mec/settings.php:581
3830
  msgid "Enable Google Recaptcha"
3831
  msgstr ""
3832
 
3833
- #: app/features/mec/settings.php:588
3834
  msgid "Enable on booking form"
3835
  msgstr ""
3836
 
3837
- #: app/features/mec/settings.php:594
3838
  msgid "Enable on \"Frontend Event Submittion\" form"
3839
  msgstr ""
3840
 
3841
- #: app/features/mec/settings.php:598
3842
  msgid "Site Key"
3843
  msgstr ""
3844
 
3845
- #: app/features/mec/settings.php:618
 
 
 
 
3846
  msgid ""
3847
  "Show export module (iCal export and add to Google calendars) on event page"
3848
  msgstr ""
3849
 
3850
- #: app/features/mec/settings.php:625
3851
  msgid "Google Calendar"
3852
  msgstr ""
3853
 
3854
- #: app/features/mec/settings.php:645
3855
  msgid "Show event time based on local time of visitor on event page"
3856
  msgstr ""
3857
 
3858
- #: app/features/mec/settings.php:661
3859
  msgid "Show QR code of event in details page and booking invoice"
3860
  msgstr ""
3861
 
3862
- #: app/features/mec/settings.php:679
3863
  msgid "Show weather module on event page"
3864
  msgstr ""
3865
 
3866
- #: app/features/mec/settings.php:687
3867
  #, php-format
3868
  msgid "You can get a free API Key from %s"
3869
  msgstr ""
3870
 
3871
- #: app/features/mec/settings.php:699
3872
  msgid "Show countdown module on event page"
3873
  msgstr ""
3874
 
3875
- #: app/features/mec/settings.php:704
3876
  msgid "Countdown Style"
3877
  msgstr ""
3878
 
3879
- #: app/features/mec/settings.php:707
3880
  msgid "Plain Style"
3881
  msgstr ""
3882
 
3883
- #: app/features/mec/settings.php:708
3884
  msgid "Flip Style"
3885
  msgstr ""
3886
 
3887
- #: app/features/mec/settings.php:720
3888
  msgid "Show social network module"
3889
  msgstr ""
3890
 
3891
- #: app/features/mec/settings.php:745
3892
  msgid "Show next event module on event page"
3893
  msgstr ""
3894
 
3895
- #: app/features/mec/settings.php:750
3896
  msgid "Method"
3897
  msgstr ""
3898
 
3899
- #: app/features/mec/settings.php:753
3900
  msgid "Next Occurrence of Current Event"
3901
  msgstr ""
3902
 
3903
- #: app/features/mec/settings.php:754
3904
  msgid "Next Occurrence of Other Events"
3905
  msgstr ""
3906
 
3907
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
3908
  msgid "Date Format"
3909
  msgstr ""
3910
 
3911
- #: app/features/mec/settings.php:771
3912
  msgid "Events List Page"
3913
  msgstr ""
3914
 
3915
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
3916
  #, php-format
3917
  msgid "Put %s shortcode into the page."
3918
  msgstr ""
3919
 
3920
- #: app/features/mec/settings.php:783
3921
  msgid "Add/Edit Events Page"
3922
  msgstr ""
3923
 
3924
- #: app/features/mec/settings.php:797
3925
  msgid "Enable event submission by guest (Not logged-in) users"
3926
  msgstr ""
3927
 
3928
- #: app/features/mec/settings.php:804
3929
  msgid "Enable mandatory email and name for guest user"
3930
  msgstr ""
3931
 
3932
- #: app/features/mec/settings.php:808
3933
  msgid "Frontend Event Submission Sections"
3934
  msgstr ""
3935
 
3936
- #: app/features/mec/settings.php:830
3937
  msgid "Event Categories"
3938
  msgstr ""
3939
 
3940
- #: app/features/mec/settings.php:836
3941
  msgid "Event Labels"
3942
  msgstr ""
3943
 
3944
- #: app/features/mec/settings.php:848
3945
  msgid "Event Tags"
3946
  msgstr ""
3947
 
3948
- #: app/features/mec/settings.php:860
3949
  msgid "Event Organizer"
3950
  msgstr ""
3951
 
3952
- #: app/features/mec/settings.php:872
3953
  msgid "Booking Options"
3954
  msgstr ""
3955
 
3956
- #: app/features/mec/settings.php:878
3957
  msgid "Fees/Taxes Options"
3958
  msgstr ""
3959
 
3960
- #: app/features/mec/settings.php:886
3961
  #, php-format
3962
  msgid ""
3963
  "Users can put a note for editors while they're submitting the event. Also "
@@ -3965,203 +3409,208 @@ msgid ""
3965
  "users' note in email."
3966
  msgstr ""
3967
 
3968
- #: app/features/mec/settings.php:890
3969
  msgid "Visibility of Note"
3970
  msgstr ""
3971
 
3972
- #: app/features/mec/settings.php:893
3973
  msgid "Always"
3974
  msgstr ""
3975
 
3976
- #: app/features/mec/settings.php:894
3977
  msgid "While event is not published"
3978
  msgstr ""
3979
 
3980
- #: app/features/mec/settings.php:897
3981
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3982
  msgstr ""
3983
 
3984
- #: app/features/mec/settings.php:903
3985
  msgid "Exceptional days"
3986
  msgstr ""
3987
 
3988
- #: app/features/mec/settings.php:907
3989
  msgid "Show exceptional days option on Add/Edit events page"
3990
  msgstr ""
3991
 
3992
- #: app/features/mec/settings.php:908
3993
  msgid ""
3994
  "Using this option you can include/exclude certain days to/from event "
3995
  "occurrence dates."
3996
  msgstr ""
3997
 
3998
- #: app/features/mec/settings.php:918
3999
  msgid ""
4000
  "Show additional organizers option on Add/Edit events page and single event "
4001
  "page."
4002
  msgstr ""
4003
 
4004
- #: app/features/mec/settings.php:932
4005
  msgid "Enable booking module"
4006
  msgstr ""
4007
 
4008
- #: app/features/mec/settings.php:940
4009
  msgid "Default is Y-m-d"
4010
  msgstr ""
4011
 
4012
- #: app/features/mec/settings.php:944
4013
  msgid "Maximum Dates"
4014
  msgstr ""
4015
 
4016
- #: app/features/mec/settings.php:946
4017
  msgid "Default is 6"
4018
  msgstr ""
4019
 
4020
- #: app/features/mec/settings.php:950
4021
  msgid "Thank You Page"
4022
  msgstr ""
4023
 
4024
- #: app/features/mec/settings.php:958
4025
  msgid ""
4026
  "User redirects to this page after booking. Leave it empty if you want to "
4027
  "disable it."
4028
  msgstr ""
4029
 
4030
- #: app/features/mec/settings.php:966
4031
  msgid "Enable Express Attendees Form"
4032
  msgstr ""
4033
 
4034
- #: app/features/mec/settings.php:968
4035
  msgid ""
4036
  "Users are able to apply first attendee information for other attendees in "
4037
  "the booking form."
4038
  msgstr ""
4039
 
4040
- #: app/features/mec/settings.php:971
4041
  msgid "Email verification"
4042
  msgstr ""
4043
 
4044
- #: app/features/mec/settings.php:977
4045
  msgid "Auto verification for free bookings"
4046
  msgstr ""
4047
 
4048
- #: app/features/mec/settings.php:986
4049
  msgid "Auto verification for paid bookings"
4050
  msgstr ""
4051
 
4052
- #: app/features/mec/settings.php:996
4053
  msgid "Auto confirmation for free bookings"
4054
  msgstr ""
4055
 
4056
- #: app/features/mec/settings.php:1005
4057
  msgid "Auto confirmation for paid bookings"
4058
  msgstr ""
4059
 
4060
- #: app/features/mec/settings.php:1022
4061
  msgid "Enable coupons module"
4062
  msgstr ""
4063
 
4064
- #: app/features/mec/settings.php:1039
4065
  msgid "Enable taxes / fees module"
4066
  msgstr ""
4067
 
4068
- #: app/features/mec/settings.php:1044
4069
  msgid "Add Fee"
4070
  msgstr ""
4071
 
4072
- #: app/features/mec/settings.php:1100
4073
  msgid "Enable BuddyPress Integration"
4074
  msgstr ""
4075
 
4076
- #: app/features/mec/settings.php:1107
4077
  msgid "Show \"Attendees Module\" in event details page"
4078
  msgstr ""
4079
 
4080
- #: app/features/mec/settings.php:1111
4081
  msgid "Attendees Limit"
4082
  msgstr ""
4083
 
4084
- #: app/features/mec/settings.php:1119
4085
  msgid "Add booking activity to user profile"
4086
  msgstr ""
4087
 
4088
- #: app/features/mec/settings.php:1130
4089
  msgid "Enable Mailchimp Integration"
4090
  msgstr ""
4091
 
4092
- #: app/features/mec/settings.php:1142
4093
  msgid "List ID"
4094
  msgstr ""
4095
 
4096
- #: app/features/mec/settings.php:1149
4097
  msgid "Subscription Status"
4098
  msgstr ""
4099
 
4100
- #: app/features/mec/settings.php:1152
4101
  msgid "Subscribe automatically"
4102
  msgstr ""
4103
 
4104
- #: app/features/mec/settings.php:1153
4105
  msgid "Subscribe by verification"
4106
  msgstr ""
4107
 
4108
- #: app/features/mec/settings.php:1155
4109
  msgid ""
4110
  "If you choose \"Subscribe by verification\" then an email will send to user "
4111
  "by mailchimp for subscription verification."
4112
  msgstr ""
4113
 
4114
- #: app/features/mec/settings.php:1165
4115
  #, php-format
4116
  msgid "%s is required to use this section."
4117
  msgstr ""
4118
 
4119
- #: app/features/mec/settings.php:1168
4120
  msgid "Purchase Code"
4121
  msgstr ""
4122
 
4123
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4124
  msgid "UnVerified"
4125
  msgstr ""
4126
 
4127
- #: app/features/mec/settings.php:1177
4128
  msgid ""
4129
  "Please insert your purchase code validation. read documentation for more "
4130
  "information."
4131
  msgstr ""
4132
 
4133
- #: app/features/mec/settings.php:1180
4134
  msgid "Product Name"
4135
  msgstr ""
4136
 
4137
- #: app/features/mec/settings.php:1183
4138
  msgid "1 License for MEC Plugin"
4139
  msgstr ""
4140
 
4141
- #: app/features/mec/settings.php:1184
4142
  msgid "5 License for MEC Plugin"
4143
  msgstr ""
4144
 
4145
- #: app/features/mec/settings.php:1185
4146
  msgid "10 License for MEC Plugin"
4147
  msgstr ""
4148
 
4149
- #: app/features/mec/settings.php:1192
4150
  msgid "MEC Deactivation"
4151
  msgstr ""
4152
 
4153
- #: app/features/mec/settings.php:1194
4154
  msgid "Deactivate"
4155
  msgstr ""
4156
 
4157
- #: app/features/mec/settings.php:1196
4158
  msgid ""
4159
  "For deactivation first delete your purchase from above field then press save "
4160
  "after that click on deactivate for deactivate this purchase code from this "
4161
  "domain then you can activate another domain."
4162
  msgstr ""
4163
 
4164
- #: app/features/mec/settings.php:1257
4165
  msgid "Please Refresh Page"
4166
  msgstr ""
4167
 
@@ -4312,7 +3761,7 @@ msgstr "például john@smith.com"
4312
  msgid "eg. https://webnus.net"
4313
  msgstr ""
4314
 
4315
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4316
  #: app/skins/single.php:194
4317
  msgid "Other Organizers"
4318
  msgstr ""
@@ -4327,6 +3776,15 @@ msgstr ""
4327
  msgid "%s Price"
4328
  msgstr ""
4329
 
 
 
 
 
 
 
 
 
 
4330
  #: app/libraries/factory.php:148
4331
  msgid "M.E. Calendar"
4332
  msgstr ""
@@ -4398,31 +3856,31 @@ msgstr ""
4398
  msgid "There is no excerpt because this is a protected post."
4399
  msgstr ""
4400
 
4401
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4402
  msgid "Grid View"
4403
  msgstr ""
4404
 
4405
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4406
  msgid "Agenda View"
4407
  msgstr ""
4408
 
4409
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4410
  msgid "Full Calendar"
4411
  msgstr ""
4412
 
4413
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4414
  msgid "Calendar/Monthly View"
4415
  msgstr ""
4416
 
4417
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4418
  msgid "Timetable View"
4419
  msgstr ""
4420
 
4421
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4422
  msgid "Masonry View"
4423
  msgstr ""
4424
 
4425
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4426
  msgid "Map View"
4427
  msgstr ""
4428
 
@@ -4446,31 +3904,31 @@ msgstr ""
4446
  msgid "Slider View"
4447
  msgstr ""
4448
 
4449
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4450
  msgid "SU"
4451
  msgstr ""
4452
 
4453
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4454
  msgid "MO"
4455
  msgstr ""
4456
 
4457
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4458
  msgid "TU"
4459
  msgstr ""
4460
 
4461
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4462
  msgid "WE"
4463
  msgstr ""
4464
 
4465
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4466
  msgid "TH"
4467
  msgstr ""
4468
 
4469
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4470
  msgid "FR"
4471
  msgstr ""
4472
 
4473
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4474
  msgid "SA"
4475
  msgstr ""
4476
 
@@ -4494,226 +3952,254 @@ msgstr ""
4494
  msgid "Twitter"
4495
  msgstr ""
4496
 
4497
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4498
  msgid "Linkedin"
4499
  msgstr ""
4500
 
4501
- #: app/libraries/main.php:1052
 
 
 
 
4502
  msgid "Share on Facebook"
4503
  msgstr ""
4504
 
4505
- #: app/libraries/main.php:1064
4506
  msgid "Google Plus"
4507
  msgstr ""
4508
 
4509
- #: app/libraries/main.php:1076
4510
  msgid "Tweet"
4511
  msgstr ""
4512
 
4513
- #: app/libraries/main.php:1456
4514
  msgid "Your booking successfully verified."
4515
  msgstr ""
4516
 
4517
- #: app/libraries/main.php:1457
4518
  msgid "Your booking cannot verify!"
4519
  msgstr ""
4520
 
4521
- #: app/libraries/main.php:1469
4522
  msgid "Your booking successfully canceled."
4523
  msgstr ""
4524
 
4525
- #: app/libraries/main.php:1470
4526
  msgid "Your booking cannot be canceled."
4527
  msgstr ""
4528
 
4529
- #: app/libraries/main.php:1474
4530
  msgid "You canceled the payment successfully."
4531
  msgstr ""
4532
 
4533
- #: app/libraries/main.php:1478
4534
  msgid "You returned from payment gateway successfully."
4535
  msgstr ""
4536
 
4537
- #: app/libraries/main.php:1502
4538
  msgid "Cannot find the booking!"
4539
  msgstr ""
4540
 
4541
- #: app/libraries/main.php:1502
4542
  msgid "Booking is invalid."
4543
  msgstr ""
4544
 
4545
- #: app/libraries/main.php:1523
4546
  #, php-format
4547
  msgid "%s Invoice"
4548
  msgstr ""
4549
 
4550
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4551
  msgid "Billing"
4552
  msgstr ""
4553
 
4554
- #: app/libraries/main.php:1586
4555
  msgid "Total"
4556
  msgstr ""
4557
 
4558
- #: app/libraries/main.php:1619
4559
  msgid "Security nonce is not valid."
4560
  msgstr ""
4561
 
4562
- #: app/libraries/main.php:1619
4563
  msgid "iCal export stopped!"
4564
  msgstr ""
4565
 
4566
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4567
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4568
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4569
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4570
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4571
  msgid "Sort"
4572
  msgstr ""
4573
 
4574
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4575
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4576
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4577
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4578
  msgid "Required Field"
4579
  msgstr "Töltse ki az adatokat!"
4580
 
4581
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4582
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4583
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4584
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4585
  msgid "Insert a label for this field"
4586
  msgstr ""
4587
 
4588
- #: app/libraries/main.php:1962
4589
  msgid "HTML and shortcode are allowed."
4590
  msgstr ""
4591
 
4592
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4593
- #: app/libraries/main.php:2093
4594
  msgid "Option"
4595
  msgstr ""
4596
 
4597
- #: app/libraries/main.php:2127
4598
  #, php-format
4599
  msgid "Instead of %s, the page title with a link will be show."
4600
  msgstr ""
4601
 
4602
- #: app/libraries/main.php:2129
4603
  msgid "Agreement Page"
4604
  msgstr ""
4605
 
4606
- #: app/libraries/main.php:2138
4607
  msgid "Status"
4608
  msgstr ""
4609
 
4610
- #: app/libraries/main.php:2140
4611
  msgid "Checked by default"
4612
  msgstr ""
4613
 
4614
- #: app/libraries/main.php:2141
4615
  msgid "Unchecked by default"
4616
  msgstr ""
4617
 
4618
- #: app/libraries/main.php:2163
4619
  msgid "Insert a label for this option"
4620
  msgstr ""
4621
 
4622
- #: app/libraries/main.php:2830
 
 
 
 
4623
  #, php-format
4624
  msgid "Copy of %s"
4625
  msgstr ""
4626
 
4627
- #: app/libraries/main.php:3467
4628
  msgid "Booked an event."
4629
  msgstr ""
4630
 
4631
- #: app/libraries/main.php:3508
4632
  #, php-format
4633
  msgid "%s booked %s event."
4634
  msgstr ""
4635
 
4636
- #: app/libraries/main.php:3950
4637
  msgid "Taxonomies"
4638
  msgstr ""
4639
 
4640
- #: app/libraries/main.php:3952
4641
  msgid "Category Plural Label"
4642
  msgstr ""
4643
 
4644
- #: app/libraries/main.php:3953
4645
  msgid "Category Singular Label"
4646
  msgstr ""
4647
 
4648
- #: app/libraries/main.php:3954
4649
  msgid "Label Plural Label"
4650
  msgstr ""
4651
 
4652
- #: app/libraries/main.php:3955
4653
  msgid "Label Singular Label"
4654
  msgstr ""
4655
 
4656
- #: app/libraries/main.php:3955
4657
  msgid "label"
4658
  msgstr ""
4659
 
4660
- #: app/libraries/main.php:3956
4661
  msgid "Location Plural Label"
4662
  msgstr ""
4663
 
4664
- #: app/libraries/main.php:3957
4665
  msgid "Location Singular Label"
4666
  msgstr ""
4667
 
4668
- #: app/libraries/main.php:3958
4669
  msgid "Organizer Plural Label"
4670
  msgstr ""
4671
 
4672
- #: app/libraries/main.php:3959
4673
  msgid "Organizer Singular Label"
4674
  msgstr ""
4675
 
4676
- #: app/libraries/main.php:3965
4677
  msgid "Sunday abbreviation"
4678
  msgstr ""
4679
 
4680
- #: app/libraries/main.php:3966
4681
  msgid "Monday abbreviation"
4682
  msgstr ""
4683
 
4684
- #: app/libraries/main.php:3967
4685
  msgid "Tuesday abbreviation"
4686
  msgstr ""
4687
 
4688
- #: app/libraries/main.php:3968
4689
  msgid "Wednesday abbreviation"
4690
  msgstr ""
4691
 
4692
- #: app/libraries/main.php:3969
4693
  msgid "Thursday abbreviation"
4694
  msgstr ""
4695
 
4696
- #: app/libraries/main.php:3970
4697
  msgid "Friday abbreviation"
4698
  msgstr ""
4699
 
4700
- #: app/libraries/main.php:3971
4701
  msgid "Saturday abbreviation"
4702
  msgstr ""
4703
 
4704
- #: app/libraries/main.php:3975
4705
  msgid "Others"
4706
  msgstr ""
4707
 
4708
- #: app/libraries/main.php:3977
4709
  msgid "Booking Success Message"
4710
  msgstr ""
4711
 
4712
- #: app/libraries/main.php:3978
 
 
 
 
 
 
 
 
4713
  msgid "Register Button"
4714
  msgstr ""
4715
 
4716
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4717
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4718
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4719
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4727,11 +4213,11 @@ msgstr ""
4727
  msgid "REGISTER"
4728
  msgstr "REGISZTRÁCIÓ"
4729
 
4730
- #: app/libraries/main.php:3979
4731
  msgid "View Detail Button"
4732
  msgstr ""
4733
 
4734
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4735
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4736
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4737
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4742,39 +4228,39 @@ msgstr ""
4742
  msgid "View Detail"
4743
  msgstr ""
4744
 
4745
- #: app/libraries/main.php:3980
4746
  msgid "Event Detail Button"
4747
  msgstr ""
4748
 
4749
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4750
  msgid "Event Detail"
4751
  msgstr ""
4752
 
4753
- #: app/libraries/main.php:3982
4754
  msgid "More Info Link"
4755
  msgstr ""
4756
 
4757
- #: app/libraries/main.php:3985
4758
  msgid "Ticket (Singular)"
4759
  msgstr ""
4760
 
4761
- #: app/libraries/main.php:3986
4762
  msgid "Tickets (Plural)"
4763
  msgstr ""
4764
 
4765
- #: app/libraries/main.php:4052
4766
  msgid "EventON"
4767
  msgstr ""
4768
 
4769
- #: app/libraries/main.php:4053
4770
  msgid "The Events Calendar"
4771
  msgstr ""
4772
 
4773
- #: app/libraries/main.php:4054
4774
  msgid "Events Schedule WP Plugin"
4775
  msgstr ""
4776
 
4777
- #: app/libraries/main.php:4055
4778
  msgid "Calendarize It"
4779
  msgstr ""
4780
 
@@ -4798,6 +4284,14 @@ msgstr ""
4798
  msgid "A new event is added."
4799
  msgstr ""
4800
 
 
 
 
 
 
 
 
 
4801
  #: app/libraries/render.php:337
4802
  msgid "Skin controller does not exist."
4803
  msgstr ""
@@ -4826,6 +4320,10 @@ msgstr ""
4826
  msgid "%s tickets"
4827
  msgstr ""
4828
 
 
 
 
 
4829
  #: app/modules/booking/steps/checkout.php:33
4830
  msgid "Discount Coupon"
4831
  msgstr ""
@@ -4852,6 +4350,10 @@ msgstr ""
4852
  msgid "Next"
4853
  msgstr "Tovább"
4854
 
 
 
 
 
4855
  #: app/modules/booking/steps/tickets.php:18
4856
  msgid "Book Event"
4857
  msgstr "Foglalás az eseményre"
@@ -5142,6 +4644,10 @@ msgstr ""
5142
  msgid "QR Code : "
5143
  msgstr ""
5144
 
 
 
 
 
5145
  #. Plugin URI of the plugin/theme
5146
  msgid "http://webnus.net/plugins/modern-events-calendar/"
5147
  msgstr ""
@@ -5158,6 +4664,21 @@ msgstr ""
5158
  msgid "http://webnus.net"
5159
  msgstr ""
5160
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5161
  #~ msgid "Order"
5162
  #~ msgstr "Rendelés"
5163
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2018-09-09 16:07+0430\n"
5
+ "PO-Revision-Date: 2018-09-09 16:07+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
 
23
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
24
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
25
  #: app/widgets/MEC.php:23
30
  msgid "Content"
31
  msgstr "Tartalom"
32
 
33
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
34
+ #: app/features/mec.php:238 app/features/mec.php:264
35
  msgid "Shortcode"
36
  msgstr ""
37
 
39
  msgid "Select from predefined shortcodes"
40
  msgstr ""
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  #: app/features/colors.php:50 app/features/fes/form.php:566
43
+ #: app/features/mec/settings.php:847
44
  msgid "Event Color"
45
  msgstr ""
46
 
47
+ #: app/features/contextual.php:55 app/features/mec.php:195
48
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
49
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
50
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
51
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
52
  #: app/features/mec/support.php:18
53
  msgid "Settings"
54
  msgstr ""
55
 
56
+ #: app/features/contextual.php:62 app/features/events.php:910
57
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
58
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
59
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
60
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
61
+ #: app/features/mec/support.php:27
62
+ msgid "Booking Form"
63
+ msgstr ""
64
+
65
  #: app/features/contextual.php:63
66
  msgid ""
67
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
74
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
75
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
76
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
77
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
78
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
79
  msgid "Payment Gateways"
80
  msgstr ""
89
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
90
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
91
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
92
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
93
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
94
  msgid "Notifications"
95
  msgstr ""
150
  "\"0\" allowfullscreen></iframe>"
151
  msgstr ""
152
 
153
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
154
+ #: app/features/mec/settings.php:252
155
  msgid "General Options"
156
  msgstr ""
157
 
158
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
159
+ #: app/features/mec/settings.php:404
160
  msgid "Slugs/Permalinks"
161
  msgstr ""
162
 
163
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
164
+ #: app/features/mec/settings.php:424
165
  msgid "Event Details/Single Event Page"
166
  msgstr ""
167
 
168
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
169
+ #: app/features/mec/settings.php:456
170
  msgid "Currency Options"
171
  msgstr ""
172
 
173
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
174
+ #: app/features/mec/settings.php:508
175
  msgid "Google Maps Options"
176
  msgstr ""
177
 
178
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
179
+ #: app/features/mec/settings.php:582
180
  msgid "Google Recaptcha Options"
181
  msgstr ""
182
 
183
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
184
+ #: app/features/mec/settings.php:700
185
  msgid "Countdown Options"
186
  msgstr ""
187
 
188
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
189
+ #: app/features/mec/settings.php:721
190
  msgid "Social Networks"
191
  msgstr ""
192
 
193
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
194
+ #: app/features/mec/settings.php:746
195
  msgid "Next Event Module"
196
  msgstr ""
197
 
198
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
199
+ #: app/features/mec/settings.php:774
200
  msgid "Frontend Event Submission"
201
  msgstr ""
202
 
203
  #: app/features/contextual.php:298 app/features/events.php:570
204
+ #: app/features/mec/settings.php:131
205
  msgid "Exceptional Days"
206
  msgstr ""
207
 
208
+ #: app/features/contextual.php:308 app/features/events.php:253
209
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
210
+ msgid "Booking"
211
+ msgstr ""
212
+
213
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
214
+ #: app/features/mec/settings.php:1019
215
  msgid "Coupons"
216
  msgstr ""
217
 
218
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
219
+ #: app/features/mec/settings.php:1101
220
  msgid "BuddyPress Integration"
221
  msgstr ""
222
 
223
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
224
+ #: app/features/mec/settings.php:1131
225
  msgid "Mailchimp Integration"
226
  msgstr ""
227
 
228
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
229
+ #: app/features/mec/settings.php:1167
230
  msgid "MEC Activation"
231
  msgstr ""
232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  #: app/features/events.php:122 app/features/ix/export.php:33
234
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
235
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
236
  msgid "Events"
237
  msgstr ""
238
 
239
+ #: app/features/events.php:123
240
+ #: app/features/mec/meta_boxes/display_options.php:678
241
+ #: app/features/mec/meta_boxes/display_options.php:716
242
+ #: app/features/mec/meta_boxes/display_options.php:745
243
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
244
+ #: app/skins/yearly_view/tpl.php:69
245
+ msgid "Event"
246
+ msgstr ""
247
+
248
+ #: app/features/events.php:124 app/features/mec.php:188
249
  msgid "Add Event"
250
  msgstr ""
251
 
258
  msgid "No events found!"
259
  msgstr ""
260
 
261
+ #: app/features/events.php:127
262
+ msgid "All Events"
263
+ msgstr ""
264
+
265
  #: app/features/events.php:128
266
  msgid "Edit Event"
267
  msgstr ""
284
  #: app/features/mec/meta_boxes/search_form.php:285
285
  #: app/features/mec/meta_boxes/search_form.php:325
286
  #: app/features/mec/meta_boxes/search_form.php:372
287
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
288
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
289
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
290
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
292
  msgstr "kategória"
293
 
294
  #: app/features/events.php:143 app/features/fes/form.php:518
295
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
296
+ #: app/libraries/main.php:3967
297
  msgid "Categories"
298
  msgstr ""
299
 
360
  #: app/features/events.php:286 app/features/events.php:1631
361
  #: app/features/events.php:1675 app/features/fes/form.php:479
362
  #: app/features/ix.php:2328 app/features/ix.php:2369
363
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
364
  msgid "Event Cost"
365
  msgstr ""
366
 
367
  #: app/features/events.php:289 app/features/fes/form.php:482
368
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
369
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
370
  #: app/skins/single/modern.php:179
371
  msgid "Cost"
375
  msgid "Note for reviewer"
376
  msgstr ""
377
 
378
+ #: app/features/events.php:369
379
+ msgid "Guest Data"
380
+ msgstr ""
381
+
382
+ #: app/features/events.php:370 app/features/fes/form.php:441
383
+ #: app/features/labels.php:151 app/features/organizers.php:268
384
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
385
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
386
+ msgid "Name"
387
+ msgstr "Név"
388
+
389
+ #: app/features/events.php:371 app/features/events.php:945
390
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
391
+ #: app/features/organizers.php:110 app/features/organizers.php:150
392
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
393
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
394
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
395
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
396
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
397
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
398
+ #: app/skins/single/modern.php:38
399
+ msgid "Email"
400
  msgstr ""
401
 
402
  #: app/features/events.php:375 app/features/fes/form.php:221
408
  #: app/features/events.php:1675 app/features/fes/form.php:225
409
  #: app/features/fes/form.php:229 app/features/ix.php:2328
410
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
411
+ #: app/features/mec/dashboard.php:266
412
  #: app/features/mec/meta_boxes/display_options.php:42
413
  #: app/features/mec/meta_boxes/display_options.php:129
414
  #: app/features/mec/meta_boxes/display_options.php:225
440
  #: app/features/events.php:1675 app/features/fes/form.php:265
441
  #: app/features/fes/form.php:269 app/features/ix.php:2328
442
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
443
+ #: app/features/mec/dashboard.php:267
444
  msgid "End Date"
445
  msgstr ""
446
 
475
  msgstr ""
476
 
477
  #: app/features/events.php:481 app/features/fes/form.php:327
478
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
479
  msgid "Daily"
480
  msgstr ""
481
 
497
  msgstr ""
498
 
499
  #: app/features/events.php:486 app/features/fes/form.php:332
500
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
501
  msgid "Monthly"
502
  msgstr ""
503
 
504
  #: app/features/events.php:487 app/features/fes/form.php:333
505
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
506
  msgid "Yearly"
507
  msgstr ""
508
 
557
  msgid "Sunday"
558
  msgstr ""
559
 
560
+ #: app/features/events.php:508 app/features/events.php:580
561
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
562
+ #: app/modules/booking/steps/tickets.php:20
563
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
564
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
565
+ #: app/skins/single/modern.php:146
566
+ msgid "Date"
567
+ msgstr "dátum"
568
+
569
  #: app/features/events.php:509 app/features/events.php:581
570
  #: app/features/events.php:623 app/features/events.php:743
571
  #: app/features/events.php:839 app/features/fes/form.php:355
610
  msgid "Exclude certain days from event occurrence dates."
611
  msgstr ""
612
 
613
+ #: app/features/events.php:620 app/features/mec/settings.php:871
614
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
615
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
616
  msgid "Hourly Schedule"
631
  #: app/features/events.php:631 app/features/events.php:643
632
  #: app/features/events.php:1449 app/features/events.php:1631
633
  #: app/features/events.php:1675 app/features/fes/form.php:214
634
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
635
  msgid "Title"
636
  msgstr ""
637
 
638
+ #: app/features/events.php:632 app/features/events.php:644
639
+ #: app/features/events.php:752 app/features/events.php:784
640
+ msgid "Description"
641
+ msgstr ""
642
+
643
  #: app/features/events.php:633 app/features/events.php:645
644
  #: app/features/events.php:771 app/features/events.php:803
645
  #: app/features/events.php:859 app/features/events.php:884
646
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
647
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
648
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
649
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
650
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
651
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
652
+ #: app/libraries/main.php:2177
653
  msgid "Remove"
654
  msgstr ""
655
 
656
  #: app/features/events.php:665 app/features/fes/form.php:456
657
+ #: app/features/mec/settings.php:817
658
  msgid "Event Links"
659
  msgstr ""
660
 
661
  #: app/features/events.php:667 app/features/fes/form.php:458
662
+ #: app/libraries/main.php:3996
663
  msgid "Event Link"
664
  msgstr ""
665
 
675
  msgstr ""
676
 
677
  #: app/features/events.php:672 app/features/fes/form.php:463
678
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
679
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
680
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
681
  msgid "More Info"
703
  msgid "Total booking limits"
704
  msgstr ""
705
 
706
+ #: app/features/events.php:715 app/features/events.php:769
707
+ #: app/features/events.php:801 app/modules/booking/default.php:82
708
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
709
+ msgid "Unlimited"
710
+ msgstr ""
711
+
712
  #: app/features/events.php:717
713
  msgid "100"
714
  msgstr ""
715
 
716
  #: app/features/events.php:735 app/libraries/book.php:59
717
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
718
  msgid "Tickets"
719
  msgstr ""
720
 
729
  msgid "Ticket Name"
730
  msgstr ""
731
 
732
+ #: app/features/events.php:756 app/features/events.php:788
733
+ msgid "Price"
734
+ msgstr ""
735
+
736
  #: app/features/events.php:757 app/features/events.php:789
737
  msgid "Insert 0 for free ticket. Only numbers please."
738
  msgstr ""
758
  msgstr ""
759
 
760
  #: app/features/events.php:845 app/features/events.php:870
761
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
762
  msgid "Fee Title"
763
  msgstr ""
764
 
765
+ #: app/features/events.php:849 app/features/events.php:874
766
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
767
+ msgid "Amount"
768
+ msgstr ""
769
+
770
  #: app/features/events.php:850 app/features/events.php:875
771
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
772
  msgid ""
773
  "Fee amount, considered as fixed amount if you set the type to amount "
774
  "otherwise considered as percentage"
775
  msgstr ""
776
 
777
+ #: app/features/events.php:854 app/features/events.php:879
778
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
779
+ msgid "Percent"
780
+ msgstr ""
781
+
782
  #: app/features/events.php:855 app/features/events.php:880
783
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
784
  msgid "Amount (Per Ticket)"
785
  msgstr ""
786
 
787
  #: app/features/events.php:856 app/features/events.php:881
788
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
789
  msgid "Amount (Per Booking)"
790
  msgstr ""
791
 
792
  #: app/features/events.php:944 app/features/mec/regform.php:117
793
+ #: app/libraries/main.php:1856
794
  msgid "Text"
795
  msgstr ""
796
 
797
  #: app/features/events.php:946 app/features/mec/regform.php:119
798
  #: app/features/organizers.php:102 app/features/organizers.php:146
799
+ #: app/libraries/main.php:1914
800
  msgid "Tel"
801
  msgstr ""
802
 
803
  #: app/features/events.php:947 app/features/mec/regform.php:120
804
+ #: app/libraries/main.php:1943
805
  msgid "Textarea"
806
  msgstr ""
807
 
808
  #: app/features/events.php:948 app/features/mec/regform.php:121
809
+ #: app/libraries/main.php:1996
810
  msgid "Checkboxes"
811
  msgstr ""
812
 
813
  #: app/features/events.php:949 app/features/mec/regform.php:122
814
+ #: app/libraries/main.php:2040
815
  msgid "Radio Buttons"
816
  msgstr ""
817
 
860
  #: app/features/mec/meta_boxes/search_form.php:436
861
  #: app/features/mec/meta_boxes/search_form.php:443
862
  #: app/features/mec/meta_boxes/search_form.php:450
863
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
864
  msgid "Dropdown"
865
  msgstr ""
866
 
867
  #: app/features/events.php:951 app/features/mec/regform.php:124
868
+ #: app/libraries/main.php:2131
869
  msgid "Agreement"
870
  msgstr ""
871
 
872
  #: app/features/events.php:952 app/features/mec/regform.php:125
873
+ #: app/libraries/main.php:1972
874
  msgid "Paragraph"
875
  msgstr ""
876
 
896
  #: app/features/events.php:1675 app/features/ix.php:2328
897
  #: app/features/ix.php:2369 app/features/locations.php:58
898
  #: app/features/locations.php:229 app/features/locations.php:281
899
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
900
  #: app/features/mec/meta_boxes/display_options.php:641
901
  #: app/features/mec/meta_boxes/search_form.php:38
902
  #: app/features/mec/meta_boxes/search_form.php:85
906
  #: app/features/mec/meta_boxes/search_form.php:292
907
  #: app/features/mec/meta_boxes/search_form.php:332
908
  #: app/features/mec/meta_boxes/search_form.php:379
909
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
910
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
911
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
912
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
913
  #: app/skins/single/modern.php:77
916
 
917
  #: app/features/events.php:1451 app/features/events.php:1631
918
  #: app/features/events.php:1675 app/features/ix.php:2328
919
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
920
  #: app/features/mec/meta_boxes/display_options.php:642
921
  #: app/features/mec/meta_boxes/search_form.php:45
922
  #: app/features/mec/meta_boxes/search_form.php:92
929
  #: app/features/mec/meta_boxes/search_form.php:433
930
  #: app/features/organizers.php:58 app/features/organizers.php:199
931
  #: app/features/organizers.php:255 app/features/organizers.php:257
932
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
933
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
934
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
935
  #: app/skins/single/modern.php:21
948
  msgid "iCal Export"
949
  msgstr "iCal naptárba mentés"
950
 
951
+ #: app/features/events.php:1569 app/features/events.php:1570
952
+ msgid "CSV Export"
953
+ msgstr ""
954
+
955
+ #: app/features/events.php:1572 app/features/events.php:1573
956
+ msgid "MS Excel Export"
957
+ msgstr ""
958
+
959
  #: app/features/events.php:1575 app/features/events.php:1576
960
  msgid "XML Export"
961
  msgstr ""
968
  msgid "Duplicate"
969
  msgstr ""
970
 
971
+ #: app/features/events.php:1631 app/features/events.php:1675
972
+ #: app/features/ix.php:2328 app/features/ix.php:2369
973
+ #: app/features/labels.php:150 app/features/locations.php:228
974
+ #: app/features/organizers.php:198
975
+ msgid "ID"
976
+ msgstr ""
977
+
978
  #: app/features/events.php:1631 app/features/events.php:1675
979
  #: app/features/ix.php:2328 app/features/ix.php:2369
980
  msgid "Start Time"
1059
  msgstr ""
1060
 
1061
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1062
  msgid "Submit"
1063
  msgstr "Jóváhagyás"
1064
 
1074
  msgid "eg. John Smith"
1075
  msgstr ""
1076
 
1077
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1078
+ msgid "Featured Image"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1079
  msgstr ""
1080
 
1081
+ #: app/features/fes/form.php:501
1082
+ msgid "Remove Image"
1083
  msgstr ""
1084
 
1085
+ #: app/features/fes/form.php:543 app/features/labels.php:61
1086
+ #: app/features/labels.php:194 app/features/mec.php:191
1087
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1088
+ #: app/skins/single/default.php:131 app/skins/single/default.php:333
1089
+ #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1090
+ msgid "Labels"
1091
+ msgstr ""
1092
+
1093
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1094
+ #: app/features/mec/meta_boxes/filter.php:138
1095
+ msgid "Tags"
1096
+ msgstr ""
1097
+
1098
+ #: app/features/fes/form.php:590
1099
+ msgid "Insert your desired tags, comma separated."
1100
+ msgstr ""
1101
+
1102
+ #: app/features/fes/list.php:21
1103
+ msgid "Click again to remove!"
1104
+ msgstr ""
1105
+
1106
+ #: app/features/fes/list.php:64 app/features/fes/list.php:78
1107
+ msgid "Add new"
1108
+ msgstr ""
1109
+
1110
+ #: app/features/fes/list.php:70
1111
+ msgid "View"
1112
+ msgstr ""
1113
 
1114
+ #: app/features/fes/list.php:78
1115
+ #, php-format
1116
+ msgid "No events found! %s"
1117
  msgstr ""
1118
 
1119
  #: app/features/ix.php:95
1148
  msgid "Third Party plugin is invalid!"
1149
  msgstr ""
1150
 
1151
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1152
+ msgid "Both of API key and Calendar ID are required!"
1153
+ msgstr ""
1154
+
1155
  #: app/features/ix.php:1961 app/features/ix.php:2791
1156
  msgid "Please select some events to import!"
1157
  msgstr ""
1173
  msgid "All seems good! Please click %s for authenticating your app."
1174
  msgstr ""
1175
 
1176
+ #: app/features/ix.php:2527
1177
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1178
+ msgstr ""
1179
+
1180
+ #: app/features/ix.php:2722
1181
+ #, php-format
1182
+ msgid "%s events added to Google Calendar successfully."
1183
+ msgstr ""
1184
+
1185
+ #: app/features/ix.php:2723
1186
+ #, php-format
1187
+ msgid "%s previously added events get updated."
1188
+ msgstr ""
1189
+
1190
+ #: app/features/ix.php:2724
1191
+ #, php-format
1192
+ msgid "%s events failed to add for following reasons: %s"
1193
+ msgstr ""
1194
+
1195
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1196
+ msgid "Please insert your facebook page's link."
1197
+ msgstr ""
1198
+
1199
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1200
+ msgid ""
1201
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1202
+ "valid facebook page link."
1203
+ msgstr ""
1204
+
1205
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1206
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1207
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1247
  "This will export all of your website events' data into your desired format."
1248
  msgstr ""
1249
 
1250
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1251
  msgid "iCal"
1252
  msgstr ""
1253
 
1285
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1286
  msgstr ""
1287
 
1288
+ #: app/features/ix/export.php:37
1289
+ msgid "Bookings"
1290
+ msgstr "Foglalások"
1291
+
1292
  #: app/features/ix/export_g_calendar.php:25
1293
  msgid "Add events to Google Calendar"
1294
  msgstr ""
1345
  msgid "Add to Google Calendar"
1346
  msgstr "Google Naptárba mentés"
1347
 
1348
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1349
  msgid "Checking ..."
1350
  msgstr ""
1351
 
1387
  msgid "ICS Feed"
1388
  msgstr ""
1389
 
1390
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1391
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1392
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1393
+ #: app/features/mec/settings.php:1039
1394
  #, php-format
1395
  msgid "%s is required to use this feature."
1396
  msgstr ""
1402
  #: app/features/mec/meta_boxes/display_options.php:558
1403
  #: app/features/mec/meta_boxes/display_options.php:608
1404
  #: app/features/mec/meta_boxes/display_options.php:734
1405
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1406
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1407
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1408
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1409
  msgid "Pro version of Modern Events Calendar"
1410
  msgstr ""
1411
 
1622
  msgid "Select label color"
1623
  msgstr ""
1624
 
1625
+ #: app/features/labels.php:153 app/features/locations.php:231
1626
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1627
+ msgid "Count"
1628
+ msgstr ""
1629
+
1630
  #: app/features/labels.php:154 app/features/locations.php:232
1631
  #: app/features/organizers.php:202
1632
  msgid "Slug"
1637
  msgid "Event %s"
1638
  msgstr ""
1639
 
1640
+ #: app/features/locations.php:59 app/features/mec.php:192
1641
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1642
  msgid "Locations"
1643
  msgstr ""
1644
 
1706
  msgid "eg. City Hall"
1707
  msgstr ""
1708
 
1709
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1710
  msgid "Event Location"
1711
  msgstr ""
1712
 
1728
  msgid "Don't show map in single event page"
1729
  msgstr ""
1730
 
1731
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1732
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1733
  msgid "Organizers"
1734
  msgstr ""
1735
 
1736
+ #: app/features/mec.php:194 app/features/mec.php:208
1737
+ #: app/features/mec/dashboard.php:96
1738
  msgid "Shortcodes"
1739
  msgstr ""
1740
 
1741
+ #: app/features/mec.php:195
1742
  msgid "MEC - Settings"
1743
  msgstr ""
1744
 
1745
+ #: app/features/mec.php:210
1746
  msgid "Add Shortcode"
1747
  msgstr ""
1748
 
1749
+ #: app/features/mec.php:211
1750
  msgid "Add New Shortcode"
1751
  msgstr ""
1752
 
1753
+ #: app/features/mec.php:212
1754
  msgid "No shortcodes found!"
1755
  msgstr ""
1756
 
1757
+ #: app/features/mec.php:213
1758
  msgid "All Shortcodes"
1759
  msgstr ""
1760
 
1761
+ #: app/features/mec.php:214
1762
  msgid "Edit shortcodes"
1763
  msgstr ""
1764
 
1765
+ #: app/features/mec.php:215
1766
  msgid "No shortcodes found in Trash!"
1767
  msgstr ""
1768
 
1769
+ #: app/features/mec.php:262
1770
  msgid "Display Options"
1771
  msgstr ""
1772
 
1773
+ #: app/features/mec.php:263
1774
  msgid "Filter Options"
1775
  msgstr ""
1776
 
1777
+ #: app/features/mec.php:265
1778
  msgid "Search Form"
1779
  msgstr ""
1780
 
1781
+ #: app/features/mec.php:553
1782
  msgid "Single Event Display Method"
1783
  msgstr ""
1784
 
1785
+ #: app/features/mec.php:558
1786
  msgid "Separate Window"
1787
  msgstr ""
1788
 
1789
+ #: app/features/mec.php:559
1790
  msgid "Modal 1"
1791
  msgstr ""
1792
 
1793
+ #: app/features/mec/dashboard.php:58
1794
  #, php-format
1795
  msgid "Welcome %s"
1796
  msgstr ""
1797
 
1798
+ #: app/features/mec/dashboard.php:61
1799
  #, php-format
1800
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1801
  msgstr ""
1802
 
1803
+ #: app/features/mec/dashboard.php:61
1804
  msgid "Modern Event Calendar"
1805
  msgstr ""
1806
 
1807
+ #: app/features/mec/dashboard.php:61
1808
  msgid "Modern Event Calendar (Lite)"
1809
  msgstr ""
1810
 
1811
+ #: app/features/mec/dashboard.php:70
1812
  msgid "Version"
1813
  msgstr ""
1814
 
1815
+ #: app/features/mec/dashboard.php:79
1816
  #, php-format
1817
  msgid ""
1818
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1820
  "Spots, etc you should %s to the Pro version."
1821
  msgstr ""
1822
 
1823
+ #: app/features/mec/dashboard.php:79
1824
  msgid "lite"
1825
  msgstr ""
1826
 
1827
+ #: app/features/mec/dashboard.php:79
1828
  msgid "upgrade"
1829
  msgstr ""
1830
 
1831
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1832
  msgid "Documentation"
1833
  msgstr ""
1834
 
1835
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1836
  msgid ""
1837
  "Our documentation is simple and functional with full details and cover all "
1838
  "essential aspects from beginning to the most advanced parts."
1839
  msgstr ""
1840
 
1841
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1842
  msgid "DOCUMENTATION"
1843
  msgstr ""
1844
 
1845
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1846
  msgid "Support Forum"
1847
  msgstr ""
1848
 
1849
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1850
  msgid ""
1851
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1852
  "If you want to use this service you need to upgrade your plugin to Pro "
1853
  "version. Click on the following button."
1854
  msgstr ""
1855
 
1856
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1857
  msgid ""
1858
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1859
  "If you have any issues please don't hesitate to contact us, we will reply as "
1860
  "soon as possible."
1861
  msgstr ""
1862
 
1863
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1864
  msgid "GO PREMIUM"
1865
  msgstr ""
1866
 
1867
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1868
  msgid "OPEN A TICKET"
1869
  msgstr ""
1870
 
1871
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1872
  msgid "Upcoming Events"
1873
  msgstr ""
1874
 
1875
+ #: app/features/mec/dashboard.php:181
1876
  msgid "Popular Gateways"
1877
  msgstr ""
1878
 
1879
+ #: app/features/mec/dashboard.php:232
1880
  msgid "Total Bookings"
1881
  msgstr ""
1882
 
1883
+ #: app/features/mec/dashboard.php:259
1884
  msgid "This Month"
1885
  msgstr ""
1886
 
1887
+ #: app/features/mec/dashboard.php:260
1888
  msgid "Last Month"
1889
  msgstr ""
1890
 
1891
+ #: app/features/mec/dashboard.php:261
1892
  msgid "This Year"
1893
  msgstr ""
1894
 
1895
+ #: app/features/mec/dashboard.php:262
1896
  msgid "Last Year"
1897
  msgstr ""
1898
 
1899
+ #: app/features/mec/dashboard.php:274
1900
  msgid "Bar"
1901
  msgstr ""
1902
 
1903
+ #: app/features/mec/dashboard.php:275
1904
  msgid "Line"
1905
  msgstr ""
1906
 
1907
+ #: app/features/mec/dashboard.php:277
1908
  msgid "Filter"
1909
  msgstr ""
1910
 
1911
+ #: app/features/mec/dashboard.php:293
1912
  #, php-format
1913
  msgid "Total Sells (%s)"
1914
  msgstr ""
1915
 
1916
+ #: app/features/mec/dashboard.php:314
1917
  msgid "Change Log"
1918
  msgstr ""
1919
 
1920
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1921
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1922
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1923
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1924
  msgid "Styling Options"
1925
  msgstr ""
1926
 
1927
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1928
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1929
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1930
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1931
  msgid "Custom CSS"
1932
  msgstr ""
1933
 
1934
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1935
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1936
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1937
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1938
  #: app/features/mec/support.php:64
1939
  msgid "Messages"
1941
 
1942
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1943
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1944
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1945
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1946
  #: app/features/mec/support.php:84
1947
  msgid "Support"
1954
  #: app/features/mec/notifications.php:409
1955
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
1956
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
1957
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
1958
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
1959
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
1960
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
1961
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
1962
+ #: app/features/mec/styling.php:335
1963
  msgid "Save Changes"
1964
  msgstr ""
1965
 
1966
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
1967
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
1968
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
1969
  #: app/features/mec/styling.php:313
1970
  msgid "Saved"
1971
  msgstr ""
1972
 
1973
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
1974
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
1975
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
1976
  #: app/features/mec/styling.php:314
1977
  msgid "Settings Saved!"
1978
  msgstr ""
2178
  msgid "Default values are d and F"
2179
  msgstr ""
2180
 
2181
+ #: app/features/mec/meta_boxes/display_options.php:85
2182
+ #: app/features/mec/meta_boxes/display_options.php:194
2183
+ #: app/features/mec/meta_boxes/display_options.php:244
2184
+ #: app/features/mec/meta_boxes/display_options.php:632
2185
+ #: app/features/mec/meta_boxes/display_options.php:806
2186
+ #: app/features/mec/meta_boxes/display_options.php:877
2187
+ msgid "Limit"
2188
+ msgstr ""
2189
+
2190
  #: app/features/mec/meta_boxes/display_options.php:86
2191
  #: app/features/mec/meta_boxes/display_options.php:195
2192
  #: app/features/mec/meta_boxes/display_options.php:245
2266
 
2267
  #: app/features/mec/meta_boxes/display_options.php:287
2268
  #: app/features/mec/meta_boxes/display_options.php:296
2269
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2270
  msgid "List View"
2271
  msgstr ""
2272
 
2273
  #: app/features/mec/meta_boxes/display_options.php:288
2274
  #: app/features/mec/meta_boxes/display_options.php:306
2275
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2276
  msgid "Yearly View"
2277
  msgstr ""
2278
 
2283
 
2284
  #: app/features/mec/meta_boxes/display_options.php:290
2285
  #: app/features/mec/meta_boxes/display_options.php:326
2286
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2287
  msgid "Weekly View"
2288
  msgstr ""
2289
 
2290
  #: app/features/mec/meta_boxes/display_options.php:291
2291
  #: app/features/mec/meta_boxes/display_options.php:336
2292
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2293
  msgid "Daily View"
2294
  msgstr ""
2295
 
2525
  msgid "Show Search Form"
2526
  msgstr ""
2527
 
2528
+ #: app/features/mec/meta_boxes/search_form.php:33
2529
+ #: app/features/mec/meta_boxes/search_form.php:40
2530
+ #: app/features/mec/meta_boxes/search_form.php:47
2531
+ #: app/features/mec/meta_boxes/search_form.php:54
2532
+ #: app/features/mec/meta_boxes/search_form.php:61
2533
+ #: app/features/mec/meta_boxes/search_form.php:68
2534
+ #: app/features/mec/meta_boxes/search_form.php:80
2535
+ #: app/features/mec/meta_boxes/search_form.php:87
2536
+ #: app/features/mec/meta_boxes/search_form.php:94
2537
+ #: app/features/mec/meta_boxes/search_form.php:101
2538
+ #: app/features/mec/meta_boxes/search_form.php:108
2539
+ #: app/features/mec/meta_boxes/search_form.php:115
2540
+ #: app/features/mec/meta_boxes/search_form.php:127
2541
+ #: app/features/mec/meta_boxes/search_form.php:134
2542
+ #: app/features/mec/meta_boxes/search_form.php:141
2543
+ #: app/features/mec/meta_boxes/search_form.php:148
2544
+ #: app/features/mec/meta_boxes/search_form.php:155
2545
+ #: app/features/mec/meta_boxes/search_form.php:162
2546
+ #: app/features/mec/meta_boxes/search_form.php:174
2547
+ #: app/features/mec/meta_boxes/search_form.php:181
2548
+ #: app/features/mec/meta_boxes/search_form.php:193
2549
+ #: app/features/mec/meta_boxes/search_form.php:200
2550
+ #: app/features/mec/meta_boxes/search_form.php:207
2551
+ #: app/features/mec/meta_boxes/search_form.php:214
2552
+ #: app/features/mec/meta_boxes/search_form.php:221
2553
+ #: app/features/mec/meta_boxes/search_form.php:228
2554
+ #: app/features/mec/meta_boxes/search_form.php:240
2555
+ #: app/features/mec/meta_boxes/search_form.php:247
2556
+ #: app/features/mec/meta_boxes/search_form.php:254
2557
+ #: app/features/mec/meta_boxes/search_form.php:261
2558
+ #: app/features/mec/meta_boxes/search_form.php:268
2559
+ #: app/features/mec/meta_boxes/search_form.php:275
2560
+ #: app/features/mec/meta_boxes/search_form.php:287
2561
+ #: app/features/mec/meta_boxes/search_form.php:294
2562
+ #: app/features/mec/meta_boxes/search_form.php:301
2563
+ #: app/features/mec/meta_boxes/search_form.php:308
2564
+ #: app/features/mec/meta_boxes/search_form.php:315
2565
+ #: app/features/mec/meta_boxes/search_form.php:327
2566
+ #: app/features/mec/meta_boxes/search_form.php:334
2567
+ #: app/features/mec/meta_boxes/search_form.php:341
2568
+ #: app/features/mec/meta_boxes/search_form.php:348
2569
+ #: app/features/mec/meta_boxes/search_form.php:355
2570
+ #: app/features/mec/meta_boxes/search_form.php:362
2571
+ #: app/features/mec/meta_boxes/search_form.php:374
2572
+ #: app/features/mec/meta_boxes/search_form.php:381
2573
+ #: app/features/mec/meta_boxes/search_form.php:388
2574
+ #: app/features/mec/meta_boxes/search_form.php:395
2575
+ #: app/features/mec/meta_boxes/search_form.php:402
2576
+ #: app/features/mec/meta_boxes/search_form.php:409
2577
+ #: app/features/mec/meta_boxes/search_form.php:421
2578
+ #: app/features/mec/meta_boxes/search_form.php:428
2579
+ #: app/features/mec/meta_boxes/search_form.php:435
2580
+ #: app/features/mec/meta_boxes/search_form.php:442
2581
+ #: app/features/mec/meta_boxes/search_form.php:449
2582
+ #: app/features/mec/meta_boxes/search_form.php:456
2583
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2584
+ #: app/features/mec/settings.php:554
2585
+ msgid "Disabled"
2586
+ msgstr ""
2587
+
2588
  #: app/features/mec/meta_boxes/search_form.php:59
2589
  #: app/features/mec/meta_boxes/search_form.php:106
2590
  #: app/features/mec/meta_boxes/search_form.php:153
2819
  msgid "Invoice Link"
2820
  msgstr ""
2821
 
2822
+ #: app/features/mec/notifications.php:140
2823
+ #: app/features/mec/notifications.php:177
2824
+ #: app/features/mec/notifications.php:214
2825
+ #: app/features/mec/notifications.php:255
2826
+ #: app/features/mec/notifications.php:307
2827
+ msgid "Total Attendees"
2828
+ msgstr ""
2829
+
2830
  #: app/features/mec/notifications.php:145
2831
  msgid "Booking Verification"
2832
  msgstr ""
2843
  msgid "Email/Booking verification link."
2844
  msgstr ""
2845
 
2846
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2847
  msgid "Booking Confirmation"
2848
  msgstr ""
2849
 
2920
  msgid "Status of event"
2921
  msgstr ""
2922
 
2923
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
2924
  msgid "Event Note"
2925
  msgstr ""
2926
 
2928
  msgid "Admin events management link."
2929
  msgstr ""
2930
 
2931
+ #: app/features/mec/settings.php:47
2932
  msgid "Archive Page Options"
2933
  msgstr ""
2934
 
2935
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
2936
  msgid "Export Module Options"
2937
  msgstr ""
2938
 
2939
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
2940
  msgid "Local Time Module"
2941
  msgstr ""
2942
 
2943
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
2944
  msgid "QR Code Module"
2945
  msgstr ""
2946
 
2947
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
2948
  msgid "Weather Module"
2949
  msgstr ""
2950
 
2951
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
2952
  msgid "Additional Organizers"
2953
  msgstr ""
2954
 
2955
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
2956
  msgid "Taxes / Fees"
2957
  msgstr ""
2958
 
2959
+ #: app/features/mec/settings.php:255
2960
  msgid "Time Format"
2961
  msgstr ""
2962
 
2963
+ #: app/features/mec/settings.php:258
2964
  msgid "12 hours format with AM/PM"
2965
  msgstr ""
2966
 
2967
+ #: app/features/mec/settings.php:259
2968
  msgid "24 hours format"
2969
  msgstr ""
2970
 
2971
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
2972
  msgid ""
2973
  "This option is for showing start/end time of events on frontend of website."
2974
  msgstr ""
2975
 
2976
+ #: app/features/mec/settings.php:266
2977
  msgid "Hide Events"
2978
  msgstr ""
2979
 
2980
+ #: app/features/mec/settings.php:269
2981
  msgid "On Event Start"
2982
  msgstr ""
2983
 
2984
+ #: app/features/mec/settings.php:270
2985
  msgid "+1 Hour after start"
2986
  msgstr ""
2987
 
2988
+ #: app/features/mec/settings.php:271
2989
  msgid "+2 Hours after start"
2990
  msgstr ""
2991
 
2992
+ #: app/features/mec/settings.php:272
2993
  msgid "On Event End"
2994
  msgstr ""
2995
 
2996
+ #: app/features/mec/settings.php:280
2997
  msgid "Multiple Day Events"
2998
  msgstr ""
2999
 
3000
+ #: app/features/mec/settings.php:283
3001
  msgid "Show only first day on List/Grid/Slider skins"
3002
  msgstr ""
3003
 
3004
+ #: app/features/mec/settings.php:284
3005
  msgid "Show only first day on all skins"
3006
  msgstr ""
3007
 
3008
+ #: app/features/mec/settings.php:285
3009
  msgid "Show all days"
3010
  msgstr ""
3011
 
3012
+ #: app/features/mec/settings.php:287
3013
  msgid ""
3014
  "For showing all days of multiple day events on frontend or only show the "
3015
  "first day."
3016
  msgstr ""
3017
 
3018
+ #: app/features/mec/settings.php:293
3019
  msgid "Remove MEC Data on Plugin Uninstall"
3020
  msgstr ""
3021
 
3022
+ #: app/features/mec/settings.php:297
3023
+ msgid "Enabled"
3024
+ msgstr ""
3025
+
3026
+ #: app/features/mec/settings.php:303
3027
  msgid "Exclude Date Suffix"
3028
  msgstr ""
3029
 
3030
+ #: app/features/mec/settings.php:306
3031
  msgid "Remove suffix from calendars"
3032
  msgstr ""
3033
 
3034
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3035
  msgid "Weekdays"
3036
  msgstr ""
3037
 
3038
+ #: app/features/mec/settings.php:321
3039
  msgid ""
3040
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3041
  "and Friday."
3042
  msgstr ""
3043
 
3044
+ #: app/features/mec/settings.php:328
3045
  msgid "Weekends"
3046
  msgstr ""
3047
 
3048
+ #: app/features/mec/settings.php:336
3049
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3050
  msgstr ""
3051
 
3052
+ #: app/features/mec/settings.php:344
3053
  msgid "Archive Pages"
3054
  msgstr ""
3055
 
3056
+ #: app/features/mec/settings.php:347
3057
  msgid "Archive Page Title"
3058
  msgstr ""
3059
 
3060
+ #: app/features/mec/settings.php:350
3061
  msgid "Default value is Events"
3062
  msgstr ""
3063
 
3064
+ #: app/features/mec/settings.php:355
3065
  msgid "Archive Page Skin"
3066
  msgstr ""
3067
 
3068
+ #: app/features/mec/settings.php:362
3069
  msgid "Default value is Calendar/Monthly View"
3070
  msgstr ""
3071
 
3072
+ #: app/features/mec/settings.php:367
3073
  msgid "Category Page Skin"
3074
  msgstr ""
3075
 
3076
+ #: app/features/mec/settings.php:374
3077
  msgid "Default value is List View"
3078
  msgstr ""
3079
 
3080
+ #: app/features/mec/settings.php:379
3081
  msgid "Category Events Method"
3082
  msgstr ""
3083
 
3084
+ #: app/features/mec/settings.php:383
3085
  msgid "Expired Events"
3086
  msgstr ""
3087
 
3088
+ #: app/features/mec/settings.php:385
3089
  msgid "Default value is Upcoming Events"
3090
  msgstr ""
3091
 
3092
+ #: app/features/mec/settings.php:390
3093
  msgid "Events Archive Status"
3094
  msgstr ""
3095
 
3096
+ #: app/features/mec/settings.php:393
3097
  msgid "Enabled (Recommended)"
3098
  msgstr ""
3099
 
3100
+ #: app/features/mec/settings.php:396
3101
  msgid ""
3102
  "If you disable it, then you should create a page as archive page of MEC. "
3103
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3104
  "MEC rewrite rules."
3105
  msgstr ""
3106
 
3107
+ #: app/features/mec/settings.php:406
3108
  msgid "Main Slug"
3109
  msgstr ""
3110
 
3111
+ #: app/features/mec/settings.php:409
3112
  msgid ""
3113
  "Default value is events. Valid characters are lowercase a-z, - character and "
3114
  "numbers."
3115
  msgstr ""
3116
 
3117
+ #: app/features/mec/settings.php:413
3118
  msgid "Category Slug"
3119
  msgstr ""
3120
 
3121
+ #: app/features/mec/settings.php:416
3122
  msgid ""
3123
  "It's slug of MEC categories, you can change it to events-cat or something "
3124
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3125
  "character and numbers."
3126
  msgstr ""
3127
 
3128
+ #: app/features/mec/settings.php:426
3129
  msgid "Single Event Date Format"
3130
  msgstr ""
3131
 
3132
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3133
  msgid "Default is M d Y"
3134
  msgstr ""
3135
 
3136
+ #: app/features/mec/settings.php:433
3137
  msgid "Date Method"
3138
  msgstr ""
3139
 
3140
+ #: app/features/mec/settings.php:436
3141
  msgid "Next occurrence date"
3142
  msgstr ""
3143
 
3144
+ #: app/features/mec/settings.php:437
3145
  msgid "Referred date"
3146
  msgstr ""
3147
 
3148
+ #: app/features/mec/settings.php:439
3149
  msgid ""
3150
  "\"Referred date\" shows the event date based on referred date in event list."
3151
  msgstr ""
3152
 
3153
+ #: app/features/mec/settings.php:443
3154
  msgid "Single Event Style"
3155
  msgstr ""
3156
 
3157
+ #: app/features/mec/settings.php:446
3158
  msgid "Default Style"
3159
  msgstr ""
3160
 
3161
+ #: app/features/mec/settings.php:447
3162
  msgid "Modern Style"
3163
  msgstr ""
3164
 
3165
+ #: app/features/mec/settings.php:449
3166
  msgid "Choose your single event style."
3167
  msgstr ""
3168
 
3169
+ #: app/features/mec/settings.php:458
3170
  msgid "Currency"
3171
  msgstr ""
3172
 
3173
+ #: app/features/mec/settings.php:468
3174
  msgid "Currency Sign"
3175
  msgstr ""
3176
 
3177
+ #: app/features/mec/settings.php:471
3178
  msgid "Default value will be \"currency\" if you leave it empty."
3179
  msgstr ""
3180
 
3181
+ #: app/features/mec/settings.php:475
3182
  msgid "Currency Position"
3183
  msgstr ""
3184
 
3185
+ #: app/features/mec/settings.php:478
3186
  msgid "Before $10"
3187
  msgstr ""
3188
 
3189
+ #: app/features/mec/settings.php:479
3190
  msgid "After 10$"
3191
  msgstr ""
3192
 
3193
+ #: app/features/mec/settings.php:484
3194
  msgid "Thousand Separator"
3195
  msgstr ""
3196
 
3197
+ #: app/features/mec/settings.php:490
3198
  msgid "Decimal Separator"
3199
  msgstr ""
3200
 
3201
+ #: app/features/mec/settings.php:500
3202
  msgid "No decimal"
3203
  msgstr ""
3204
 
3205
+ #: app/features/mec/settings.php:516
3206
  msgid "Show Google Maps on event page"
3207
  msgstr ""
3208
 
3209
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3210
+ #: app/features/mec/settings.php:1140
3211
  msgid "API Key"
3212
  msgstr ""
3213
 
3214
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3215
+ #: app/features/mec/settings.php:1150
3216
  msgid "Required!"
3217
  msgstr ""
3218
 
3219
+ #: app/features/mec/settings.php:528
3220
  msgid "Zoom level"
3221
  msgstr ""
3222
 
3223
+ #: app/features/mec/settings.php:535
3224
  msgid ""
3225
  "For Google Maps module in single event page. In Google Maps skin, it will "
3226
  "caculate the zoom level automatically based on event boundaries."
3227
  msgstr ""
3228
 
3229
+ #: app/features/mec/settings.php:539
3230
  msgid "Google Maps Style"
3231
  msgstr ""
3232
 
3233
+ #: app/features/mec/settings.php:543
3234
  msgid "Default"
3235
  msgstr ""
3236
 
3237
+ #: app/features/mec/settings.php:551
3238
  msgid "Direction on single event"
3239
  msgstr ""
3240
 
3241
+ #: app/features/mec/settings.php:555
3242
  msgid "Simple Method"
3243
  msgstr ""
3244
 
3245
+ #: app/features/mec/settings.php:556
3246
  msgid "Advanced Method"
3247
  msgstr ""
3248
 
3249
+ #: app/features/mec/settings.php:561
3250
  msgid "Lightbox Date Format"
3251
  msgstr ""
3252
 
3253
+ #: app/features/mec/settings.php:564
3254
  msgid "Default value is M d Y"
3255
  msgstr ""
3256
 
3257
+ #: app/features/mec/settings.php:568
3258
  msgid "Google Maps API"
3259
  msgstr ""
3260
 
3261
+ #: app/features/mec/settings.php:572
3262
  msgid "Don't load Google Maps API library"
3263
  msgstr ""
3264
 
3265
+ #: app/features/mec/settings.php:574
3266
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3267
  msgstr ""
3268
 
3269
+ #: app/features/mec/settings.php:586
3270
  msgid "Enable Google Recaptcha"
3271
  msgstr ""
3272
 
3273
+ #: app/features/mec/settings.php:593
3274
  msgid "Enable on booking form"
3275
  msgstr ""
3276
 
3277
+ #: app/features/mec/settings.php:599
3278
  msgid "Enable on \"Frontend Event Submittion\" form"
3279
  msgstr ""
3280
 
3281
+ #: app/features/mec/settings.php:603
3282
  msgid "Site Key"
3283
  msgstr ""
3284
 
3285
+ #: app/features/mec/settings.php:609
3286
+ msgid "Secret Key"
3287
+ msgstr ""
3288
+
3289
+ #: app/features/mec/settings.php:623
3290
  msgid ""
3291
  "Show export module (iCal export and add to Google calendars) on event page"
3292
  msgstr ""
3293
 
3294
+ #: app/features/mec/settings.php:630
3295
  msgid "Google Calendar"
3296
  msgstr ""
3297
 
3298
+ #: app/features/mec/settings.php:650
3299
  msgid "Show event time based on local time of visitor on event page"
3300
  msgstr ""
3301
 
3302
+ #: app/features/mec/settings.php:666
3303
  msgid "Show QR code of event in details page and booking invoice"
3304
  msgstr ""
3305
 
3306
+ #: app/features/mec/settings.php:684
3307
  msgid "Show weather module on event page"
3308
  msgstr ""
3309
 
3310
+ #: app/features/mec/settings.php:692
3311
  #, php-format
3312
  msgid "You can get a free API Key from %s"
3313
  msgstr ""
3314
 
3315
+ #: app/features/mec/settings.php:704
3316
  msgid "Show countdown module on event page"
3317
  msgstr ""
3318
 
3319
+ #: app/features/mec/settings.php:709
3320
  msgid "Countdown Style"
3321
  msgstr ""
3322
 
3323
+ #: app/features/mec/settings.php:712
3324
  msgid "Plain Style"
3325
  msgstr ""
3326
 
3327
+ #: app/features/mec/settings.php:713
3328
  msgid "Flip Style"
3329
  msgstr ""
3330
 
3331
+ #: app/features/mec/settings.php:725
3332
  msgid "Show social network module"
3333
  msgstr ""
3334
 
3335
+ #: app/features/mec/settings.php:750
3336
  msgid "Show next event module on event page"
3337
  msgstr ""
3338
 
3339
+ #: app/features/mec/settings.php:755
3340
  msgid "Method"
3341
  msgstr ""
3342
 
3343
+ #: app/features/mec/settings.php:758
3344
  msgid "Next Occurrence of Current Event"
3345
  msgstr ""
3346
 
3347
+ #: app/features/mec/settings.php:759
3348
  msgid "Next Occurrence of Other Events"
3349
  msgstr ""
3350
 
3351
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3352
  msgid "Date Format"
3353
  msgstr ""
3354
 
3355
+ #: app/features/mec/settings.php:776
3356
  msgid "Events List Page"
3357
  msgstr ""
3358
 
3359
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3360
  #, php-format
3361
  msgid "Put %s shortcode into the page."
3362
  msgstr ""
3363
 
3364
+ #: app/features/mec/settings.php:788
3365
  msgid "Add/Edit Events Page"
3366
  msgstr ""
3367
 
3368
+ #: app/features/mec/settings.php:802
3369
  msgid "Enable event submission by guest (Not logged-in) users"
3370
  msgstr ""
3371
 
3372
+ #: app/features/mec/settings.php:809
3373
  msgid "Enable mandatory email and name for guest user"
3374
  msgstr ""
3375
 
3376
+ #: app/features/mec/settings.php:813
3377
  msgid "Frontend Event Submission Sections"
3378
  msgstr ""
3379
 
3380
+ #: app/features/mec/settings.php:835
3381
  msgid "Event Categories"
3382
  msgstr ""
3383
 
3384
+ #: app/features/mec/settings.php:841
3385
  msgid "Event Labels"
3386
  msgstr ""
3387
 
3388
+ #: app/features/mec/settings.php:853
3389
  msgid "Event Tags"
3390
  msgstr ""
3391
 
3392
+ #: app/features/mec/settings.php:865
3393
  msgid "Event Organizer"
3394
  msgstr ""
3395
 
3396
+ #: app/features/mec/settings.php:877
3397
  msgid "Booking Options"
3398
  msgstr ""
3399
 
3400
+ #: app/features/mec/settings.php:883
3401
  msgid "Fees/Taxes Options"
3402
  msgstr ""
3403
 
3404
+ #: app/features/mec/settings.php:891
3405
  #, php-format
3406
  msgid ""
3407
  "Users can put a note for editors while they're submitting the event. Also "
3409
  "users' note in email."
3410
  msgstr ""
3411
 
3412
+ #: app/features/mec/settings.php:895
3413
  msgid "Visibility of Note"
3414
  msgstr ""
3415
 
3416
+ #: app/features/mec/settings.php:898
3417
  msgid "Always"
3418
  msgstr ""
3419
 
3420
+ #: app/features/mec/settings.php:899
3421
  msgid "While event is not published"
3422
  msgstr ""
3423
 
3424
+ #: app/features/mec/settings.php:902
3425
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3426
  msgstr ""
3427
 
3428
+ #: app/features/mec/settings.php:908
3429
  msgid "Exceptional days"
3430
  msgstr ""
3431
 
3432
+ #: app/features/mec/settings.php:912
3433
  msgid "Show exceptional days option on Add/Edit events page"
3434
  msgstr ""
3435
 
3436
+ #: app/features/mec/settings.php:913
3437
  msgid ""
3438
  "Using this option you can include/exclude certain days to/from event "
3439
  "occurrence dates."
3440
  msgstr ""
3441
 
3442
+ #: app/features/mec/settings.php:923
3443
  msgid ""
3444
  "Show additional organizers option on Add/Edit events page and single event "
3445
  "page."
3446
  msgstr ""
3447
 
3448
+ #: app/features/mec/settings.php:937
3449
  msgid "Enable booking module"
3450
  msgstr ""
3451
 
3452
+ #: app/features/mec/settings.php:945
3453
  msgid "Default is Y-m-d"
3454
  msgstr ""
3455
 
3456
+ #: app/features/mec/settings.php:949
3457
  msgid "Maximum Dates"
3458
  msgstr ""
3459
 
3460
+ #: app/features/mec/settings.php:951
3461
  msgid "Default is 6"
3462
  msgstr ""
3463
 
3464
+ #: app/features/mec/settings.php:955
3465
  msgid "Thank You Page"
3466
  msgstr ""
3467
 
3468
+ #: app/features/mec/settings.php:963
3469
  msgid ""
3470
  "User redirects to this page after booking. Leave it empty if you want to "
3471
  "disable it."
3472
  msgstr ""
3473
 
3474
+ #: app/features/mec/settings.php:971
3475
  msgid "Enable Express Attendees Form"
3476
  msgstr ""
3477
 
3478
+ #: app/features/mec/settings.php:973
3479
  msgid ""
3480
  "Users are able to apply first attendee information for other attendees in "
3481
  "the booking form."
3482
  msgstr ""
3483
 
3484
+ #: app/features/mec/settings.php:976
3485
  msgid "Email verification"
3486
  msgstr ""
3487
 
3488
+ #: app/features/mec/settings.php:982
3489
  msgid "Auto verification for free bookings"
3490
  msgstr ""
3491
 
3492
+ #: app/features/mec/settings.php:991
3493
  msgid "Auto verification for paid bookings"
3494
  msgstr ""
3495
 
3496
+ #: app/features/mec/settings.php:1001
3497
  msgid "Auto confirmation for free bookings"
3498
  msgstr ""
3499
 
3500
+ #: app/features/mec/settings.php:1010
3501
  msgid "Auto confirmation for paid bookings"
3502
  msgstr ""
3503
 
3504
+ #: app/features/mec/settings.php:1027
3505
  msgid "Enable coupons module"
3506
  msgstr ""
3507
 
3508
+ #: app/features/mec/settings.php:1044
3509
  msgid "Enable taxes / fees module"
3510
  msgstr ""
3511
 
3512
+ #: app/features/mec/settings.php:1049
3513
  msgid "Add Fee"
3514
  msgstr ""
3515
 
3516
+ #: app/features/mec/settings.php:1105
3517
  msgid "Enable BuddyPress Integration"
3518
  msgstr ""
3519
 
3520
+ #: app/features/mec/settings.php:1112
3521
  msgid "Show \"Attendees Module\" in event details page"
3522
  msgstr ""
3523
 
3524
+ #: app/features/mec/settings.php:1116
3525
  msgid "Attendees Limit"
3526
  msgstr ""
3527
 
3528
+ #: app/features/mec/settings.php:1124
3529
  msgid "Add booking activity to user profile"
3530
  msgstr ""
3531
 
3532
+ #: app/features/mec/settings.php:1135
3533
  msgid "Enable Mailchimp Integration"
3534
  msgstr ""
3535
 
3536
+ #: app/features/mec/settings.php:1147
3537
  msgid "List ID"
3538
  msgstr ""
3539
 
3540
+ #: app/features/mec/settings.php:1154
3541
  msgid "Subscription Status"
3542
  msgstr ""
3543
 
3544
+ #: app/features/mec/settings.php:1157
3545
  msgid "Subscribe automatically"
3546
  msgstr ""
3547
 
3548
+ #: app/features/mec/settings.php:1158
3549
  msgid "Subscribe by verification"
3550
  msgstr ""
3551
 
3552
+ #: app/features/mec/settings.php:1160
3553
  msgid ""
3554
  "If you choose \"Subscribe by verification\" then an email will send to user "
3555
  "by mailchimp for subscription verification."
3556
  msgstr ""
3557
 
3558
+ #: app/features/mec/settings.php:1170
3559
  #, php-format
3560
  msgid "%s is required to use this section."
3561
  msgstr ""
3562
 
3563
+ #: app/features/mec/settings.php:1173
3564
  msgid "Purchase Code"
3565
  msgstr ""
3566
 
3567
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3568
+ #: app/features/mec/settings.php:1262
3569
+ msgid "Verified"
3570
+ msgstr ""
3571
+
3572
+ #: app/features/mec/settings.php:1180
3573
  msgid "UnVerified"
3574
  msgstr ""
3575
 
3576
+ #: app/features/mec/settings.php:1182
3577
  msgid ""
3578
  "Please insert your purchase code validation. read documentation for more "
3579
  "information."
3580
  msgstr ""
3581
 
3582
+ #: app/features/mec/settings.php:1185
3583
  msgid "Product Name"
3584
  msgstr ""
3585
 
3586
+ #: app/features/mec/settings.php:1188
3587
  msgid "1 License for MEC Plugin"
3588
  msgstr ""
3589
 
3590
+ #: app/features/mec/settings.php:1189
3591
  msgid "5 License for MEC Plugin"
3592
  msgstr ""
3593
 
3594
+ #: app/features/mec/settings.php:1190
3595
  msgid "10 License for MEC Plugin"
3596
  msgstr ""
3597
 
3598
+ #: app/features/mec/settings.php:1197
3599
  msgid "MEC Deactivation"
3600
  msgstr ""
3601
 
3602
+ #: app/features/mec/settings.php:1199
3603
  msgid "Deactivate"
3604
  msgstr ""
3605
 
3606
+ #: app/features/mec/settings.php:1201
3607
  msgid ""
3608
  "For deactivation first delete your purchase from above field then press save "
3609
  "after that click on deactivate for deactivate this purchase code from this "
3610
  "domain then you can activate another domain."
3611
  msgstr ""
3612
 
3613
+ #: app/features/mec/settings.php:1264
3614
  msgid "Please Refresh Page"
3615
  msgstr ""
3616
 
3761
  msgid "eg. https://webnus.net"
3762
  msgstr ""
3763
 
3764
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3765
  #: app/skins/single.php:194
3766
  msgid "Other Organizers"
3767
  msgstr ""
3776
  msgid "%s Price"
3777
  msgstr ""
3778
 
3779
+ #: app/libraries/book.php:516
3780
+ msgid "Discount"
3781
+ msgstr ""
3782
+
3783
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3784
+ #: app/modules/booking/default.php:369
3785
+ msgid "Download Invoice"
3786
+ msgstr ""
3787
+
3788
  #: app/libraries/factory.php:148
3789
  msgid "M.E. Calendar"
3790
  msgstr ""
3856
  msgid "There is no excerpt because this is a protected post."
3857
  msgstr ""
3858
 
3859
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
3860
  msgid "Grid View"
3861
  msgstr ""
3862
 
3863
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
3864
  msgid "Agenda View"
3865
  msgstr ""
3866
 
3867
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
3868
  msgid "Full Calendar"
3869
  msgstr ""
3870
 
3871
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
3872
  msgid "Calendar/Monthly View"
3873
  msgstr ""
3874
 
3875
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
3876
  msgid "Timetable View"
3877
  msgstr ""
3878
 
3879
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
3880
  msgid "Masonry View"
3881
  msgstr ""
3882
 
3883
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
3884
  msgid "Map View"
3885
  msgstr ""
3886
 
3904
  msgid "Slider View"
3905
  msgstr ""
3906
 
3907
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
3908
  msgid "SU"
3909
  msgstr ""
3910
 
3911
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
3912
  msgid "MO"
3913
  msgstr ""
3914
 
3915
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
3916
  msgid "TU"
3917
  msgstr ""
3918
 
3919
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
3920
  msgid "WE"
3921
  msgstr ""
3922
 
3923
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
3924
  msgid "TH"
3925
  msgstr ""
3926
 
3927
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
3928
  msgid "FR"
3929
  msgstr ""
3930
 
3931
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
3932
  msgid "SA"
3933
  msgstr ""
3934
 
3952
  msgid "Twitter"
3953
  msgstr ""
3954
 
3955
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
3956
  msgid "Linkedin"
3957
  msgstr ""
3958
 
3959
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
3960
+ msgid "VK"
3961
+ msgstr ""
3962
+
3963
+ #: app/libraries/main.php:1053
3964
  msgid "Share on Facebook"
3965
  msgstr ""
3966
 
3967
+ #: app/libraries/main.php:1065
3968
  msgid "Google Plus"
3969
  msgstr ""
3970
 
3971
+ #: app/libraries/main.php:1077
3972
  msgid "Tweet"
3973
  msgstr ""
3974
 
3975
+ #: app/libraries/main.php:1471
3976
  msgid "Your booking successfully verified."
3977
  msgstr ""
3978
 
3979
+ #: app/libraries/main.php:1472
3980
  msgid "Your booking cannot verify!"
3981
  msgstr ""
3982
 
3983
+ #: app/libraries/main.php:1484
3984
  msgid "Your booking successfully canceled."
3985
  msgstr ""
3986
 
3987
+ #: app/libraries/main.php:1485
3988
  msgid "Your booking cannot be canceled."
3989
  msgstr ""
3990
 
3991
+ #: app/libraries/main.php:1489
3992
  msgid "You canceled the payment successfully."
3993
  msgstr ""
3994
 
3995
+ #: app/libraries/main.php:1493
3996
  msgid "You returned from payment gateway successfully."
3997
  msgstr ""
3998
 
3999
+ #: app/libraries/main.php:1517
4000
  msgid "Cannot find the booking!"
4001
  msgstr ""
4002
 
4003
+ #: app/libraries/main.php:1517
4004
  msgid "Booking is invalid."
4005
  msgstr ""
4006
 
4007
+ #: app/libraries/main.php:1538
4008
  #, php-format
4009
  msgid "%s Invoice"
4010
  msgstr ""
4011
 
4012
+ #: app/libraries/main.php:1559
4013
+ msgid "Transaction ID"
4014
+ msgstr ""
4015
+
4016
+ #: app/libraries/main.php:1568
4017
+ msgid "Attendees"
4018
+ msgstr ""
4019
+
4020
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4021
+ msgid "Ticket"
4022
+ msgstr ""
4023
+
4024
+ #: app/libraries/main.php:1590
4025
  msgid "Billing"
4026
  msgstr ""
4027
 
4028
+ #: app/libraries/main.php:1601
4029
  msgid "Total"
4030
  msgstr ""
4031
 
4032
+ #: app/libraries/main.php:1634
4033
  msgid "Security nonce is not valid."
4034
  msgstr ""
4035
 
4036
+ #: app/libraries/main.php:1634
4037
  msgid "iCal export stopped!"
4038
  msgstr ""
4039
 
4040
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4041
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4042
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4043
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4044
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4045
  msgid "Sort"
4046
  msgstr ""
4047
 
4048
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4049
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4050
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4051
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4052
  msgid "Required Field"
4053
  msgstr "Töltse ki az adatokat!"
4054
 
4055
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4056
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4057
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4058
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4059
  msgid "Insert a label for this field"
4060
  msgstr ""
4061
 
4062
+ #: app/libraries/main.php:1977
4063
  msgid "HTML and shortcode are allowed."
4064
  msgstr ""
4065
 
4066
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4067
+ #: app/libraries/main.php:2108
4068
  msgid "Option"
4069
  msgstr ""
4070
 
4071
+ #: app/libraries/main.php:2142
4072
  #, php-format
4073
  msgid "Instead of %s, the page title with a link will be show."
4074
  msgstr ""
4075
 
4076
+ #: app/libraries/main.php:2144
4077
  msgid "Agreement Page"
4078
  msgstr ""
4079
 
4080
+ #: app/libraries/main.php:2153
4081
  msgid "Status"
4082
  msgstr ""
4083
 
4084
+ #: app/libraries/main.php:2155
4085
  msgid "Checked by default"
4086
  msgstr ""
4087
 
4088
+ #: app/libraries/main.php:2156
4089
  msgid "Unchecked by default"
4090
  msgstr ""
4091
 
4092
+ #: app/libraries/main.php:2178
4093
  msgid "Insert a label for this option"
4094
  msgstr ""
4095
 
4096
+ #: app/libraries/main.php:2193
4097
+ msgid "Free"
4098
+ msgstr "Ingyenes"
4099
+
4100
+ #: app/libraries/main.php:2845
4101
  #, php-format
4102
  msgid "Copy of %s"
4103
  msgstr ""
4104
 
4105
+ #: app/libraries/main.php:3482
4106
  msgid "Booked an event."
4107
  msgstr ""
4108
 
4109
+ #: app/libraries/main.php:3523
4110
  #, php-format
4111
  msgid "%s booked %s event."
4112
  msgstr ""
4113
 
4114
+ #: app/libraries/main.php:3965
4115
  msgid "Taxonomies"
4116
  msgstr ""
4117
 
4118
+ #: app/libraries/main.php:3967
4119
  msgid "Category Plural Label"
4120
  msgstr ""
4121
 
4122
+ #: app/libraries/main.php:3968
4123
  msgid "Category Singular Label"
4124
  msgstr ""
4125
 
4126
+ #: app/libraries/main.php:3969
4127
  msgid "Label Plural Label"
4128
  msgstr ""
4129
 
4130
+ #: app/libraries/main.php:3970
4131
  msgid "Label Singular Label"
4132
  msgstr ""
4133
 
4134
+ #: app/libraries/main.php:3970
4135
  msgid "label"
4136
  msgstr ""
4137
 
4138
+ #: app/libraries/main.php:3971
4139
  msgid "Location Plural Label"
4140
  msgstr ""
4141
 
4142
+ #: app/libraries/main.php:3972
4143
  msgid "Location Singular Label"
4144
  msgstr ""
4145
 
4146
+ #: app/libraries/main.php:3973
4147
  msgid "Organizer Plural Label"
4148
  msgstr ""
4149
 
4150
+ #: app/libraries/main.php:3974
4151
  msgid "Organizer Singular Label"
4152
  msgstr ""
4153
 
4154
+ #: app/libraries/main.php:3980
4155
  msgid "Sunday abbreviation"
4156
  msgstr ""
4157
 
4158
+ #: app/libraries/main.php:3981
4159
  msgid "Monday abbreviation"
4160
  msgstr ""
4161
 
4162
+ #: app/libraries/main.php:3982
4163
  msgid "Tuesday abbreviation"
4164
  msgstr ""
4165
 
4166
+ #: app/libraries/main.php:3983
4167
  msgid "Wednesday abbreviation"
4168
  msgstr ""
4169
 
4170
+ #: app/libraries/main.php:3984
4171
  msgid "Thursday abbreviation"
4172
  msgstr ""
4173
 
4174
+ #: app/libraries/main.php:3985
4175
  msgid "Friday abbreviation"
4176
  msgstr ""
4177
 
4178
+ #: app/libraries/main.php:3986
4179
  msgid "Saturday abbreviation"
4180
  msgstr ""
4181
 
4182
+ #: app/libraries/main.php:3990
4183
  msgid "Others"
4184
  msgstr ""
4185
 
4186
+ #: app/libraries/main.php:3992
4187
  msgid "Booking Success Message"
4188
  msgstr ""
4189
 
4190
+ #: app/libraries/main.php:3992
4191
+ msgid ""
4192
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4193
+ "needed, please check your email."
4194
+ msgstr ""
4195
+ "Köszönjük a foglalást! Kérjük ellenőrizze emailjeit, lehetséges, hogy "
4196
+ "jóváhagyásra lesz szükség!"
4197
+
4198
+ #: app/libraries/main.php:3993
4199
  msgid "Register Button"
4200
  msgstr ""
4201
 
4202
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4203
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4204
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4205
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4213
  msgid "REGISTER"
4214
  msgstr "REGISZTRÁCIÓ"
4215
 
4216
+ #: app/libraries/main.php:3994
4217
  msgid "View Detail Button"
4218
  msgstr ""
4219
 
4220
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4221
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4222
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4223
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4228
  msgid "View Detail"
4229
  msgstr ""
4230
 
4231
+ #: app/libraries/main.php:3995
4232
  msgid "Event Detail Button"
4233
  msgstr ""
4234
 
4235
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4236
  msgid "Event Detail"
4237
  msgstr ""
4238
 
4239
+ #: app/libraries/main.php:3997
4240
  msgid "More Info Link"
4241
  msgstr ""
4242
 
4243
+ #: app/libraries/main.php:4000
4244
  msgid "Ticket (Singular)"
4245
  msgstr ""
4246
 
4247
+ #: app/libraries/main.php:4001
4248
  msgid "Tickets (Plural)"
4249
  msgstr ""
4250
 
4251
+ #: app/libraries/main.php:4067
4252
  msgid "EventON"
4253
  msgstr ""
4254
 
4255
+ #: app/libraries/main.php:4068
4256
  msgid "The Events Calendar"
4257
  msgstr ""
4258
 
4259
+ #: app/libraries/main.php:4069
4260
  msgid "Events Schedule WP Plugin"
4261
  msgstr ""
4262
 
4263
+ #: app/libraries/main.php:4070
4264
  msgid "Calendarize It"
4265
  msgstr ""
4266
 
4284
  msgid "A new event is added."
4285
  msgstr ""
4286
 
4287
+ #: app/libraries/notifications.php:516
4288
+ msgid "Yes"
4289
+ msgstr ""
4290
+
4291
+ #: app/libraries/notifications.php:516
4292
+ msgid "No"
4293
+ msgstr ""
4294
+
4295
  #: app/libraries/render.php:337
4296
  msgid "Skin controller does not exist."
4297
  msgstr ""
4320
  msgid "%s tickets"
4321
  msgstr ""
4322
 
4323
+ #: app/modules/booking/steps/checkout.php:16
4324
+ msgid "Checkout"
4325
+ msgstr "Ellenőrzés"
4326
+
4327
  #: app/modules/booking/steps/checkout.php:33
4328
  msgid "Discount Coupon"
4329
  msgstr ""
4350
  msgid "Next"
4351
  msgstr "Tovább"
4352
 
4353
+ #: app/modules/booking/steps/message.php:7
4354
+ msgid "Thanks for your booking."
4355
+ msgstr ""
4356
+
4357
  #: app/modules/booking/steps/tickets.php:18
4358
  msgid "Book Event"
4359
  msgstr "Foglalás az eseményre"
4644
  msgid "QR Code : "
4645
  msgstr ""
4646
 
4647
+ #. Plugin Name of the plugin/theme
4648
+ msgid "Modern Events Calendar Lite"
4649
+ msgstr ""
4650
+
4651
  #. Plugin URI of the plugin/theme
4652
  msgid "http://webnus.net/plugins/modern-events-calendar/"
4653
  msgstr ""
4664
  msgid "http://webnus.net"
4665
  msgstr ""
4666
 
4667
+ #~ msgid "Please select some tickets!"
4668
+ #~ msgstr "Kérjük, válasszon néhány jegyet!"
4669
+
4670
+ #~ msgid "First name"
4671
+ #~ msgstr "Keresztnév"
4672
+
4673
+ #~ msgid "Last name"
4674
+ #~ msgstr "Vezetéknév"
4675
+
4676
+ #~ msgid "Payment is invalid."
4677
+ #~ msgstr "Fizetés érvénytelen"
4678
+
4679
+ #~ msgid "Your order is created. Please proceed with checkout."
4680
+ #~ msgstr "A foglalás megtörtént. Kérjük ellenőrizze azt!"
4681
+
4682
  #~ msgid "Order"
4683
  #~ msgstr "Rendelés"
4684
 
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: 2018-07-24 11:58+0430\n"
5
- "PO-Revision-Date: 2018-08-21 16:54+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -20,7 +20,6 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #. Plugin Name of the plugin/theme
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
25
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
26
  #: app/widgets/MEC.php:23
@@ -31,8 +30,8 @@ msgstr "Calendario moderno degli eventi"
31
  msgid "Content"
32
  msgstr "Contenuto"
33
 
34
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
35
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
36
  msgid "Shortcode"
37
  msgstr "Shortcode"
38
 
@@ -40,370 +39,29 @@ msgstr "Shortcode"
40
  msgid "Select from predefined shortcodes"
41
  msgstr "Seleziona da shortcode predefiniti"
42
 
43
- #: app/crons/booking-reminder.php:33
44
- msgid "Booking reminder notification is not enabled!"
45
- msgstr ""
46
-
47
- #: app/crons/booking-reminder.php:43
48
- msgid "Booking module is not enabled!"
49
- msgstr ""
50
-
51
- #: app/crons/booking-reminder.php:52
52
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
53
- msgstr ""
54
-
55
- #: app/crons/booking-reminder.php:104
56
- #, php-format
57
- msgid "%s reminders sent."
58
- msgstr ""
59
-
60
- #: app/crons/f-import.php:32
61
- msgid "Auto Facebook import is disabled!"
62
- msgstr "L'importazione automatica da Facebook è disabilitata!"
63
-
64
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
65
- msgid "Please insert your facebook page's link."
66
- msgstr "Si prega di inserire il link della vostra pagina Facebook."
67
-
68
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
69
- msgid ""
70
- "We couldn't recognize your Facebook page. Please check it and provide us a "
71
- "valid facebook page link."
72
- msgstr ""
73
- "Non riusciamo ad accedere alla vostra pagina Facebook. Si prega di "
74
- "verificare e inserire una pagina valida."
75
-
76
- #: app/crons/f-import.php:198
77
- #, php-format
78
- msgid "%s facebook events imported/updated."
79
- msgstr "%s eventi facebook importati/aggiornati."
80
-
81
- #: app/crons/g-export.php:37 app/features/ix.php:2527
82
- msgid "All of Client App, Client Secret and Calendar ID are required!"
83
- msgstr ""
84
- "Tutte le applicazioni Client, Client Secret e ID Calendario sono obbligatori!"
85
-
86
- #: app/crons/g-export.php:234 app/features/ix.php:2722
87
- #, php-format
88
- msgid "%s events added to Google Calendar successfully."
89
- msgstr "%s eventi aggiunti con successo dal calendario di Google."
90
-
91
- #: app/crons/g-export.php:235 app/features/ix.php:2723
92
- #, php-format
93
- msgid "%s previously added events get updated."
94
- msgstr "%s eventi precedentemente aggiunti vengono aggiornati."
95
-
96
- #: app/crons/g-export.php:236 app/features/ix.php:2724
97
- #, php-format
98
- msgid "%s events failed to add for following reasons: %s"
99
- msgstr ""
100
- "%s eventi non sono stati aggiornati, è fallita l'importazione per diverse "
101
- "ragioni: %s"
102
-
103
- #: app/crons/g-import.php:32
104
- msgid "Auto Google Calendar import is disabled!"
105
- msgstr "L'importazione automatica dal calendario di Google è disabilitata!"
106
-
107
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
108
- msgid "Both of API key and Calendar ID are required!"
109
- msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
110
-
111
- #: app/crons/g-import.php:370
112
- #, php-format
113
- msgid "%s google events imported/updated."
114
- msgstr "%s eventi di Google importati/aggiornati."
115
-
116
- #: app/features/books.php:105 app/features/books.php:110
117
- #: app/features/ix/export.php:37
118
- msgid "Bookings"
119
- msgstr "Prenotazioni"
120
-
121
- #: app/features/books.php:106 app/features/books.php:328
122
- #: app/features/contextual.php:308 app/features/events.php:253
123
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
124
- msgid "Booking"
125
- msgstr "Prenotazione"
126
-
127
- #: app/features/books.php:107 app/features/books.php:108
128
- msgid "Add Booking"
129
- msgstr "Aggiungi Prenotazione"
130
-
131
- #: app/features/books.php:109
132
- msgid "No bookings found!"
133
- msgstr "Nessuna prenotazione trovata!"
134
-
135
- #: app/features/books.php:111
136
- msgid "Edit Bookings"
137
- msgstr "Modifica Prenotazione"
138
-
139
- #: app/features/books.php:112
140
- msgid "No bookings found in Trash!"
141
- msgstr "Nessuna prenotazione trovata nel cestino!"
142
-
143
- #: app/features/books.php:149
144
- msgid "Book Details"
145
- msgstr "Dettaglio Prenotazione"
146
-
147
- #: app/features/books.php:150
148
- msgid "Status & Invoice"
149
- msgstr ""
150
-
151
- #: app/features/books.php:176 app/features/books.php:387
152
- #: app/features/books.php:576 app/features/books.php:651
153
- #: app/features/books.php:709
154
- msgid "Confirmation"
155
- msgstr "Conferma"
156
-
157
- #: app/features/books.php:178 app/features/books.php:578
158
- #: app/features/books.php:602 app/features/books.php:894
159
- msgid "Pending"
160
- msgstr "In attesa"
161
-
162
- #: app/features/books.php:179 app/features/books.php:577
163
- #: app/features/books.php:892
164
- msgid "Confirmed"
165
- msgstr "Confermato"
166
-
167
- #: app/features/books.php:180 app/features/books.php:579
168
- #: app/features/books.php:893
169
- msgid "Rejected"
170
- msgstr "Rifiutato"
171
-
172
- #: app/features/books.php:184 app/features/books.php:388
173
- #: app/features/books.php:585 app/features/books.php:651
174
- #: app/features/books.php:709
175
- msgid "Verification"
176
- msgstr "Verifica"
177
-
178
- #: app/features/books.php:186 app/features/books.php:587
179
- #: app/features/books.php:909
180
- msgid "Waiting"
181
- msgstr "In attesa"
182
-
183
- #: app/features/books.php:187 app/features/books.php:586
184
- #: app/features/books.php:907 app/features/mec/settings.php:1173
185
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
186
- msgid "Verified"
187
- msgstr "Verificato"
188
-
189
- #: app/features/books.php:188 app/features/books.php:588
190
- #: app/features/books.php:908
191
- msgid "Canceled"
192
- msgstr "Cancellato"
193
-
194
- #: app/features/books.php:203
195
- #, php-format
196
- msgid "Here, you can %s invoice of %s transaction."
197
- msgstr ""
198
-
199
- #: app/features/books.php:203
200
- msgid "download"
201
- msgstr ""
202
-
203
- #: app/features/books.php:246
204
- msgid "It will create a new booking under \"Pay Locally\" gateway."
205
- msgstr ""
206
-
207
- #: app/features/books.php:248 app/features/contextual.php:62
208
- #: app/features/events.php:910 app/features/mec/gateways.php:29
209
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
210
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
211
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
212
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
213
- msgid "Booking Form"
214
- msgstr "Form Prenotazione"
215
-
216
- #: app/features/books.php:251 app/features/books.php:330
217
- #: app/features/books.php:385 app/features/books.php:569
218
- #: app/features/books.php:651 app/features/books.php:709
219
- #: app/features/events.php:123
220
- #: app/features/mec/meta_boxes/display_options.php:678
221
- #: app/features/mec/meta_boxes/display_options.php:716
222
- #: app/features/mec/meta_boxes/display_options.php:745
223
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
224
- #: app/skins/yearly_view/tpl.php:69
225
- msgid "Event"
226
- msgstr "Evento"
227
-
228
- #: app/features/books.php:315
229
- msgid "Payment"
230
- msgstr "Pagamento"
231
-
232
- #: app/features/books.php:317 app/features/books.php:386
233
- #: app/features/events.php:756 app/features/events.php:788
234
- msgid "Price"
235
- msgstr "Prezzo"
236
-
237
- #: app/features/books.php:321 app/features/gateways.php:148
238
- msgid "Gateway"
239
- msgstr "Gateway"
240
-
241
- #: app/features/books.php:322 app/features/books.php:326
242
- #: app/features/books.php:331 app/features/books.php:335
243
- #: app/features/books.php:352 app/features/books.php:690
244
- #: app/features/books.php:748
245
- msgid "Unknown"
246
- msgstr "Sconosciuto"
247
-
248
- #: app/features/books.php:325 app/features/books.php:389
249
- #: app/features/books.php:651 app/features/books.php:709
250
- #: app/libraries/main.php:1544
251
- msgid "Transaction ID"
252
- msgstr "ID Transazione"
253
-
254
- #: app/features/books.php:334 app/features/books.php:651
255
- #: app/features/books.php:709 app/features/books.php:1099
256
- #: app/features/events.php:508 app/features/events.php:580
257
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
258
- #: app/modules/booking/steps/tickets.php:20
259
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
260
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
261
- #: app/skins/single/modern.php:146
262
- msgid "Date"
263
- msgstr "Data"
264
-
265
- #: app/features/books.php:335
266
- #, php-format
267
- msgid "%s to %s"
268
- msgstr "%s al %s"
269
-
270
- #: app/features/books.php:338 app/features/mec/notifications.php:140
271
- #: app/features/mec/notifications.php:177
272
- #: app/features/mec/notifications.php:214
273
- #: app/features/mec/notifications.php:255
274
- #: app/features/mec/notifications.php:307
275
- msgid "Total Attendees"
276
- msgstr ""
277
-
278
- #: app/features/books.php:341 app/features/books.php:384
279
- #: app/libraries/main.php:1553
280
- msgid "Attendees"
281
- msgstr ""
282
-
283
- #: app/features/books.php:347 app/features/books.php:651
284
- #: app/features/books.php:709 app/features/books.php:1114
285
- #: app/features/events.php:371 app/features/events.php:945
286
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
287
- #: app/features/organizers.php:110 app/features/organizers.php:150
288
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
289
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
290
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
291
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
292
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
293
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
294
- #: app/skins/single/modern.php:38
295
- msgid "Email"
296
- msgstr "Email"
297
-
298
- #: app/features/books.php:351 app/features/books.php:431
299
- #: app/features/books.php:651 app/features/books.php:709
300
- #: app/features/books.php:1106 app/libraries/main.php:1559
301
- #: app/libraries/main.php:3985
302
- msgid "Ticket"
303
- msgstr "Ticket"
304
-
305
- #: app/features/books.php:358 app/libraries/notifications.php:516
306
- msgid "Yes"
307
- msgstr ""
308
-
309
- #: app/features/books.php:358 app/libraries/notifications.php:516
310
- msgid "No"
311
- msgstr ""
312
-
313
- #: app/features/books.php:390
314
- msgid "Book Date"
315
- msgstr "Data Prenotazione"
316
-
317
- #: app/features/books.php:602
318
- msgid "Confirm"
319
- msgstr "Conferma"
320
-
321
- #: app/features/books.php:602
322
- msgid "Reject"
323
- msgstr "Rifiuta"
324
-
325
- #: app/features/books.php:602 app/features/events.php:1569
326
- #: app/features/events.php:1570
327
- msgid "CSV Export"
328
- msgstr "Esporta CSV"
329
-
330
- #: app/features/books.php:602 app/features/events.php:1572
331
- #: app/features/events.php:1573
332
- msgid "MS Excel Export"
333
- msgstr "Esporta Excel"
334
-
335
- #: app/features/books.php:651 app/features/books.php:709
336
- #: app/features/events.php:1631 app/features/events.php:1675
337
- #: app/features/ix.php:2328 app/features/ix.php:2369
338
- #: app/features/labels.php:150 app/features/locations.php:228
339
- #: app/features/organizers.php:198
340
- msgid "ID"
341
- msgstr "ID"
342
-
343
- #: app/features/books.php:651 app/features/books.php:709
344
- msgid "Total Price"
345
- msgstr ""
346
-
347
- #: app/features/books.php:651 app/features/books.php:709
348
- #: app/features/books.php:1113 app/features/events.php:370
349
- #: app/features/fes/form.php:441 app/features/gateways.php:503
350
- #: app/features/labels.php:151 app/features/organizers.php:268
351
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
352
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
353
- msgid "Name"
354
- msgstr "Nome"
355
-
356
- #: app/features/books.php:923
357
- msgid "Security nonce is missing."
358
- msgstr "Token di sicurezzamancante."
359
-
360
- #: app/features/books.php:926
361
- msgid "Security nonce is invalid."
362
- msgstr "Token di sicurezza non valido."
363
-
364
- #: app/features/books.php:935
365
- msgid "Invalid request."
366
- msgstr "Richiesta non valida."
367
-
368
- #: app/features/books.php:963
369
- msgid "Please select some tickets!"
370
- msgstr "Si prega di selezionare ticket!"
371
-
372
- #: app/features/books.php:969
373
- msgid "Captcha is invalid. Please try again."
374
- msgstr "Captcha non valido. Riprovare."
375
-
376
- #: app/features/books.php:1015
377
- msgid "Please fill the form correctly. Email and Name fields are required!"
378
- msgstr ""
379
-
380
- #: app/features/books.php:1085
381
- msgid "Event is invalid. Please select an event."
382
- msgstr ""
383
-
384
- #: app/features/books.php:1093
385
- msgid ""
386
- "No ticket ro future dates found for this event! Please try another event."
387
- msgstr ""
388
-
389
- #: app/features/books.php:1175
390
- msgid "Attendee Information"
391
- msgstr ""
392
-
393
  #: app/features/colors.php:50 app/features/fes/form.php:566
394
- #: app/features/mec/settings.php:842
395
  msgid "Event Color"
396
  msgstr "Colore Evento"
397
 
398
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
399
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
400
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
401
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
402
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
403
  #: app/features/mec/support.php:18
404
  msgid "Settings"
405
  msgstr "Impostazioni"
406
 
 
 
 
 
 
 
 
 
 
407
  #: app/features/contextual.php:63
408
  msgid ""
409
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -416,7 +74,7 @@ msgstr ""
416
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
417
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
418
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
419
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
420
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
421
  msgid "Payment Gateways"
422
  msgstr "Gateway di pagamento"
@@ -431,7 +89,7 @@ msgstr ""
431
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
432
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
433
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
434
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
435
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
436
  msgid "Notifications"
437
  msgstr "Notifiche"
@@ -492,234 +150,102 @@ msgid ""
492
  "\"0\" allowfullscreen></iframe>"
493
  msgstr ""
494
 
495
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
496
- #: app/features/mec/settings.php:247
497
  msgid "General Options"
498
  msgstr "Opzioni generali"
499
 
500
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
501
- #: app/features/mec/settings.php:399
502
  msgid "Slugs/Permalinks"
503
  msgstr "Slug/Permalink"
504
 
505
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
506
- #: app/features/mec/settings.php:419
507
  msgid "Event Details/Single Event Page"
508
  msgstr "Dettaglii evento/Pagina singola evento"
509
 
510
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
511
- #: app/features/mec/settings.php:451
512
  msgid "Currency Options"
513
  msgstr "Opzioni valuta"
514
 
515
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
516
- #: app/features/mec/settings.php:503
517
  msgid "Google Maps Options"
518
  msgstr "Opzioni Google Map"
519
 
520
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
521
- #: app/features/mec/settings.php:577
522
  msgid "Google Recaptcha Options"
523
  msgstr "Opzioni Recaptcha Google"
524
 
525
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
526
- #: app/features/mec/settings.php:695
527
  msgid "Countdown Options"
528
  msgstr "Opzioni conto alla rovescia"
529
 
530
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
531
- #: app/features/mec/settings.php:716
532
  msgid "Social Networks"
533
  msgstr "Social Network"
534
 
535
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
536
- #: app/features/mec/settings.php:741
537
  msgid "Next Event Module"
538
  msgstr "Modulo prossimo evento"
539
 
540
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
541
- #: app/features/mec/settings.php:769
542
  msgid "Frontend Event Submission"
543
  msgstr "Invio eventi da frontend"
544
 
545
  #: app/features/contextual.php:298 app/features/events.php:570
546
- #: app/features/mec/settings.php:126
547
  msgid "Exceptional Days"
548
  msgstr "Giorni eccezionali"
549
 
550
- #: app/features/contextual.php:318 app/features/coupons.php:76
551
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
552
- #: app/features/mec/settings.php:1014
 
 
 
 
553
  msgid "Coupons"
554
  msgstr "Coupon"
555
 
556
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
557
- #: app/features/mec/settings.php:1096
558
  msgid "BuddyPress Integration"
559
  msgstr "Integrazione BuddyPress"
560
 
561
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
562
- #: app/features/mec/settings.php:1126
563
  msgid "Mailchimp Integration"
564
  msgstr "Integrazione Mailchimp"
565
 
566
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
567
- #: app/features/mec/settings.php:1162
568
  msgid "MEC Activation"
569
  msgstr "Attivazione"
570
 
571
- #: app/features/coupons.php:79
572
- msgid "Coupon"
573
- msgstr "Coupon"
574
-
575
- #: app/features/coupons.php:80
576
- msgid "All Coupons"
577
- msgstr "Tutti i Coupon"
578
-
579
- #: app/features/coupons.php:81
580
- msgid "Edit Coupon"
581
- msgstr "Modifica Coupon"
582
-
583
- #: app/features/coupons.php:82
584
- msgid "View Coupon"
585
- msgstr "Visualizza Coupon"
586
-
587
- #: app/features/coupons.php:83
588
- msgid "Update Coupon"
589
- msgstr "Aggiorna Coupon"
590
-
591
- #: app/features/coupons.php:84
592
- msgid "Add New Coupon"
593
- msgstr "Aggiungi nuovo Coupon"
594
-
595
- #: app/features/coupons.php:85
596
- msgid "New Coupon Name"
597
- msgstr "Nuovo nome di coupon"
598
-
599
- #: app/features/coupons.php:86
600
- msgid "Popular Coupons"
601
- msgstr "Coupon frequenti"
602
-
603
- #: app/features/coupons.php:87
604
- msgid "Search Coupons"
605
- msgstr "Ricerca Coupon"
606
-
607
- #: app/features/coupons.php:116 app/features/coupons.php:177
608
- msgid "Discount Type"
609
- msgstr "Tipo di sconto"
610
-
611
- #: app/features/coupons.php:120 app/features/coupons.php:179
612
- #: app/features/events.php:854 app/features/events.php:879
613
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
614
- msgid "Percent"
615
- msgstr "Percentuale"
616
-
617
- #: app/features/coupons.php:121 app/features/coupons.php:180
618
- #: app/features/events.php:849 app/features/events.php:874
619
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
620
- msgid "Amount"
621
- msgstr "Totale"
622
-
623
- #: app/features/coupons.php:127 app/features/coupons.php:184
624
- #: app/features/coupons.php:248 app/features/coupons.php:322
625
- #: app/libraries/book.php:505
626
- msgid "Discount"
627
- msgstr "Sconto"
628
-
629
- #: app/features/coupons.php:131 app/features/coupons.php:186
630
- msgid ""
631
- "Discount percent, considered as amount if you set the discount type to amount"
632
- msgstr ""
633
- "Percentuale di sconto, considerata come totale se è impostato il tipo di "
634
- "sconto a totale"
635
-
636
- #: app/features/coupons.php:136 app/features/coupons.php:189
637
- msgid "Usage Limit"
638
- msgstr "Limiti di utilizzo"
639
-
640
- #: app/features/coupons.php:140 app/features/coupons.php:191
641
- msgid "Insert -1 for unlimited usage"
642
- msgstr "Inserire -1 per utilizzo illimitato"
643
-
644
- #: app/features/coupons.php:145 app/features/coupons.php:194
645
- #: app/features/gateways.php:1202
646
- msgid "Expiration Date"
647
- msgstr "Data di scadenza"
648
-
649
- #: app/features/coupons.php:149 app/features/coupons.php:196
650
- msgid "Leave it empty for no expiration!"
651
- msgstr ""
652
-
653
- #: app/features/coupons.php:154 app/features/coupons.php:199
654
- msgid "Target Event"
655
- msgstr ""
656
-
657
- #: app/features/coupons.php:158 app/features/coupons.php:201
658
- #: app/features/events.php:127
659
- msgid "All Events"
660
- msgstr "Tutti gli Eventi"
661
-
662
- #: app/features/coupons.php:246
663
- msgid "Name/Code"
664
- msgstr "Nome/Codice"
665
-
666
- #: app/features/coupons.php:247 app/features/events.php:632
667
- #: app/features/events.php:644 app/features/events.php:752
668
- #: app/features/events.php:784
669
- msgid "Description"
670
- msgstr "Descrizione"
671
-
672
- #: app/features/coupons.php:249
673
- #: app/features/mec/meta_boxes/display_options.php:85
674
- #: app/features/mec/meta_boxes/display_options.php:194
675
- #: app/features/mec/meta_boxes/display_options.php:244
676
- #: app/features/mec/meta_boxes/display_options.php:632
677
- #: app/features/mec/meta_boxes/display_options.php:806
678
- #: app/features/mec/meta_boxes/display_options.php:877
679
- msgid "Limit"
680
- msgstr "Limite"
681
-
682
- #: app/features/coupons.php:250 app/features/labels.php:153
683
- #: app/features/locations.php:231 app/features/organizers.php:201
684
- #: app/modules/booking/steps/tickets.php:36
685
- msgid "Count"
686
- msgstr "Numero"
687
-
688
- #: app/features/coupons.php:280 app/features/events.php:715
689
- #: app/features/events.php:769 app/features/events.php:801
690
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
691
- #: app/skins/available_spot/tpl.php:84
692
- msgid "Unlimited"
693
- msgstr "Illimitato"
694
-
695
- #: app/features/coupons.php:309
696
- msgid "Discount coupon is invalid!"
697
- msgstr "Il coupon sconto non è valido!"
698
-
699
- #: app/features/coupons.php:311
700
- msgid "Discount coupon usage limit reached!"
701
- msgstr "E' stato raggiunto il limite di utilizzo di coupon sconto!"
702
-
703
- #: app/features/coupons.php:313
704
- msgid "Discount coupon is expired!"
705
- msgstr ""
706
-
707
- #: app/features/coupons.php:315
708
- msgid "Discount is not valid for this event!"
709
- msgstr ""
710
-
711
- #: app/features/coupons.php:326
712
- #, php-format
713
- msgid "Coupon is valid and you get %s discount."
714
- msgstr "Il coupon è valido per uno sconto di %s."
715
-
716
  #: app/features/events.php:122 app/features/ix/export.php:33
717
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
718
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
719
  msgid "Events"
720
  msgstr "Eventi"
721
 
722
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
723
  msgid "Add Event"
724
  msgstr "Aggiungi Evento"
725
 
@@ -732,6 +258,10 @@ msgstr "Aggiungi nuovo Evento"
732
  msgid "No events found!"
733
  msgstr "Nessun evento trovato!"
734
 
 
 
 
 
735
  #: app/features/events.php:128
736
  msgid "Edit Event"
737
  msgstr ""
@@ -754,7 +284,7 @@ msgstr "Nessun evento trovato nel cestino!"
754
  #: app/features/mec/meta_boxes/search_form.php:285
755
  #: app/features/mec/meta_boxes/search_form.php:325
756
  #: app/features/mec/meta_boxes/search_form.php:372
757
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
758
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
759
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
760
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -762,8 +292,8 @@ msgid "Category"
762
  msgstr "Categoria"
763
 
764
  #: app/features/events.php:143 app/features/fes/form.php:518
765
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
766
- #: app/libraries/main.php:3952
767
  msgid "Categories"
768
  msgstr "Categorie"
769
 
@@ -830,12 +360,12 @@ msgstr "Dettaglio Evento"
830
  #: app/features/events.php:286 app/features/events.php:1631
831
  #: app/features/events.php:1675 app/features/fes/form.php:479
832
  #: app/features/ix.php:2328 app/features/ix.php:2369
833
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
834
  msgid "Event Cost"
835
  msgstr "Costo Evento"
836
 
837
  #: app/features/events.php:289 app/features/fes/form.php:482
838
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
839
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
840
  #: app/skins/single/modern.php:179
841
  msgid "Cost"
@@ -849,6 +379,26 @@ msgstr "Nota per il revisore"
849
  msgid "Guest Data"
850
  msgstr "Dati dell'ospite"
851
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
852
  #: app/features/events.php:375 app/features/fes/form.php:221
853
  msgid "Date and Time"
854
  msgstr "Data e Ora"
@@ -858,7 +408,7 @@ msgstr "Data e Ora"
858
  #: app/features/events.php:1675 app/features/fes/form.php:225
859
  #: app/features/fes/form.php:229 app/features/ix.php:2328
860
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
861
- #: app/features/mec/dashboard.php:262
862
  #: app/features/mec/meta_boxes/display_options.php:42
863
  #: app/features/mec/meta_boxes/display_options.php:129
864
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -890,7 +440,7 @@ msgstr "PM"
890
  #: app/features/events.php:1675 app/features/fes/form.php:265
891
  #: app/features/fes/form.php:269 app/features/ix.php:2328
892
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
893
- #: app/features/mec/dashboard.php:263
894
  msgid "End Date"
895
  msgstr "Data di fine"
896
 
@@ -927,7 +477,7 @@ msgid "Repeats"
927
  msgstr "Ripeti"
928
 
929
  #: app/features/events.php:481 app/features/fes/form.php:327
930
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
931
  msgid "Daily"
932
  msgstr "Giornaliero"
933
 
@@ -949,12 +499,12 @@ msgid "Weekly"
949
  msgstr "Settimanale"
950
 
951
  #: app/features/events.php:486 app/features/fes/form.php:332
952
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
953
  msgid "Monthly"
954
  msgstr "Mensile"
955
 
956
  #: app/features/events.php:487 app/features/fes/form.php:333
957
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
958
  msgid "Yearly"
959
  msgstr "Annuale"
960
 
@@ -1009,6 +559,15 @@ msgstr "Sabato"
1009
  msgid "Sunday"
1010
  msgstr "Domenica"
1011
 
 
 
 
 
 
 
 
 
 
1012
  #: app/features/events.php:509 app/features/events.php:581
1013
  #: app/features/events.php:623 app/features/events.php:743
1014
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1055,7 +614,7 @@ msgstr "Escludi certi giorni"
1055
  msgid "Exclude certain days from event occurrence dates."
1056
  msgstr "Escludere determinati giorni dalle date dell'evento."
1057
 
1058
- #: app/features/events.php:620 app/features/mec/settings.php:866
1059
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1060
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1061
  msgid "Hourly Schedule"
@@ -1076,33 +635,35 @@ msgstr "A es. 8:45"
1076
  #: app/features/events.php:631 app/features/events.php:643
1077
  #: app/features/events.php:1449 app/features/events.php:1631
1078
  #: app/features/events.php:1675 app/features/fes/form.php:214
1079
- #: app/features/gateways.php:550 app/features/gateways.php:617
1080
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1081
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1082
- #: app/features/ix.php:2369
1083
  msgid "Title"
1084
  msgstr "Titolo"
1085
 
 
 
 
 
 
1086
  #: app/features/events.php:633 app/features/events.php:645
1087
  #: app/features/events.php:771 app/features/events.php:803
1088
  #: app/features/events.php:859 app/features/events.php:884
1089
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1090
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1091
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1092
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1093
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1094
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1095
- #: app/libraries/main.php:2162
1096
  msgid "Remove"
1097
  msgstr "Elimina"
1098
 
1099
  #: app/features/events.php:665 app/features/fes/form.php:456
1100
- #: app/features/mec/settings.php:812
1101
  msgid "Event Links"
1102
  msgstr "Link dell'evento"
1103
 
1104
  #: app/features/events.php:667 app/features/fes/form.php:458
1105
- #: app/libraries/main.php:3981
1106
  msgid "Event Link"
1107
  msgstr "Link dell'evento"
1108
 
@@ -1120,7 +681,7 @@ msgstr ""
1120
  "eventi predefiniti. Inserisci il collegamento completo compreso http (s): //"
1121
 
1122
  #: app/features/events.php:672 app/features/fes/form.php:463
1123
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1124
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1125
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1126
  msgid "More Info"
@@ -1151,12 +712,18 @@ msgstr ""
1151
  msgid "Total booking limits"
1152
  msgstr "Limite totale delle prenotazioni"
1153
 
 
 
 
 
 
 
1154
  #: app/features/events.php:717
1155
  msgid "100"
1156
  msgstr "100"
1157
 
1158
  #: app/features/events.php:735 app/libraries/book.php:59
1159
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1160
  msgid "Tickets"
1161
  msgstr "Biglietto/ticket"
1162
 
@@ -1171,6 +738,10 @@ msgstr ""
1171
  msgid "Ticket Name"
1172
  msgstr "Nome biglietto/ticket"
1173
 
 
 
 
 
1174
  #: app/features/events.php:757 app/features/events.php:789
1175
  msgid "Insert 0 for free ticket. Only numbers please."
1176
  msgstr "Inserire 0 per ticket gratuiti. Solo numeri."
@@ -1196,12 +767,17 @@ msgid "Inherit from global options"
1196
  msgstr "Eredita da opzioni globali"
1197
 
1198
  #: app/features/events.php:845 app/features/events.php:870
1199
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1200
  msgid "Fee Title"
1201
  msgstr "Titolo tassa"
1202
 
 
 
 
 
 
1203
  #: app/features/events.php:850 app/features/events.php:875
1204
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1205
  msgid ""
1206
  "Fee amount, considered as fixed amount if you set the type to amount "
1207
  "otherwise considered as percentage"
@@ -1209,39 +785,44 @@ msgstr ""
1209
  "Totale tassa, considerato come l'ammontare fisso se viene impostato il tipo "
1210
  "a totale, altrimenti considerato come percentuale"
1211
 
 
 
 
 
 
1212
  #: app/features/events.php:855 app/features/events.php:880
1213
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1214
  msgid "Amount (Per Ticket)"
1215
  msgstr ""
1216
 
1217
  #: app/features/events.php:856 app/features/events.php:881
1218
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1219
  msgid "Amount (Per Booking)"
1220
  msgstr ""
1221
 
1222
  #: app/features/events.php:944 app/features/mec/regform.php:117
1223
- #: app/libraries/main.php:1841
1224
  msgid "Text"
1225
  msgstr "Testo"
1226
 
1227
  #: app/features/events.php:946 app/features/mec/regform.php:119
1228
  #: app/features/organizers.php:102 app/features/organizers.php:146
1229
- #: app/libraries/main.php:1899
1230
  msgid "Tel"
1231
  msgstr "Tel"
1232
 
1233
  #: app/features/events.php:947 app/features/mec/regform.php:120
1234
- #: app/libraries/main.php:1928
1235
  msgid "Textarea"
1236
  msgstr "Area di testo"
1237
 
1238
  #: app/features/events.php:948 app/features/mec/regform.php:121
1239
- #: app/libraries/main.php:1981
1240
  msgid "Checkboxes"
1241
  msgstr "Caselle di selezione"
1242
 
1243
  #: app/features/events.php:949 app/features/mec/regform.php:122
1244
- #: app/libraries/main.php:2025
1245
  msgid "Radio Buttons"
1246
  msgstr "Opzioni di selezione"
1247
 
@@ -1290,17 +871,17 @@ msgstr "Opzioni di selezione"
1290
  #: app/features/mec/meta_boxes/search_form.php:436
1291
  #: app/features/mec/meta_boxes/search_form.php:443
1292
  #: app/features/mec/meta_boxes/search_form.php:450
1293
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1294
  msgid "Dropdown"
1295
  msgstr "Casella di selezione"
1296
 
1297
  #: app/features/events.php:951 app/features/mec/regform.php:124
1298
- #: app/libraries/main.php:2116
1299
  msgid "Agreement"
1300
  msgstr ""
1301
 
1302
  #: app/features/events.php:952 app/features/mec/regform.php:125
1303
- #: app/libraries/main.php:1957
1304
  msgid "Paragraph"
1305
  msgstr "Paragrafo"
1306
 
@@ -1326,7 +907,7 @@ msgstr ""
1326
  #: app/features/events.php:1675 app/features/ix.php:2328
1327
  #: app/features/ix.php:2369 app/features/locations.php:58
1328
  #: app/features/locations.php:229 app/features/locations.php:281
1329
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1330
  #: app/features/mec/meta_boxes/display_options.php:641
1331
  #: app/features/mec/meta_boxes/search_form.php:38
1332
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1336,8 +917,8 @@ msgstr ""
1336
  #: app/features/mec/meta_boxes/search_form.php:292
1337
  #: app/features/mec/meta_boxes/search_form.php:332
1338
  #: app/features/mec/meta_boxes/search_form.php:379
1339
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1340
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1341
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1342
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1343
  #: app/skins/single/modern.php:77
@@ -1346,7 +927,7 @@ msgstr "Luogo"
1346
 
1347
  #: app/features/events.php:1451 app/features/events.php:1631
1348
  #: app/features/events.php:1675 app/features/ix.php:2328
1349
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1350
  #: app/features/mec/meta_boxes/display_options.php:642
1351
  #: app/features/mec/meta_boxes/search_form.php:45
1352
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1359,7 +940,7 @@ msgstr "Luogo"
1359
  #: app/features/mec/meta_boxes/search_form.php:433
1360
  #: app/features/organizers.php:58 app/features/organizers.php:199
1361
  #: app/features/organizers.php:255 app/features/organizers.php:257
1362
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1363
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1364
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1365
  #: app/skins/single/modern.php:21
@@ -1378,6 +959,14 @@ msgstr "Autore"
1378
  msgid "iCal Export"
1379
  msgstr "esporta iCal"
1380
 
 
 
 
 
 
 
 
 
1381
  #: app/features/events.php:1575 app/features/events.php:1576
1382
  msgid "XML Export"
1383
  msgstr "Esporta XML"
@@ -1390,6 +979,13 @@ msgstr "Esporta JSON"
1390
  msgid "Duplicate"
1391
  msgstr "Duplica"
1392
 
 
 
 
 
 
 
 
1393
  #: app/features/events.php:1631 app/features/events.php:1675
1394
  #: app/features/ix.php:2328 app/features/ix.php:2369
1395
  msgid "Start Time"
@@ -1474,7 +1070,6 @@ msgid "Note to reviewer"
1474
  msgstr "Note per il revisore"
1475
 
1476
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1477
- #: app/features/gateways.php:695
1478
  msgid "Submit"
1479
  msgstr "Invia"
1480
 
@@ -1490,7 +1085,7 @@ msgstr "es. iltuonome@gmail.com"
1490
  msgid "eg. John Smith"
1491
  msgstr "es. Mario Rossi"
1492
 
1493
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1494
  msgid "Featured Image"
1495
  msgstr "Immagine in evidenza"
1496
 
@@ -1499,14 +1094,14 @@ msgid "Remove Image"
1499
  msgstr "Rimuovi immagine"
1500
 
1501
  #: app/features/fes/form.php:543 app/features/labels.php:61
1502
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1503
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1504
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1505
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1506
  msgid "Labels"
1507
  msgstr "Etichette"
1508
 
1509
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1510
  #: app/features/mec/meta_boxes/filter.php:138
1511
  msgid "Tags"
1512
  msgstr "Tag"
@@ -1532,293 +1127,6 @@ msgstr "Visualizza"
1532
  msgid "No events found! %s"
1533
  msgstr "Nessun evento trovato! %s"
1534
 
1535
- #: app/features/gateways.php:70 app/features/gateways.php:327
1536
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1537
- #: app/features/gateways.php:1396
1538
- msgid "Request is invalid!"
1539
- msgstr "Richiesta non valida!"
1540
-
1541
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1542
- msgid "Thanks for your booking."
1543
- msgstr "Grazie per aver prenotato."
1544
-
1545
- #: app/features/gateways.php:307 app/features/gateways.php:545
1546
- msgid "Stripe"
1547
- msgstr "Banda"
1548
-
1549
- #: app/features/gateways.php:342 app/features/gateways.php:716
1550
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1551
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1552
- msgid "There is no attendee for booking!"
1553
- msgstr "Non ci sono partecipanti per la prenotazione!"
1554
-
1555
- #: app/features/gateways.php:373 app/features/gateways.php:743
1556
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1557
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1558
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1559
- msgid ""
1560
- "Thanks for your booking. Your tickets booked, booking verification might be "
1561
- "needed, please check your email."
1562
- msgstr ""
1563
- "Grazie per la vostra prenotazione. I ticket sono stati prenotati, potrebbe "
1564
- "essere necessario la verifica della prenotazione, si prega di controllare la "
1565
- "posta elettronica."
1566
-
1567
- #: app/features/gateways.php:390
1568
- #, php-format
1569
- msgid "MEC Transaction ID: %s"
1570
- msgstr "ID Transazione MEC: %s"
1571
-
1572
- #: app/features/gateways.php:473 app/features/gateways.php:668
1573
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1574
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1575
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1576
- msgid "Download Invoice"
1577
- msgstr ""
1578
-
1579
- #: app/features/gateways.php:509
1580
- msgid "Card Number"
1581
- msgstr "Carta numero"
1582
-
1583
- #: app/features/gateways.php:515
1584
- msgid "CVC"
1585
- msgstr "CVC"
1586
-
1587
- #: app/features/gateways.php:521
1588
- msgid "Expiration (MM/YYYY)"
1589
- msgstr "Scadenza (MM/AAAA)"
1590
-
1591
- #: app/features/gateways.php:522
1592
- msgid "Month"
1593
- msgstr "Mese"
1594
-
1595
- #: app/features/gateways.php:524
1596
- msgid "Year"
1597
- msgstr "Anno"
1598
-
1599
- #: app/features/gateways.php:532 app/features/gateways.php:919
1600
- #: app/features/gateways.php:1223
1601
- msgid "Pay"
1602
- msgstr "Paga"
1603
-
1604
- #: app/features/gateways.php:556 app/features/gateways.php:623
1605
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1606
- #: app/features/gateways.php:1621
1607
- msgid "Comment"
1608
- msgstr "Commento"
1609
-
1610
- #: app/features/gateways.php:559 app/features/gateways.php:626
1611
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1612
- #: app/features/gateways.php:1624
1613
- msgid "HTML allowed."
1614
- msgstr "HTML consentito."
1615
-
1616
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1617
- msgid "Secret Key"
1618
- msgstr "Secret Key"
1619
-
1620
- #: app/features/gateways.php:569
1621
- msgid "Publishable Key"
1622
- msgstr "Chiave pubblicabile"
1623
-
1624
- #: app/features/gateways.php:598 app/features/gateways.php:612
1625
- msgid "Pay Locally"
1626
- msgstr "Paga sul posto"
1627
-
1628
- #: app/features/gateways.php:766 app/features/gateways.php:780
1629
- msgid "PayPal Express"
1630
- msgstr "PayPal Express"
1631
-
1632
- #: app/features/gateways.php:798
1633
- msgid "Business Account"
1634
- msgstr "Account Business"
1635
-
1636
- #: app/features/gateways.php:801
1637
- msgid "Normally PayPal Email."
1638
- msgstr "Normalmente Email PayPal."
1639
-
1640
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1641
- msgid "Mode"
1642
- msgstr "Modalità"
1643
-
1644
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1645
- msgid "Live"
1646
- msgstr "Live"
1647
-
1648
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1649
- msgid "Sandbox"
1650
- msgstr "Sandbox"
1651
-
1652
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1653
- msgid "Waiting for getting response from gateway."
1654
- msgstr "In attesa di risposta dal gateway."
1655
-
1656
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1657
- msgid "Payment was invalid! Booking failed."
1658
- msgstr "Pagamento non valido! Prenotazione non salvata."
1659
-
1660
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1661
- msgid "PayPal Credit Card"
1662
- msgstr "Carta di credito PayPal"
1663
-
1664
- #: app/features/gateways.php:1089
1665
- msgid "API Username"
1666
- msgstr "Username API"
1667
-
1668
- #: app/features/gateways.php:1095
1669
- msgid "API Password"
1670
- msgstr "Password API"
1671
-
1672
- #: app/features/gateways.php:1101
1673
- msgid "API Signature"
1674
- msgstr "Firma API"
1675
-
1676
- #: app/features/gateways.php:1181
1677
- msgid "First name"
1678
- msgstr "Nome"
1679
-
1680
- #: app/features/gateways.php:1185
1681
- msgid "Last name"
1682
- msgstr "Cognome"
1683
-
1684
- #: app/features/gateways.php:1189
1685
- msgid "Card Type"
1686
- msgstr "Tipo di carta"
1687
-
1688
- #: app/features/gateways.php:1191
1689
- msgid "Visa"
1690
- msgstr "Visa"
1691
-
1692
- #: app/features/gateways.php:1192
1693
- msgid "MasterCard"
1694
- msgstr "MasterCard"
1695
-
1696
- #: app/features/gateways.php:1193
1697
- msgid "Discover"
1698
- msgstr "Discover"
1699
-
1700
- #: app/features/gateways.php:1194
1701
- msgid "American Express"
1702
- msgstr "American Express"
1703
-
1704
- #: app/features/gateways.php:1198
1705
- msgid "CC Number"
1706
- msgstr "Numero CC"
1707
-
1708
- #: app/features/gateways.php:1215
1709
- msgid "CVV2"
1710
- msgstr "CVV2"
1711
-
1712
- #: app/features/gateways.php:1248
1713
- msgid "Payment is invalid."
1714
- msgstr "Pagamento non valido."
1715
-
1716
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1717
- msgid "Pay by WooCommerce"
1718
- msgstr "Pagamento da WooCommerce"
1719
-
1720
- #: app/features/gateways.php:1418
1721
- #, php-format
1722
- msgid "Booking fee for %s"
1723
- msgstr "Tassa di prenotazione per %s"
1724
-
1725
- #: app/features/gateways.php:1429
1726
- msgid "Your order is created. Please proceed with checkout."
1727
- msgstr "Il tuo ordine è stato creato, si prega di procedere con il checkout."
1728
-
1729
- #: app/features/gateways.php:1591
1730
- msgid "Add to Cart"
1731
- msgstr ""
1732
-
1733
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1734
- msgid "Checkout"
1735
- msgstr "Checkout"
1736
-
1737
- #: app/features/gateways.php:1612
1738
- msgid "WooCommerce must be installed and activated first."
1739
- msgstr "Prima installare e attivare WooCommerce."
1740
-
1741
- #: app/features/gateways.php:1628
1742
- msgid "Automatically complete WC orders"
1743
- msgstr "Completa automaticamente gli ordini WooCommerce"
1744
-
1745
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1746
- msgid "Enabled"
1747
- msgstr "Abilitato"
1748
-
1749
- #: app/features/gateways.php:1632
1750
- #: app/features/mec/meta_boxes/search_form.php:33
1751
- #: app/features/mec/meta_boxes/search_form.php:40
1752
- #: app/features/mec/meta_boxes/search_form.php:47
1753
- #: app/features/mec/meta_boxes/search_form.php:54
1754
- #: app/features/mec/meta_boxes/search_form.php:61
1755
- #: app/features/mec/meta_boxes/search_form.php:68
1756
- #: app/features/mec/meta_boxes/search_form.php:80
1757
- #: app/features/mec/meta_boxes/search_form.php:87
1758
- #: app/features/mec/meta_boxes/search_form.php:94
1759
- #: app/features/mec/meta_boxes/search_form.php:101
1760
- #: app/features/mec/meta_boxes/search_form.php:108
1761
- #: app/features/mec/meta_boxes/search_form.php:115
1762
- #: app/features/mec/meta_boxes/search_form.php:127
1763
- #: app/features/mec/meta_boxes/search_form.php:134
1764
- #: app/features/mec/meta_boxes/search_form.php:141
1765
- #: app/features/mec/meta_boxes/search_form.php:148
1766
- #: app/features/mec/meta_boxes/search_form.php:155
1767
- #: app/features/mec/meta_boxes/search_form.php:162
1768
- #: app/features/mec/meta_boxes/search_form.php:174
1769
- #: app/features/mec/meta_boxes/search_form.php:181
1770
- #: app/features/mec/meta_boxes/search_form.php:193
1771
- #: app/features/mec/meta_boxes/search_form.php:200
1772
- #: app/features/mec/meta_boxes/search_form.php:207
1773
- #: app/features/mec/meta_boxes/search_form.php:214
1774
- #: app/features/mec/meta_boxes/search_form.php:221
1775
- #: app/features/mec/meta_boxes/search_form.php:228
1776
- #: app/features/mec/meta_boxes/search_form.php:240
1777
- #: app/features/mec/meta_boxes/search_form.php:247
1778
- #: app/features/mec/meta_boxes/search_form.php:254
1779
- #: app/features/mec/meta_boxes/search_form.php:261
1780
- #: app/features/mec/meta_boxes/search_form.php:268
1781
- #: app/features/mec/meta_boxes/search_form.php:275
1782
- #: app/features/mec/meta_boxes/search_form.php:287
1783
- #: app/features/mec/meta_boxes/search_form.php:294
1784
- #: app/features/mec/meta_boxes/search_form.php:301
1785
- #: app/features/mec/meta_boxes/search_form.php:308
1786
- #: app/features/mec/meta_boxes/search_form.php:315
1787
- #: app/features/mec/meta_boxes/search_form.php:327
1788
- #: app/features/mec/meta_boxes/search_form.php:334
1789
- #: app/features/mec/meta_boxes/search_form.php:341
1790
- #: app/features/mec/meta_boxes/search_form.php:348
1791
- #: app/features/mec/meta_boxes/search_form.php:355
1792
- #: app/features/mec/meta_boxes/search_form.php:362
1793
- #: app/features/mec/meta_boxes/search_form.php:374
1794
- #: app/features/mec/meta_boxes/search_form.php:381
1795
- #: app/features/mec/meta_boxes/search_form.php:388
1796
- #: app/features/mec/meta_boxes/search_form.php:395
1797
- #: app/features/mec/meta_boxes/search_form.php:402
1798
- #: app/features/mec/meta_boxes/search_form.php:409
1799
- #: app/features/mec/meta_boxes/search_form.php:421
1800
- #: app/features/mec/meta_boxes/search_form.php:428
1801
- #: app/features/mec/meta_boxes/search_form.php:435
1802
- #: app/features/mec/meta_boxes/search_form.php:442
1803
- #: app/features/mec/meta_boxes/search_form.php:449
1804
- #: app/features/mec/meta_boxes/search_form.php:456
1805
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1806
- #: app/features/mec/settings.php:549
1807
- msgid "Disabled"
1808
- msgstr "Disattivato"
1809
-
1810
- #: app/features/gateways.php:1634
1811
- msgid "It applies only to the orders that are related to MEC."
1812
- msgstr "È applicato solo agli ordini legati alla MEC."
1813
-
1814
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1815
- msgid "Free"
1816
- msgstr "Gratuito"
1817
-
1818
- #: app/features/gateways.php:1744
1819
- msgid "This booking is not free!"
1820
- msgstr ""
1821
-
1822
  #: app/features/ix.php:95
1823
  msgid "MEC - Import / Export"
1824
  msgstr "MEC - Importa / Esporta"
@@ -1851,6 +1159,10 @@ msgstr ""
1851
  msgid "Third Party plugin is invalid!"
1852
  msgstr ""
1853
 
 
 
 
 
1854
  #: app/features/ix.php:1961 app/features/ix.php:2791
1855
  msgid "Please select some events to import!"
1856
  msgstr "Si prega di selezionare degli eventi da importare!"
@@ -1872,6 +1184,40 @@ msgstr "Tutti gli ID Clienti, Client Secret e ID Calendario sono obbligatori!"
1872
  msgid "All seems good! Please click %s for authenticating your app."
1873
  msgstr "Sembra tutto ok! Fai clic su%s per autenticare l'applicazione."
1874
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1875
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1876
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1877
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1919,7 +1265,7 @@ msgstr ""
1919
  "Questo esporterà tutti i dati degli eventi del tuo sito web nel formato "
1920
  "desiderato."
1921
 
1922
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1923
  msgid "iCal"
1924
  msgstr "iCal"
1925
 
@@ -1961,6 +1307,10 @@ msgstr ""
1961
  "Per esportare le prenotazioni degli eventi, è possibile utilizzare azioni di "
1962
  "massa in pagina %s."
1963
 
 
 
 
 
1964
  #: app/features/ix/export_g_calendar.php:25
1965
  msgid "Add events to Google Calendar"
1966
  msgstr "Aggiungi eventi al calendario Google"
@@ -2018,7 +1368,7 @@ msgstr "Attiva / Disattiva"
2018
  msgid "Add to Google Calendar"
2019
  msgstr "Aggiungi al calendario Google"
2020
 
2021
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
2022
  msgid "Checking ..."
2023
  msgstr "Sto controllando..."
2024
 
@@ -2060,10 +1410,10 @@ msgstr ""
2060
  msgid "ICS Feed"
2061
  msgstr ""
2062
 
2063
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2064
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2065
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2066
- #: app/features/mec/settings.php:1034
2067
  #, php-format
2068
  msgid "%s is required to use this feature."
2069
  msgstr ""
@@ -2075,10 +1425,10 @@ msgstr ""
2075
  #: app/features/mec/meta_boxes/display_options.php:558
2076
  #: app/features/mec/meta_boxes/display_options.php:608
2077
  #: app/features/mec/meta_boxes/display_options.php:734
2078
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2079
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2080
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2081
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2082
  msgid "Pro version of Modern Events Calendar"
2083
  msgstr ""
2084
 
@@ -2308,6 +1658,11 @@ msgstr "Colore"
2308
  msgid "Select label color"
2309
  msgstr "Seleziona il colore dell'etichetta"
2310
 
 
 
 
 
 
2311
  #: app/features/labels.php:154 app/features/locations.php:232
2312
  #: app/features/organizers.php:202
2313
  msgid "Slug"
@@ -2318,8 +1673,8 @@ msgstr "Slug"
2318
  msgid "Event %s"
2319
  msgstr ""
2320
 
2321
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2322
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2323
  msgid "Locations"
2324
  msgstr "Luoghi"
2325
 
@@ -2387,7 +1742,7 @@ msgstr "Nome del luogo"
2387
  msgid "eg. City Hall"
2388
  msgstr "es. Città"
2389
 
2390
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2391
  msgid "Event Location"
2392
  msgstr "Luogo dell'evento"
2393
 
@@ -2411,91 +1766,91 @@ msgstr "Seleziona immagine"
2411
  msgid "Don't show map in single event page"
2412
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
2413
 
2414
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2415
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2416
  msgid "Organizers"
2417
  msgstr "Organizzatori"
2418
 
2419
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2420
- #: app/features/mec/dashboard.php:92
2421
  msgid "Shortcodes"
2422
  msgstr "Shortcode"
2423
 
2424
- #: app/features/modern-events-calendar-lite.php:195
2425
  msgid "MEC - Settings"
2426
  msgstr "Impostazioni Calendario"
2427
 
2428
- #: app/features/modern-events-calendar-lite.php:210
2429
  msgid "Add Shortcode"
2430
  msgstr "Aggiungi Shortcode"
2431
 
2432
- #: app/features/modern-events-calendar-lite.php:211
2433
  msgid "Add New Shortcode"
2434
  msgstr "Aggiungi un nuovo Shortcode"
2435
 
2436
- #: app/features/modern-events-calendar-lite.php:212
2437
  msgid "No shortcodes found!"
2438
  msgstr "Nessun shortcode trovato!"
2439
 
2440
- #: app/features/modern-events-calendar-lite.php:213
2441
  msgid "All Shortcodes"
2442
  msgstr "Tutti gli Shortcode"
2443
 
2444
- #: app/features/modern-events-calendar-lite.php:214
2445
  msgid "Edit shortcodes"
2446
  msgstr "Modifica shortcode"
2447
 
2448
- #: app/features/modern-events-calendar-lite.php:215
2449
  msgid "No shortcodes found in Trash!"
2450
  msgstr "Nessun shortcode trovato nel cestino!"
2451
 
2452
- #: app/features/modern-events-calendar-lite.php:262
2453
  msgid "Display Options"
2454
  msgstr "Opzioni display"
2455
 
2456
- #: app/features/modern-events-calendar-lite.php:263
2457
  msgid "Filter Options"
2458
  msgstr "Opzioni filtro"
2459
 
2460
- #: app/features/modern-events-calendar-lite.php:265
2461
  msgid "Search Form"
2462
  msgstr "Casella di ricerca"
2463
 
2464
- #: app/features/modern-events-calendar-lite.php:556
2465
  msgid "Single Event Display Method"
2466
  msgstr ""
2467
 
2468
- #: app/features/modern-events-calendar-lite.php:561
2469
  msgid "Separate Window"
2470
  msgstr ""
2471
 
2472
- #: app/features/modern-events-calendar-lite.php:562
2473
  msgid "Modal 1"
2474
  msgstr ""
2475
 
2476
- #: app/features/mec/dashboard.php:54
2477
  #, php-format
2478
  msgid "Welcome %s"
2479
  msgstr "Benvenuto %s"
2480
 
2481
- #: app/features/mec/dashboard.php:57
2482
  #, php-format
2483
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2484
  msgstr ""
2485
 
2486
- #: app/features/mec/dashboard.php:57
2487
  msgid "Modern Event Calendar"
2488
  msgstr ""
2489
 
2490
- #: app/features/mec/dashboard.php:57
2491
  msgid "Modern Event Calendar (Lite)"
2492
  msgstr ""
2493
 
2494
- #: app/features/mec/dashboard.php:66
2495
  msgid "Version"
2496
  msgstr "Versione"
2497
 
2498
- #: app/features/mec/dashboard.php:75
2499
  #, php-format
2500
  msgid ""
2501
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2503,19 +1858,19 @@ msgid ""
2503
  "Spots, etc you should %s to the Pro version."
2504
  msgstr ""
2505
 
2506
- #: app/features/mec/dashboard.php:75
2507
  msgid "lite"
2508
  msgstr ""
2509
 
2510
- #: app/features/mec/dashboard.php:75
2511
  msgid "upgrade"
2512
  msgstr ""
2513
 
2514
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2515
  msgid "Documentation"
2516
  msgstr "Documentazione"
2517
 
2518
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2519
  msgid ""
2520
  "Our documentation is simple and functional with full details and cover all "
2521
  "essential aspects from beginning to the most advanced parts."
@@ -2523,22 +1878,22 @@ msgstr ""
2523
  "La nostra documentazione è semplice, funzionale e dettagliata e copre tutti "
2524
  "gli aspetti essenziali da sapere, dai più basilari a quelli più avanzati."
2525
 
2526
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2527
  msgid "DOCUMENTATION"
2528
  msgstr "DOCUMENTAZIONE"
2529
 
2530
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2531
  msgid "Support Forum"
2532
  msgstr "Forum di supporto"
2533
 
2534
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2535
  msgid ""
2536
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2537
  "If you want to use this service you need to upgrade your plugin to Pro "
2538
  "version. Click on the following button."
2539
  msgstr ""
2540
 
2541
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2542
  msgid ""
2543
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2544
  "If you have any issues please don't hesitate to contact us, we will reply as "
@@ -2548,80 +1903,80 @@ msgstr ""
2548
  "soddisfatti. Se hai problemi, non esitate a contattarci, risponderemo al più "
2549
  "presto."
2550
 
2551
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2552
  msgid "GO PREMIUM"
2553
  msgstr ""
2554
 
2555
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2556
  msgid "OPEN A TICKET"
2557
  msgstr "APRI UN TICKET"
2558
 
2559
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2560
  msgid "Upcoming Events"
2561
  msgstr ""
2562
 
2563
- #: app/features/mec/dashboard.php:177
2564
  msgid "Popular Gateways"
2565
  msgstr ""
2566
 
2567
- #: app/features/mec/dashboard.php:228
2568
  msgid "Total Bookings"
2569
  msgstr ""
2570
 
2571
- #: app/features/mec/dashboard.php:255
2572
  msgid "This Month"
2573
  msgstr ""
2574
 
2575
- #: app/features/mec/dashboard.php:256
2576
  msgid "Last Month"
2577
  msgstr ""
2578
 
2579
- #: app/features/mec/dashboard.php:257
2580
  msgid "This Year"
2581
  msgstr ""
2582
 
2583
- #: app/features/mec/dashboard.php:258
2584
  msgid "Last Year"
2585
  msgstr ""
2586
 
2587
- #: app/features/mec/dashboard.php:270
2588
  msgid "Bar"
2589
  msgstr ""
2590
 
2591
- #: app/features/mec/dashboard.php:271
2592
  msgid "Line"
2593
  msgstr ""
2594
 
2595
- #: app/features/mec/dashboard.php:273
2596
  msgid "Filter"
2597
  msgstr ""
2598
 
2599
- #: app/features/mec/dashboard.php:289
2600
  #, php-format
2601
  msgid "Total Sells (%s)"
2602
  msgstr ""
2603
 
2604
- #: app/features/mec/dashboard.php:310
2605
  msgid "Change Log"
2606
  msgstr "Log modifiche"
2607
 
2608
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2609
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2610
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2611
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2612
  msgid "Styling Options"
2613
  msgstr "Opzioni di stile"
2614
 
2615
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2616
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2617
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2618
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2619
  msgid "Custom CSS"
2620
  msgstr "CSS personalizzato"
2621
 
2622
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2623
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2624
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2625
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2626
  #: app/features/mec/support.php:64
2627
  msgid "Messages"
@@ -2629,7 +1984,7 @@ msgstr ""
2629
 
2630
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2631
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2632
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2633
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2634
  #: app/features/mec/support.php:84
2635
  msgid "Support"
@@ -2642,24 +1997,25 @@ msgstr "Supporto"
2642
  #: app/features/mec/notifications.php:409
2643
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2644
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2645
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2646
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2647
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2648
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2649
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2650
  msgid "Save Changes"
2651
  msgstr "Salva le modifiche"
2652
 
2653
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2654
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2655
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2656
  #: app/features/mec/styling.php:313
2657
  msgid "Saved"
2658
  msgstr "Salvato"
2659
 
2660
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2661
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2662
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2663
  #: app/features/mec/styling.php:314
2664
  msgid "Settings Saved!"
2665
  msgstr ""
@@ -2865,6 +2221,15 @@ msgstr "Valore di default è \"M d\""
2865
  msgid "Default values are d and F"
2866
  msgstr "Valori di default sono d e F"
2867
 
 
 
 
 
 
 
 
 
 
2868
  #: app/features/mec/meta_boxes/display_options.php:86
2869
  #: app/features/mec/meta_boxes/display_options.php:195
2870
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -2944,13 +2309,13 @@ msgstr "Visualizzazione predefinita"
2944
 
2945
  #: app/features/mec/meta_boxes/display_options.php:287
2946
  #: app/features/mec/meta_boxes/display_options.php:296
2947
- #: app/libraries/main.php:323 app/libraries/main.php:1118
2948
  msgid "List View"
2949
  msgstr "Visualizzazione Lista"
2950
 
2951
  #: app/features/mec/meta_boxes/display_options.php:288
2952
  #: app/features/mec/meta_boxes/display_options.php:306
2953
- #: app/libraries/main.php:327 app/libraries/main.php:1112
2954
  msgid "Yearly View"
2955
  msgstr ""
2956
 
@@ -2961,13 +2326,13 @@ msgstr "Vista calendario mensile"
2961
 
2962
  #: app/features/mec/meta_boxes/display_options.php:290
2963
  #: app/features/mec/meta_boxes/display_options.php:326
2964
- #: app/libraries/main.php:330 app/libraries/main.php:1114
2965
  msgid "Weekly View"
2966
  msgstr "Visualizzazione settimanale"
2967
 
2968
  #: app/features/mec/meta_boxes/display_options.php:291
2969
  #: app/features/mec/meta_boxes/display_options.php:336
2970
- #: app/libraries/main.php:329 app/libraries/main.php:1115
2971
  msgid "Daily View"
2972
  msgstr "Visualizzazione giornaliera"
2973
 
@@ -3203,6 +2568,66 @@ msgstr ""
3203
  msgid "Show Search Form"
3204
  msgstr "Mostra il modulo di ricerca"
3205
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3206
  #: app/features/mec/meta_boxes/search_form.php:59
3207
  #: app/features/mec/meta_boxes/search_form.php:106
3208
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3438,6 +2863,14 @@ msgstr ""
3438
  msgid "Invoice Link"
3439
  msgstr ""
3440
 
 
 
 
 
 
 
 
 
3441
  #: app/features/mec/notifications.php:145
3442
  msgid "Booking Verification"
3443
  msgstr "Verifica prenotazione"
@@ -3454,7 +2887,7 @@ msgstr "Si possono inserire più destinatari, separati da virgola."
3454
  msgid "Email/Booking verification link."
3455
  msgstr "Link di verifica Email/Prenotazione."
3456
 
3457
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3458
  msgid "Booking Confirmation"
3459
  msgstr "Conferma Prenotazione"
3460
 
@@ -3533,7 +2966,7 @@ msgstr "Titolo dell'evento"
3533
  msgid "Status of event"
3534
  msgstr "Stato dell'evento"
3535
 
3536
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3537
  msgid "Event Note"
3538
  msgstr "Note dell'evento"
3539
 
@@ -3541,90 +2974,90 @@ msgstr "Note dell'evento"
3541
  msgid "Admin events management link."
3542
  msgstr "Link amministratore gestione eventi."
3543
 
3544
- #: app/features/mec/settings.php:42
3545
  msgid "Archive Page Options"
3546
  msgstr ""
3547
 
3548
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3549
  msgid "Export Module Options"
3550
  msgstr "Opzioni modulo Export"
3551
 
3552
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3553
  msgid "Local Time Module"
3554
  msgstr "Modulo ora locale"
3555
 
3556
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3557
  msgid "QR Code Module"
3558
  msgstr ""
3559
 
3560
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3561
  msgid "Weather Module"
3562
  msgstr ""
3563
 
3564
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3565
  #, fuzzy
3566
  msgid "Additional Organizers"
3567
  msgstr "Tutti gli Organizzatori"
3568
 
3569
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3570
  msgid "Taxes / Fees"
3571
  msgstr "Tasse"
3572
 
3573
- #: app/features/mec/settings.php:250
3574
  msgid "Time Format"
3575
  msgstr "Formato ora"
3576
 
3577
- #: app/features/mec/settings.php:253
3578
  msgid "12 hours format with AM/PM"
3579
  msgstr "12 ore AM/PM"
3580
 
3581
- #: app/features/mec/settings.php:254
3582
  msgid "24 hours format"
3583
  msgstr "24 ore"
3584
 
3585
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3586
  msgid ""
3587
  "This option is for showing start/end time of events on frontend of website."
3588
  msgstr ""
3589
  "Questa opzione è per mostrare ora di inizio e fine degli eventi sul frontend."
3590
 
3591
- #: app/features/mec/settings.php:261
3592
  msgid "Hide Events"
3593
  msgstr ""
3594
 
3595
- #: app/features/mec/settings.php:264
3596
  msgid "On Event Start"
3597
  msgstr ""
3598
 
3599
- #: app/features/mec/settings.php:265
3600
  msgid "+1 Hour after start"
3601
  msgstr ""
3602
 
3603
- #: app/features/mec/settings.php:266
3604
  msgid "+2 Hours after start"
3605
  msgstr ""
3606
 
3607
- #: app/features/mec/settings.php:267
3608
  msgid "On Event End"
3609
  msgstr ""
3610
 
3611
- #: app/features/mec/settings.php:275
3612
  msgid "Multiple Day Events"
3613
  msgstr "Eventi su più giorni"
3614
 
3615
- #: app/features/mec/settings.php:278
3616
  msgid "Show only first day on List/Grid/Slider skins"
3617
  msgstr ""
3618
 
3619
- #: app/features/mec/settings.php:279
3620
  msgid "Show only first day on all skins"
3621
  msgstr "Mostra solo il primo giorno su tutti gli skin"
3622
 
3623
- #: app/features/mec/settings.php:280
3624
  msgid "Show all days"
3625
  msgstr "Mostra tutti i giorni"
3626
 
3627
- #: app/features/mec/settings.php:282
3628
  msgid ""
3629
  "For showing all days of multiple day events on frontend or only show the "
3630
  "first day."
@@ -3632,23 +3065,27 @@ msgstr ""
3632
  "Per mostrare sul frontend tutti i giorni per eventi su più giorni, o solo il "
3633
  "primo giorno."
3634
 
3635
- #: app/features/mec/settings.php:288
3636
  msgid "Remove MEC Data on Plugin Uninstall"
3637
  msgstr "Quando si disinstalla il plugin MEC rimuovi tutti i dati"
3638
 
3639
- #: app/features/mec/settings.php:298
 
 
 
 
3640
  msgid "Exclude Date Suffix"
3641
  msgstr "Escludi suffisso data"
3642
 
3643
- #: app/features/mec/settings.php:301
3644
  msgid "Remove suffix from calendars"
3645
  msgstr "Rimuovi il suffisso dai calendari"
3646
 
3647
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3648
  msgid "Weekdays"
3649
  msgstr "Settimanali"
3650
 
3651
- #: app/features/mec/settings.php:316
3652
  msgid ""
3653
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3654
  "and Friday."
@@ -3656,64 +3093,64 @@ msgstr ""
3656
  "Procedi con cautela. Il valore predefinito è impostato a lunedì, martedì, "
3657
  "mercoledì, giovedì e venerdì."
3658
 
3659
- #: app/features/mec/settings.php:323
3660
  msgid "Weekends"
3661
  msgstr "Fine settimana"
3662
 
3663
- #: app/features/mec/settings.php:331
3664
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3665
  msgstr ""
3666
  "Procedi con cautela. Il valore predefinito è impostato su sabato e domenica."
3667
 
3668
- #: app/features/mec/settings.php:339
3669
  msgid "Archive Pages"
3670
  msgstr ""
3671
 
3672
- #: app/features/mec/settings.php:342
3673
  msgid "Archive Page Title"
3674
  msgstr "Titolo pagina di archivio"
3675
 
3676
- #: app/features/mec/settings.php:345
3677
  msgid "Default value is Events"
3678
  msgstr "Il valore predefinito è Eventi"
3679
 
3680
- #: app/features/mec/settings.php:350
3681
  msgid "Archive Page Skin"
3682
  msgstr "Skin pagina di archivio"
3683
 
3684
- #: app/features/mec/settings.php:357
3685
  msgid "Default value is Calendar/Monthly View"
3686
  msgstr "Il valore predefinito è Calendario/Visualizzazione mensile"
3687
 
3688
- #: app/features/mec/settings.php:362
3689
  msgid "Category Page Skin"
3690
  msgstr "Skin pagina categoria"
3691
 
3692
- #: app/features/mec/settings.php:369
3693
  msgid "Default value is List View"
3694
  msgstr "Il valore predefinito è Visualizzazione Lista"
3695
 
3696
- #: app/features/mec/settings.php:374
3697
  msgid "Category Events Method"
3698
  msgstr ""
3699
 
3700
- #: app/features/mec/settings.php:378
3701
  msgid "Expired Events"
3702
  msgstr ""
3703
 
3704
- #: app/features/mec/settings.php:380
3705
  msgid "Default value is Upcoming Events"
3706
  msgstr ""
3707
 
3708
- #: app/features/mec/settings.php:385
3709
  msgid "Events Archive Status"
3710
  msgstr "Stato dell'archivio eventi"
3711
 
3712
- #: app/features/mec/settings.php:388
3713
  msgid "Enabled (Recommended)"
3714
  msgstr "Abilitato (raccomandato)"
3715
 
3716
- #: app/features/mec/settings.php:391
3717
  msgid ""
3718
  "If you disable it, then you should create a page as archive page of MEC. "
3719
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -3723,11 +3160,11 @@ msgstr ""
3723
  "archivio di MEC. La slug di pagina deve essere uguale a \"Slug principale\" "
3724
  "di MEC. Inoltre disattiverà tutte le regole dei ruoli MEC."
3725
 
3726
- #: app/features/mec/settings.php:401
3727
  msgid "Main Slug"
3728
  msgstr "Slug principale"
3729
 
3730
- #: app/features/mec/settings.php:404
3731
  msgid ""
3732
  "Default value is events. Valid characters are lowercase a-z, - character and "
3733
  "numbers."
@@ -3735,11 +3172,11 @@ msgstr ""
3735
  "Il valore predefinito è eventi. I caratteri validi sono minuscoli a-z, - "
3736
  "caratteri e numeri."
3737
 
3738
- #: app/features/mec/settings.php:408
3739
  msgid "Category Slug"
3740
  msgstr "Slug categoria"
3741
 
3742
- #: app/features/mec/settings.php:411
3743
  msgid ""
3744
  "It's slug of MEC categories, you can change it to events-cat or something "
3745
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
@@ -3749,284 +3186,288 @@ msgstr ""
3749
  "qualcos'altro. Il valore predefinito è mec-category. I caratteri validi sono "
3750
  "minuscoli a-z, - caratteri e numeri."
3751
 
3752
- #: app/features/mec/settings.php:421
3753
  msgid "Single Event Date Format"
3754
  msgstr "Formato data del singolo evento"
3755
 
3756
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3757
  msgid "Default is M d Y"
3758
  msgstr "Predefinito è M d Y"
3759
 
3760
- #: app/features/mec/settings.php:428
3761
  msgid "Date Method"
3762
  msgstr "Formato data"
3763
 
3764
- #: app/features/mec/settings.php:431
3765
  msgid "Next occurrence date"
3766
  msgstr "Data del prossimo avvenimento"
3767
 
3768
- #: app/features/mec/settings.php:432
3769
  msgid "Referred date"
3770
  msgstr "Data di riferimento"
3771
 
3772
- #: app/features/mec/settings.php:434
3773
  msgid ""
3774
  "\"Referred date\" shows the event date based on referred date in event list."
3775
  msgstr ""
3776
  "\"Data di riferimento\" mostra la data dell'evento sulla base della data di "
3777
  "riferimento nella lista degli eventi."
3778
 
3779
- #: app/features/mec/settings.php:438
3780
  msgid "Single Event Style"
3781
  msgstr "Stile singolo evento"
3782
 
3783
- #: app/features/mec/settings.php:441
3784
  msgid "Default Style"
3785
  msgstr "Stile predefinito"
3786
 
3787
- #: app/features/mec/settings.php:442
3788
  msgid "Modern Style"
3789
  msgstr "Stile moderno"
3790
 
3791
- #: app/features/mec/settings.php:444
3792
  msgid "Choose your single event style."
3793
  msgstr "Scegli lo stile del tuo singolo evento."
3794
 
3795
- #: app/features/mec/settings.php:453
3796
  msgid "Currency"
3797
  msgstr "Valuta"
3798
 
3799
- #: app/features/mec/settings.php:463
3800
  msgid "Currency Sign"
3801
  msgstr "Segno valuta"
3802
 
3803
- #: app/features/mec/settings.php:466
3804
  msgid "Default value will be \"currency\" if you leave it empty."
3805
  msgstr "Il valore predefinito sarà \"valuta\" se viene lasciato vuoto."
3806
 
3807
- #: app/features/mec/settings.php:470
3808
  msgid "Currency Position"
3809
  msgstr "Posizione valuta"
3810
 
3811
- #: app/features/mec/settings.php:473
3812
  msgid "Before $10"
3813
  msgstr "Prima €10"
3814
 
3815
- #: app/features/mec/settings.php:474
3816
  msgid "After 10$"
3817
  msgstr "Dopo 10€"
3818
 
3819
- #: app/features/mec/settings.php:479
3820
  msgid "Thousand Separator"
3821
  msgstr "Separatore migliaia"
3822
 
3823
- #: app/features/mec/settings.php:485
3824
  msgid "Decimal Separator"
3825
  msgstr "Separatore decimale"
3826
 
3827
- #: app/features/mec/settings.php:495
3828
  msgid "No decimal"
3829
  msgstr "Senza decimali"
3830
 
3831
- #: app/features/mec/settings.php:511
3832
  msgid "Show Google Maps on event page"
3833
  msgstr "Mostra Google Map sulla pagina dell'evento"
3834
 
3835
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3836
- #: app/features/mec/settings.php:1135
3837
  msgid "API Key"
3838
  msgstr "API Key"
3839
 
3840
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3841
- #: app/features/mec/settings.php:1145
3842
  msgid "Required!"
3843
  msgstr "Richiesto!"
3844
 
3845
- #: app/features/mec/settings.php:523
3846
  msgid "Zoom level"
3847
  msgstr "Livello zoom"
3848
 
3849
- #: app/features/mec/settings.php:530
3850
  msgid ""
3851
  "For Google Maps module in single event page. In Google Maps skin, it will "
3852
  "caculate the zoom level automatically based on event boundaries."
3853
  msgstr ""
3854
 
3855
- #: app/features/mec/settings.php:534
3856
  msgid "Google Maps Style"
3857
  msgstr "Stile Google Map"
3858
 
3859
- #: app/features/mec/settings.php:538
3860
  msgid "Default"
3861
  msgstr "Predefinito"
3862
 
3863
- #: app/features/mec/settings.php:546
3864
  msgid "Direction on single event"
3865
  msgstr "Direzione sul singolo evento"
3866
 
3867
- #: app/features/mec/settings.php:550
3868
  msgid "Simple Method"
3869
  msgstr "Metodo semplice"
3870
 
3871
- #: app/features/mec/settings.php:551
3872
  msgid "Advanced Method"
3873
  msgstr "Metodo avanzato"
3874
 
3875
- #: app/features/mec/settings.php:556
3876
  msgid "Lightbox Date Format"
3877
  msgstr "Formato data nel lightbox"
3878
 
3879
- #: app/features/mec/settings.php:559
3880
  msgid "Default value is M d Y"
3881
  msgstr "Il valore predefinito è M d Y"
3882
 
3883
- #: app/features/mec/settings.php:563
3884
  msgid "Google Maps API"
3885
  msgstr "Google Map API"
3886
 
3887
- #: app/features/mec/settings.php:567
3888
  msgid "Don't load Google Maps API library"
3889
  msgstr "Non caricare la libreria API Google Map"
3890
 
3891
- #: app/features/mec/settings.php:569
3892
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3893
  msgstr "Verifica solo se altro plugin/tema carica API Google Map"
3894
 
3895
- #: app/features/mec/settings.php:581
3896
  msgid "Enable Google Recaptcha"
3897
  msgstr "Attiva Recaptcha Google"
3898
 
3899
- #: app/features/mec/settings.php:588
3900
  msgid "Enable on booking form"
3901
  msgstr "Attiva sulla form di prenotazione"
3902
 
3903
- #: app/features/mec/settings.php:594
3904
  msgid "Enable on \"Frontend Event Submittion\" form"
3905
  msgstr "Attiva sulla form di invio eventi da frontend"
3906
 
3907
- #: app/features/mec/settings.php:598
3908
  msgid "Site Key"
3909
  msgstr "Site Key"
3910
 
3911
- #: app/features/mec/settings.php:618
 
 
 
 
3912
  msgid ""
3913
  "Show export module (iCal export and add to Google calendars) on event page"
3914
  msgstr ""
3915
  "Mostra esporta sulla pagina evento (esporta iCal e aggiungi a calendario "
3916
  "Google)"
3917
 
3918
- #: app/features/mec/settings.php:625
3919
  msgid "Google Calendar"
3920
  msgstr "Calendario Google"
3921
 
3922
- #: app/features/mec/settings.php:645
3923
  msgid "Show event time based on local time of visitor on event page"
3924
  msgstr ""
3925
  "Mostra l'evento basandoti sull'ora locale del visitatore della pagina evento"
3926
 
3927
- #: app/features/mec/settings.php:661
3928
  msgid "Show QR code of event in details page and booking invoice"
3929
  msgstr ""
3930
 
3931
- #: app/features/mec/settings.php:679
3932
  msgid "Show weather module on event page"
3933
  msgstr ""
3934
 
3935
- #: app/features/mec/settings.php:687
3936
  #, php-format
3937
  msgid "You can get a free API Key from %s"
3938
  msgstr ""
3939
 
3940
- #: app/features/mec/settings.php:699
3941
  msgid "Show countdown module on event page"
3942
  msgstr "Mostra conto alla rovescia sulla pagina evento"
3943
 
3944
- #: app/features/mec/settings.php:704
3945
  msgid "Countdown Style"
3946
  msgstr "Stile conto alla rovescia"
3947
 
3948
- #: app/features/mec/settings.php:707
3949
  msgid "Plain Style"
3950
  msgstr "Stile semplice"
3951
 
3952
- #: app/features/mec/settings.php:708
3953
  msgid "Flip Style"
3954
  msgstr "Stile capovolgi"
3955
 
3956
- #: app/features/mec/settings.php:720
3957
  msgid "Show social network module"
3958
  msgstr "Mostra social network"
3959
 
3960
- #: app/features/mec/settings.php:745
3961
  msgid "Show next event module on event page"
3962
  msgstr "Mostra il prossimo evento sulla pagina evento"
3963
 
3964
- #: app/features/mec/settings.php:750
3965
  msgid "Method"
3966
  msgstr "Metodo"
3967
 
3968
- #: app/features/mec/settings.php:753
3969
  msgid "Next Occurrence of Current Event"
3970
  msgstr "Il prossimo avvenimento dell'evento corrente"
3971
 
3972
- #: app/features/mec/settings.php:754
3973
  msgid "Next Occurrence of Other Events"
3974
  msgstr "Il prossimo evento degli altri eventi"
3975
 
3976
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
3977
  msgid "Date Format"
3978
  msgstr "Formato data"
3979
 
3980
- #: app/features/mec/settings.php:771
3981
  msgid "Events List Page"
3982
  msgstr "Pagina lista eventi"
3983
 
3984
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
3985
  #, php-format
3986
  msgid "Put %s shortcode into the page."
3987
  msgstr "Inserisci %s sulla pagina."
3988
 
3989
- #: app/features/mec/settings.php:783
3990
  msgid "Add/Edit Events Page"
3991
  msgstr "Pagina aggiungi/modifica eventi"
3992
 
3993
- #: app/features/mec/settings.php:797
3994
  msgid "Enable event submission by guest (Not logged-in) users"
3995
  msgstr "Attiva l'invio di eventi da parte di utenti ospiti (non autenticati)"
3996
 
3997
- #: app/features/mec/settings.php:804
3998
  msgid "Enable mandatory email and name for guest user"
3999
  msgstr "Abilita l'e-mail e il nome obbligatori per l'utente ospite"
4000
 
4001
- #: app/features/mec/settings.php:808
4002
  msgid "Frontend Event Submission Sections"
4003
  msgstr "Invio sezioni eventi da frontend"
4004
 
4005
- #: app/features/mec/settings.php:830
4006
  msgid "Event Categories"
4007
  msgstr "Categorie eventi"
4008
 
4009
- #: app/features/mec/settings.php:836
4010
  msgid "Event Labels"
4011
  msgstr "Etichette evento"
4012
 
4013
- #: app/features/mec/settings.php:848
4014
  msgid "Event Tags"
4015
  msgstr "Tag eventi"
4016
 
4017
- #: app/features/mec/settings.php:860
4018
  msgid "Event Organizer"
4019
  msgstr "Organizzatore evento"
4020
 
4021
- #: app/features/mec/settings.php:872
4022
  msgid "Booking Options"
4023
  msgstr "Opzioni di prenotazione"
4024
 
4025
- #: app/features/mec/settings.php:878
4026
  msgid "Fees/Taxes Options"
4027
  msgstr "Opzioni tassa/tasse"
4028
 
4029
- #: app/features/mec/settings.php:886
4030
  #, php-format
4031
  msgid ""
4032
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4037,34 +3478,34 @@ msgstr ""
4037
  "dell'evento. Inoltre è possibile inserire %%event_note%% nella nuova "
4038
  "notifica degli eventi per ottenere la nota dell'utente nell'e-mail."
4039
 
4040
- #: app/features/mec/settings.php:890
4041
  msgid "Visibility of Note"
4042
  msgstr "Visibilità della nota"
4043
 
4044
- #: app/features/mec/settings.php:893
4045
  msgid "Always"
4046
  msgstr "Sempre"
4047
 
4048
- #: app/features/mec/settings.php:894
4049
  msgid "While event is not published"
4050
  msgstr "Mentre l'evento non è pubblicato"
4051
 
4052
- #: app/features/mec/settings.php:897
4053
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4054
  msgstr ""
4055
  "La nota evento mostra sul modulo di invio di Frontend e Modifica evento nel "
4056
  "backend."
4057
 
4058
- #: app/features/mec/settings.php:903
4059
  msgid "Exceptional days"
4060
  msgstr "Giorni eccezionali"
4061
 
4062
- #: app/features/mec/settings.php:907
4063
  msgid "Show exceptional days option on Add/Edit events page"
4064
  msgstr ""
4065
  "Mostra opzione giorni eccezionali nella pagina Aggiungi / Modifica eventi"
4066
 
4067
- #: app/features/mec/settings.php:908
4068
  msgid ""
4069
  "Using this option you can include/exclude certain days to/from event "
4070
  "occurrence dates."
@@ -4072,7 +3513,7 @@ msgstr ""
4072
  "Usa questa opzione se vuoi includere/escludere certi giorni a/da date "
4073
  "dell'evento."
4074
 
4075
- #: app/features/mec/settings.php:918
4076
  #, fuzzy
4077
  msgid ""
4078
  "Show additional organizers option on Add/Edit events page and single event "
@@ -4080,27 +3521,27 @@ msgid ""
4080
  msgstr ""
4081
  "Mostra opzione giorni eccezionali nella pagina Aggiungi / Modifica eventi"
4082
 
4083
- #: app/features/mec/settings.php:932
4084
  msgid "Enable booking module"
4085
  msgstr "Attiva modulo prenotazione"
4086
 
4087
- #: app/features/mec/settings.php:940
4088
  msgid "Default is Y-m-d"
4089
  msgstr "Di default è Y-m-d"
4090
 
4091
- #: app/features/mec/settings.php:944
4092
  msgid "Maximum Dates"
4093
  msgstr "Date massime"
4094
 
4095
- #: app/features/mec/settings.php:946
4096
  msgid "Default is 6"
4097
  msgstr "Di default è 6"
4098
 
4099
- #: app/features/mec/settings.php:950
4100
  msgid "Thank You Page"
4101
  msgstr "Pagina dei ringraziamenti"
4102
 
4103
- #: app/features/mec/settings.php:958
4104
  msgid ""
4105
  "User redirects to this page after booking. Leave it empty if you want to "
4106
  "disable it."
@@ -4108,85 +3549,85 @@ msgstr ""
4108
  "Usa ridirezione a questa pagina dopo la prenotazione. Lascialo vuoto se vuoi "
4109
  "disabilitarlo."
4110
 
4111
- #: app/features/mec/settings.php:966
4112
  msgid "Enable Express Attendees Form"
4113
  msgstr ""
4114
 
4115
- #: app/features/mec/settings.php:968
4116
  msgid ""
4117
  "Users are able to apply first attendee information for other attendees in "
4118
  "the booking form."
4119
  msgstr ""
4120
 
4121
- #: app/features/mec/settings.php:971
4122
  msgid "Email verification"
4123
  msgstr "Verifica email"
4124
 
4125
- #: app/features/mec/settings.php:977
4126
  msgid "Auto verification for free bookings"
4127
  msgstr "Verifica automatica per prenotazioni gratuite"
4128
 
4129
- #: app/features/mec/settings.php:986
4130
  msgid "Auto verification for paid bookings"
4131
  msgstr "Verifica automatica per prenotazioni a pagamento"
4132
 
4133
- #: app/features/mec/settings.php:996
4134
  msgid "Auto confirmation for free bookings"
4135
  msgstr "Conferma automatica per prenotazioni gratuite"
4136
 
4137
- #: app/features/mec/settings.php:1005
4138
  msgid "Auto confirmation for paid bookings"
4139
  msgstr "Conferma automatica per prenotazioni a pagamento"
4140
 
4141
- #: app/features/mec/settings.php:1022
4142
  msgid "Enable coupons module"
4143
  msgstr "Attiva modulo coupon"
4144
 
4145
- #: app/features/mec/settings.php:1039
4146
  msgid "Enable taxes / fees module"
4147
  msgstr "Attiva modulo tasse"
4148
 
4149
- #: app/features/mec/settings.php:1044
4150
  msgid "Add Fee"
4151
  msgstr "Aggiungi Tassa"
4152
 
4153
- #: app/features/mec/settings.php:1100
4154
  msgid "Enable BuddyPress Integration"
4155
  msgstr "Abilita l'integrazione con BuddyPress"
4156
 
4157
- #: app/features/mec/settings.php:1107
4158
  msgid "Show \"Attendees Module\" in event details page"
4159
  msgstr "Mostra \"Modulo partecipanti\" nella pagina dettagli degli eventi"
4160
 
4161
- #: app/features/mec/settings.php:1111
4162
  msgid "Attendees Limit"
4163
  msgstr "Limite partecipanti"
4164
 
4165
- #: app/features/mec/settings.php:1119
4166
  msgid "Add booking activity to user profile"
4167
  msgstr "Aggiungi attività di prenotazione al profilo utente"
4168
 
4169
- #: app/features/mec/settings.php:1130
4170
  msgid "Enable Mailchimp Integration"
4171
  msgstr "Abilita integrazione con Mailchimp"
4172
 
4173
- #: app/features/mec/settings.php:1142
4174
  msgid "List ID"
4175
  msgstr "Lista ID"
4176
 
4177
- #: app/features/mec/settings.php:1149
4178
  msgid "Subscription Status"
4179
  msgstr "Stato iscrizione"
4180
 
4181
- #: app/features/mec/settings.php:1152
4182
  msgid "Subscribe automatically"
4183
  msgstr "Iscriviti automaticamente"
4184
 
4185
- #: app/features/mec/settings.php:1153
4186
  msgid "Subscribe by verification"
4187
  msgstr "Iscriviti con verifica"
4188
 
4189
- #: app/features/mec/settings.php:1155
4190
  msgid ""
4191
  "If you choose \"Subscribe by verification\" then an email will send to user "
4192
  "by mailchimp for subscription verification."
@@ -4194,20 +3635,25 @@ msgstr ""
4194
  "Se hai selezionato \"Iscriviti con verifica\" allora una email verrà "
4195
  "spediita all'utente da Mailchimp per verificare l'iscrizione."
4196
 
4197
- #: app/features/mec/settings.php:1165
4198
  #, php-format
4199
  msgid "%s is required to use this section."
4200
  msgstr ""
4201
 
4202
- #: app/features/mec/settings.php:1168
4203
  msgid "Purchase Code"
4204
  msgstr "Purchase Code"
4205
 
4206
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4207
  msgid "UnVerified"
4208
  msgstr "Non verificato"
4209
 
4210
- #: app/features/mec/settings.php:1177
4211
  msgid ""
4212
  "Please insert your purchase code validation. read documentation for more "
4213
  "information."
@@ -4215,31 +3661,31 @@ msgstr ""
4215
  "Si prega di inserire il codice di acquisto. Leggere la documentazione per "
4216
  "maggiori informazioni."
4217
 
4218
- #: app/features/mec/settings.php:1180
4219
  msgid "Product Name"
4220
  msgstr ""
4221
 
4222
- #: app/features/mec/settings.php:1183
4223
  msgid "1 License for MEC Plugin"
4224
  msgstr ""
4225
 
4226
- #: app/features/mec/settings.php:1184
4227
  msgid "5 License for MEC Plugin"
4228
  msgstr ""
4229
 
4230
- #: app/features/mec/settings.php:1185
4231
  msgid "10 License for MEC Plugin"
4232
  msgstr ""
4233
 
4234
- #: app/features/mec/settings.php:1192
4235
  msgid "MEC Deactivation"
4236
  msgstr "Disattivazione MEC"
4237
 
4238
- #: app/features/mec/settings.php:1194
4239
  msgid "Deactivate"
4240
  msgstr "Disattivare"
4241
 
4242
- #: app/features/mec/settings.php:1196
4243
  msgid ""
4244
  "For deactivation first delete your purchase from above field then press save "
4245
  "after that click on deactivate for deactivate this purchase code from this "
@@ -4250,7 +3696,7 @@ msgstr ""
4250
  "per disattivare questo codice di acquisto da questo dominio, quindi è "
4251
  "possibile attivare un altro dominio."
4252
 
4253
- #: app/features/mec/settings.php:1257
4254
  msgid "Please Refresh Page"
4255
  msgstr "Si prega di ricaricare la pagina"
4256
 
@@ -4407,7 +3853,7 @@ msgstr "es. mario@rossi.it"
4407
  msgid "eg. https://webnus.net"
4408
  msgstr "es. https://webnus.net"
4409
 
4410
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4411
  #: app/skins/single.php:194
4412
  msgid "Other Organizers"
4413
  msgstr ""
@@ -4422,6 +3868,15 @@ msgstr ""
4422
  msgid "%s Price"
4423
  msgstr ""
4424
 
 
 
 
 
 
 
 
 
 
4425
  #: app/libraries/factory.php:148
4426
  msgid "M.E. Calendar"
4427
  msgstr "Calendario"
@@ -4493,31 +3948,31 @@ msgstr ""
4493
  msgid "There is no excerpt because this is a protected post."
4494
  msgstr "Il riassunto non è disponibile perché l'articolo è protetto."
4495
 
4496
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4497
  msgid "Grid View"
4498
  msgstr "Visualizzazione Griglia"
4499
 
4500
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4501
  msgid "Agenda View"
4502
  msgstr ""
4503
 
4504
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4505
  msgid "Full Calendar"
4506
  msgstr "Calendario completo"
4507
 
4508
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4509
  msgid "Calendar/Monthly View"
4510
  msgstr "Calendario/Visualizzazione mensile"
4511
 
4512
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4513
  msgid "Timetable View"
4514
  msgstr ""
4515
 
4516
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4517
  msgid "Masonry View"
4518
  msgstr ""
4519
 
4520
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4521
  msgid "Map View"
4522
  msgstr "Visualizzazione mappa"
4523
 
@@ -4541,31 +3996,31 @@ msgstr "Visualizza carosello"
4541
  msgid "Slider View"
4542
  msgstr "Visualizza slider"
4543
 
4544
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4545
  msgid "SU"
4546
  msgstr "D"
4547
 
4548
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4549
  msgid "MO"
4550
  msgstr "L"
4551
 
4552
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4553
  msgid "TU"
4554
  msgstr "M"
4555
 
4556
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4557
  msgid "WE"
4558
  msgstr "M"
4559
 
4560
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4561
  msgid "TH"
4562
  msgstr "G"
4563
 
4564
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4565
  msgid "FR"
4566
  msgstr "V"
4567
 
4568
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4569
  msgid "SA"
4570
  msgstr "S"
4571
 
@@ -4589,226 +4044,255 @@ msgstr "Google+"
4589
  msgid "Twitter"
4590
  msgstr "Twitter"
4591
 
4592
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4593
  msgid "Linkedin"
4594
  msgstr "Linkedin"
4595
 
4596
- #: app/libraries/main.php:1052
 
 
 
 
4597
  msgid "Share on Facebook"
4598
  msgstr "Condividi su Facebook"
4599
 
4600
- #: app/libraries/main.php:1064
4601
  msgid "Google Plus"
4602
  msgstr "Google Plus"
4603
 
4604
- #: app/libraries/main.php:1076
4605
  msgid "Tweet"
4606
  msgstr "Tweet"
4607
 
4608
- #: app/libraries/main.php:1456
4609
  msgid "Your booking successfully verified."
4610
  msgstr "La tua prenotazione è stata verificata correttamente."
4611
 
4612
- #: app/libraries/main.php:1457
4613
  msgid "Your booking cannot verify!"
4614
  msgstr "La tua prenotazione non può essere verificata!"
4615
 
4616
- #: app/libraries/main.php:1469
4617
  msgid "Your booking successfully canceled."
4618
  msgstr "La tua prenotazione è stata cancellata correttamente."
4619
 
4620
- #: app/libraries/main.php:1470
4621
  msgid "Your booking cannot be canceled."
4622
  msgstr "La tua prenotazione non può essere cancellata."
4623
 
4624
- #: app/libraries/main.php:1474
4625
  msgid "You canceled the payment successfully."
4626
  msgstr "Hai annullato correttamente il pagamento."
4627
 
4628
- #: app/libraries/main.php:1478
4629
  msgid "You returned from payment gateway successfully."
4630
  msgstr "Procedura di pagamento avvenuta correttamente."
4631
 
4632
- #: app/libraries/main.php:1502
4633
  msgid "Cannot find the booking!"
4634
  msgstr ""
4635
 
4636
- #: app/libraries/main.php:1502
4637
  msgid "Booking is invalid."
4638
  msgstr ""
4639
 
4640
- #: app/libraries/main.php:1523
4641
  #, php-format
4642
  msgid "%s Invoice"
4643
  msgstr ""
4644
 
4645
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4646
  msgid "Billing"
4647
  msgstr ""
4648
 
4649
- #: app/libraries/main.php:1586
4650
  msgid "Total"
4651
  msgstr ""
4652
 
4653
- #: app/libraries/main.php:1619
4654
  msgid "Security nonce is not valid."
4655
  msgstr "Token di sicurezza non valido."
4656
 
4657
- #: app/libraries/main.php:1619
4658
  msgid "iCal export stopped!"
4659
  msgstr "esportazione iCal annullata!"
4660
 
4661
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4662
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4663
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4664
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4665
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4666
  msgid "Sort"
4667
  msgstr "Ordina"
4668
 
4669
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4670
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4671
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4672
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4673
  msgid "Required Field"
4674
  msgstr "Campo obbligatorio"
4675
 
4676
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4677
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4678
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4679
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4680
  msgid "Insert a label for this field"
4681
  msgstr "Inserisci una etichetta per questo campo"
4682
 
4683
- #: app/libraries/main.php:1962
4684
  msgid "HTML and shortcode are allowed."
4685
  msgstr "HTML e shortcode sono ammessi."
4686
 
4687
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4688
- #: app/libraries/main.php:2093
4689
  msgid "Option"
4690
  msgstr "Opzione"
4691
 
4692
- #: app/libraries/main.php:2127
4693
  #, php-format
4694
  msgid "Instead of %s, the page title with a link will be show."
4695
  msgstr ""
4696
 
4697
- #: app/libraries/main.php:2129
4698
  msgid "Agreement Page"
4699
  msgstr ""
4700
 
4701
- #: app/libraries/main.php:2138
4702
  msgid "Status"
4703
  msgstr ""
4704
 
4705
- #: app/libraries/main.php:2140
4706
  msgid "Checked by default"
4707
  msgstr ""
4708
 
4709
- #: app/libraries/main.php:2141
4710
  msgid "Unchecked by default"
4711
  msgstr ""
4712
 
4713
- #: app/libraries/main.php:2163
4714
  msgid "Insert a label for this option"
4715
  msgstr "Inserisci una etichetta per questa opzione"
4716
 
4717
- #: app/libraries/main.php:2830
 
 
 
 
4718
  #, php-format
4719
  msgid "Copy of %s"
4720
  msgstr "Copia di %s"
4721
 
4722
- #: app/libraries/main.php:3467
4723
  msgid "Booked an event."
4724
  msgstr "Prenotato un evento."
4725
 
4726
- #: app/libraries/main.php:3508
4727
  #, php-format
4728
  msgid "%s booked %s event."
4729
  msgstr "%s ha prenotato l'evento %s."
4730
 
4731
- #: app/libraries/main.php:3950
4732
  msgid "Taxonomies"
4733
  msgstr ""
4734
 
4735
- #: app/libraries/main.php:3952
4736
  msgid "Category Plural Label"
4737
  msgstr ""
4738
 
4739
- #: app/libraries/main.php:3953
4740
  msgid "Category Singular Label"
4741
  msgstr ""
4742
 
4743
- #: app/libraries/main.php:3954
4744
  msgid "Label Plural Label"
4745
  msgstr ""
4746
 
4747
- #: app/libraries/main.php:3955
4748
  msgid "Label Singular Label"
4749
  msgstr ""
4750
 
4751
- #: app/libraries/main.php:3955
4752
  msgid "label"
4753
  msgstr ""
4754
 
4755
- #: app/libraries/main.php:3956
4756
  msgid "Location Plural Label"
4757
  msgstr ""
4758
 
4759
- #: app/libraries/main.php:3957
4760
  msgid "Location Singular Label"
4761
  msgstr ""
4762
 
4763
- #: app/libraries/main.php:3958
4764
  msgid "Organizer Plural Label"
4765
  msgstr ""
4766
 
4767
- #: app/libraries/main.php:3959
4768
  msgid "Organizer Singular Label"
4769
  msgstr ""
4770
 
4771
- #: app/libraries/main.php:3965
4772
  msgid "Sunday abbreviation"
4773
  msgstr ""
4774
 
4775
- #: app/libraries/main.php:3966
4776
  msgid "Monday abbreviation"
4777
  msgstr ""
4778
 
4779
- #: app/libraries/main.php:3967
4780
  msgid "Tuesday abbreviation"
4781
  msgstr ""
4782
 
4783
- #: app/libraries/main.php:3968
4784
  msgid "Wednesday abbreviation"
4785
  msgstr ""
4786
 
4787
- #: app/libraries/main.php:3969
4788
  msgid "Thursday abbreviation"
4789
  msgstr ""
4790
 
4791
- #: app/libraries/main.php:3970
4792
  msgid "Friday abbreviation"
4793
  msgstr ""
4794
 
4795
- #: app/libraries/main.php:3971
4796
  msgid "Saturday abbreviation"
4797
  msgstr ""
4798
 
4799
- #: app/libraries/main.php:3975
4800
  msgid "Others"
4801
  msgstr ""
4802
 
4803
- #: app/libraries/main.php:3977
4804
  msgid "Booking Success Message"
4805
  msgstr ""
4806
 
4807
- #: app/libraries/main.php:3978
 
 
 
 
 
 
 
 
 
4808
  msgid "Register Button"
4809
  msgstr ""
4810
 
4811
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4812
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4813
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4814
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4822,11 +4306,11 @@ msgstr ""
4822
  msgid "REGISTER"
4823
  msgstr "REGISTRA"
4824
 
4825
- #: app/libraries/main.php:3979
4826
  msgid "View Detail Button"
4827
  msgstr ""
4828
 
4829
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4830
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4831
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4832
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4837,39 +4321,39 @@ msgstr ""
4837
  msgid "View Detail"
4838
  msgstr "Visualizza dettaglio"
4839
 
4840
- #: app/libraries/main.php:3980
4841
  msgid "Event Detail Button"
4842
  msgstr ""
4843
 
4844
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4845
  msgid "Event Detail"
4846
  msgstr "Dettaglio evento"
4847
 
4848
- #: app/libraries/main.php:3982
4849
  msgid "More Info Link"
4850
  msgstr ""
4851
 
4852
- #: app/libraries/main.php:3985
4853
  msgid "Ticket (Singular)"
4854
  msgstr ""
4855
 
4856
- #: app/libraries/main.php:3986
4857
  msgid "Tickets (Plural)"
4858
  msgstr ""
4859
 
4860
- #: app/libraries/main.php:4052
4861
  msgid "EventON"
4862
  msgstr ""
4863
 
4864
- #: app/libraries/main.php:4053
4865
  msgid "The Events Calendar"
4866
  msgstr ""
4867
 
4868
- #: app/libraries/main.php:4054
4869
  msgid "Events Schedule WP Plugin"
4870
  msgstr ""
4871
 
4872
- #: app/libraries/main.php:4055
4873
  msgid "Calendarize It"
4874
  msgstr ""
4875
 
@@ -4893,6 +4377,14 @@ msgstr "Una nuova prenotazione è stata ricevuta."
4893
  msgid "A new event is added."
4894
  msgstr "Un nuovo evento è stato aggiunto."
4895
 
 
 
 
 
 
 
 
 
4896
  #: app/libraries/render.php:337
4897
  msgid "Skin controller does not exist."
4898
  msgstr "Non esiste il controllo dello stile."
@@ -4921,6 +4413,10 @@ msgstr "Non è stato trovato nessun partecipante! Sei il primo a prenotare!"
4921
  msgid "%s tickets"
4922
  msgstr "%s biglietti"
4923
 
 
 
 
 
4924
  #: app/modules/booking/steps/checkout.php:33
4925
  msgid "Discount Coupon"
4926
  msgstr "Sconto Coupon"
@@ -4947,6 +4443,10 @@ msgstr ""
4947
  msgid "Next"
4948
  msgstr "Avanti"
4949
 
 
 
 
 
4950
  #: app/modules/booking/steps/tickets.php:18
4951
  msgid "Book Event"
4952
  msgstr "Evento prenotazione"
@@ -5237,6 +4737,12 @@ msgstr ""
5237
  msgid "QR Code : "
5238
  msgstr ""
5239
 
 
 
 
 
 
 
5240
  #. Plugin URI of the plugin/theme
5241
  msgid "http://webnus.net/plugins/modern-events-calendar/"
5242
  msgstr ""
@@ -5253,6 +4759,275 @@ msgstr "Team Webnus"
5253
  msgid "http://webnus.net"
5254
  msgstr ""
5255
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5256
  #~ msgid "Attendee"
5257
  #~ msgstr "Partecipante"
5258
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2018-09-09 16:07+0430\n"
5
+ "PO-Revision-Date: 2018-09-09 16:07+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
 
23
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
24
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
25
  #: app/widgets/MEC.php:23
30
  msgid "Content"
31
  msgstr "Contenuto"
32
 
33
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
34
+ #: app/features/mec.php:238 app/features/mec.php:264
35
  msgid "Shortcode"
36
  msgstr "Shortcode"
37
 
39
  msgid "Select from predefined shortcodes"
40
  msgstr "Seleziona da shortcode predefiniti"
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  #: app/features/colors.php:50 app/features/fes/form.php:566
43
+ #: app/features/mec/settings.php:847
44
  msgid "Event Color"
45
  msgstr "Colore Evento"
46
 
47
+ #: app/features/contextual.php:55 app/features/mec.php:195
48
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
49
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
50
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
51
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
52
  #: app/features/mec/support.php:18
53
  msgid "Settings"
54
  msgstr "Impostazioni"
55
 
56
+ #: app/features/contextual.php:62 app/features/events.php:910
57
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
58
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
59
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
60
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
61
+ #: app/features/mec/support.php:27
62
+ msgid "Booking Form"
63
+ msgstr "Form Prenotazione"
64
+
65
  #: app/features/contextual.php:63
66
  msgid ""
67
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
74
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
75
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
76
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
77
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
78
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
79
  msgid "Payment Gateways"
80
  msgstr "Gateway di pagamento"
89
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
90
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
91
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
92
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
93
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
94
  msgid "Notifications"
95
  msgstr "Notifiche"
150
  "\"0\" allowfullscreen></iframe>"
151
  msgstr ""
152
 
153
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
154
+ #: app/features/mec/settings.php:252
155
  msgid "General Options"
156
  msgstr "Opzioni generali"
157
 
158
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
159
+ #: app/features/mec/settings.php:404
160
  msgid "Slugs/Permalinks"
161
  msgstr "Slug/Permalink"
162
 
163
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
164
+ #: app/features/mec/settings.php:424
165
  msgid "Event Details/Single Event Page"
166
  msgstr "Dettaglii evento/Pagina singola evento"
167
 
168
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
169
+ #: app/features/mec/settings.php:456
170
  msgid "Currency Options"
171
  msgstr "Opzioni valuta"
172
 
173
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
174
+ #: app/features/mec/settings.php:508
175
  msgid "Google Maps Options"
176
  msgstr "Opzioni Google Map"
177
 
178
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
179
+ #: app/features/mec/settings.php:582
180
  msgid "Google Recaptcha Options"
181
  msgstr "Opzioni Recaptcha Google"
182
 
183
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
184
+ #: app/features/mec/settings.php:700
185
  msgid "Countdown Options"
186
  msgstr "Opzioni conto alla rovescia"
187
 
188
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
189
+ #: app/features/mec/settings.php:721
190
  msgid "Social Networks"
191
  msgstr "Social Network"
192
 
193
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
194
+ #: app/features/mec/settings.php:746
195
  msgid "Next Event Module"
196
  msgstr "Modulo prossimo evento"
197
 
198
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
199
+ #: app/features/mec/settings.php:774
200
  msgid "Frontend Event Submission"
201
  msgstr "Invio eventi da frontend"
202
 
203
  #: app/features/contextual.php:298 app/features/events.php:570
204
+ #: app/features/mec/settings.php:131
205
  msgid "Exceptional Days"
206
  msgstr "Giorni eccezionali"
207
 
208
+ #: app/features/contextual.php:308 app/features/events.php:253
209
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
210
+ msgid "Booking"
211
+ msgstr "Prenotazione"
212
+
213
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
214
+ #: app/features/mec/settings.php:1019
215
  msgid "Coupons"
216
  msgstr "Coupon"
217
 
218
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
219
+ #: app/features/mec/settings.php:1101
220
  msgid "BuddyPress Integration"
221
  msgstr "Integrazione BuddyPress"
222
 
223
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
224
+ #: app/features/mec/settings.php:1131
225
  msgid "Mailchimp Integration"
226
  msgstr "Integrazione Mailchimp"
227
 
228
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
229
+ #: app/features/mec/settings.php:1167
230
  msgid "MEC Activation"
231
  msgstr "Attivazione"
232
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
233
  #: app/features/events.php:122 app/features/ix/export.php:33
234
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
235
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
236
  msgid "Events"
237
  msgstr "Eventi"
238
 
239
+ #: app/features/events.php:123
240
+ #: app/features/mec/meta_boxes/display_options.php:678
241
+ #: app/features/mec/meta_boxes/display_options.php:716
242
+ #: app/features/mec/meta_boxes/display_options.php:745
243
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
244
+ #: app/skins/yearly_view/tpl.php:69
245
+ msgid "Event"
246
+ msgstr "Evento"
247
+
248
+ #: app/features/events.php:124 app/features/mec.php:188
249
  msgid "Add Event"
250
  msgstr "Aggiungi Evento"
251
 
258
  msgid "No events found!"
259
  msgstr "Nessun evento trovato!"
260
 
261
+ #: app/features/events.php:127
262
+ msgid "All Events"
263
+ msgstr "Tutti gli Eventi"
264
+
265
  #: app/features/events.php:128
266
  msgid "Edit Event"
267
  msgstr ""
284
  #: app/features/mec/meta_boxes/search_form.php:285
285
  #: app/features/mec/meta_boxes/search_form.php:325
286
  #: app/features/mec/meta_boxes/search_form.php:372
287
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
288
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
289
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
290
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
292
  msgstr "Categoria"
293
 
294
  #: app/features/events.php:143 app/features/fes/form.php:518
295
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
296
+ #: app/libraries/main.php:3967
297
  msgid "Categories"
298
  msgstr "Categorie"
299
 
360
  #: app/features/events.php:286 app/features/events.php:1631
361
  #: app/features/events.php:1675 app/features/fes/form.php:479
362
  #: app/features/ix.php:2328 app/features/ix.php:2369
363
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
364
  msgid "Event Cost"
365
  msgstr "Costo Evento"
366
 
367
  #: app/features/events.php:289 app/features/fes/form.php:482
368
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
369
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
370
  #: app/skins/single/modern.php:179
371
  msgid "Cost"
379
  msgid "Guest Data"
380
  msgstr "Dati dell'ospite"
381
 
382
+ #: app/features/events.php:370 app/features/fes/form.php:441
383
+ #: app/features/labels.php:151 app/features/organizers.php:268
384
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
385
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
386
+ msgid "Name"
387
+ msgstr "Nome"
388
+
389
+ #: app/features/events.php:371 app/features/events.php:945
390
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
391
+ #: app/features/organizers.php:110 app/features/organizers.php:150
392
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
393
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
394
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
395
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
396
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
397
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
398
+ #: app/skins/single/modern.php:38
399
+ msgid "Email"
400
+ msgstr "Email"
401
+
402
  #: app/features/events.php:375 app/features/fes/form.php:221
403
  msgid "Date and Time"
404
  msgstr "Data e Ora"
408
  #: app/features/events.php:1675 app/features/fes/form.php:225
409
  #: app/features/fes/form.php:229 app/features/ix.php:2328
410
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
411
+ #: app/features/mec/dashboard.php:266
412
  #: app/features/mec/meta_boxes/display_options.php:42
413
  #: app/features/mec/meta_boxes/display_options.php:129
414
  #: app/features/mec/meta_boxes/display_options.php:225
440
  #: app/features/events.php:1675 app/features/fes/form.php:265
441
  #: app/features/fes/form.php:269 app/features/ix.php:2328
442
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
443
+ #: app/features/mec/dashboard.php:267
444
  msgid "End Date"
445
  msgstr "Data di fine"
446
 
477
  msgstr "Ripeti"
478
 
479
  #: app/features/events.php:481 app/features/fes/form.php:327
480
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
481
  msgid "Daily"
482
  msgstr "Giornaliero"
483
 
499
  msgstr "Settimanale"
500
 
501
  #: app/features/events.php:486 app/features/fes/form.php:332
502
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
503
  msgid "Monthly"
504
  msgstr "Mensile"
505
 
506
  #: app/features/events.php:487 app/features/fes/form.php:333
507
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
508
  msgid "Yearly"
509
  msgstr "Annuale"
510
 
559
  msgid "Sunday"
560
  msgstr "Domenica"
561
 
562
+ #: app/features/events.php:508 app/features/events.php:580
563
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
564
+ #: app/modules/booking/steps/tickets.php:20
565
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
566
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
567
+ #: app/skins/single/modern.php:146
568
+ msgid "Date"
569
+ msgstr "Data"
570
+
571
  #: app/features/events.php:509 app/features/events.php:581
572
  #: app/features/events.php:623 app/features/events.php:743
573
  #: app/features/events.php:839 app/features/fes/form.php:355
614
  msgid "Exclude certain days from event occurrence dates."
615
  msgstr "Escludere determinati giorni dalle date dell'evento."
616
 
617
+ #: app/features/events.php:620 app/features/mec/settings.php:871
618
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
619
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
620
  msgid "Hourly Schedule"
635
  #: app/features/events.php:631 app/features/events.php:643
636
  #: app/features/events.php:1449 app/features/events.php:1631
637
  #: app/features/events.php:1675 app/features/fes/form.php:214
638
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
639
  msgid "Title"
640
  msgstr "Titolo"
641
 
642
+ #: app/features/events.php:632 app/features/events.php:644
643
+ #: app/features/events.php:752 app/features/events.php:784
644
+ msgid "Description"
645
+ msgstr "Descrizione"
646
+
647
  #: app/features/events.php:633 app/features/events.php:645
648
  #: app/features/events.php:771 app/features/events.php:803
649
  #: app/features/events.php:859 app/features/events.php:884
650
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
651
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
652
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
653
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
654
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
655
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
656
+ #: app/libraries/main.php:2177
657
  msgid "Remove"
658
  msgstr "Elimina"
659
 
660
  #: app/features/events.php:665 app/features/fes/form.php:456
661
+ #: app/features/mec/settings.php:817
662
  msgid "Event Links"
663
  msgstr "Link dell'evento"
664
 
665
  #: app/features/events.php:667 app/features/fes/form.php:458
666
+ #: app/libraries/main.php:3996
667
  msgid "Event Link"
668
  msgstr "Link dell'evento"
669
 
681
  "eventi predefiniti. Inserisci il collegamento completo compreso http (s): //"
682
 
683
  #: app/features/events.php:672 app/features/fes/form.php:463
684
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
685
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
686
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
687
  msgid "More Info"
712
  msgid "Total booking limits"
713
  msgstr "Limite totale delle prenotazioni"
714
 
715
+ #: app/features/events.php:715 app/features/events.php:769
716
+ #: app/features/events.php:801 app/modules/booking/default.php:82
717
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
718
+ msgid "Unlimited"
719
+ msgstr "Illimitato"
720
+
721
  #: app/features/events.php:717
722
  msgid "100"
723
  msgstr "100"
724
 
725
  #: app/features/events.php:735 app/libraries/book.php:59
726
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
727
  msgid "Tickets"
728
  msgstr "Biglietto/ticket"
729
 
738
  msgid "Ticket Name"
739
  msgstr "Nome biglietto/ticket"
740
 
741
+ #: app/features/events.php:756 app/features/events.php:788
742
+ msgid "Price"
743
+ msgstr "Prezzo"
744
+
745
  #: app/features/events.php:757 app/features/events.php:789
746
  msgid "Insert 0 for free ticket. Only numbers please."
747
  msgstr "Inserire 0 per ticket gratuiti. Solo numeri."
767
  msgstr "Eredita da opzioni globali"
768
 
769
  #: app/features/events.php:845 app/features/events.php:870
770
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
771
  msgid "Fee Title"
772
  msgstr "Titolo tassa"
773
 
774
+ #: app/features/events.php:849 app/features/events.php:874
775
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
776
+ msgid "Amount"
777
+ msgstr "Totale"
778
+
779
  #: app/features/events.php:850 app/features/events.php:875
780
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
781
  msgid ""
782
  "Fee amount, considered as fixed amount if you set the type to amount "
783
  "otherwise considered as percentage"
785
  "Totale tassa, considerato come l'ammontare fisso se viene impostato il tipo "
786
  "a totale, altrimenti considerato come percentuale"
787
 
788
+ #: app/features/events.php:854 app/features/events.php:879
789
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
790
+ msgid "Percent"
791
+ msgstr "Percentuale"
792
+
793
  #: app/features/events.php:855 app/features/events.php:880
794
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
795
  msgid "Amount (Per Ticket)"
796
  msgstr ""
797
 
798
  #: app/features/events.php:856 app/features/events.php:881
799
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
800
  msgid "Amount (Per Booking)"
801
  msgstr ""
802
 
803
  #: app/features/events.php:944 app/features/mec/regform.php:117
804
+ #: app/libraries/main.php:1856
805
  msgid "Text"
806
  msgstr "Testo"
807
 
808
  #: app/features/events.php:946 app/features/mec/regform.php:119
809
  #: app/features/organizers.php:102 app/features/organizers.php:146
810
+ #: app/libraries/main.php:1914
811
  msgid "Tel"
812
  msgstr "Tel"
813
 
814
  #: app/features/events.php:947 app/features/mec/regform.php:120
815
+ #: app/libraries/main.php:1943
816
  msgid "Textarea"
817
  msgstr "Area di testo"
818
 
819
  #: app/features/events.php:948 app/features/mec/regform.php:121
820
+ #: app/libraries/main.php:1996
821
  msgid "Checkboxes"
822
  msgstr "Caselle di selezione"
823
 
824
  #: app/features/events.php:949 app/features/mec/regform.php:122
825
+ #: app/libraries/main.php:2040
826
  msgid "Radio Buttons"
827
  msgstr "Opzioni di selezione"
828
 
871
  #: app/features/mec/meta_boxes/search_form.php:436
872
  #: app/features/mec/meta_boxes/search_form.php:443
873
  #: app/features/mec/meta_boxes/search_form.php:450
874
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
875
  msgid "Dropdown"
876
  msgstr "Casella di selezione"
877
 
878
  #: app/features/events.php:951 app/features/mec/regform.php:124
879
+ #: app/libraries/main.php:2131
880
  msgid "Agreement"
881
  msgstr ""
882
 
883
  #: app/features/events.php:952 app/features/mec/regform.php:125
884
+ #: app/libraries/main.php:1972
885
  msgid "Paragraph"
886
  msgstr "Paragrafo"
887
 
907
  #: app/features/events.php:1675 app/features/ix.php:2328
908
  #: app/features/ix.php:2369 app/features/locations.php:58
909
  #: app/features/locations.php:229 app/features/locations.php:281
910
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
911
  #: app/features/mec/meta_boxes/display_options.php:641
912
  #: app/features/mec/meta_boxes/search_form.php:38
913
  #: app/features/mec/meta_boxes/search_form.php:85
917
  #: app/features/mec/meta_boxes/search_form.php:292
918
  #: app/features/mec/meta_boxes/search_form.php:332
919
  #: app/features/mec/meta_boxes/search_form.php:379
920
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
921
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
922
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
923
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
924
  #: app/skins/single/modern.php:77
927
 
928
  #: app/features/events.php:1451 app/features/events.php:1631
929
  #: app/features/events.php:1675 app/features/ix.php:2328
930
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
931
  #: app/features/mec/meta_boxes/display_options.php:642
932
  #: app/features/mec/meta_boxes/search_form.php:45
933
  #: app/features/mec/meta_boxes/search_form.php:92
940
  #: app/features/mec/meta_boxes/search_form.php:433
941
  #: app/features/organizers.php:58 app/features/organizers.php:199
942
  #: app/features/organizers.php:255 app/features/organizers.php:257
943
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
944
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
945
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
946
  #: app/skins/single/modern.php:21
959
  msgid "iCal Export"
960
  msgstr "esporta iCal"
961
 
962
+ #: app/features/events.php:1569 app/features/events.php:1570
963
+ msgid "CSV Export"
964
+ msgstr "Esporta CSV"
965
+
966
+ #: app/features/events.php:1572 app/features/events.php:1573
967
+ msgid "MS Excel Export"
968
+ msgstr "Esporta Excel"
969
+
970
  #: app/features/events.php:1575 app/features/events.php:1576
971
  msgid "XML Export"
972
  msgstr "Esporta XML"
979
  msgid "Duplicate"
980
  msgstr "Duplica"
981
 
982
+ #: app/features/events.php:1631 app/features/events.php:1675
983
+ #: app/features/ix.php:2328 app/features/ix.php:2369
984
+ #: app/features/labels.php:150 app/features/locations.php:228
985
+ #: app/features/organizers.php:198
986
+ msgid "ID"
987
+ msgstr "ID"
988
+
989
  #: app/features/events.php:1631 app/features/events.php:1675
990
  #: app/features/ix.php:2328 app/features/ix.php:2369
991
  msgid "Start Time"
1070
  msgstr "Note per il revisore"
1071
 
1072
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1073
  msgid "Submit"
1074
  msgstr "Invia"
1075
 
1085
  msgid "eg. John Smith"
1086
  msgstr "es. Mario Rossi"
1087
 
1088
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1089
  msgid "Featured Image"
1090
  msgstr "Immagine in evidenza"
1091
 
1094
  msgstr "Rimuovi immagine"
1095
 
1096
  #: app/features/fes/form.php:543 app/features/labels.php:61
1097
+ #: app/features/labels.php:194 app/features/mec.php:191
1098
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1099
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1100
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1101
  msgid "Labels"
1102
  msgstr "Etichette"
1103
 
1104
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1105
  #: app/features/mec/meta_boxes/filter.php:138
1106
  msgid "Tags"
1107
  msgstr "Tag"
1127
  msgid "No events found! %s"
1128
  msgstr "Nessun evento trovato! %s"
1129
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1130
  #: app/features/ix.php:95
1131
  msgid "MEC - Import / Export"
1132
  msgstr "MEC - Importa / Esporta"
1159
  msgid "Third Party plugin is invalid!"
1160
  msgstr ""
1161
 
1162
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1163
+ msgid "Both of API key and Calendar ID are required!"
1164
+ msgstr "Entrambe le chiavi API e ID Calendario sono richiesti!"
1165
+
1166
  #: app/features/ix.php:1961 app/features/ix.php:2791
1167
  msgid "Please select some events to import!"
1168
  msgstr "Si prega di selezionare degli eventi da importare!"
1184
  msgid "All seems good! Please click %s for authenticating your app."
1185
  msgstr "Sembra tutto ok! Fai clic su%s per autenticare l'applicazione."
1186
 
1187
+ #: app/features/ix.php:2527
1188
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1189
+ msgstr ""
1190
+ "Tutte le applicazioni Client, Client Secret e ID Calendario sono obbligatori!"
1191
+
1192
+ #: app/features/ix.php:2722
1193
+ #, php-format
1194
+ msgid "%s events added to Google Calendar successfully."
1195
+ msgstr "%s eventi aggiunti con successo dal calendario di Google."
1196
+
1197
+ #: app/features/ix.php:2723
1198
+ #, php-format
1199
+ msgid "%s previously added events get updated."
1200
+ msgstr "%s eventi precedentemente aggiunti vengono aggiornati."
1201
+
1202
+ #: app/features/ix.php:2724
1203
+ #, php-format
1204
+ msgid "%s events failed to add for following reasons: %s"
1205
+ msgstr ""
1206
+ "%s eventi non sono stati aggiornati, è fallita l'importazione per diverse "
1207
+ "ragioni: %s"
1208
+
1209
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1210
+ msgid "Please insert your facebook page's link."
1211
+ msgstr "Si prega di inserire il link della vostra pagina Facebook."
1212
+
1213
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1214
+ msgid ""
1215
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1216
+ "valid facebook page link."
1217
+ msgstr ""
1218
+ "Non riusciamo ad accedere alla vostra pagina Facebook. Si prega di "
1219
+ "verificare e inserire una pagina valida."
1220
+
1221
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1222
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1223
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1265
  "Questo esporterà tutti i dati degli eventi del tuo sito web nel formato "
1266
  "desiderato."
1267
 
1268
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1269
  msgid "iCal"
1270
  msgstr "iCal"
1271
 
1307
  "Per esportare le prenotazioni degli eventi, è possibile utilizzare azioni di "
1308
  "massa in pagina %s."
1309
 
1310
+ #: app/features/ix/export.php:37
1311
+ msgid "Bookings"
1312
+ msgstr "Prenotazioni"
1313
+
1314
  #: app/features/ix/export_g_calendar.php:25
1315
  msgid "Add events to Google Calendar"
1316
  msgstr "Aggiungi eventi al calendario Google"
1368
  msgid "Add to Google Calendar"
1369
  msgstr "Aggiungi al calendario Google"
1370
 
1371
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1372
  msgid "Checking ..."
1373
  msgstr "Sto controllando..."
1374
 
1410
  msgid "ICS Feed"
1411
  msgstr ""
1412
 
1413
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1414
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1415
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1416
+ #: app/features/mec/settings.php:1039
1417
  #, php-format
1418
  msgid "%s is required to use this feature."
1419
  msgstr ""
1425
  #: app/features/mec/meta_boxes/display_options.php:558
1426
  #: app/features/mec/meta_boxes/display_options.php:608
1427
  #: app/features/mec/meta_boxes/display_options.php:734
1428
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1429
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1430
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1431
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1432
  msgid "Pro version of Modern Events Calendar"
1433
  msgstr ""
1434
 
1658
  msgid "Select label color"
1659
  msgstr "Seleziona il colore dell'etichetta"
1660
 
1661
+ #: app/features/labels.php:153 app/features/locations.php:231
1662
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1663
+ msgid "Count"
1664
+ msgstr "Numero"
1665
+
1666
  #: app/features/labels.php:154 app/features/locations.php:232
1667
  #: app/features/organizers.php:202
1668
  msgid "Slug"
1673
  msgid "Event %s"
1674
  msgstr ""
1675
 
1676
+ #: app/features/locations.php:59 app/features/mec.php:192
1677
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1678
  msgid "Locations"
1679
  msgstr "Luoghi"
1680
 
1742
  msgid "eg. City Hall"
1743
  msgstr "es. Città"
1744
 
1745
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1746
  msgid "Event Location"
1747
  msgstr "Luogo dell'evento"
1748
 
1766
  msgid "Don't show map in single event page"
1767
  msgstr "Non mostrare la mappa nella pagina dell'evento singolo"
1768
 
1769
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1770
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1771
  msgid "Organizers"
1772
  msgstr "Organizzatori"
1773
 
1774
+ #: app/features/mec.php:194 app/features/mec.php:208
1775
+ #: app/features/mec/dashboard.php:96
1776
  msgid "Shortcodes"
1777
  msgstr "Shortcode"
1778
 
1779
+ #: app/features/mec.php:195
1780
  msgid "MEC - Settings"
1781
  msgstr "Impostazioni Calendario"
1782
 
1783
+ #: app/features/mec.php:210
1784
  msgid "Add Shortcode"
1785
  msgstr "Aggiungi Shortcode"
1786
 
1787
+ #: app/features/mec.php:211
1788
  msgid "Add New Shortcode"
1789
  msgstr "Aggiungi un nuovo Shortcode"
1790
 
1791
+ #: app/features/mec.php:212
1792
  msgid "No shortcodes found!"
1793
  msgstr "Nessun shortcode trovato!"
1794
 
1795
+ #: app/features/mec.php:213
1796
  msgid "All Shortcodes"
1797
  msgstr "Tutti gli Shortcode"
1798
 
1799
+ #: app/features/mec.php:214
1800
  msgid "Edit shortcodes"
1801
  msgstr "Modifica shortcode"
1802
 
1803
+ #: app/features/mec.php:215
1804
  msgid "No shortcodes found in Trash!"
1805
  msgstr "Nessun shortcode trovato nel cestino!"
1806
 
1807
+ #: app/features/mec.php:262
1808
  msgid "Display Options"
1809
  msgstr "Opzioni display"
1810
 
1811
+ #: app/features/mec.php:263
1812
  msgid "Filter Options"
1813
  msgstr "Opzioni filtro"
1814
 
1815
+ #: app/features/mec.php:265
1816
  msgid "Search Form"
1817
  msgstr "Casella di ricerca"
1818
 
1819
+ #: app/features/mec.php:553
1820
  msgid "Single Event Display Method"
1821
  msgstr ""
1822
 
1823
+ #: app/features/mec.php:558
1824
  msgid "Separate Window"
1825
  msgstr ""
1826
 
1827
+ #: app/features/mec.php:559
1828
  msgid "Modal 1"
1829
  msgstr ""
1830
 
1831
+ #: app/features/mec/dashboard.php:58
1832
  #, php-format
1833
  msgid "Welcome %s"
1834
  msgstr "Benvenuto %s"
1835
 
1836
+ #: app/features/mec/dashboard.php:61
1837
  #, php-format
1838
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1839
  msgstr ""
1840
 
1841
+ #: app/features/mec/dashboard.php:61
1842
  msgid "Modern Event Calendar"
1843
  msgstr ""
1844
 
1845
+ #: app/features/mec/dashboard.php:61
1846
  msgid "Modern Event Calendar (Lite)"
1847
  msgstr ""
1848
 
1849
+ #: app/features/mec/dashboard.php:70
1850
  msgid "Version"
1851
  msgstr "Versione"
1852
 
1853
+ #: app/features/mec/dashboard.php:79
1854
  #, php-format
1855
  msgid ""
1856
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1858
  "Spots, etc you should %s to the Pro version."
1859
  msgstr ""
1860
 
1861
+ #: app/features/mec/dashboard.php:79
1862
  msgid "lite"
1863
  msgstr ""
1864
 
1865
+ #: app/features/mec/dashboard.php:79
1866
  msgid "upgrade"
1867
  msgstr ""
1868
 
1869
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1870
  msgid "Documentation"
1871
  msgstr "Documentazione"
1872
 
1873
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1874
  msgid ""
1875
  "Our documentation is simple and functional with full details and cover all "
1876
  "essential aspects from beginning to the most advanced parts."
1878
  "La nostra documentazione è semplice, funzionale e dettagliata e copre tutti "
1879
  "gli aspetti essenziali da sapere, dai più basilari a quelli più avanzati."
1880
 
1881
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1882
  msgid "DOCUMENTATION"
1883
  msgstr "DOCUMENTAZIONE"
1884
 
1885
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1886
  msgid "Support Forum"
1887
  msgstr "Forum di supporto"
1888
 
1889
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1890
  msgid ""
1891
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1892
  "If you want to use this service you need to upgrade your plugin to Pro "
1893
  "version. Click on the following button."
1894
  msgstr ""
1895
 
1896
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1897
  msgid ""
1898
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1899
  "If you have any issues please don't hesitate to contact us, we will reply as "
1903
  "soddisfatti. Se hai problemi, non esitate a contattarci, risponderemo al più "
1904
  "presto."
1905
 
1906
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1907
  msgid "GO PREMIUM"
1908
  msgstr ""
1909
 
1910
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1911
  msgid "OPEN A TICKET"
1912
  msgstr "APRI UN TICKET"
1913
 
1914
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1915
  msgid "Upcoming Events"
1916
  msgstr ""
1917
 
1918
+ #: app/features/mec/dashboard.php:181
1919
  msgid "Popular Gateways"
1920
  msgstr ""
1921
 
1922
+ #: app/features/mec/dashboard.php:232
1923
  msgid "Total Bookings"
1924
  msgstr ""
1925
 
1926
+ #: app/features/mec/dashboard.php:259
1927
  msgid "This Month"
1928
  msgstr ""
1929
 
1930
+ #: app/features/mec/dashboard.php:260
1931
  msgid "Last Month"
1932
  msgstr ""
1933
 
1934
+ #: app/features/mec/dashboard.php:261
1935
  msgid "This Year"
1936
  msgstr ""
1937
 
1938
+ #: app/features/mec/dashboard.php:262
1939
  msgid "Last Year"
1940
  msgstr ""
1941
 
1942
+ #: app/features/mec/dashboard.php:274
1943
  msgid "Bar"
1944
  msgstr ""
1945
 
1946
+ #: app/features/mec/dashboard.php:275
1947
  msgid "Line"
1948
  msgstr ""
1949
 
1950
+ #: app/features/mec/dashboard.php:277
1951
  msgid "Filter"
1952
  msgstr ""
1953
 
1954
+ #: app/features/mec/dashboard.php:293
1955
  #, php-format
1956
  msgid "Total Sells (%s)"
1957
  msgstr ""
1958
 
1959
+ #: app/features/mec/dashboard.php:314
1960
  msgid "Change Log"
1961
  msgstr "Log modifiche"
1962
 
1963
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1964
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1965
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1966
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1967
  msgid "Styling Options"
1968
  msgstr "Opzioni di stile"
1969
 
1970
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1971
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1972
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1973
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1974
  msgid "Custom CSS"
1975
  msgstr "CSS personalizzato"
1976
 
1977
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1978
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1979
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1980
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1981
  #: app/features/mec/support.php:64
1982
  msgid "Messages"
1984
 
1985
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1986
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1987
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1988
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1989
  #: app/features/mec/support.php:84
1990
  msgid "Support"
1997
  #: app/features/mec/notifications.php:409
1998
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
1999
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2000
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
2001
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
2002
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
2003
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2004
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2005
+ #: app/features/mec/styling.php:335
2006
  msgid "Save Changes"
2007
  msgstr "Salva le modifiche"
2008
 
2009
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2010
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2011
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
2012
  #: app/features/mec/styling.php:313
2013
  msgid "Saved"
2014
  msgstr "Salvato"
2015
 
2016
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2017
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2018
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
2019
  #: app/features/mec/styling.php:314
2020
  msgid "Settings Saved!"
2021
  msgstr ""
2221
  msgid "Default values are d and F"
2222
  msgstr "Valori di default sono d e F"
2223
 
2224
+ #: app/features/mec/meta_boxes/display_options.php:85
2225
+ #: app/features/mec/meta_boxes/display_options.php:194
2226
+ #: app/features/mec/meta_boxes/display_options.php:244
2227
+ #: app/features/mec/meta_boxes/display_options.php:632
2228
+ #: app/features/mec/meta_boxes/display_options.php:806
2229
+ #: app/features/mec/meta_boxes/display_options.php:877
2230
+ msgid "Limit"
2231
+ msgstr "Limite"
2232
+
2233
  #: app/features/mec/meta_boxes/display_options.php:86
2234
  #: app/features/mec/meta_boxes/display_options.php:195
2235
  #: app/features/mec/meta_boxes/display_options.php:245
2309
 
2310
  #: app/features/mec/meta_boxes/display_options.php:287
2311
  #: app/features/mec/meta_boxes/display_options.php:296
2312
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2313
  msgid "List View"
2314
  msgstr "Visualizzazione Lista"
2315
 
2316
  #: app/features/mec/meta_boxes/display_options.php:288
2317
  #: app/features/mec/meta_boxes/display_options.php:306
2318
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2319
  msgid "Yearly View"
2320
  msgstr ""
2321
 
2326
 
2327
  #: app/features/mec/meta_boxes/display_options.php:290
2328
  #: app/features/mec/meta_boxes/display_options.php:326
2329
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2330
  msgid "Weekly View"
2331
  msgstr "Visualizzazione settimanale"
2332
 
2333
  #: app/features/mec/meta_boxes/display_options.php:291
2334
  #: app/features/mec/meta_boxes/display_options.php:336
2335
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2336
  msgid "Daily View"
2337
  msgstr "Visualizzazione giornaliera"
2338
 
2568
  msgid "Show Search Form"
2569
  msgstr "Mostra il modulo di ricerca"
2570
 
2571
+ #: app/features/mec/meta_boxes/search_form.php:33
2572
+ #: app/features/mec/meta_boxes/search_form.php:40
2573
+ #: app/features/mec/meta_boxes/search_form.php:47
2574
+ #: app/features/mec/meta_boxes/search_form.php:54
2575
+ #: app/features/mec/meta_boxes/search_form.php:61
2576
+ #: app/features/mec/meta_boxes/search_form.php:68
2577
+ #: app/features/mec/meta_boxes/search_form.php:80
2578
+ #: app/features/mec/meta_boxes/search_form.php:87
2579
+ #: app/features/mec/meta_boxes/search_form.php:94
2580
+ #: app/features/mec/meta_boxes/search_form.php:101
2581
+ #: app/features/mec/meta_boxes/search_form.php:108
2582
+ #: app/features/mec/meta_boxes/search_form.php:115
2583
+ #: app/features/mec/meta_boxes/search_form.php:127
2584
+ #: app/features/mec/meta_boxes/search_form.php:134
2585
+ #: app/features/mec/meta_boxes/search_form.php:141
2586
+ #: app/features/mec/meta_boxes/search_form.php:148
2587
+ #: app/features/mec/meta_boxes/search_form.php:155
2588
+ #: app/features/mec/meta_boxes/search_form.php:162
2589
+ #: app/features/mec/meta_boxes/search_form.php:174
2590
+ #: app/features/mec/meta_boxes/search_form.php:181
2591
+ #: app/features/mec/meta_boxes/search_form.php:193
2592
+ #: app/features/mec/meta_boxes/search_form.php:200
2593
+ #: app/features/mec/meta_boxes/search_form.php:207
2594
+ #: app/features/mec/meta_boxes/search_form.php:214
2595
+ #: app/features/mec/meta_boxes/search_form.php:221
2596
+ #: app/features/mec/meta_boxes/search_form.php:228
2597
+ #: app/features/mec/meta_boxes/search_form.php:240
2598
+ #: app/features/mec/meta_boxes/search_form.php:247
2599
+ #: app/features/mec/meta_boxes/search_form.php:254
2600
+ #: app/features/mec/meta_boxes/search_form.php:261
2601
+ #: app/features/mec/meta_boxes/search_form.php:268
2602
+ #: app/features/mec/meta_boxes/search_form.php:275
2603
+ #: app/features/mec/meta_boxes/search_form.php:287
2604
+ #: app/features/mec/meta_boxes/search_form.php:294
2605
+ #: app/features/mec/meta_boxes/search_form.php:301
2606
+ #: app/features/mec/meta_boxes/search_form.php:308
2607
+ #: app/features/mec/meta_boxes/search_form.php:315
2608
+ #: app/features/mec/meta_boxes/search_form.php:327
2609
+ #: app/features/mec/meta_boxes/search_form.php:334
2610
+ #: app/features/mec/meta_boxes/search_form.php:341
2611
+ #: app/features/mec/meta_boxes/search_form.php:348
2612
+ #: app/features/mec/meta_boxes/search_form.php:355
2613
+ #: app/features/mec/meta_boxes/search_form.php:362
2614
+ #: app/features/mec/meta_boxes/search_form.php:374
2615
+ #: app/features/mec/meta_boxes/search_form.php:381
2616
+ #: app/features/mec/meta_boxes/search_form.php:388
2617
+ #: app/features/mec/meta_boxes/search_form.php:395
2618
+ #: app/features/mec/meta_boxes/search_form.php:402
2619
+ #: app/features/mec/meta_boxes/search_form.php:409
2620
+ #: app/features/mec/meta_boxes/search_form.php:421
2621
+ #: app/features/mec/meta_boxes/search_form.php:428
2622
+ #: app/features/mec/meta_boxes/search_form.php:435
2623
+ #: app/features/mec/meta_boxes/search_form.php:442
2624
+ #: app/features/mec/meta_boxes/search_form.php:449
2625
+ #: app/features/mec/meta_boxes/search_form.php:456
2626
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2627
+ #: app/features/mec/settings.php:554
2628
+ msgid "Disabled"
2629
+ msgstr "Disattivato"
2630
+
2631
  #: app/features/mec/meta_boxes/search_form.php:59
2632
  #: app/features/mec/meta_boxes/search_form.php:106
2633
  #: app/features/mec/meta_boxes/search_form.php:153
2863
  msgid "Invoice Link"
2864
  msgstr ""
2865
 
2866
+ #: app/features/mec/notifications.php:140
2867
+ #: app/features/mec/notifications.php:177
2868
+ #: app/features/mec/notifications.php:214
2869
+ #: app/features/mec/notifications.php:255
2870
+ #: app/features/mec/notifications.php:307
2871
+ msgid "Total Attendees"
2872
+ msgstr ""
2873
+
2874
  #: app/features/mec/notifications.php:145
2875
  msgid "Booking Verification"
2876
  msgstr "Verifica prenotazione"
2887
  msgid "Email/Booking verification link."
2888
  msgstr "Link di verifica Email/Prenotazione."
2889
 
2890
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2891
  msgid "Booking Confirmation"
2892
  msgstr "Conferma Prenotazione"
2893
 
2966
  msgid "Status of event"
2967
  msgstr "Stato dell'evento"
2968
 
2969
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
2970
  msgid "Event Note"
2971
  msgstr "Note dell'evento"
2972
 
2974
  msgid "Admin events management link."
2975
  msgstr "Link amministratore gestione eventi."
2976
 
2977
+ #: app/features/mec/settings.php:47
2978
  msgid "Archive Page Options"
2979
  msgstr ""
2980
 
2981
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
2982
  msgid "Export Module Options"
2983
  msgstr "Opzioni modulo Export"
2984
 
2985
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
2986
  msgid "Local Time Module"
2987
  msgstr "Modulo ora locale"
2988
 
2989
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
2990
  msgid "QR Code Module"
2991
  msgstr ""
2992
 
2993
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
2994
  msgid "Weather Module"
2995
  msgstr ""
2996
 
2997
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
2998
  #, fuzzy
2999
  msgid "Additional Organizers"
3000
  msgstr "Tutti gli Organizzatori"
3001
 
3002
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
3003
  msgid "Taxes / Fees"
3004
  msgstr "Tasse"
3005
 
3006
+ #: app/features/mec/settings.php:255
3007
  msgid "Time Format"
3008
  msgstr "Formato ora"
3009
 
3010
+ #: app/features/mec/settings.php:258
3011
  msgid "12 hours format with AM/PM"
3012
  msgstr "12 ore AM/PM"
3013
 
3014
+ #: app/features/mec/settings.php:259
3015
  msgid "24 hours format"
3016
  msgstr "24 ore"
3017
 
3018
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3019
  msgid ""
3020
  "This option is for showing start/end time of events on frontend of website."
3021
  msgstr ""
3022
  "Questa opzione è per mostrare ora di inizio e fine degli eventi sul frontend."
3023
 
3024
+ #: app/features/mec/settings.php:266
3025
  msgid "Hide Events"
3026
  msgstr ""
3027
 
3028
+ #: app/features/mec/settings.php:269
3029
  msgid "On Event Start"
3030
  msgstr ""
3031
 
3032
+ #: app/features/mec/settings.php:270
3033
  msgid "+1 Hour after start"
3034
  msgstr ""
3035
 
3036
+ #: app/features/mec/settings.php:271
3037
  msgid "+2 Hours after start"
3038
  msgstr ""
3039
 
3040
+ #: app/features/mec/settings.php:272
3041
  msgid "On Event End"
3042
  msgstr ""
3043
 
3044
+ #: app/features/mec/settings.php:280
3045
  msgid "Multiple Day Events"
3046
  msgstr "Eventi su più giorni"
3047
 
3048
+ #: app/features/mec/settings.php:283
3049
  msgid "Show only first day on List/Grid/Slider skins"
3050
  msgstr ""
3051
 
3052
+ #: app/features/mec/settings.php:284
3053
  msgid "Show only first day on all skins"
3054
  msgstr "Mostra solo il primo giorno su tutti gli skin"
3055
 
3056
+ #: app/features/mec/settings.php:285
3057
  msgid "Show all days"
3058
  msgstr "Mostra tutti i giorni"
3059
 
3060
+ #: app/features/mec/settings.php:287
3061
  msgid ""
3062
  "For showing all days of multiple day events on frontend or only show the "
3063
  "first day."
3065
  "Per mostrare sul frontend tutti i giorni per eventi su più giorni, o solo il "
3066
  "primo giorno."
3067
 
3068
+ #: app/features/mec/settings.php:293
3069
  msgid "Remove MEC Data on Plugin Uninstall"
3070
  msgstr "Quando si disinstalla il plugin MEC rimuovi tutti i dati"
3071
 
3072
+ #: app/features/mec/settings.php:297
3073
+ msgid "Enabled"
3074
+ msgstr "Abilitato"
3075
+
3076
+ #: app/features/mec/settings.php:303
3077
  msgid "Exclude Date Suffix"
3078
  msgstr "Escludi suffisso data"
3079
 
3080
+ #: app/features/mec/settings.php:306
3081
  msgid "Remove suffix from calendars"
3082
  msgstr "Rimuovi il suffisso dai calendari"
3083
 
3084
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3085
  msgid "Weekdays"
3086
  msgstr "Settimanali"
3087
 
3088
+ #: app/features/mec/settings.php:321
3089
  msgid ""
3090
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3091
  "and Friday."
3093
  "Procedi con cautela. Il valore predefinito è impostato a lunedì, martedì, "
3094
  "mercoledì, giovedì e venerdì."
3095
 
3096
+ #: app/features/mec/settings.php:328
3097
  msgid "Weekends"
3098
  msgstr "Fine settimana"
3099
 
3100
+ #: app/features/mec/settings.php:336
3101
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3102
  msgstr ""
3103
  "Procedi con cautela. Il valore predefinito è impostato su sabato e domenica."
3104
 
3105
+ #: app/features/mec/settings.php:344
3106
  msgid "Archive Pages"
3107
  msgstr ""
3108
 
3109
+ #: app/features/mec/settings.php:347
3110
  msgid "Archive Page Title"
3111
  msgstr "Titolo pagina di archivio"
3112
 
3113
+ #: app/features/mec/settings.php:350
3114
  msgid "Default value is Events"
3115
  msgstr "Il valore predefinito è Eventi"
3116
 
3117
+ #: app/features/mec/settings.php:355
3118
  msgid "Archive Page Skin"
3119
  msgstr "Skin pagina di archivio"
3120
 
3121
+ #: app/features/mec/settings.php:362
3122
  msgid "Default value is Calendar/Monthly View"
3123
  msgstr "Il valore predefinito è Calendario/Visualizzazione mensile"
3124
 
3125
+ #: app/features/mec/settings.php:367
3126
  msgid "Category Page Skin"
3127
  msgstr "Skin pagina categoria"
3128
 
3129
+ #: app/features/mec/settings.php:374
3130
  msgid "Default value is List View"
3131
  msgstr "Il valore predefinito è Visualizzazione Lista"
3132
 
3133
+ #: app/features/mec/settings.php:379
3134
  msgid "Category Events Method"
3135
  msgstr ""
3136
 
3137
+ #: app/features/mec/settings.php:383
3138
  msgid "Expired Events"
3139
  msgstr ""
3140
 
3141
+ #: app/features/mec/settings.php:385
3142
  msgid "Default value is Upcoming Events"
3143
  msgstr ""
3144
 
3145
+ #: app/features/mec/settings.php:390
3146
  msgid "Events Archive Status"
3147
  msgstr "Stato dell'archivio eventi"
3148
 
3149
+ #: app/features/mec/settings.php:393
3150
  msgid "Enabled (Recommended)"
3151
  msgstr "Abilitato (raccomandato)"
3152
 
3153
+ #: app/features/mec/settings.php:396
3154
  msgid ""
3155
  "If you disable it, then you should create a page as archive page of MEC. "
3156
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3160
  "archivio di MEC. La slug di pagina deve essere uguale a \"Slug principale\" "
3161
  "di MEC. Inoltre disattiverà tutte le regole dei ruoli MEC."
3162
 
3163
+ #: app/features/mec/settings.php:406
3164
  msgid "Main Slug"
3165
  msgstr "Slug principale"
3166
 
3167
+ #: app/features/mec/settings.php:409
3168
  msgid ""
3169
  "Default value is events. Valid characters are lowercase a-z, - character and "
3170
  "numbers."
3172
  "Il valore predefinito è eventi. I caratteri validi sono minuscoli a-z, - "
3173
  "caratteri e numeri."
3174
 
3175
+ #: app/features/mec/settings.php:413
3176
  msgid "Category Slug"
3177
  msgstr "Slug categoria"
3178
 
3179
+ #: app/features/mec/settings.php:416
3180
  msgid ""
3181
  "It's slug of MEC categories, you can change it to events-cat or something "
3182
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3186
  "qualcos'altro. Il valore predefinito è mec-category. I caratteri validi sono "
3187
  "minuscoli a-z, - caratteri e numeri."
3188
 
3189
+ #: app/features/mec/settings.php:426
3190
  msgid "Single Event Date Format"
3191
  msgstr "Formato data del singolo evento"
3192
 
3193
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3194
  msgid "Default is M d Y"
3195
  msgstr "Predefinito è M d Y"
3196
 
3197
+ #: app/features/mec/settings.php:433
3198
  msgid "Date Method"
3199
  msgstr "Formato data"
3200
 
3201
+ #: app/features/mec/settings.php:436
3202
  msgid "Next occurrence date"
3203
  msgstr "Data del prossimo avvenimento"
3204
 
3205
+ #: app/features/mec/settings.php:437
3206
  msgid "Referred date"
3207
  msgstr "Data di riferimento"
3208
 
3209
+ #: app/features/mec/settings.php:439
3210
  msgid ""
3211
  "\"Referred date\" shows the event date based on referred date in event list."
3212
  msgstr ""
3213
  "\"Data di riferimento\" mostra la data dell'evento sulla base della data di "
3214
  "riferimento nella lista degli eventi."
3215
 
3216
+ #: app/features/mec/settings.php:443
3217
  msgid "Single Event Style"
3218
  msgstr "Stile singolo evento"
3219
 
3220
+ #: app/features/mec/settings.php:446
3221
  msgid "Default Style"
3222
  msgstr "Stile predefinito"
3223
 
3224
+ #: app/features/mec/settings.php:447
3225
  msgid "Modern Style"
3226
  msgstr "Stile moderno"
3227
 
3228
+ #: app/features/mec/settings.php:449
3229
  msgid "Choose your single event style."
3230
  msgstr "Scegli lo stile del tuo singolo evento."
3231
 
3232
+ #: app/features/mec/settings.php:458
3233
  msgid "Currency"
3234
  msgstr "Valuta"
3235
 
3236
+ #: app/features/mec/settings.php:468
3237
  msgid "Currency Sign"
3238
  msgstr "Segno valuta"
3239
 
3240
+ #: app/features/mec/settings.php:471
3241
  msgid "Default value will be \"currency\" if you leave it empty."
3242
  msgstr "Il valore predefinito sarà \"valuta\" se viene lasciato vuoto."
3243
 
3244
+ #: app/features/mec/settings.php:475
3245
  msgid "Currency Position"
3246
  msgstr "Posizione valuta"
3247
 
3248
+ #: app/features/mec/settings.php:478
3249
  msgid "Before $10"
3250
  msgstr "Prima €10"
3251
 
3252
+ #: app/features/mec/settings.php:479
3253
  msgid "After 10$"
3254
  msgstr "Dopo 10€"
3255
 
3256
+ #: app/features/mec/settings.php:484
3257
  msgid "Thousand Separator"
3258
  msgstr "Separatore migliaia"
3259
 
3260
+ #: app/features/mec/settings.php:490
3261
  msgid "Decimal Separator"
3262
  msgstr "Separatore decimale"
3263
 
3264
+ #: app/features/mec/settings.php:500
3265
  msgid "No decimal"
3266
  msgstr "Senza decimali"
3267
 
3268
+ #: app/features/mec/settings.php:516
3269
  msgid "Show Google Maps on event page"
3270
  msgstr "Mostra Google Map sulla pagina dell'evento"
3271
 
3272
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3273
+ #: app/features/mec/settings.php:1140
3274
  msgid "API Key"
3275
  msgstr "API Key"
3276
 
3277
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3278
+ #: app/features/mec/settings.php:1150
3279
  msgid "Required!"
3280
  msgstr "Richiesto!"
3281
 
3282
+ #: app/features/mec/settings.php:528
3283
  msgid "Zoom level"
3284
  msgstr "Livello zoom"
3285
 
3286
+ #: app/features/mec/settings.php:535
3287
  msgid ""
3288
  "For Google Maps module in single event page. In Google Maps skin, it will "
3289
  "caculate the zoom level automatically based on event boundaries."
3290
  msgstr ""
3291
 
3292
+ #: app/features/mec/settings.php:539
3293
  msgid "Google Maps Style"
3294
  msgstr "Stile Google Map"
3295
 
3296
+ #: app/features/mec/settings.php:543
3297
  msgid "Default"
3298
  msgstr "Predefinito"
3299
 
3300
+ #: app/features/mec/settings.php:551
3301
  msgid "Direction on single event"
3302
  msgstr "Direzione sul singolo evento"
3303
 
3304
+ #: app/features/mec/settings.php:555
3305
  msgid "Simple Method"
3306
  msgstr "Metodo semplice"
3307
 
3308
+ #: app/features/mec/settings.php:556
3309
  msgid "Advanced Method"
3310
  msgstr "Metodo avanzato"
3311
 
3312
+ #: app/features/mec/settings.php:561
3313
  msgid "Lightbox Date Format"
3314
  msgstr "Formato data nel lightbox"
3315
 
3316
+ #: app/features/mec/settings.php:564
3317
  msgid "Default value is M d Y"
3318
  msgstr "Il valore predefinito è M d Y"
3319
 
3320
+ #: app/features/mec/settings.php:568
3321
  msgid "Google Maps API"
3322
  msgstr "Google Map API"
3323
 
3324
+ #: app/features/mec/settings.php:572
3325
  msgid "Don't load Google Maps API library"
3326
  msgstr "Non caricare la libreria API Google Map"
3327
 
3328
+ #: app/features/mec/settings.php:574
3329
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3330
  msgstr "Verifica solo se altro plugin/tema carica API Google Map"
3331
 
3332
+ #: app/features/mec/settings.php:586
3333
  msgid "Enable Google Recaptcha"
3334
  msgstr "Attiva Recaptcha Google"
3335
 
3336
+ #: app/features/mec/settings.php:593
3337
  msgid "Enable on booking form"
3338
  msgstr "Attiva sulla form di prenotazione"
3339
 
3340
+ #: app/features/mec/settings.php:599
3341
  msgid "Enable on \"Frontend Event Submittion\" form"
3342
  msgstr "Attiva sulla form di invio eventi da frontend"
3343
 
3344
+ #: app/features/mec/settings.php:603
3345
  msgid "Site Key"
3346
  msgstr "Site Key"
3347
 
3348
+ #: app/features/mec/settings.php:609
3349
+ msgid "Secret Key"
3350
+ msgstr "Secret Key"
3351
+
3352
+ #: app/features/mec/settings.php:623
3353
  msgid ""
3354
  "Show export module (iCal export and add to Google calendars) on event page"
3355
  msgstr ""
3356
  "Mostra esporta sulla pagina evento (esporta iCal e aggiungi a calendario "
3357
  "Google)"
3358
 
3359
+ #: app/features/mec/settings.php:630
3360
  msgid "Google Calendar"
3361
  msgstr "Calendario Google"
3362
 
3363
+ #: app/features/mec/settings.php:650
3364
  msgid "Show event time based on local time of visitor on event page"
3365
  msgstr ""
3366
  "Mostra l'evento basandoti sull'ora locale del visitatore della pagina evento"
3367
 
3368
+ #: app/features/mec/settings.php:666
3369
  msgid "Show QR code of event in details page and booking invoice"
3370
  msgstr ""
3371
 
3372
+ #: app/features/mec/settings.php:684
3373
  msgid "Show weather module on event page"
3374
  msgstr ""
3375
 
3376
+ #: app/features/mec/settings.php:692
3377
  #, php-format
3378
  msgid "You can get a free API Key from %s"
3379
  msgstr ""
3380
 
3381
+ #: app/features/mec/settings.php:704
3382
  msgid "Show countdown module on event page"
3383
  msgstr "Mostra conto alla rovescia sulla pagina evento"
3384
 
3385
+ #: app/features/mec/settings.php:709
3386
  msgid "Countdown Style"
3387
  msgstr "Stile conto alla rovescia"
3388
 
3389
+ #: app/features/mec/settings.php:712
3390
  msgid "Plain Style"
3391
  msgstr "Stile semplice"
3392
 
3393
+ #: app/features/mec/settings.php:713
3394
  msgid "Flip Style"
3395
  msgstr "Stile capovolgi"
3396
 
3397
+ #: app/features/mec/settings.php:725
3398
  msgid "Show social network module"
3399
  msgstr "Mostra social network"
3400
 
3401
+ #: app/features/mec/settings.php:750
3402
  msgid "Show next event module on event page"
3403
  msgstr "Mostra il prossimo evento sulla pagina evento"
3404
 
3405
+ #: app/features/mec/settings.php:755
3406
  msgid "Method"
3407
  msgstr "Metodo"
3408
 
3409
+ #: app/features/mec/settings.php:758
3410
  msgid "Next Occurrence of Current Event"
3411
  msgstr "Il prossimo avvenimento dell'evento corrente"
3412
 
3413
+ #: app/features/mec/settings.php:759
3414
  msgid "Next Occurrence of Other Events"
3415
  msgstr "Il prossimo evento degli altri eventi"
3416
 
3417
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3418
  msgid "Date Format"
3419
  msgstr "Formato data"
3420
 
3421
+ #: app/features/mec/settings.php:776
3422
  msgid "Events List Page"
3423
  msgstr "Pagina lista eventi"
3424
 
3425
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3426
  #, php-format
3427
  msgid "Put %s shortcode into the page."
3428
  msgstr "Inserisci %s sulla pagina."
3429
 
3430
+ #: app/features/mec/settings.php:788
3431
  msgid "Add/Edit Events Page"
3432
  msgstr "Pagina aggiungi/modifica eventi"
3433
 
3434
+ #: app/features/mec/settings.php:802
3435
  msgid "Enable event submission by guest (Not logged-in) users"
3436
  msgstr "Attiva l'invio di eventi da parte di utenti ospiti (non autenticati)"
3437
 
3438
+ #: app/features/mec/settings.php:809
3439
  msgid "Enable mandatory email and name for guest user"
3440
  msgstr "Abilita l'e-mail e il nome obbligatori per l'utente ospite"
3441
 
3442
+ #: app/features/mec/settings.php:813
3443
  msgid "Frontend Event Submission Sections"
3444
  msgstr "Invio sezioni eventi da frontend"
3445
 
3446
+ #: app/features/mec/settings.php:835
3447
  msgid "Event Categories"
3448
  msgstr "Categorie eventi"
3449
 
3450
+ #: app/features/mec/settings.php:841
3451
  msgid "Event Labels"
3452
  msgstr "Etichette evento"
3453
 
3454
+ #: app/features/mec/settings.php:853
3455
  msgid "Event Tags"
3456
  msgstr "Tag eventi"
3457
 
3458
+ #: app/features/mec/settings.php:865
3459
  msgid "Event Organizer"
3460
  msgstr "Organizzatore evento"
3461
 
3462
+ #: app/features/mec/settings.php:877
3463
  msgid "Booking Options"
3464
  msgstr "Opzioni di prenotazione"
3465
 
3466
+ #: app/features/mec/settings.php:883
3467
  msgid "Fees/Taxes Options"
3468
  msgstr "Opzioni tassa/tasse"
3469
 
3470
+ #: app/features/mec/settings.php:891
3471
  #, php-format
3472
  msgid ""
3473
  "Users can put a note for editors while they're submitting the event. Also "
3478
  "dell'evento. Inoltre è possibile inserire %%event_note%% nella nuova "
3479
  "notifica degli eventi per ottenere la nota dell'utente nell'e-mail."
3480
 
3481
+ #: app/features/mec/settings.php:895
3482
  msgid "Visibility of Note"
3483
  msgstr "Visibilità della nota"
3484
 
3485
+ #: app/features/mec/settings.php:898
3486
  msgid "Always"
3487
  msgstr "Sempre"
3488
 
3489
+ #: app/features/mec/settings.php:899
3490
  msgid "While event is not published"
3491
  msgstr "Mentre l'evento non è pubblicato"
3492
 
3493
+ #: app/features/mec/settings.php:902
3494
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3495
  msgstr ""
3496
  "La nota evento mostra sul modulo di invio di Frontend e Modifica evento nel "
3497
  "backend."
3498
 
3499
+ #: app/features/mec/settings.php:908
3500
  msgid "Exceptional days"
3501
  msgstr "Giorni eccezionali"
3502
 
3503
+ #: app/features/mec/settings.php:912
3504
  msgid "Show exceptional days option on Add/Edit events page"
3505
  msgstr ""
3506
  "Mostra opzione giorni eccezionali nella pagina Aggiungi / Modifica eventi"
3507
 
3508
+ #: app/features/mec/settings.php:913
3509
  msgid ""
3510
  "Using this option you can include/exclude certain days to/from event "
3511
  "occurrence dates."
3513
  "Usa questa opzione se vuoi includere/escludere certi giorni a/da date "
3514
  "dell'evento."
3515
 
3516
+ #: app/features/mec/settings.php:923
3517
  #, fuzzy
3518
  msgid ""
3519
  "Show additional organizers option on Add/Edit events page and single event "
3521
  msgstr ""
3522
  "Mostra opzione giorni eccezionali nella pagina Aggiungi / Modifica eventi"
3523
 
3524
+ #: app/features/mec/settings.php:937
3525
  msgid "Enable booking module"
3526
  msgstr "Attiva modulo prenotazione"
3527
 
3528
+ #: app/features/mec/settings.php:945
3529
  msgid "Default is Y-m-d"
3530
  msgstr "Di default è Y-m-d"
3531
 
3532
+ #: app/features/mec/settings.php:949
3533
  msgid "Maximum Dates"
3534
  msgstr "Date massime"
3535
 
3536
+ #: app/features/mec/settings.php:951
3537
  msgid "Default is 6"
3538
  msgstr "Di default è 6"
3539
 
3540
+ #: app/features/mec/settings.php:955
3541
  msgid "Thank You Page"
3542
  msgstr "Pagina dei ringraziamenti"
3543
 
3544
+ #: app/features/mec/settings.php:963
3545
  msgid ""
3546
  "User redirects to this page after booking. Leave it empty if you want to "
3547
  "disable it."
3549
  "Usa ridirezione a questa pagina dopo la prenotazione. Lascialo vuoto se vuoi "
3550
  "disabilitarlo."
3551
 
3552
+ #: app/features/mec/settings.php:971
3553
  msgid "Enable Express Attendees Form"
3554
  msgstr ""
3555
 
3556
+ #: app/features/mec/settings.php:973
3557
  msgid ""
3558
  "Users are able to apply first attendee information for other attendees in "
3559
  "the booking form."
3560
  msgstr ""
3561
 
3562
+ #: app/features/mec/settings.php:976
3563
  msgid "Email verification"
3564
  msgstr "Verifica email"
3565
 
3566
+ #: app/features/mec/settings.php:982
3567
  msgid "Auto verification for free bookings"
3568
  msgstr "Verifica automatica per prenotazioni gratuite"
3569
 
3570
+ #: app/features/mec/settings.php:991
3571
  msgid "Auto verification for paid bookings"
3572
  msgstr "Verifica automatica per prenotazioni a pagamento"
3573
 
3574
+ #: app/features/mec/settings.php:1001
3575
  msgid "Auto confirmation for free bookings"
3576
  msgstr "Conferma automatica per prenotazioni gratuite"
3577
 
3578
+ #: app/features/mec/settings.php:1010
3579
  msgid "Auto confirmation for paid bookings"
3580
  msgstr "Conferma automatica per prenotazioni a pagamento"
3581
 
3582
+ #: app/features/mec/settings.php:1027
3583
  msgid "Enable coupons module"
3584
  msgstr "Attiva modulo coupon"
3585
 
3586
+ #: app/features/mec/settings.php:1044
3587
  msgid "Enable taxes / fees module"
3588
  msgstr "Attiva modulo tasse"
3589
 
3590
+ #: app/features/mec/settings.php:1049
3591
  msgid "Add Fee"
3592
  msgstr "Aggiungi Tassa"
3593
 
3594
+ #: app/features/mec/settings.php:1105
3595
  msgid "Enable BuddyPress Integration"
3596
  msgstr "Abilita l'integrazione con BuddyPress"
3597
 
3598
+ #: app/features/mec/settings.php:1112
3599
  msgid "Show \"Attendees Module\" in event details page"
3600
  msgstr "Mostra \"Modulo partecipanti\" nella pagina dettagli degli eventi"
3601
 
3602
+ #: app/features/mec/settings.php:1116
3603
  msgid "Attendees Limit"
3604
  msgstr "Limite partecipanti"
3605
 
3606
+ #: app/features/mec/settings.php:1124
3607
  msgid "Add booking activity to user profile"
3608
  msgstr "Aggiungi attività di prenotazione al profilo utente"
3609
 
3610
+ #: app/features/mec/settings.php:1135
3611
  msgid "Enable Mailchimp Integration"
3612
  msgstr "Abilita integrazione con Mailchimp"
3613
 
3614
+ #: app/features/mec/settings.php:1147
3615
  msgid "List ID"
3616
  msgstr "Lista ID"
3617
 
3618
+ #: app/features/mec/settings.php:1154
3619
  msgid "Subscription Status"
3620
  msgstr "Stato iscrizione"
3621
 
3622
+ #: app/features/mec/settings.php:1157
3623
  msgid "Subscribe automatically"
3624
  msgstr "Iscriviti automaticamente"
3625
 
3626
+ #: app/features/mec/settings.php:1158
3627
  msgid "Subscribe by verification"
3628
  msgstr "Iscriviti con verifica"
3629
 
3630
+ #: app/features/mec/settings.php:1160
3631
  msgid ""
3632
  "If you choose \"Subscribe by verification\" then an email will send to user "
3633
  "by mailchimp for subscription verification."
3635
  "Se hai selezionato \"Iscriviti con verifica\" allora una email verrà "
3636
  "spediita all'utente da Mailchimp per verificare l'iscrizione."
3637
 
3638
+ #: app/features/mec/settings.php:1170
3639
  #, php-format
3640
  msgid "%s is required to use this section."
3641
  msgstr ""
3642
 
3643
+ #: app/features/mec/settings.php:1173
3644
  msgid "Purchase Code"
3645
  msgstr "Purchase Code"
3646
 
3647
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3648
+ #: app/features/mec/settings.php:1262
3649
+ msgid "Verified"
3650
+ msgstr "Verificato"
3651
+
3652
+ #: app/features/mec/settings.php:1180
3653
  msgid "UnVerified"
3654
  msgstr "Non verificato"
3655
 
3656
+ #: app/features/mec/settings.php:1182
3657
  msgid ""
3658
  "Please insert your purchase code validation. read documentation for more "
3659
  "information."
3661
  "Si prega di inserire il codice di acquisto. Leggere la documentazione per "
3662
  "maggiori informazioni."
3663
 
3664
+ #: app/features/mec/settings.php:1185
3665
  msgid "Product Name"
3666
  msgstr ""
3667
 
3668
+ #: app/features/mec/settings.php:1188
3669
  msgid "1 License for MEC Plugin"
3670
  msgstr ""
3671
 
3672
+ #: app/features/mec/settings.php:1189
3673
  msgid "5 License for MEC Plugin"
3674
  msgstr ""
3675
 
3676
+ #: app/features/mec/settings.php:1190
3677
  msgid "10 License for MEC Plugin"
3678
  msgstr ""
3679
 
3680
+ #: app/features/mec/settings.php:1197
3681
  msgid "MEC Deactivation"
3682
  msgstr "Disattivazione MEC"
3683
 
3684
+ #: app/features/mec/settings.php:1199
3685
  msgid "Deactivate"
3686
  msgstr "Disattivare"
3687
 
3688
+ #: app/features/mec/settings.php:1201
3689
  msgid ""
3690
  "For deactivation first delete your purchase from above field then press save "
3691
  "after that click on deactivate for deactivate this purchase code from this "
3696
  "per disattivare questo codice di acquisto da questo dominio, quindi è "
3697
  "possibile attivare un altro dominio."
3698
 
3699
+ #: app/features/mec/settings.php:1264
3700
  msgid "Please Refresh Page"
3701
  msgstr "Si prega di ricaricare la pagina"
3702
 
3853
  msgid "eg. https://webnus.net"
3854
  msgstr "es. https://webnus.net"
3855
 
3856
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3857
  #: app/skins/single.php:194
3858
  msgid "Other Organizers"
3859
  msgstr ""
3868
  msgid "%s Price"
3869
  msgstr ""
3870
 
3871
+ #: app/libraries/book.php:516
3872
+ msgid "Discount"
3873
+ msgstr "Sconto"
3874
+
3875
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3876
+ #: app/modules/booking/default.php:369
3877
+ msgid "Download Invoice"
3878
+ msgstr ""
3879
+
3880
  #: app/libraries/factory.php:148
3881
  msgid "M.E. Calendar"
3882
  msgstr "Calendario"
3948
  msgid "There is no excerpt because this is a protected post."
3949
  msgstr "Il riassunto non è disponibile perché l'articolo è protetto."
3950
 
3951
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
3952
  msgid "Grid View"
3953
  msgstr "Visualizzazione Griglia"
3954
 
3955
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
3956
  msgid "Agenda View"
3957
  msgstr ""
3958
 
3959
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
3960
  msgid "Full Calendar"
3961
  msgstr "Calendario completo"
3962
 
3963
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
3964
  msgid "Calendar/Monthly View"
3965
  msgstr "Calendario/Visualizzazione mensile"
3966
 
3967
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
3968
  msgid "Timetable View"
3969
  msgstr ""
3970
 
3971
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
3972
  msgid "Masonry View"
3973
  msgstr ""
3974
 
3975
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
3976
  msgid "Map View"
3977
  msgstr "Visualizzazione mappa"
3978
 
3996
  msgid "Slider View"
3997
  msgstr "Visualizza slider"
3998
 
3999
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
4000
  msgid "SU"
4001
  msgstr "D"
4002
 
4003
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
4004
  msgid "MO"
4005
  msgstr "L"
4006
 
4007
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
4008
  msgid "TU"
4009
  msgstr "M"
4010
 
4011
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
4012
  msgid "WE"
4013
  msgstr "M"
4014
 
4015
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
4016
  msgid "TH"
4017
  msgstr "G"
4018
 
4019
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
4020
  msgid "FR"
4021
  msgstr "V"
4022
 
4023
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
4024
  msgid "SA"
4025
  msgstr "S"
4026
 
4044
  msgid "Twitter"
4045
  msgstr "Twitter"
4046
 
4047
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
4048
  msgid "Linkedin"
4049
  msgstr "Linkedin"
4050
 
4051
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
4052
+ msgid "VK"
4053
+ msgstr ""
4054
+
4055
+ #: app/libraries/main.php:1053
4056
  msgid "Share on Facebook"
4057
  msgstr "Condividi su Facebook"
4058
 
4059
+ #: app/libraries/main.php:1065
4060
  msgid "Google Plus"
4061
  msgstr "Google Plus"
4062
 
4063
+ #: app/libraries/main.php:1077
4064
  msgid "Tweet"
4065
  msgstr "Tweet"
4066
 
4067
+ #: app/libraries/main.php:1471
4068
  msgid "Your booking successfully verified."
4069
  msgstr "La tua prenotazione è stata verificata correttamente."
4070
 
4071
+ #: app/libraries/main.php:1472
4072
  msgid "Your booking cannot verify!"
4073
  msgstr "La tua prenotazione non può essere verificata!"
4074
 
4075
+ #: app/libraries/main.php:1484
4076
  msgid "Your booking successfully canceled."
4077
  msgstr "La tua prenotazione è stata cancellata correttamente."
4078
 
4079
+ #: app/libraries/main.php:1485
4080
  msgid "Your booking cannot be canceled."
4081
  msgstr "La tua prenotazione non può essere cancellata."
4082
 
4083
+ #: app/libraries/main.php:1489
4084
  msgid "You canceled the payment successfully."
4085
  msgstr "Hai annullato correttamente il pagamento."
4086
 
4087
+ #: app/libraries/main.php:1493
4088
  msgid "You returned from payment gateway successfully."
4089
  msgstr "Procedura di pagamento avvenuta correttamente."
4090
 
4091
+ #: app/libraries/main.php:1517
4092
  msgid "Cannot find the booking!"
4093
  msgstr ""
4094
 
4095
+ #: app/libraries/main.php:1517
4096
  msgid "Booking is invalid."
4097
  msgstr ""
4098
 
4099
+ #: app/libraries/main.php:1538
4100
  #, php-format
4101
  msgid "%s Invoice"
4102
  msgstr ""
4103
 
4104
+ #: app/libraries/main.php:1559
4105
+ msgid "Transaction ID"
4106
+ msgstr "ID Transazione"
4107
+
4108
+ #: app/libraries/main.php:1568
4109
+ msgid "Attendees"
4110
+ msgstr ""
4111
+
4112
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4113
+ msgid "Ticket"
4114
+ msgstr "Ticket"
4115
+
4116
+ #: app/libraries/main.php:1590
4117
  msgid "Billing"
4118
  msgstr ""
4119
 
4120
+ #: app/libraries/main.php:1601
4121
  msgid "Total"
4122
  msgstr ""
4123
 
4124
+ #: app/libraries/main.php:1634
4125
  msgid "Security nonce is not valid."
4126
  msgstr "Token di sicurezza non valido."
4127
 
4128
+ #: app/libraries/main.php:1634
4129
  msgid "iCal export stopped!"
4130
  msgstr "esportazione iCal annullata!"
4131
 
4132
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4133
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4134
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4135
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4136
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4137
  msgid "Sort"
4138
  msgstr "Ordina"
4139
 
4140
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4141
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4142
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4143
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4144
  msgid "Required Field"
4145
  msgstr "Campo obbligatorio"
4146
 
4147
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4148
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4149
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4150
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4151
  msgid "Insert a label for this field"
4152
  msgstr "Inserisci una etichetta per questo campo"
4153
 
4154
+ #: app/libraries/main.php:1977
4155
  msgid "HTML and shortcode are allowed."
4156
  msgstr "HTML e shortcode sono ammessi."
4157
 
4158
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4159
+ #: app/libraries/main.php:2108
4160
  msgid "Option"
4161
  msgstr "Opzione"
4162
 
4163
+ #: app/libraries/main.php:2142
4164
  #, php-format
4165
  msgid "Instead of %s, the page title with a link will be show."
4166
  msgstr ""
4167
 
4168
+ #: app/libraries/main.php:2144
4169
  msgid "Agreement Page"
4170
  msgstr ""
4171
 
4172
+ #: app/libraries/main.php:2153
4173
  msgid "Status"
4174
  msgstr ""
4175
 
4176
+ #: app/libraries/main.php:2155
4177
  msgid "Checked by default"
4178
  msgstr ""
4179
 
4180
+ #: app/libraries/main.php:2156
4181
  msgid "Unchecked by default"
4182
  msgstr ""
4183
 
4184
+ #: app/libraries/main.php:2178
4185
  msgid "Insert a label for this option"
4186
  msgstr "Inserisci una etichetta per questa opzione"
4187
 
4188
+ #: app/libraries/main.php:2193
4189
+ msgid "Free"
4190
+ msgstr "Gratuito"
4191
+
4192
+ #: app/libraries/main.php:2845
4193
  #, php-format
4194
  msgid "Copy of %s"
4195
  msgstr "Copia di %s"
4196
 
4197
+ #: app/libraries/main.php:3482
4198
  msgid "Booked an event."
4199
  msgstr "Prenotato un evento."
4200
 
4201
+ #: app/libraries/main.php:3523
4202
  #, php-format
4203
  msgid "%s booked %s event."
4204
  msgstr "%s ha prenotato l'evento %s."
4205
 
4206
+ #: app/libraries/main.php:3965
4207
  msgid "Taxonomies"
4208
  msgstr ""
4209
 
4210
+ #: app/libraries/main.php:3967
4211
  msgid "Category Plural Label"
4212
  msgstr ""
4213
 
4214
+ #: app/libraries/main.php:3968
4215
  msgid "Category Singular Label"
4216
  msgstr ""
4217
 
4218
+ #: app/libraries/main.php:3969
4219
  msgid "Label Plural Label"
4220
  msgstr ""
4221
 
4222
+ #: app/libraries/main.php:3970
4223
  msgid "Label Singular Label"
4224
  msgstr ""
4225
 
4226
+ #: app/libraries/main.php:3970
4227
  msgid "label"
4228
  msgstr ""
4229
 
4230
+ #: app/libraries/main.php:3971
4231
  msgid "Location Plural Label"
4232
  msgstr ""
4233
 
4234
+ #: app/libraries/main.php:3972
4235
  msgid "Location Singular Label"
4236
  msgstr ""
4237
 
4238
+ #: app/libraries/main.php:3973
4239
  msgid "Organizer Plural Label"
4240
  msgstr ""
4241
 
4242
+ #: app/libraries/main.php:3974
4243
  msgid "Organizer Singular Label"
4244
  msgstr ""
4245
 
4246
+ #: app/libraries/main.php:3980
4247
  msgid "Sunday abbreviation"
4248
  msgstr ""
4249
 
4250
+ #: app/libraries/main.php:3981
4251
  msgid "Monday abbreviation"
4252
  msgstr ""
4253
 
4254
+ #: app/libraries/main.php:3982
4255
  msgid "Tuesday abbreviation"
4256
  msgstr ""
4257
 
4258
+ #: app/libraries/main.php:3983
4259
  msgid "Wednesday abbreviation"
4260
  msgstr ""
4261
 
4262
+ #: app/libraries/main.php:3984
4263
  msgid "Thursday abbreviation"
4264
  msgstr ""
4265
 
4266
+ #: app/libraries/main.php:3985
4267
  msgid "Friday abbreviation"
4268
  msgstr ""
4269
 
4270
+ #: app/libraries/main.php:3986
4271
  msgid "Saturday abbreviation"
4272
  msgstr ""
4273
 
4274
+ #: app/libraries/main.php:3990
4275
  msgid "Others"
4276
  msgstr ""
4277
 
4278
+ #: app/libraries/main.php:3992
4279
  msgid "Booking Success Message"
4280
  msgstr ""
4281
 
4282
+ #: app/libraries/main.php:3992
4283
+ msgid ""
4284
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4285
+ "needed, please check your email."
4286
+ msgstr ""
4287
+ "Grazie per la vostra prenotazione. I ticket sono stati prenotati, potrebbe "
4288
+ "essere necessario la verifica della prenotazione, si prega di controllare la "
4289
+ "posta elettronica."
4290
+
4291
+ #: app/libraries/main.php:3993
4292
  msgid "Register Button"
4293
  msgstr ""
4294
 
4295
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4296
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4297
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4298
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4306
  msgid "REGISTER"
4307
  msgstr "REGISTRA"
4308
 
4309
+ #: app/libraries/main.php:3994
4310
  msgid "View Detail Button"
4311
  msgstr ""
4312
 
4313
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4314
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4315
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4316
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4321
  msgid "View Detail"
4322
  msgstr "Visualizza dettaglio"
4323
 
4324
+ #: app/libraries/main.php:3995
4325
  msgid "Event Detail Button"
4326
  msgstr ""
4327
 
4328
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4329
  msgid "Event Detail"
4330
  msgstr "Dettaglio evento"
4331
 
4332
+ #: app/libraries/main.php:3997
4333
  msgid "More Info Link"
4334
  msgstr ""
4335
 
4336
+ #: app/libraries/main.php:4000
4337
  msgid "Ticket (Singular)"
4338
  msgstr ""
4339
 
4340
+ #: app/libraries/main.php:4001
4341
  msgid "Tickets (Plural)"
4342
  msgstr ""
4343
 
4344
+ #: app/libraries/main.php:4067
4345
  msgid "EventON"
4346
  msgstr ""
4347
 
4348
+ #: app/libraries/main.php:4068
4349
  msgid "The Events Calendar"
4350
  msgstr ""
4351
 
4352
+ #: app/libraries/main.php:4069
4353
  msgid "Events Schedule WP Plugin"
4354
  msgstr ""
4355
 
4356
+ #: app/libraries/main.php:4070
4357
  msgid "Calendarize It"
4358
  msgstr ""
4359
 
4377
  msgid "A new event is added."
4378
  msgstr "Un nuovo evento è stato aggiunto."
4379
 
4380
+ #: app/libraries/notifications.php:516
4381
+ msgid "Yes"
4382
+ msgstr ""
4383
+
4384
+ #: app/libraries/notifications.php:516
4385
+ msgid "No"
4386
+ msgstr ""
4387
+
4388
  #: app/libraries/render.php:337
4389
  msgid "Skin controller does not exist."
4390
  msgstr "Non esiste il controllo dello stile."
4413
  msgid "%s tickets"
4414
  msgstr "%s biglietti"
4415
 
4416
+ #: app/modules/booking/steps/checkout.php:16
4417
+ msgid "Checkout"
4418
+ msgstr "Checkout"
4419
+
4420
  #: app/modules/booking/steps/checkout.php:33
4421
  msgid "Discount Coupon"
4422
  msgstr "Sconto Coupon"
4443
  msgid "Next"
4444
  msgstr "Avanti"
4445
 
4446
+ #: app/modules/booking/steps/message.php:7
4447
+ msgid "Thanks for your booking."
4448
+ msgstr "Grazie per aver prenotato."
4449
+
4450
  #: app/modules/booking/steps/tickets.php:18
4451
  msgid "Book Event"
4452
  msgstr "Evento prenotazione"
4737
  msgid "QR Code : "
4738
  msgstr ""
4739
 
4740
+ #. Plugin Name of the plugin/theme
4741
+ #, fuzzy
4742
+ #| msgid "Modern Events Calendar"
4743
+ msgid "Modern Events Calendar Lite"
4744
+ msgstr "Calendario moderno degli eventi"
4745
+
4746
  #. Plugin URI of the plugin/theme
4747
  msgid "http://webnus.net/plugins/modern-events-calendar/"
4748
  msgstr ""
4759
  msgid "http://webnus.net"
4760
  msgstr ""
4761
 
4762
+ #~ msgid "Auto Facebook import is disabled!"
4763
+ #~ msgstr "L'importazione automatica da Facebook è disabilitata!"
4764
+
4765
+ #~ msgid "%s facebook events imported/updated."
4766
+ #~ msgstr "%s eventi facebook importati/aggiornati."
4767
+
4768
+ #~ msgid "Auto Google Calendar import is disabled!"
4769
+ #~ msgstr "L'importazione automatica dal calendario di Google è disabilitata!"
4770
+
4771
+ #~ msgid "%s google events imported/updated."
4772
+ #~ msgstr "%s eventi di Google importati/aggiornati."
4773
+
4774
+ #~ msgid "Add Booking"
4775
+ #~ msgstr "Aggiungi Prenotazione"
4776
+
4777
+ #~ msgid "No bookings found!"
4778
+ #~ msgstr "Nessuna prenotazione trovata!"
4779
+
4780
+ #~ msgid "Edit Bookings"
4781
+ #~ msgstr "Modifica Prenotazione"
4782
+
4783
+ #~ msgid "No bookings found in Trash!"
4784
+ #~ msgstr "Nessuna prenotazione trovata nel cestino!"
4785
+
4786
+ #~ msgid "Book Details"
4787
+ #~ msgstr "Dettaglio Prenotazione"
4788
+
4789
+ #~ msgid "Confirmation"
4790
+ #~ msgstr "Conferma"
4791
+
4792
+ #~ msgid "Pending"
4793
+ #~ msgstr "In attesa"
4794
+
4795
+ #~ msgid "Confirmed"
4796
+ #~ msgstr "Confermato"
4797
+
4798
+ #~ msgid "Rejected"
4799
+ #~ msgstr "Rifiutato"
4800
+
4801
+ #~ msgid "Verification"
4802
+ #~ msgstr "Verifica"
4803
+
4804
+ #~ msgid "Waiting"
4805
+ #~ msgstr "In attesa"
4806
+
4807
+ #~ msgid "Canceled"
4808
+ #~ msgstr "Cancellato"
4809
+
4810
+ #~ msgid "Payment"
4811
+ #~ msgstr "Pagamento"
4812
+
4813
+ #~ msgid "Gateway"
4814
+ #~ msgstr "Gateway"
4815
+
4816
+ #~ msgid "Unknown"
4817
+ #~ msgstr "Sconosciuto"
4818
+
4819
+ #~ msgid "%s to %s"
4820
+ #~ msgstr "%s al %s"
4821
+
4822
+ #~ msgid "Book Date"
4823
+ #~ msgstr "Data Prenotazione"
4824
+
4825
+ #~ msgid "Confirm"
4826
+ #~ msgstr "Conferma"
4827
+
4828
+ #~ msgid "Reject"
4829
+ #~ msgstr "Rifiuta"
4830
+
4831
+ #~ msgid "Security nonce is missing."
4832
+ #~ msgstr "Token di sicurezzamancante."
4833
+
4834
+ #~ msgid "Security nonce is invalid."
4835
+ #~ msgstr "Token di sicurezza non valido."
4836
+
4837
+ #~ msgid "Invalid request."
4838
+ #~ msgstr "Richiesta non valida."
4839
+
4840
+ #~ msgid "Please select some tickets!"
4841
+ #~ msgstr "Si prega di selezionare ticket!"
4842
+
4843
+ #~ msgid "Captcha is invalid. Please try again."
4844
+ #~ msgstr "Captcha non valido. Riprovare."
4845
+
4846
+ #~ msgid "Coupon"
4847
+ #~ msgstr "Coupon"
4848
+
4849
+ #~ msgid "All Coupons"
4850
+ #~ msgstr "Tutti i Coupon"
4851
+
4852
+ #~ msgid "Edit Coupon"
4853
+ #~ msgstr "Modifica Coupon"
4854
+
4855
+ #~ msgid "View Coupon"
4856
+ #~ msgstr "Visualizza Coupon"
4857
+
4858
+ #~ msgid "Update Coupon"
4859
+ #~ msgstr "Aggiorna Coupon"
4860
+
4861
+ #~ msgid "Add New Coupon"
4862
+ #~ msgstr "Aggiungi nuovo Coupon"
4863
+
4864
+ #~ msgid "New Coupon Name"
4865
+ #~ msgstr "Nuovo nome di coupon"
4866
+
4867
+ #~ msgid "Popular Coupons"
4868
+ #~ msgstr "Coupon frequenti"
4869
+
4870
+ #~ msgid "Search Coupons"
4871
+ #~ msgstr "Ricerca Coupon"
4872
+
4873
+ #~ msgid "Discount Type"
4874
+ #~ msgstr "Tipo di sconto"
4875
+
4876
+ #~ msgid ""
4877
+ #~ "Discount percent, considered as amount if you set the discount type to "
4878
+ #~ "amount"
4879
+ #~ msgstr ""
4880
+ #~ "Percentuale di sconto, considerata come totale se è impostato il tipo di "
4881
+ #~ "sconto a totale"
4882
+
4883
+ #~ msgid "Usage Limit"
4884
+ #~ msgstr "Limiti di utilizzo"
4885
+
4886
+ #~ msgid "Insert -1 for unlimited usage"
4887
+ #~ msgstr "Inserire -1 per utilizzo illimitato"
4888
+
4889
+ #~ msgid "Expiration Date"
4890
+ #~ msgstr "Data di scadenza"
4891
+
4892
+ #~ msgid "Name/Code"
4893
+ #~ msgstr "Nome/Codice"
4894
+
4895
+ #~ msgid "Discount coupon is invalid!"
4896
+ #~ msgstr "Il coupon sconto non è valido!"
4897
+
4898
+ #~ msgid "Discount coupon usage limit reached!"
4899
+ #~ msgstr "E' stato raggiunto il limite di utilizzo di coupon sconto!"
4900
+
4901
+ #~ msgid "Coupon is valid and you get %s discount."
4902
+ #~ msgstr "Il coupon è valido per uno sconto di %s."
4903
+
4904
+ #~ msgid "Request is invalid!"
4905
+ #~ msgstr "Richiesta non valida!"
4906
+
4907
+ #~ msgid "Stripe"
4908
+ #~ msgstr "Banda"
4909
+
4910
+ #~ msgid "There is no attendee for booking!"
4911
+ #~ msgstr "Non ci sono partecipanti per la prenotazione!"
4912
+
4913
+ #~ msgid "MEC Transaction ID: %s"
4914
+ #~ msgstr "ID Transazione MEC: %s"
4915
+
4916
+ #~ msgid "Card Number"
4917
+ #~ msgstr "Carta numero"
4918
+
4919
+ #~ msgid "CVC"
4920
+ #~ msgstr "CVC"
4921
+
4922
+ #~ msgid "Expiration (MM/YYYY)"
4923
+ #~ msgstr "Scadenza (MM/AAAA)"
4924
+
4925
+ #~ msgid "Month"
4926
+ #~ msgstr "Mese"
4927
+
4928
+ #~ msgid "Year"
4929
+ #~ msgstr "Anno"
4930
+
4931
+ #~ msgid "Pay"
4932
+ #~ msgstr "Paga"
4933
+
4934
+ #~ msgid "Comment"
4935
+ #~ msgstr "Commento"
4936
+
4937
+ #~ msgid "HTML allowed."
4938
+ #~ msgstr "HTML consentito."
4939
+
4940
+ #~ msgid "Publishable Key"
4941
+ #~ msgstr "Chiave pubblicabile"
4942
+
4943
+ #~ msgid "Pay Locally"
4944
+ #~ msgstr "Paga sul posto"
4945
+
4946
+ #~ msgid "PayPal Express"
4947
+ #~ msgstr "PayPal Express"
4948
+
4949
+ #~ msgid "Business Account"
4950
+ #~ msgstr "Account Business"
4951
+
4952
+ #~ msgid "Normally PayPal Email."
4953
+ #~ msgstr "Normalmente Email PayPal."
4954
+
4955
+ #~ msgid "Mode"
4956
+ #~ msgstr "Modalità"
4957
+
4958
+ #~ msgid "Live"
4959
+ #~ msgstr "Live"
4960
+
4961
+ #~ msgid "Sandbox"
4962
+ #~ msgstr "Sandbox"
4963
+
4964
+ #~ msgid "Waiting for getting response from gateway."
4965
+ #~ msgstr "In attesa di risposta dal gateway."
4966
+
4967
+ #~ msgid "Payment was invalid! Booking failed."
4968
+ #~ msgstr "Pagamento non valido! Prenotazione non salvata."
4969
+
4970
+ #~ msgid "PayPal Credit Card"
4971
+ #~ msgstr "Carta di credito PayPal"
4972
+
4973
+ #~ msgid "API Username"
4974
+ #~ msgstr "Username API"
4975
+
4976
+ #~ msgid "API Password"
4977
+ #~ msgstr "Password API"
4978
+
4979
+ #~ msgid "API Signature"
4980
+ #~ msgstr "Firma API"
4981
+
4982
+ #~ msgid "First name"
4983
+ #~ msgstr "Nome"
4984
+
4985
+ #~ msgid "Last name"
4986
+ #~ msgstr "Cognome"
4987
+
4988
+ #~ msgid "Card Type"
4989
+ #~ msgstr "Tipo di carta"
4990
+
4991
+ #~ msgid "Visa"
4992
+ #~ msgstr "Visa"
4993
+
4994
+ #~ msgid "MasterCard"
4995
+ #~ msgstr "MasterCard"
4996
+
4997
+ #~ msgid "Discover"
4998
+ #~ msgstr "Discover"
4999
+
5000
+ #~ msgid "American Express"
5001
+ #~ msgstr "American Express"
5002
+
5003
+ #~ msgid "CC Number"
5004
+ #~ msgstr "Numero CC"
5005
+
5006
+ #~ msgid "CVV2"
5007
+ #~ msgstr "CVV2"
5008
+
5009
+ #~ msgid "Payment is invalid."
5010
+ #~ msgstr "Pagamento non valido."
5011
+
5012
+ #~ msgid "Pay by WooCommerce"
5013
+ #~ msgstr "Pagamento da WooCommerce"
5014
+
5015
+ #~ msgid "Booking fee for %s"
5016
+ #~ msgstr "Tassa di prenotazione per %s"
5017
+
5018
+ #~ msgid "Your order is created. Please proceed with checkout."
5019
+ #~ msgstr ""
5020
+ #~ "Il tuo ordine è stato creato, si prega di procedere con il checkout."
5021
+
5022
+ #~ msgid "WooCommerce must be installed and activated first."
5023
+ #~ msgstr "Prima installare e attivare WooCommerce."
5024
+
5025
+ #~ msgid "Automatically complete WC orders"
5026
+ #~ msgstr "Completa automaticamente gli ordini WooCommerce"
5027
+
5028
+ #~ msgid "It applies only to the orders that are related to MEC."
5029
+ #~ msgstr "È applicato solo agli ordini legati alla MEC."
5030
+
5031
  #~ msgid "Attendee"
5032
  #~ msgstr "Partecipante"
5033
 
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: 2018-07-24 11:59+0430\n"
5
- "PO-Revision-Date: 2018-08-21 16:25+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -20,7 +20,6 @@ msgstr ""
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
23
- #. Plugin Name of the plugin/theme
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
25
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
26
  #: app/widgets/MEC.php:23
@@ -31,8 +30,8 @@ msgstr "Modern Events Calendar"
31
  msgid "Content"
32
  msgstr "Inhoud"
33
 
34
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
35
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
36
  msgid "Shortcode"
37
  msgstr "Shortcode"
38
 
@@ -40,365 +39,29 @@ msgstr "Shortcode"
40
  msgid "Select from predefined shortcodes"
41
  msgstr "Selecteer uit voorgedefinieerde schortcodes"
42
 
43
- #: app/crons/booking-reminder.php:33
44
- msgid "Booking reminder notification is not enabled!"
45
- msgstr ""
46
-
47
- #: app/crons/booking-reminder.php:43
48
- msgid "Booking module is not enabled!"
49
- msgstr ""
50
-
51
- #: app/crons/booking-reminder.php:52
52
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
53
- msgstr ""
54
-
55
- #: app/crons/booking-reminder.php:104
56
- #, php-format
57
- msgid "%s reminders sent."
58
- msgstr ""
59
-
60
- #: app/crons/f-import.php:32
61
- msgid "Auto Facebook import is disabled!"
62
- msgstr ""
63
-
64
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
65
- msgid "Please insert your facebook page's link."
66
- msgstr ""
67
-
68
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
69
- msgid ""
70
- "We couldn't recognize your Facebook page. Please check it and provide us a "
71
- "valid facebook page link."
72
- msgstr ""
73
-
74
- #: app/crons/f-import.php:198
75
- #, php-format
76
- msgid "%s facebook events imported/updated."
77
- msgstr ""
78
-
79
- #: app/crons/g-export.php:37 app/features/ix.php:2527
80
- msgid "All of Client App, Client Secret and Calendar ID are required!"
81
- msgstr ""
82
-
83
- #: app/crons/g-export.php:234 app/features/ix.php:2722
84
- #, php-format
85
- msgid "%s events added to Google Calendar successfully."
86
- msgstr ""
87
-
88
- #: app/crons/g-export.php:235 app/features/ix.php:2723
89
- #, php-format
90
- msgid "%s previously added events get updated."
91
- msgstr ""
92
-
93
- #: app/crons/g-export.php:236 app/features/ix.php:2724
94
- #, php-format
95
- msgid "%s events failed to add for following reasons: %s"
96
- msgstr ""
97
-
98
- #: app/crons/g-import.php:32
99
- msgid "Auto Google Calendar import is disabled!"
100
- msgstr ""
101
-
102
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
103
- msgid "Both of API key and Calendar ID are required!"
104
- msgstr ""
105
-
106
- #: app/crons/g-import.php:370
107
- #, php-format
108
- msgid "%s google events imported/updated."
109
- msgstr ""
110
-
111
- #: app/features/books.php:105 app/features/books.php:110
112
- #: app/features/ix/export.php:37
113
- msgid "Bookings"
114
- msgstr "Boekingen"
115
-
116
- #: app/features/books.php:106 app/features/books.php:328
117
- #: app/features/contextual.php:308 app/features/events.php:253
118
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
119
- msgid "Booking"
120
- msgstr "Boeking"
121
-
122
- #: app/features/books.php:107 app/features/books.php:108
123
- msgid "Add Booking"
124
- msgstr "Boeking toevoegen"
125
-
126
- #: app/features/books.php:109
127
- msgid "No bookings found!"
128
- msgstr "Geen boekingen gevonden!"
129
-
130
- #: app/features/books.php:111
131
- msgid "Edit Bookings"
132
- msgstr "Bewerk boekingen"
133
-
134
- #: app/features/books.php:112
135
- msgid "No bookings found in Trash!"
136
- msgstr "Geen boekingen gevonden in de prullenbak!"
137
-
138
- #: app/features/books.php:149
139
- msgid "Book Details"
140
- msgstr "Boeking gegevens"
141
-
142
- #: app/features/books.php:150
143
- msgid "Status & Invoice"
144
- msgstr ""
145
-
146
- #: app/features/books.php:176 app/features/books.php:387
147
- #: app/features/books.php:576 app/features/books.php:651
148
- #: app/features/books.php:709
149
- msgid "Confirmation"
150
- msgstr "Bevestiging"
151
-
152
- #: app/features/books.php:178 app/features/books.php:578
153
- #: app/features/books.php:602 app/features/books.php:894
154
- msgid "Pending"
155
- msgstr "In afwachting"
156
-
157
- #: app/features/books.php:179 app/features/books.php:577
158
- #: app/features/books.php:892
159
- msgid "Confirmed"
160
- msgstr "Bevestigd"
161
-
162
- #: app/features/books.php:180 app/features/books.php:579
163
- #: app/features/books.php:893
164
- msgid "Rejected"
165
- msgstr "Afgewezen"
166
-
167
- #: app/features/books.php:184 app/features/books.php:388
168
- #: app/features/books.php:585 app/features/books.php:651
169
- #: app/features/books.php:709
170
- msgid "Verification"
171
- msgstr "Verificatie"
172
-
173
- #: app/features/books.php:186 app/features/books.php:587
174
- #: app/features/books.php:909
175
- msgid "Waiting"
176
- msgstr "In afwachting"
177
-
178
- #: app/features/books.php:187 app/features/books.php:586
179
- #: app/features/books.php:907 app/features/mec/settings.php:1173
180
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
181
- msgid "Verified"
182
- msgstr "Geverifieerd"
183
-
184
- #: app/features/books.php:188 app/features/books.php:588
185
- #: app/features/books.php:908
186
- msgid "Canceled"
187
- msgstr "Geannuleerd"
188
-
189
- #: app/features/books.php:203
190
- #, php-format
191
- msgid "Here, you can %s invoice of %s transaction."
192
- msgstr ""
193
-
194
- #: app/features/books.php:203
195
- msgid "download"
196
- msgstr ""
197
-
198
- #: app/features/books.php:246
199
- msgid "It will create a new booking under \"Pay Locally\" gateway."
200
- msgstr ""
201
-
202
- #: app/features/books.php:248 app/features/contextual.php:62
203
- #: app/features/events.php:910 app/features/mec/gateways.php:29
204
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
205
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
206
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
207
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
208
- msgid "Booking Form"
209
- msgstr "Boekingsformulier"
210
-
211
- #: app/features/books.php:251 app/features/books.php:330
212
- #: app/features/books.php:385 app/features/books.php:569
213
- #: app/features/books.php:651 app/features/books.php:709
214
- #: app/features/events.php:123
215
- #: app/features/mec/meta_boxes/display_options.php:678
216
- #: app/features/mec/meta_boxes/display_options.php:716
217
- #: app/features/mec/meta_boxes/display_options.php:745
218
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
219
- #: app/skins/yearly_view/tpl.php:69
220
- msgid "Event"
221
- msgstr "Evenement"
222
-
223
- #: app/features/books.php:315
224
- msgid "Payment"
225
- msgstr "Betaling"
226
-
227
- #: app/features/books.php:317 app/features/books.php:386
228
- #: app/features/events.php:756 app/features/events.php:788
229
- msgid "Price"
230
- msgstr "Prijs"
231
-
232
- #: app/features/books.php:321 app/features/gateways.php:148
233
- msgid "Gateway"
234
- msgstr "Methode "
235
-
236
- #: app/features/books.php:322 app/features/books.php:326
237
- #: app/features/books.php:331 app/features/books.php:335
238
- #: app/features/books.php:352 app/features/books.php:690
239
- #: app/features/books.php:748
240
- msgid "Unknown"
241
- msgstr "Onbekend"
242
-
243
- #: app/features/books.php:325 app/features/books.php:389
244
- #: app/features/books.php:651 app/features/books.php:709
245
- #: app/libraries/main.php:1544
246
- msgid "Transaction ID"
247
- msgstr "Transactie ID"
248
-
249
- #: app/features/books.php:334 app/features/books.php:651
250
- #: app/features/books.php:709 app/features/books.php:1099
251
- #: app/features/events.php:508 app/features/events.php:580
252
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
253
- #: app/modules/booking/steps/tickets.php:20
254
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
255
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
256
- #: app/skins/single/modern.php:146
257
- msgid "Date"
258
- msgstr "Datum"
259
-
260
- #: app/features/books.php:335
261
- #, php-format
262
- msgid "%s to %s"
263
- msgstr "%s tot %s"
264
-
265
- #: app/features/books.php:338 app/features/mec/notifications.php:140
266
- #: app/features/mec/notifications.php:177
267
- #: app/features/mec/notifications.php:214
268
- #: app/features/mec/notifications.php:255
269
- #: app/features/mec/notifications.php:307
270
- msgid "Total Attendees"
271
- msgstr ""
272
-
273
- #: app/features/books.php:341 app/features/books.php:384
274
- #: app/libraries/main.php:1553
275
- msgid "Attendees"
276
- msgstr ""
277
-
278
- #: app/features/books.php:347 app/features/books.php:651
279
- #: app/features/books.php:709 app/features/books.php:1114
280
- #: app/features/events.php:371 app/features/events.php:945
281
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
282
- #: app/features/organizers.php:110 app/features/organizers.php:150
283
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
284
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
285
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
286
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
287
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
288
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
289
- #: app/skins/single/modern.php:38
290
- msgid "Email"
291
- msgstr "Email"
292
-
293
- #: app/features/books.php:351 app/features/books.php:431
294
- #: app/features/books.php:651 app/features/books.php:709
295
- #: app/features/books.php:1106 app/libraries/main.php:1559
296
- #: app/libraries/main.php:3985
297
- msgid "Ticket"
298
- msgstr "Ticket"
299
-
300
- #: app/features/books.php:358 app/libraries/notifications.php:516
301
- msgid "Yes"
302
- msgstr ""
303
-
304
- #: app/features/books.php:358 app/libraries/notifications.php:516
305
- msgid "No"
306
- msgstr ""
307
-
308
- #: app/features/books.php:390
309
- msgid "Book Date"
310
- msgstr "Boekings datum"
311
-
312
- #: app/features/books.php:602
313
- msgid "Confirm"
314
- msgstr "Bevestig"
315
-
316
- #: app/features/books.php:602
317
- msgid "Reject"
318
- msgstr "Afwijzen"
319
-
320
- #: app/features/books.php:602 app/features/events.php:1569
321
- #: app/features/events.php:1570
322
- msgid "CSV Export"
323
- msgstr "CSV export"
324
-
325
- #: app/features/books.php:602 app/features/events.php:1572
326
- #: app/features/events.php:1573
327
- msgid "MS Excel Export"
328
- msgstr "Excel export"
329
-
330
- #: app/features/books.php:651 app/features/books.php:709
331
- #: app/features/events.php:1631 app/features/events.php:1675
332
- #: app/features/ix.php:2328 app/features/ix.php:2369
333
- #: app/features/labels.php:150 app/features/locations.php:228
334
- #: app/features/organizers.php:198
335
- msgid "ID"
336
- msgstr "ID"
337
-
338
- #: app/features/books.php:651 app/features/books.php:709
339
- msgid "Total Price"
340
- msgstr ""
341
-
342
- #: app/features/books.php:651 app/features/books.php:709
343
- #: app/features/books.php:1113 app/features/events.php:370
344
- #: app/features/fes/form.php:441 app/features/gateways.php:503
345
- #: app/features/labels.php:151 app/features/organizers.php:268
346
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
347
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
348
- msgid "Name"
349
- msgstr "Naam"
350
-
351
- #: app/features/books.php:923
352
- msgid "Security nonce is missing."
353
- msgstr "Beveiligingscode ontbreekt (nonce)"
354
-
355
- #: app/features/books.php:926
356
- msgid "Security nonce is invalid."
357
- msgstr "Beveiligingscode ongeldig (nonce)"
358
-
359
- #: app/features/books.php:935
360
- msgid "Invalid request."
361
- msgstr "Ongeldige aanvraag."
362
-
363
- #: app/features/books.php:963
364
- msgid "Please select some tickets!"
365
- msgstr "Selecteer een aantal tickets!"
366
-
367
- #: app/features/books.php:969
368
- msgid "Captcha is invalid. Please try again."
369
- msgstr "Captcha in ongeldig. Probeer opnieuw."
370
-
371
- #: app/features/books.php:1015
372
- msgid "Please fill the form correctly. Email and Name fields are required!"
373
- msgstr ""
374
-
375
- #: app/features/books.php:1085
376
- msgid "Event is invalid. Please select an event."
377
- msgstr ""
378
-
379
- #: app/features/books.php:1093
380
- msgid ""
381
- "No ticket ro future dates found for this event! Please try another event."
382
- msgstr ""
383
-
384
- #: app/features/books.php:1175
385
- msgid "Attendee Information"
386
- msgstr ""
387
-
388
  #: app/features/colors.php:50 app/features/fes/form.php:566
389
- #: app/features/mec/settings.php:842
390
  msgid "Event Color"
391
  msgstr "Evenement kleur"
392
 
393
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
394
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
395
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
396
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
397
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
398
  #: app/features/mec/support.php:18
399
  msgid "Settings"
400
  msgstr "Instellingen"
401
 
 
 
 
 
 
 
 
 
 
402
  #: app/features/contextual.php:63
403
  msgid ""
404
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -411,7 +74,7 @@ msgstr ""
411
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
412
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
413
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
414
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
415
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
416
  msgid "Payment Gateways"
417
  msgstr "Betaalmethoden "
@@ -426,7 +89,7 @@ msgstr ""
426
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
427
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
428
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
429
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
430
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
431
  msgid "Notifications"
432
  msgstr "Meldingen"
@@ -487,235 +150,103 @@ msgid ""
487
  "\"0\" allowfullscreen></iframe>"
488
  msgstr ""
489
 
490
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
491
- #: app/features/mec/settings.php:247
492
  msgid "General Options"
493
  msgstr "Algemene opties"
494
 
495
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
496
- #: app/features/mec/settings.php:399
497
  msgid "Slugs/Permalinks"
498
  msgstr "Slugs/Permalink"
499
 
500
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
501
- #: app/features/mec/settings.php:419
502
  msgid "Event Details/Single Event Page"
503
  msgstr ""
504
 
505
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
506
- #: app/features/mec/settings.php:451
507
  msgid "Currency Options"
508
  msgstr "Valuta opties"
509
 
510
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
511
- #: app/features/mec/settings.php:503
512
  msgid "Google Maps Options"
513
  msgstr "Google Maps opties"
514
 
515
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
516
- #: app/features/mec/settings.php:577
517
  msgid "Google Recaptcha Options"
518
  msgstr "Google Recaptcha opties"
519
 
520
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
521
- #: app/features/mec/settings.php:695
522
  msgid "Countdown Options"
523
  msgstr "Countdown opties"
524
 
525
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
526
- #: app/features/mec/settings.php:716
527
  msgid "Social Networks"
528
  msgstr "Social media"
529
 
530
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
531
- #: app/features/mec/settings.php:741
532
  msgid "Next Event Module"
533
  msgstr ""
534
 
535
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
536
- #: app/features/mec/settings.php:769
537
  msgid "Frontend Event Submission"
538
  msgstr "Evenement aanmaken op een pagina"
539
 
540
  #: app/features/contextual.php:298 app/features/events.php:570
541
- #: app/features/mec/settings.php:126
542
  #, fuzzy
543
  msgid "Exceptional Days"
544
  msgstr "Expiration Date"
545
 
546
- #: app/features/contextual.php:318 app/features/coupons.php:76
547
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
548
- #: app/features/mec/settings.php:1014
 
 
 
 
549
  msgid "Coupons"
550
  msgstr "Coupons"
551
 
552
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
553
- #: app/features/mec/settings.php:1096
554
  msgid "BuddyPress Integration"
555
  msgstr ""
556
 
557
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
558
- #: app/features/mec/settings.php:1126
559
  msgid "Mailchimp Integration"
560
  msgstr ""
561
 
562
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
563
- #: app/features/mec/settings.php:1162
564
  msgid "MEC Activation"
565
  msgstr ""
566
 
567
- #: app/features/coupons.php:79
568
- msgid "Coupon"
569
- msgstr "Coupon"
570
-
571
- #: app/features/coupons.php:80
572
- msgid "All Coupons"
573
- msgstr "Alle coupons"
574
-
575
- #: app/features/coupons.php:81
576
- msgid "Edit Coupon"
577
- msgstr "Bewerk coupon"
578
-
579
- #: app/features/coupons.php:82
580
- msgid "View Coupon"
581
- msgstr "Bekijk coupon"
582
-
583
- #: app/features/coupons.php:83
584
- msgid "Update Coupon"
585
- msgstr "Update coupon"
586
-
587
- #: app/features/coupons.php:84
588
- msgid "Add New Coupon"
589
- msgstr "Voeg nieuwe coupon toe"
590
-
591
- #: app/features/coupons.php:85
592
- msgid "New Coupon Name"
593
- msgstr "Nieuwe coupon naam"
594
-
595
- #: app/features/coupons.php:86
596
- msgid "Popular Coupons"
597
- msgstr "Populaire coupons"
598
-
599
- #: app/features/coupons.php:87
600
- msgid "Search Coupons"
601
- msgstr "Zoek coupons"
602
-
603
- #: app/features/coupons.php:116 app/features/coupons.php:177
604
- msgid "Discount Type"
605
- msgstr "Kortings soort"
606
-
607
- #: app/features/coupons.php:120 app/features/coupons.php:179
608
- #: app/features/events.php:854 app/features/events.php:879
609
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
610
- msgid "Percent"
611
- msgstr "Procent"
612
-
613
- #: app/features/coupons.php:121 app/features/coupons.php:180
614
- #: app/features/events.php:849 app/features/events.php:874
615
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
616
- msgid "Amount"
617
- msgstr "Bedrag"
618
-
619
- #: app/features/coupons.php:127 app/features/coupons.php:184
620
- #: app/features/coupons.php:248 app/features/coupons.php:322
621
- #: app/libraries/book.php:505
622
- msgid "Discount"
623
- msgstr "Korting"
624
-
625
- #: app/features/coupons.php:131 app/features/coupons.php:186
626
- msgid ""
627
- "Discount percent, considered as amount if you set the discount type to amount"
628
- msgstr ""
629
- "Hetgeen wat je invult, zal bij procent gezien worden als procent en als "
630
- "bedrag als het soort korting geselecteerd is als bedrag."
631
-
632
- #: app/features/coupons.php:136 app/features/coupons.php:189
633
- msgid "Usage Limit"
634
- msgstr "Gebruik limiet"
635
-
636
- #: app/features/coupons.php:140 app/features/coupons.php:191
637
- msgid "Insert -1 for unlimited usage"
638
- msgstr "Voer -1 in voor onbeperkt gebruik"
639
-
640
- #: app/features/coupons.php:145 app/features/coupons.php:194
641
- #: app/features/gateways.php:1202
642
- msgid "Expiration Date"
643
- msgstr "Expiration Date"
644
-
645
- #: app/features/coupons.php:149 app/features/coupons.php:196
646
- msgid "Leave it empty for no expiration!"
647
- msgstr ""
648
-
649
- #: app/features/coupons.php:154 app/features/coupons.php:199
650
- msgid "Target Event"
651
- msgstr ""
652
-
653
- #: app/features/coupons.php:158 app/features/coupons.php:201
654
- #: app/features/events.php:127
655
- msgid "All Events"
656
- msgstr "Alle evenementen"
657
-
658
- #: app/features/coupons.php:246
659
- msgid "Name/Code"
660
- msgstr "Naam/code"
661
-
662
- #: app/features/coupons.php:247 app/features/events.php:632
663
- #: app/features/events.php:644 app/features/events.php:752
664
- #: app/features/events.php:784
665
- msgid "Description"
666
- msgstr "Beschrijving"
667
-
668
- #: app/features/coupons.php:249
669
- #: app/features/mec/meta_boxes/display_options.php:85
670
- #: app/features/mec/meta_boxes/display_options.php:194
671
- #: app/features/mec/meta_boxes/display_options.php:244
672
- #: app/features/mec/meta_boxes/display_options.php:632
673
- #: app/features/mec/meta_boxes/display_options.php:806
674
- #: app/features/mec/meta_boxes/display_options.php:877
675
- msgid "Limit"
676
- msgstr "Limiet"
677
-
678
- #: app/features/coupons.php:250 app/features/labels.php:153
679
- #: app/features/locations.php:231 app/features/organizers.php:201
680
- #: app/modules/booking/steps/tickets.php:36
681
- msgid "Count"
682
- msgstr "Aantal keer gebruikt"
683
-
684
- #: app/features/coupons.php:280 app/features/events.php:715
685
- #: app/features/events.php:769 app/features/events.php:801
686
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
687
- #: app/skins/available_spot/tpl.php:84
688
- msgid "Unlimited"
689
- msgstr "Onbeperkt"
690
-
691
- #: app/features/coupons.php:309
692
- msgid "Discount coupon is invalid!"
693
- msgstr "Kortingscoupon is ongeldig!"
694
-
695
- #: app/features/coupons.php:311
696
- msgid "Discount coupon usage limit reached!"
697
- msgstr "Kortingsbon gebruik limiet bereikt!"
698
-
699
- #: app/features/coupons.php:313
700
- msgid "Discount coupon is expired!"
701
- msgstr ""
702
-
703
- #: app/features/coupons.php:315
704
- msgid "Discount is not valid for this event!"
705
- msgstr ""
706
-
707
- #: app/features/coupons.php:326
708
- #, php-format
709
- msgid "Coupon is valid and you get %s discount."
710
- msgstr "Coupon is geldig en je krijgt %s korting."
711
-
712
  #: app/features/events.php:122 app/features/ix/export.php:33
713
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
714
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
715
  msgid "Events"
716
  msgstr "Evenementen"
717
 
718
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
719
  msgid "Add Event"
720
  msgstr "Evenement toevoegen"
721
 
@@ -728,6 +259,10 @@ msgstr "Voeg nieuw evenement toe"
728
  msgid "No events found!"
729
  msgstr "Geen evenementen gevonden!"
730
 
 
 
 
 
731
  #: app/features/events.php:128
732
  msgid "Edit Event"
733
  msgstr ""
@@ -750,7 +285,7 @@ msgstr "Geen evenementen gevonden in de prullenbak."
750
  #: app/features/mec/meta_boxes/search_form.php:285
751
  #: app/features/mec/meta_boxes/search_form.php:325
752
  #: app/features/mec/meta_boxes/search_form.php:372
753
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
754
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
755
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
756
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -758,8 +293,8 @@ msgid "Category"
758
  msgstr "Categorie"
759
 
760
  #: app/features/events.php:143 app/features/fes/form.php:518
761
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
762
- #: app/libraries/main.php:3952
763
  msgid "Categories"
764
  msgstr "Categorieën"
765
 
@@ -826,12 +361,12 @@ msgstr "Evenement details"
826
  #: app/features/events.php:286 app/features/events.php:1631
827
  #: app/features/events.php:1675 app/features/fes/form.php:479
828
  #: app/features/ix.php:2328 app/features/ix.php:2369
829
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
830
  msgid "Event Cost"
831
  msgstr "Evenements kosten"
832
 
833
  #: app/features/events.php:289 app/features/fes/form.php:482
834
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
835
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
836
  #: app/skins/single/modern.php:179
837
  msgid "Cost"
@@ -845,6 +380,26 @@ msgstr ""
845
  msgid "Guest Data"
846
  msgstr ""
847
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
848
  #: app/features/events.php:375 app/features/fes/form.php:221
849
  msgid "Date and Time"
850
  msgstr "Datum en tijd"
@@ -854,7 +409,7 @@ msgstr "Datum en tijd"
854
  #: app/features/events.php:1675 app/features/fes/form.php:225
855
  #: app/features/fes/form.php:229 app/features/ix.php:2328
856
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
857
- #: app/features/mec/dashboard.php:262
858
  #: app/features/mec/meta_boxes/display_options.php:42
859
  #: app/features/mec/meta_boxes/display_options.php:129
860
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -886,7 +441,7 @@ msgstr "PM"
886
  #: app/features/events.php:1675 app/features/fes/form.php:265
887
  #: app/features/fes/form.php:269 app/features/ix.php:2328
888
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
889
- #: app/features/mec/dashboard.php:263
890
  msgid "End Date"
891
  msgstr "Einddatum"
892
 
@@ -923,7 +478,7 @@ msgid "Repeats"
923
  msgstr "Terugkerend"
924
 
925
  #: app/features/events.php:481 app/features/fes/form.php:327
926
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
927
  msgid "Daily"
928
  msgstr "Dagelijks"
929
 
@@ -946,12 +501,12 @@ msgid "Weekly"
946
  msgstr "Wekelijks"
947
 
948
  #: app/features/events.php:486 app/features/fes/form.php:332
949
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
950
  msgid "Monthly"
951
  msgstr "Maandelijks"
952
 
953
  #: app/features/events.php:487 app/features/fes/form.php:333
954
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
955
  msgid "Yearly"
956
  msgstr "Jaarlijks"
957
 
@@ -1008,6 +563,15 @@ msgstr ""
1008
  msgid "Sunday"
1009
  msgstr ""
1010
 
 
 
 
 
 
 
 
 
 
1011
  #: app/features/events.php:509 app/features/events.php:581
1012
  #: app/features/events.php:623 app/features/events.php:743
1013
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1056,7 +620,7 @@ msgstr "Elke doordeweekse dag"
1056
  msgid "Exclude certain days from event occurrence dates."
1057
  msgstr ""
1058
 
1059
- #: app/features/events.php:620 app/features/mec/settings.php:866
1060
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1061
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1062
  msgid "Hourly Schedule"
@@ -1077,34 +641,36 @@ msgstr "Tot bijv. 8:45"
1077
  #: app/features/events.php:631 app/features/events.php:643
1078
  #: app/features/events.php:1449 app/features/events.php:1631
1079
  #: app/features/events.php:1675 app/features/fes/form.php:214
1080
- #: app/features/gateways.php:550 app/features/gateways.php:617
1081
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1082
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1083
- #: app/features/ix.php:2369
1084
  msgid "Title"
1085
  msgstr "Titel"
1086
 
 
 
 
 
 
1087
  #: app/features/events.php:633 app/features/events.php:645
1088
  #: app/features/events.php:771 app/features/events.php:803
1089
  #: app/features/events.php:859 app/features/events.php:884
1090
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1091
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1092
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1093
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1094
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1095
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1096
- #: app/libraries/main.php:2162
1097
  msgid "Remove"
1098
  msgstr "Verwijderen"
1099
 
1100
  #: app/features/events.php:665 app/features/fes/form.php:456
1101
- #: app/features/mec/settings.php:812
1102
  #, fuzzy
1103
  msgid "Event Links"
1104
  msgstr "Evenement locatie"
1105
 
1106
  #: app/features/events.php:667 app/features/fes/form.php:458
1107
- #: app/libraries/main.php:3981
1108
  #, fuzzy
1109
  msgid "Event Link"
1110
  msgstr "Evenement locatie"
@@ -1124,7 +690,7 @@ msgstr ""
1124
  "standaard evenementen pagina gaat. Vul de volledige link in: http(s)://"
1125
 
1126
  #: app/features/events.php:672 app/features/fes/form.php:463
1127
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1128
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1129
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1130
  msgid "More Info"
@@ -1156,12 +722,18 @@ msgstr ""
1156
  msgid "Total booking limits"
1157
  msgstr "Maximum aantal boekingen"
1158
 
 
 
 
 
 
 
1159
  #: app/features/events.php:717
1160
  msgid "100"
1161
  msgstr "100"
1162
 
1163
  #: app/features/events.php:735 app/libraries/book.php:59
1164
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1165
  msgid "Tickets"
1166
  msgstr "Tickets"
1167
 
@@ -1176,6 +748,10 @@ msgstr ""
1176
  msgid "Ticket Name"
1177
  msgstr "Ticket naam"
1178
 
 
 
 
 
1179
  #: app/features/events.php:757 app/features/events.php:789
1180
  msgid "Insert 0 for free ticket. Only numbers please."
1181
  msgstr "Vul 0 in voor gratis ticket. Alleen nummers alstublieft."
@@ -1201,12 +777,17 @@ msgid "Inherit from global options"
1201
  msgstr "Standaardinstellingen gebruiken"
1202
 
1203
  #: app/features/events.php:845 app/features/events.php:870
1204
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1205
  msgid "Fee Title"
1206
  msgstr "Toeslag titel"
1207
 
 
 
 
 
 
1208
  #: app/features/events.php:850 app/features/events.php:875
1209
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1210
  msgid ""
1211
  "Fee amount, considered as fixed amount if you set the type to amount "
1212
  "otherwise considered as percentage"
@@ -1214,39 +795,44 @@ msgstr ""
1214
  "Toeslag bedrag, zal beschouwd worden als vast bedrag als je het type hebt "
1215
  "ingesteld op bedrag, anders zal het beschouwd worden als percentage"
1216
 
 
 
 
 
 
1217
  #: app/features/events.php:855 app/features/events.php:880
1218
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1219
  msgid "Amount (Per Ticket)"
1220
  msgstr ""
1221
 
1222
  #: app/features/events.php:856 app/features/events.php:881
1223
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1224
  msgid "Amount (Per Booking)"
1225
  msgstr ""
1226
 
1227
  #: app/features/events.php:944 app/features/mec/regform.php:117
1228
- #: app/libraries/main.php:1841
1229
  msgid "Text"
1230
  msgstr "Tekst"
1231
 
1232
  #: app/features/events.php:946 app/features/mec/regform.php:119
1233
  #: app/features/organizers.php:102 app/features/organizers.php:146
1234
- #: app/libraries/main.php:1899
1235
  msgid "Tel"
1236
  msgstr "Tel"
1237
 
1238
  #: app/features/events.php:947 app/features/mec/regform.php:120
1239
- #: app/libraries/main.php:1928
1240
  msgid "Textarea"
1241
  msgstr "Tekstgebied"
1242
 
1243
  #: app/features/events.php:948 app/features/mec/regform.php:121
1244
- #: app/libraries/main.php:1981
1245
  msgid "Checkboxes"
1246
  msgstr "Checkboxes"
1247
 
1248
  #: app/features/events.php:949 app/features/mec/regform.php:122
1249
- #: app/libraries/main.php:2025
1250
  msgid "Radio Buttons"
1251
  msgstr "Radio knoppen"
1252
 
@@ -1295,17 +881,17 @@ msgstr "Radio knoppen"
1295
  #: app/features/mec/meta_boxes/search_form.php:436
1296
  #: app/features/mec/meta_boxes/search_form.php:443
1297
  #: app/features/mec/meta_boxes/search_form.php:450
1298
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1299
  msgid "Dropdown"
1300
  msgstr "Dropdown"
1301
 
1302
  #: app/features/events.php:951 app/features/mec/regform.php:124
1303
- #: app/libraries/main.php:2116
1304
  msgid "Agreement"
1305
  msgstr ""
1306
 
1307
  #: app/features/events.php:952 app/features/mec/regform.php:125
1308
- #: app/libraries/main.php:1957
1309
  msgid "Paragraph"
1310
  msgstr "Paragraaf"
1311
 
@@ -1331,7 +917,7 @@ msgstr ""
1331
  #: app/features/events.php:1675 app/features/ix.php:2328
1332
  #: app/features/ix.php:2369 app/features/locations.php:58
1333
  #: app/features/locations.php:229 app/features/locations.php:281
1334
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1335
  #: app/features/mec/meta_boxes/display_options.php:641
1336
  #: app/features/mec/meta_boxes/search_form.php:38
1337
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1341,8 +927,8 @@ msgstr ""
1341
  #: app/features/mec/meta_boxes/search_form.php:292
1342
  #: app/features/mec/meta_boxes/search_form.php:332
1343
  #: app/features/mec/meta_boxes/search_form.php:379
1344
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1345
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1346
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1347
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1348
  #: app/skins/single/modern.php:77
@@ -1351,7 +937,7 @@ msgstr "Locatie"
1351
 
1352
  #: app/features/events.php:1451 app/features/events.php:1631
1353
  #: app/features/events.php:1675 app/features/ix.php:2328
1354
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1355
  #: app/features/mec/meta_boxes/display_options.php:642
1356
  #: app/features/mec/meta_boxes/search_form.php:45
1357
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1364,7 +950,7 @@ msgstr "Locatie"
1364
  #: app/features/mec/meta_boxes/search_form.php:433
1365
  #: app/features/organizers.php:58 app/features/organizers.php:199
1366
  #: app/features/organizers.php:255 app/features/organizers.php:257
1367
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1368
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1369
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1370
  #: app/skins/single/modern.php:21
@@ -1383,6 +969,14 @@ msgstr "Auteur"
1383
  msgid "iCal Export"
1384
  msgstr "iCal export"
1385
 
 
 
 
 
 
 
 
 
1386
  #: app/features/events.php:1575 app/features/events.php:1576
1387
  msgid "XML Export"
1388
  msgstr ""
@@ -1395,6 +989,13 @@ msgstr ""
1395
  msgid "Duplicate"
1396
  msgstr ""
1397
 
 
 
 
 
 
 
 
1398
  #: app/features/events.php:1631 app/features/events.php:1675
1399
  #: app/features/ix.php:2328 app/features/ix.php:2369
1400
  msgid "Start Time"
@@ -1479,7 +1080,6 @@ msgid "Note to reviewer"
1479
  msgstr ""
1480
 
1481
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1482
- #: app/features/gateways.php:695
1483
  msgid "Submit"
1484
  msgstr "Verzenden"
1485
 
@@ -1495,7 +1095,7 @@ msgstr ""
1495
  msgid "eg. John Smith"
1496
  msgstr "bijv. John Smith"
1497
 
1498
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1499
  msgid "Featured Image"
1500
  msgstr "Uitgelichte afbeelding"
1501
 
@@ -1504,14 +1104,14 @@ msgid "Remove Image"
1504
  msgstr "Verwijder afbeelding"
1505
 
1506
  #: app/features/fes/form.php:543 app/features/labels.php:61
1507
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1508
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1509
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1510
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1511
  msgid "Labels"
1512
  msgstr "Labels"
1513
 
1514
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1515
  #: app/features/mec/meta_boxes/filter.php:138
1516
  msgid "Tags"
1517
  msgstr "Tags"
@@ -1537,293 +1137,6 @@ msgstr "Bekijk"
1537
  msgid "No events found! %s"
1538
  msgstr "Geen evenementen gevonden! %s"
1539
 
1540
- #: app/features/gateways.php:70 app/features/gateways.php:327
1541
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1542
- #: app/features/gateways.php:1396
1543
- msgid "Request is invalid!"
1544
- msgstr "Aanvraag is ongeldig!"
1545
-
1546
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1547
- #, fuzzy
1548
- msgid "Thanks for your booking."
1549
- msgstr "Bedankt voor uw boeking"
1550
-
1551
- #: app/features/gateways.php:307 app/features/gateways.php:545
1552
- msgid "Stripe"
1553
- msgstr ""
1554
-
1555
- #: app/features/gateways.php:342 app/features/gateways.php:716
1556
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1557
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1558
- msgid "There is no attendee for booking!"
1559
- msgstr "Er is geen deelnemer voor deze boeking!"
1560
-
1561
- #: app/features/gateways.php:373 app/features/gateways.php:743
1562
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1563
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1564
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1565
- msgid ""
1566
- "Thanks for your booking. Your tickets booked, booking verification might be "
1567
- "needed, please check your email."
1568
- msgstr ""
1569
- "Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
1570
- "nodig zijn, controleer uw email alstublieft."
1571
-
1572
- #: app/features/gateways.php:390
1573
- #, fuzzy, php-format
1574
- msgid "MEC Transaction ID: %s"
1575
- msgstr "Transactie ID"
1576
-
1577
- #: app/features/gateways.php:473 app/features/gateways.php:668
1578
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1579
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1580
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1581
- msgid "Download Invoice"
1582
- msgstr ""
1583
-
1584
- #: app/features/gateways.php:509
1585
- msgid "Card Number"
1586
- msgstr ""
1587
-
1588
- #: app/features/gateways.php:515
1589
- msgid "CVC"
1590
- msgstr ""
1591
-
1592
- #: app/features/gateways.php:521
1593
- msgid "Expiration (MM/YYYY)"
1594
- msgstr ""
1595
-
1596
- #: app/features/gateways.php:522
1597
- msgid "Month"
1598
- msgstr ""
1599
-
1600
- #: app/features/gateways.php:524
1601
- msgid "Year"
1602
- msgstr ""
1603
-
1604
- #: app/features/gateways.php:532 app/features/gateways.php:919
1605
- #: app/features/gateways.php:1223
1606
- msgid "Pay"
1607
- msgstr "Betalen"
1608
-
1609
- #: app/features/gateways.php:556 app/features/gateways.php:623
1610
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1611
- #: app/features/gateways.php:1621
1612
- msgid "Comment"
1613
- msgstr "Opmerking"
1614
-
1615
- #: app/features/gateways.php:559 app/features/gateways.php:626
1616
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1617
- #: app/features/gateways.php:1624
1618
- msgid "HTML allowed."
1619
- msgstr "HTML toegestaan."
1620
-
1621
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1622
- msgid "Secret Key"
1623
- msgstr "Secret key"
1624
-
1625
- #: app/features/gateways.php:569
1626
- msgid "Publishable Key"
1627
- msgstr ""
1628
-
1629
- #: app/features/gateways.php:598 app/features/gateways.php:612
1630
- msgid "Pay Locally"
1631
- msgstr "Ter plaatse betalen"
1632
-
1633
- #: app/features/gateways.php:766 app/features/gateways.php:780
1634
- msgid "PayPal Express"
1635
- msgstr "PayPal Express"
1636
-
1637
- #: app/features/gateways.php:798
1638
- msgid "Business Account"
1639
- msgstr "Zakelijk account"
1640
-
1641
- #: app/features/gateways.php:801
1642
- msgid "Normally PayPal Email."
1643
- msgstr "Normale PayPal email."
1644
-
1645
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1646
- msgid "Mode"
1647
- msgstr "Mode"
1648
-
1649
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1650
- msgid "Live"
1651
- msgstr "Live"
1652
-
1653
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1654
- msgid "Sandbox"
1655
- msgstr "Sandbox"
1656
-
1657
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1658
- msgid "Waiting for getting response from gateway."
1659
- msgstr "Wachtend op een reactie van de gateway."
1660
-
1661
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1662
- msgid "Payment was invalid! Booking failed."
1663
- msgstr "Betaling is ongeldig! Boeking mislukt."
1664
-
1665
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1666
- msgid "PayPal Credit Card"
1667
- msgstr "PayPal creditcard"
1668
-
1669
- #: app/features/gateways.php:1089
1670
- msgid "API Username"
1671
- msgstr "API gebruikersnaam"
1672
-
1673
- #: app/features/gateways.php:1095
1674
- msgid "API Password"
1675
- msgstr "API wachtwoord"
1676
-
1677
- #: app/features/gateways.php:1101
1678
- msgid "API Signature"
1679
- msgstr "API signature"
1680
-
1681
- #: app/features/gateways.php:1181
1682
- msgid "First name"
1683
- msgstr "Voornaam"
1684
-
1685
- #: app/features/gateways.php:1185
1686
- msgid "Last name"
1687
- msgstr "Achternaam"
1688
-
1689
- #: app/features/gateways.php:1189
1690
- msgid "Card Type"
1691
- msgstr "Card type"
1692
-
1693
- #: app/features/gateways.php:1191
1694
- msgid "Visa"
1695
- msgstr "Visa"
1696
-
1697
- #: app/features/gateways.php:1192
1698
- msgid "MasterCard"
1699
- msgstr "MasterCard"
1700
-
1701
- #: app/features/gateways.php:1193
1702
- msgid "Discover"
1703
- msgstr "Discover"
1704
-
1705
- #: app/features/gateways.php:1194
1706
- msgid "American Express"
1707
- msgstr "American Express"
1708
-
1709
- #: app/features/gateways.php:1198
1710
- msgid "CC Number"
1711
- msgstr "CC Number"
1712
-
1713
- #: app/features/gateways.php:1215
1714
- msgid "CVV2"
1715
- msgstr "CVV2"
1716
-
1717
- #: app/features/gateways.php:1248
1718
- msgid "Payment is invalid."
1719
- msgstr "Betaling is ongeldig."
1720
-
1721
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1722
- msgid "Pay by WooCommerce"
1723
- msgstr ""
1724
-
1725
- #: app/features/gateways.php:1418
1726
- #, php-format
1727
- msgid "Booking fee for %s"
1728
- msgstr ""
1729
-
1730
- #: app/features/gateways.php:1429
1731
- msgid "Your order is created. Please proceed with checkout."
1732
- msgstr ""
1733
-
1734
- #: app/features/gateways.php:1591
1735
- msgid "Add to Cart"
1736
- msgstr ""
1737
-
1738
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1739
- msgid "Checkout"
1740
- msgstr "Afrekenen"
1741
-
1742
- #: app/features/gateways.php:1612
1743
- msgid "WooCommerce must be installed and activated first."
1744
- msgstr ""
1745
-
1746
- #: app/features/gateways.php:1628
1747
- msgid "Automatically complete WC orders"
1748
- msgstr ""
1749
-
1750
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1751
- msgid "Enabled"
1752
- msgstr ""
1753
-
1754
- #: app/features/gateways.php:1632
1755
- #: app/features/mec/meta_boxes/search_form.php:33
1756
- #: app/features/mec/meta_boxes/search_form.php:40
1757
- #: app/features/mec/meta_boxes/search_form.php:47
1758
- #: app/features/mec/meta_boxes/search_form.php:54
1759
- #: app/features/mec/meta_boxes/search_form.php:61
1760
- #: app/features/mec/meta_boxes/search_form.php:68
1761
- #: app/features/mec/meta_boxes/search_form.php:80
1762
- #: app/features/mec/meta_boxes/search_form.php:87
1763
- #: app/features/mec/meta_boxes/search_form.php:94
1764
- #: app/features/mec/meta_boxes/search_form.php:101
1765
- #: app/features/mec/meta_boxes/search_form.php:108
1766
- #: app/features/mec/meta_boxes/search_form.php:115
1767
- #: app/features/mec/meta_boxes/search_form.php:127
1768
- #: app/features/mec/meta_boxes/search_form.php:134
1769
- #: app/features/mec/meta_boxes/search_form.php:141
1770
- #: app/features/mec/meta_boxes/search_form.php:148
1771
- #: app/features/mec/meta_boxes/search_form.php:155
1772
- #: app/features/mec/meta_boxes/search_form.php:162
1773
- #: app/features/mec/meta_boxes/search_form.php:174
1774
- #: app/features/mec/meta_boxes/search_form.php:181
1775
- #: app/features/mec/meta_boxes/search_form.php:193
1776
- #: app/features/mec/meta_boxes/search_form.php:200
1777
- #: app/features/mec/meta_boxes/search_form.php:207
1778
- #: app/features/mec/meta_boxes/search_form.php:214
1779
- #: app/features/mec/meta_boxes/search_form.php:221
1780
- #: app/features/mec/meta_boxes/search_form.php:228
1781
- #: app/features/mec/meta_boxes/search_form.php:240
1782
- #: app/features/mec/meta_boxes/search_form.php:247
1783
- #: app/features/mec/meta_boxes/search_form.php:254
1784
- #: app/features/mec/meta_boxes/search_form.php:261
1785
- #: app/features/mec/meta_boxes/search_form.php:268
1786
- #: app/features/mec/meta_boxes/search_form.php:275
1787
- #: app/features/mec/meta_boxes/search_form.php:287
1788
- #: app/features/mec/meta_boxes/search_form.php:294
1789
- #: app/features/mec/meta_boxes/search_form.php:301
1790
- #: app/features/mec/meta_boxes/search_form.php:308
1791
- #: app/features/mec/meta_boxes/search_form.php:315
1792
- #: app/features/mec/meta_boxes/search_form.php:327
1793
- #: app/features/mec/meta_boxes/search_form.php:334
1794
- #: app/features/mec/meta_boxes/search_form.php:341
1795
- #: app/features/mec/meta_boxes/search_form.php:348
1796
- #: app/features/mec/meta_boxes/search_form.php:355
1797
- #: app/features/mec/meta_boxes/search_form.php:362
1798
- #: app/features/mec/meta_boxes/search_form.php:374
1799
- #: app/features/mec/meta_boxes/search_form.php:381
1800
- #: app/features/mec/meta_boxes/search_form.php:388
1801
- #: app/features/mec/meta_boxes/search_form.php:395
1802
- #: app/features/mec/meta_boxes/search_form.php:402
1803
- #: app/features/mec/meta_boxes/search_form.php:409
1804
- #: app/features/mec/meta_boxes/search_form.php:421
1805
- #: app/features/mec/meta_boxes/search_form.php:428
1806
- #: app/features/mec/meta_boxes/search_form.php:435
1807
- #: app/features/mec/meta_boxes/search_form.php:442
1808
- #: app/features/mec/meta_boxes/search_form.php:449
1809
- #: app/features/mec/meta_boxes/search_form.php:456
1810
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1811
- #: app/features/mec/settings.php:549
1812
- msgid "Disabled"
1813
- msgstr "Uitgeschakeld"
1814
-
1815
- #: app/features/gateways.php:1634
1816
- msgid "It applies only to the orders that are related to MEC."
1817
- msgstr ""
1818
-
1819
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1820
- msgid "Free"
1821
- msgstr "Gratis"
1822
-
1823
- #: app/features/gateways.php:1744
1824
- msgid "This booking is not free!"
1825
- msgstr ""
1826
-
1827
  #: app/features/ix.php:95
1828
  msgid "MEC - Import / Export"
1829
  msgstr ""
@@ -1856,6 +1169,10 @@ msgstr ""
1856
  msgid "Third Party plugin is invalid!"
1857
  msgstr ""
1858
 
 
 
 
 
1859
  #: app/features/ix.php:1961 app/features/ix.php:2791
1860
  msgid "Please select some events to import!"
1861
  msgstr ""
@@ -1877,6 +1194,35 @@ msgstr ""
1877
  msgid "All seems good! Please click %s for authenticating your app."
1878
  msgstr ""
1879
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1880
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1881
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1882
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1922,7 +1268,7 @@ msgid ""
1922
  "This will export all of your website events' data into your desired format."
1923
  msgstr ""
1924
 
1925
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1926
  msgid "iCal"
1927
  msgstr "iCal"
1928
 
@@ -1960,6 +1306,10 @@ msgstr ""
1960
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1961
  msgstr ""
1962
 
 
 
 
 
1963
  #: app/features/ix/export_g_calendar.php:25
1964
  msgid "Add events to Google Calendar"
1965
  msgstr ""
@@ -2016,7 +1366,7 @@ msgstr ""
2016
  msgid "Add to Google Calendar"
2017
  msgstr ""
2018
 
2019
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
2020
  msgid "Checking ..."
2021
  msgstr ""
2022
 
@@ -2058,10 +1408,10 @@ msgstr ""
2058
  msgid "ICS Feed"
2059
  msgstr ""
2060
 
2061
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2062
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2063
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2064
- #: app/features/mec/settings.php:1034
2065
  #, php-format
2066
  msgid "%s is required to use this feature."
2067
  msgstr ""
@@ -2073,10 +1423,10 @@ msgstr ""
2073
  #: app/features/mec/meta_boxes/display_options.php:558
2074
  #: app/features/mec/meta_boxes/display_options.php:608
2075
  #: app/features/mec/meta_boxes/display_options.php:734
2076
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2077
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2078
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2079
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2080
  msgid "Pro version of Modern Events Calendar"
2081
  msgstr ""
2082
 
@@ -2294,6 +1644,11 @@ msgstr "Kleur"
2294
  msgid "Select label color"
2295
  msgstr "Selecteer label kleur"
2296
 
 
 
 
 
 
2297
  #: app/features/labels.php:154 app/features/locations.php:232
2298
  #: app/features/organizers.php:202
2299
  msgid "Slug"
@@ -2304,8 +1659,8 @@ msgstr "Slug"
2304
  msgid "Event %s"
2305
  msgstr ""
2306
 
2307
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2308
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2309
  msgid "Locations"
2310
  msgstr "Locaties"
2311
 
@@ -2373,7 +1728,7 @@ msgstr "Locatie naam"
2373
  msgid "eg. City Hall"
2374
  msgstr "bijv. Gemeentehuis"
2375
 
2376
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2377
  msgid "Event Location"
2378
  msgstr "Evenement locatie"
2379
 
@@ -2397,92 +1752,92 @@ msgstr "Kies afbeelding"
2397
  msgid "Don't show map in single event page"
2398
  msgstr "Verberg de map op de pagina van het evenement"
2399
 
2400
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2401
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2402
  msgid "Organizers"
2403
  msgstr "Organisatoren"
2404
 
2405
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2406
- #: app/features/mec/dashboard.php:92
2407
  msgid "Shortcodes"
2408
  msgstr "Shortcodes"
2409
 
2410
- #: app/features/modern-events-calendar-lite.php:195
2411
  msgid "MEC - Settings"
2412
  msgstr "MEC - Instellingen"
2413
 
2414
- #: app/features/modern-events-calendar-lite.php:210
2415
  msgid "Add Shortcode"
2416
  msgstr "Shortcode toevoegen"
2417
 
2418
- #: app/features/modern-events-calendar-lite.php:211
2419
  msgid "Add New Shortcode"
2420
  msgstr "Nieuwe shortcode toevoegen"
2421
 
2422
- #: app/features/modern-events-calendar-lite.php:212
2423
  msgid "No shortcodes found!"
2424
  msgstr "Geen shortcodes gevonden!"
2425
 
2426
- #: app/features/modern-events-calendar-lite.php:213
2427
  msgid "All Shortcodes"
2428
  msgstr "Alle shortcodes"
2429
 
2430
- #: app/features/modern-events-calendar-lite.php:214
2431
  msgid "Edit shortcodes"
2432
  msgstr "Bewerk shortcodes"
2433
 
2434
- #: app/features/modern-events-calendar-lite.php:215
2435
  msgid "No shortcodes found in Trash!"
2436
  msgstr "Geen shortcodes gevonden in de prullenbak!"
2437
 
2438
- #: app/features/modern-events-calendar-lite.php:262
2439
  msgid "Display Options"
2440
  msgstr "Weergave opties"
2441
 
2442
- #: app/features/modern-events-calendar-lite.php:263
2443
  msgid "Filter Options"
2444
  msgstr "Filter opties"
2445
 
2446
- #: app/features/modern-events-calendar-lite.php:265
2447
  #, fuzzy
2448
  msgid "Search Form"
2449
  msgstr "Zoek coupons"
2450
 
2451
- #: app/features/modern-events-calendar-lite.php:556
2452
  msgid "Single Event Display Method"
2453
  msgstr ""
2454
 
2455
- #: app/features/modern-events-calendar-lite.php:561
2456
  msgid "Separate Window"
2457
  msgstr ""
2458
 
2459
- #: app/features/modern-events-calendar-lite.php:562
2460
  msgid "Modal 1"
2461
  msgstr ""
2462
 
2463
- #: app/features/mec/dashboard.php:54
2464
  #, php-format
2465
  msgid "Welcome %s"
2466
  msgstr "Welkom %s"
2467
 
2468
- #: app/features/mec/dashboard.php:57
2469
  #, php-format
2470
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2471
  msgstr ""
2472
 
2473
- #: app/features/mec/dashboard.php:57
2474
  msgid "Modern Event Calendar"
2475
  msgstr ""
2476
 
2477
- #: app/features/mec/dashboard.php:57
2478
  msgid "Modern Event Calendar (Lite)"
2479
  msgstr ""
2480
 
2481
- #: app/features/mec/dashboard.php:66
2482
  msgid "Version"
2483
  msgstr "Versie"
2484
 
2485
- #: app/features/mec/dashboard.php:75
2486
  #, php-format
2487
  msgid ""
2488
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2490,19 +1845,19 @@ msgid ""
2490
  "Spots, etc you should %s to the Pro version."
2491
  msgstr ""
2492
 
2493
- #: app/features/mec/dashboard.php:75
2494
  msgid "lite"
2495
  msgstr ""
2496
 
2497
- #: app/features/mec/dashboard.php:75
2498
  msgid "upgrade"
2499
  msgstr ""
2500
 
2501
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2502
  msgid "Documentation"
2503
  msgstr "Documentatie"
2504
 
2505
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2506
  msgid ""
2507
  "Our documentation is simple and functional with full details and cover all "
2508
  "essential aspects from beginning to the most advanced parts."
@@ -2510,22 +1865,22 @@ msgstr ""
2510
  "Onze documentatie is simpel en functioneel, met details en uitleg van alle "
2511
  "essentiële aspecten plus uitleg over de basis tot geavanceerde onderdelen. "
2512
 
2513
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2514
  msgid "DOCUMENTATION"
2515
  msgstr "DOCUMENTATIE"
2516
 
2517
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2518
  msgid "Support Forum"
2519
  msgstr "Support forum"
2520
 
2521
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2522
  msgid ""
2523
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2524
  "If you want to use this service you need to upgrade your plugin to Pro "
2525
  "version. Click on the following button."
2526
  msgstr ""
2527
 
2528
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2529
  #, fuzzy
2530
  msgid ""
2531
  "Webnus is elite and trusted author with high percentage of satisfied user. "
@@ -2536,80 +1891,80 @@ msgstr ""
2536
  "tevreden gebruikers. Loop je tegen problemen aan, aarzel dan niet om contact "
2537
  "met ons op te nemen, wij zullen u zo spoedig mogelijk antwoorden."
2538
 
2539
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2540
  msgid "GO PREMIUM"
2541
  msgstr ""
2542
 
2543
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2544
  msgid "OPEN A TICKET"
2545
  msgstr "OPEN EEN TICKET"
2546
 
2547
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2548
  msgid "Upcoming Events"
2549
  msgstr ""
2550
 
2551
- #: app/features/mec/dashboard.php:177
2552
  msgid "Popular Gateways"
2553
  msgstr ""
2554
 
2555
- #: app/features/mec/dashboard.php:228
2556
  msgid "Total Bookings"
2557
  msgstr ""
2558
 
2559
- #: app/features/mec/dashboard.php:255
2560
  msgid "This Month"
2561
  msgstr ""
2562
 
2563
- #: app/features/mec/dashboard.php:256
2564
  msgid "Last Month"
2565
  msgstr ""
2566
 
2567
- #: app/features/mec/dashboard.php:257
2568
  msgid "This Year"
2569
  msgstr ""
2570
 
2571
- #: app/features/mec/dashboard.php:258
2572
  msgid "Last Year"
2573
  msgstr ""
2574
 
2575
- #: app/features/mec/dashboard.php:270
2576
  msgid "Bar"
2577
  msgstr ""
2578
 
2579
- #: app/features/mec/dashboard.php:271
2580
  msgid "Line"
2581
  msgstr ""
2582
 
2583
- #: app/features/mec/dashboard.php:273
2584
  msgid "Filter"
2585
  msgstr ""
2586
 
2587
- #: app/features/mec/dashboard.php:289
2588
  #, php-format
2589
  msgid "Total Sells (%s)"
2590
  msgstr ""
2591
 
2592
- #: app/features/mec/dashboard.php:310
2593
  msgid "Change Log"
2594
  msgstr "Change log"
2595
 
2596
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2597
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2598
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2599
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2600
  msgid "Styling Options"
2601
  msgstr "Styling opties"
2602
 
2603
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2604
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2605
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2606
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2607
  msgid "Custom CSS"
2608
  msgstr "Custom CSS"
2609
 
2610
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2611
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2612
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2613
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2614
  #: app/features/mec/support.php:64
2615
  msgid "Messages"
@@ -2617,7 +1972,7 @@ msgstr ""
2617
 
2618
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2619
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2620
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2621
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2622
  #: app/features/mec/support.php:84
2623
  msgid "Support"
@@ -2630,24 +1985,25 @@ msgstr "Support"
2630
  #: app/features/mec/notifications.php:409
2631
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2632
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2633
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2634
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2635
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2636
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2637
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2638
  msgid "Save Changes"
2639
  msgstr "Wijzigingen opslaan"
2640
 
2641
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2642
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2643
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2644
  #: app/features/mec/styling.php:313
2645
  msgid "Saved"
2646
  msgstr "Opgeslagen"
2647
 
2648
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2649
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2650
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2651
  #: app/features/mec/styling.php:314
2652
  msgid "Settings Saved!"
2653
  msgstr ""
@@ -2859,6 +2215,15 @@ msgstr "Standaardwaarde is Events"
2859
  msgid "Default values are d and F"
2860
  msgstr "Standaardwaarde is Events"
2861
 
 
 
 
 
 
 
 
 
 
2862
  #: app/features/mec/meta_boxes/display_options.php:86
2863
  #: app/features/mec/meta_boxes/display_options.php:195
2864
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -2942,13 +2307,13 @@ msgstr "Standaard"
2942
 
2943
  #: app/features/mec/meta_boxes/display_options.php:287
2944
  #: app/features/mec/meta_boxes/display_options.php:296
2945
- #: app/libraries/main.php:323 app/libraries/main.php:1118
2946
  msgid "List View"
2947
  msgstr "Lijstweergave"
2948
 
2949
  #: app/features/mec/meta_boxes/display_options.php:288
2950
  #: app/features/mec/meta_boxes/display_options.php:306
2951
- #: app/libraries/main.php:327 app/libraries/main.php:1112
2952
  msgid "Yearly View"
2953
  msgstr ""
2954
 
@@ -2960,13 +2325,13 @@ msgstr "Kalender/Maandweergave"
2960
 
2961
  #: app/features/mec/meta_boxes/display_options.php:290
2962
  #: app/features/mec/meta_boxes/display_options.php:326
2963
- #: app/libraries/main.php:330 app/libraries/main.php:1114
2964
  msgid "Weekly View"
2965
  msgstr "Weekweergave "
2966
 
2967
  #: app/features/mec/meta_boxes/display_options.php:291
2968
  #: app/features/mec/meta_boxes/display_options.php:336
2969
- #: app/libraries/main.php:329 app/libraries/main.php:1115
2970
  msgid "Daily View"
2971
  msgstr "Dagweergave"
2972
 
@@ -3211,6 +2576,66 @@ msgstr ""
3211
  msgid "Show Search Form"
3212
  msgstr ""
3213
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3214
  #: app/features/mec/meta_boxes/search_form.php:59
3215
  #: app/features/mec/meta_boxes/search_form.php:106
3216
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3450,6 +2875,14 @@ msgstr "Volledige deelnemers info zoals boekings datim, naam, email enz."
3450
  msgid "Invoice Link"
3451
  msgstr ""
3452
 
 
 
 
 
 
 
 
 
3453
  #: app/features/mec/notifications.php:145
3454
  msgid "Booking Verification"
3455
  msgstr "Boekingsverificatie"
@@ -3467,7 +2900,7 @@ msgstr "Vul meerdere ontvangers in, komma gescheiden."
3467
  msgid "Email/Booking verification link."
3468
  msgstr "Email/boeking verificatie link"
3469
 
3470
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3471
  msgid "Booking Confirmation"
3472
  msgstr "Boekingsbevestiging"
3473
 
@@ -3550,7 +2983,7 @@ msgstr "Titel van evenement"
3550
  msgid "Status of event"
3551
  msgstr "Status evenement"
3552
 
3553
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3554
  msgid "Event Note"
3555
  msgstr ""
3556
 
@@ -3558,492 +2991,500 @@ msgstr ""
3558
  msgid "Admin events management link."
3559
  msgstr "Admin evenement beheer link"
3560
 
3561
- #: app/features/mec/settings.php:42
3562
  msgid "Archive Page Options"
3563
  msgstr ""
3564
 
3565
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3566
  msgid "Export Module Options"
3567
  msgstr "Export module opties"
3568
 
3569
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3570
  msgid "Local Time Module"
3571
  msgstr ""
3572
 
3573
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3574
  msgid "QR Code Module"
3575
  msgstr ""
3576
 
3577
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3578
  msgid "Weather Module"
3579
  msgstr ""
3580
 
3581
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3582
  #, fuzzy
3583
  msgid "Additional Organizers"
3584
  msgstr "Alle organisatoren"
3585
 
3586
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3587
  msgid "Taxes / Fees"
3588
  msgstr "Belastingen / toeslagen"
3589
 
3590
- #: app/features/mec/settings.php:250
3591
  msgid "Time Format"
3592
  msgstr "Tijdformaat"
3593
 
3594
- #: app/features/mec/settings.php:253
3595
  msgid "12 hours format with AM/PM"
3596
  msgstr "12-uurs tijdformaat met AM/PM"
3597
 
3598
- #: app/features/mec/settings.php:254
3599
  msgid "24 hours format"
3600
  msgstr "24-uurs tijdformaat"
3601
 
3602
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3603
  msgid ""
3604
  "This option is for showing start/end time of events on frontend of website."
3605
  msgstr ""
3606
  "Deze optie is voor het tonen van de start / eindtijd van de evenementen op "
3607
  "de website."
3608
 
3609
- #: app/features/mec/settings.php:261
3610
  msgid "Hide Events"
3611
  msgstr ""
3612
 
3613
- #: app/features/mec/settings.php:264
3614
  msgid "On Event Start"
3615
  msgstr ""
3616
 
3617
- #: app/features/mec/settings.php:265
3618
  msgid "+1 Hour after start"
3619
  msgstr ""
3620
 
3621
- #: app/features/mec/settings.php:266
3622
  msgid "+2 Hours after start"
3623
  msgstr ""
3624
 
3625
- #: app/features/mec/settings.php:267
3626
  msgid "On Event End"
3627
  msgstr ""
3628
 
3629
- #: app/features/mec/settings.php:275
3630
  #, fuzzy
3631
  msgid "Multiple Day Events"
3632
  msgstr "Hele dag"
3633
 
3634
- #: app/features/mec/settings.php:278
3635
  msgid "Show only first day on List/Grid/Slider skins"
3636
  msgstr ""
3637
 
3638
- #: app/features/mec/settings.php:279
3639
  msgid "Show only first day on all skins"
3640
  msgstr ""
3641
 
3642
- #: app/features/mec/settings.php:280
3643
  #, fuzzy
3644
  msgid "Show all days"
3645
  msgstr "Alle labels"
3646
 
3647
- #: app/features/mec/settings.php:282
3648
  msgid ""
3649
  "For showing all days of multiple day events on frontend or only show the "
3650
  "first day."
3651
  msgstr ""
3652
 
3653
- #: app/features/mec/settings.php:288
3654
  msgid "Remove MEC Data on Plugin Uninstall"
3655
  msgstr ""
3656
 
3657
- #: app/features/mec/settings.php:298
 
 
 
 
3658
  msgid "Exclude Date Suffix"
3659
  msgstr ""
3660
 
3661
- #: app/features/mec/settings.php:301
3662
  msgid "Remove suffix from calendars"
3663
  msgstr ""
3664
 
3665
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3666
  msgid "Weekdays"
3667
  msgstr ""
3668
 
3669
- #: app/features/mec/settings.php:316
3670
  msgid ""
3671
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3672
  "and Friday."
3673
  msgstr ""
3674
 
3675
- #: app/features/mec/settings.php:323
3676
  msgid "Weekends"
3677
  msgstr ""
3678
 
3679
- #: app/features/mec/settings.php:331
3680
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3681
  msgstr ""
3682
 
3683
- #: app/features/mec/settings.php:339
3684
  msgid "Archive Pages"
3685
  msgstr ""
3686
 
3687
- #: app/features/mec/settings.php:342
3688
  msgid "Archive Page Title"
3689
  msgstr "Archief paginatitel"
3690
 
3691
- #: app/features/mec/settings.php:345
3692
  msgid "Default value is Events"
3693
  msgstr "Standaardwaarde is Events"
3694
 
3695
- #: app/features/mec/settings.php:350
3696
  msgid "Archive Page Skin"
3697
  msgstr "Archief paginaweergave"
3698
 
3699
- #: app/features/mec/settings.php:357
3700
  msgid "Default value is Calendar/Monthly View"
3701
  msgstr "Standaardwaarde is Calendar/Monthly View"
3702
 
3703
- #: app/features/mec/settings.php:362
3704
  #, fuzzy
3705
  msgid "Category Page Skin"
3706
  msgstr "Categorie slug"
3707
 
3708
- #: app/features/mec/settings.php:369
3709
  #, fuzzy
3710
  msgid "Default value is List View"
3711
  msgstr "Standaardwaarde is Events"
3712
 
3713
- #: app/features/mec/settings.php:374
3714
  msgid "Category Events Method"
3715
  msgstr ""
3716
 
3717
- #: app/features/mec/settings.php:378
3718
  msgid "Expired Events"
3719
  msgstr ""
3720
 
3721
- #: app/features/mec/settings.php:380
3722
  msgid "Default value is Upcoming Events"
3723
  msgstr ""
3724
 
3725
- #: app/features/mec/settings.php:385
3726
  msgid "Events Archive Status"
3727
  msgstr ""
3728
 
3729
- #: app/features/mec/settings.php:388
3730
  msgid "Enabled (Recommended)"
3731
  msgstr ""
3732
 
3733
- #: app/features/mec/settings.php:391
3734
  msgid ""
3735
  "If you disable it, then you should create a page as archive page of MEC. "
3736
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3737
  "MEC rewrite rules."
3738
  msgstr ""
3739
 
3740
- #: app/features/mec/settings.php:401
3741
  msgid "Main Slug"
3742
  msgstr "Hoofd slug"
3743
 
3744
- #: app/features/mec/settings.php:404
3745
  msgid ""
3746
  "Default value is events. Valid characters are lowercase a-z, - character and "
3747
  "numbers."
3748
  msgstr ""
3749
 
3750
- #: app/features/mec/settings.php:408
3751
  msgid "Category Slug"
3752
  msgstr "Categorie slug"
3753
 
3754
- #: app/features/mec/settings.php:411
3755
  msgid ""
3756
  "It's slug of MEC categories, you can change it to events-cat or something "
3757
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3758
  "character and numbers."
3759
  msgstr ""
3760
 
3761
- #: app/features/mec/settings.php:421
3762
  msgid "Single Event Date Format"
3763
  msgstr ""
3764
 
3765
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3766
  #, fuzzy
3767
  msgid "Default is M d Y"
3768
  msgstr "Standaard"
3769
 
3770
- #: app/features/mec/settings.php:428
3771
  msgid "Date Method"
3772
  msgstr ""
3773
 
3774
- #: app/features/mec/settings.php:431
3775
  msgid "Next occurrence date"
3776
  msgstr ""
3777
 
3778
- #: app/features/mec/settings.php:432
3779
  msgid "Referred date"
3780
  msgstr ""
3781
 
3782
- #: app/features/mec/settings.php:434
3783
  msgid ""
3784
  "\"Referred date\" shows the event date based on referred date in event list."
3785
  msgstr ""
3786
 
3787
- #: app/features/mec/settings.php:438
3788
  msgid "Single Event Style"
3789
  msgstr ""
3790
 
3791
- #: app/features/mec/settings.php:441
3792
  msgid "Default Style"
3793
  msgstr ""
3794
 
3795
- #: app/features/mec/settings.php:442
3796
  msgid "Modern Style"
3797
  msgstr ""
3798
 
3799
- #: app/features/mec/settings.php:444
3800
  msgid "Choose your single event style."
3801
  msgstr ""
3802
 
3803
- #: app/features/mec/settings.php:453
3804
  msgid "Currency"
3805
  msgstr "Valuta"
3806
 
3807
- #: app/features/mec/settings.php:463
3808
  msgid "Currency Sign"
3809
  msgstr "Valutasymbool"
3810
 
3811
- #: app/features/mec/settings.php:466
3812
  msgid "Default value will be \"currency\" if you leave it empty."
3813
  msgstr "Standaardwaarde is \"currency\" als je het leeg laat."
3814
 
3815
- #: app/features/mec/settings.php:470
3816
  msgid "Currency Position"
3817
  msgstr "Valutasymbool-positie"
3818
 
3819
- #: app/features/mec/settings.php:473
3820
  msgid "Before $10"
3821
  msgstr "Voor $10"
3822
 
3823
- #: app/features/mec/settings.php:474
3824
  msgid "After 10$"
3825
  msgstr "Achter 10$"
3826
 
3827
- #: app/features/mec/settings.php:479
3828
  msgid "Thousand Separator"
3829
  msgstr "Duizendtalscheiding"
3830
 
3831
- #: app/features/mec/settings.php:485
3832
  msgid "Decimal Separator"
3833
  msgstr "Decimaalscheiding"
3834
 
3835
- #: app/features/mec/settings.php:495
3836
  msgid "No decimal"
3837
  msgstr "Geen decimaal"
3838
 
3839
- #: app/features/mec/settings.php:511
3840
  msgid "Show Google Maps on event page"
3841
  msgstr "Laat Google Maps op evenementen pagina zien"
3842
 
3843
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3844
- #: app/features/mec/settings.php:1135
3845
  msgid "API Key"
3846
  msgstr "API key"
3847
 
3848
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3849
- #: app/features/mec/settings.php:1145
3850
  msgid "Required!"
3851
  msgstr "Verplicht!"
3852
 
3853
- #: app/features/mec/settings.php:523
3854
  msgid "Zoom level"
3855
  msgstr "Zoom level"
3856
 
3857
- #: app/features/mec/settings.php:530
3858
  msgid ""
3859
  "For Google Maps module in single event page. In Google Maps skin, it will "
3860
  "caculate the zoom level automatically based on event boundaries."
3861
  msgstr ""
3862
 
3863
- #: app/features/mec/settings.php:534
3864
  msgid "Google Maps Style"
3865
  msgstr "Goog Maps stijl"
3866
 
3867
- #: app/features/mec/settings.php:538
3868
  msgid "Default"
3869
  msgstr "Standaard"
3870
 
3871
- #: app/features/mec/settings.php:546
3872
  msgid "Direction on single event"
3873
  msgstr "Routebeschrijving op evenementen pagina"
3874
 
3875
- #: app/features/mec/settings.php:550
3876
  msgid "Simple Method"
3877
  msgstr "Eenvoudige weergave"
3878
 
3879
- #: app/features/mec/settings.php:551
3880
  msgid "Advanced Method"
3881
  msgstr "Geavanceerde weergave"
3882
 
3883
- #: app/features/mec/settings.php:556
3884
  msgid "Lightbox Date Format"
3885
  msgstr ""
3886
 
3887
- #: app/features/mec/settings.php:559
3888
  #, fuzzy
3889
  msgid "Default value is M d Y"
3890
  msgstr "Standaardwaarde is Events"
3891
 
3892
- #: app/features/mec/settings.php:563
3893
  #, fuzzy
3894
  msgid "Google Maps API"
3895
  msgstr "Goog Maps stijl"
3896
 
3897
- #: app/features/mec/settings.php:567
3898
  msgid "Don't load Google Maps API library"
3899
  msgstr ""
3900
 
3901
- #: app/features/mec/settings.php:569
3902
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3903
  msgstr ""
3904
 
3905
- #: app/features/mec/settings.php:581
3906
  msgid "Enable Google Recaptcha"
3907
  msgstr "Google Recaptcha inschakelen"
3908
 
3909
- #: app/features/mec/settings.php:588
3910
  msgid "Enable on booking form"
3911
  msgstr "Inschakelen op boekingsformulier"
3912
 
3913
- #: app/features/mec/settings.php:594
3914
  msgid "Enable on \"Frontend Event Submittion\" form"
3915
  msgstr "Inschakelen op het formulier van \"Evenement aanmaken op een pagina\""
3916
 
3917
- #: app/features/mec/settings.php:598
3918
  msgid "Site Key"
3919
  msgstr "Site key"
3920
 
3921
- #: app/features/mec/settings.php:618
 
 
 
 
3922
  msgid ""
3923
  "Show export module (iCal export and add to Google calendars) on event page"
3924
  msgstr ""
3925
  "Laat export module (iCal export en toevoegen aan Google kalender) zien op de "
3926
  "evenementen pagina."
3927
 
3928
- #: app/features/mec/settings.php:625
3929
  msgid "Google Calendar"
3930
  msgstr "Google kalender"
3931
 
3932
- #: app/features/mec/settings.php:645
3933
  msgid "Show event time based on local time of visitor on event page"
3934
  msgstr ""
3935
 
3936
- #: app/features/mec/settings.php:661
3937
  msgid "Show QR code of event in details page and booking invoice"
3938
  msgstr ""
3939
 
3940
- #: app/features/mec/settings.php:679
3941
  msgid "Show weather module on event page"
3942
  msgstr ""
3943
 
3944
- #: app/features/mec/settings.php:687
3945
  #, php-format
3946
  msgid "You can get a free API Key from %s"
3947
  msgstr ""
3948
 
3949
- #: app/features/mec/settings.php:699
3950
  msgid "Show countdown module on event page"
3951
  msgstr "Laat countdown module zien op evenementen pagina"
3952
 
3953
- #: app/features/mec/settings.php:704
3954
  msgid "Countdown Style"
3955
  msgstr ""
3956
 
3957
- #: app/features/mec/settings.php:707
3958
  msgid "Plain Style"
3959
  msgstr ""
3960
 
3961
- #: app/features/mec/settings.php:708
3962
  msgid "Flip Style"
3963
  msgstr ""
3964
 
3965
- #: app/features/mec/settings.php:720
3966
  msgid "Show social network module"
3967
  msgstr "Laat social media module zien"
3968
 
3969
- #: app/features/mec/settings.php:745
3970
  msgid "Show next event module on event page"
3971
  msgstr ""
3972
 
3973
- #: app/features/mec/settings.php:750
3974
  msgid "Method"
3975
  msgstr ""
3976
 
3977
- #: app/features/mec/settings.php:753
3978
  msgid "Next Occurrence of Current Event"
3979
  msgstr ""
3980
 
3981
- #: app/features/mec/settings.php:754
3982
  msgid "Next Occurrence of Other Events"
3983
  msgstr ""
3984
 
3985
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
3986
  #, fuzzy
3987
  msgid "Date Format"
3988
  msgstr "Tijdformaat"
3989
 
3990
- #: app/features/mec/settings.php:771
3991
  #, fuzzy
3992
  msgid "Events List Page"
3993
  msgstr "Evenement titel"
3994
 
3995
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
3996
  #, php-format
3997
  msgid "Put %s shortcode into the page."
3998
  msgstr "Zet %s shortcode in de pagina"
3999
 
4000
- #: app/features/mec/settings.php:783
4001
  #, fuzzy
4002
  msgid "Add/Edit Events Page"
4003
  msgstr "Bewerk evenement"
4004
 
4005
- #: app/features/mec/settings.php:797
4006
  msgid "Enable event submission by guest (Not logged-in) users"
4007
  msgstr "Laat gasten (niet ingelogd gebruikers) evenementen aan kunnen maken."
4008
 
4009
- #: app/features/mec/settings.php:804
4010
  msgid "Enable mandatory email and name for guest user"
4011
  msgstr ""
4012
 
4013
- #: app/features/mec/settings.php:808
4014
  #, fuzzy
4015
  msgid "Frontend Event Submission Sections"
4016
  msgstr "Evenement aanmaken op een pagina"
4017
 
4018
- #: app/features/mec/settings.php:830
4019
  #, fuzzy
4020
  msgid "Event Categories"
4021
  msgstr "Categorieën"
4022
 
4023
- #: app/features/mec/settings.php:836
4024
  msgid "Event Labels"
4025
  msgstr "Evenement label"
4026
 
4027
- #: app/features/mec/settings.php:848
4028
  #, fuzzy
4029
  msgid "Event Tags"
4030
  msgstr "Evenementen"
4031
 
4032
- #: app/features/mec/settings.php:860
4033
  msgid "Event Organizer"
4034
  msgstr "Evenement organisator"
4035
 
4036
- #: app/features/mec/settings.php:872
4037
  #, fuzzy
4038
  msgid "Booking Options"
4039
  msgstr "Styling opties"
4040
 
4041
- #: app/features/mec/settings.php:878
4042
  #, fuzzy
4043
  msgid "Fees/Taxes Options"
4044
  msgstr "Algemene opties"
4045
 
4046
- #: app/features/mec/settings.php:886
4047
  #, php-format
4048
  msgid ""
4049
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4051,207 +3492,212 @@ msgid ""
4051
  "users' note in email."
4052
  msgstr ""
4053
 
4054
- #: app/features/mec/settings.php:890
4055
  msgid "Visibility of Note"
4056
  msgstr ""
4057
 
4058
- #: app/features/mec/settings.php:893
4059
  msgid "Always"
4060
  msgstr ""
4061
 
4062
- #: app/features/mec/settings.php:894
4063
  msgid "While event is not published"
4064
  msgstr ""
4065
 
4066
- #: app/features/mec/settings.php:897
4067
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4068
  msgstr ""
4069
 
4070
- #: app/features/mec/settings.php:903
4071
  msgid "Exceptional days"
4072
  msgstr ""
4073
 
4074
- #: app/features/mec/settings.php:907
4075
  msgid "Show exceptional days option on Add/Edit events page"
4076
  msgstr ""
4077
 
4078
- #: app/features/mec/settings.php:908
4079
  msgid ""
4080
  "Using this option you can include/exclude certain days to/from event "
4081
  "occurrence dates."
4082
  msgstr ""
4083
 
4084
- #: app/features/mec/settings.php:918
4085
  msgid ""
4086
  "Show additional organizers option on Add/Edit events page and single event "
4087
  "page."
4088
  msgstr ""
4089
 
4090
- #: app/features/mec/settings.php:932
4091
  msgid "Enable booking module"
4092
  msgstr "Boeking module inschakelen"
4093
 
4094
- #: app/features/mec/settings.php:940
4095
  #, fuzzy
4096
  msgid "Default is Y-m-d"
4097
  msgstr "Standaard"
4098
 
4099
- #: app/features/mec/settings.php:944
4100
  #, fuzzy
4101
  msgid "Maximum Dates"
4102
  msgstr "Mximum evenementen"
4103
 
4104
- #: app/features/mec/settings.php:946
4105
  #, fuzzy
4106
  msgid "Default is 6"
4107
  msgstr "Standaard"
4108
 
4109
- #: app/features/mec/settings.php:950
4110
  msgid "Thank You Page"
4111
  msgstr ""
4112
 
4113
- #: app/features/mec/settings.php:958
4114
  msgid ""
4115
  "User redirects to this page after booking. Leave it empty if you want to "
4116
  "disable it."
4117
  msgstr ""
4118
 
4119
- #: app/features/mec/settings.php:966
4120
  msgid "Enable Express Attendees Form"
4121
  msgstr ""
4122
 
4123
- #: app/features/mec/settings.php:968
4124
  msgid ""
4125
  "Users are able to apply first attendee information for other attendees in "
4126
  "the booking form."
4127
  msgstr ""
4128
 
4129
- #: app/features/mec/settings.php:971
4130
  msgid "Email verification"
4131
  msgstr "Email verificatie"
4132
 
4133
- #: app/features/mec/settings.php:977
4134
  msgid "Auto verification for free bookings"
4135
  msgstr "Automatisch verifiëren voor gratis boekingen"
4136
 
4137
- #: app/features/mec/settings.php:986
4138
  msgid "Auto verification for paid bookings"
4139
  msgstr "Automatisch verifiëren voor betaalde boekingen"
4140
 
4141
- #: app/features/mec/settings.php:996
4142
  msgid "Auto confirmation for free bookings"
4143
  msgstr "Automatisch bevestigen voor gratis boekingen"
4144
 
4145
- #: app/features/mec/settings.php:1005
4146
  msgid "Auto confirmation for paid bookings"
4147
  msgstr "Automatisch bevestigen voor betaalde boekingen"
4148
 
4149
- #: app/features/mec/settings.php:1022
4150
  msgid "Enable coupons module"
4151
  msgstr "Coupons module inschakelen"
4152
 
4153
- #: app/features/mec/settings.php:1039
4154
  msgid "Enable taxes / fees module"
4155
  msgstr "Belastingen / toeslagen module inschakelen"
4156
 
4157
- #: app/features/mec/settings.php:1044
4158
  msgid "Add Fee"
4159
  msgstr "Toeslag toevoegen"
4160
 
4161
- #: app/features/mec/settings.php:1100
4162
  msgid "Enable BuddyPress Integration"
4163
  msgstr ""
4164
 
4165
- #: app/features/mec/settings.php:1107
4166
  msgid "Show \"Attendees Module\" in event details page"
4167
  msgstr ""
4168
 
4169
- #: app/features/mec/settings.php:1111
4170
  msgid "Attendees Limit"
4171
  msgstr ""
4172
 
4173
- #: app/features/mec/settings.php:1119
4174
  msgid "Add booking activity to user profile"
4175
  msgstr ""
4176
 
4177
- #: app/features/mec/settings.php:1130
4178
  msgid "Enable Mailchimp Integration"
4179
  msgstr ""
4180
 
4181
- #: app/features/mec/settings.php:1142
4182
  msgid "List ID"
4183
  msgstr ""
4184
 
4185
- #: app/features/mec/settings.php:1149
4186
  msgid "Subscription Status"
4187
  msgstr ""
4188
 
4189
- #: app/features/mec/settings.php:1152
4190
  msgid "Subscribe automatically"
4191
  msgstr ""
4192
 
4193
- #: app/features/mec/settings.php:1153
4194
  msgid "Subscribe by verification"
4195
  msgstr ""
4196
 
4197
- #: app/features/mec/settings.php:1155
4198
  msgid ""
4199
  "If you choose \"Subscribe by verification\" then an email will send to user "
4200
  "by mailchimp for subscription verification."
4201
  msgstr ""
4202
 
4203
- #: app/features/mec/settings.php:1165
4204
  #, php-format
4205
  msgid "%s is required to use this section."
4206
  msgstr ""
4207
 
4208
- #: app/features/mec/settings.php:1168
4209
  msgid "Purchase Code"
4210
  msgstr ""
4211
 
4212
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4213
  #, fuzzy
4214
  msgid "UnVerified"
4215
  msgstr "Geverifieerd"
4216
 
4217
- #: app/features/mec/settings.php:1177
4218
  msgid ""
4219
  "Please insert your purchase code validation. read documentation for more "
4220
  "information."
4221
  msgstr ""
4222
 
4223
- #: app/features/mec/settings.php:1180
4224
  msgid "Product Name"
4225
  msgstr ""
4226
 
4227
- #: app/features/mec/settings.php:1183
4228
  msgid "1 License for MEC Plugin"
4229
  msgstr ""
4230
 
4231
- #: app/features/mec/settings.php:1184
4232
  msgid "5 License for MEC Plugin"
4233
  msgstr ""
4234
 
4235
- #: app/features/mec/settings.php:1185
4236
  msgid "10 License for MEC Plugin"
4237
  msgstr ""
4238
 
4239
- #: app/features/mec/settings.php:1192
4240
  msgid "MEC Deactivation"
4241
  msgstr ""
4242
 
4243
- #: app/features/mec/settings.php:1194
4244
  msgid "Deactivate"
4245
  msgstr ""
4246
 
4247
- #: app/features/mec/settings.php:1196
4248
  msgid ""
4249
  "For deactivation first delete your purchase from above field then press save "
4250
  "after that click on deactivate for deactivate this purchase code from this "
4251
  "domain then you can activate another domain."
4252
  msgstr ""
4253
 
4254
- #: app/features/mec/settings.php:1257
4255
  msgid "Please Refresh Page"
4256
  msgstr ""
4257
 
@@ -4409,7 +3855,7 @@ msgstr "bijv. john@smith.com"
4409
  msgid "eg. https://webnus.net"
4410
  msgstr "bijv. https://webnus.net"
4411
 
4412
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4413
  #: app/skins/single.php:194
4414
  msgid "Other Organizers"
4415
  msgstr ""
@@ -4424,6 +3870,15 @@ msgstr ""
4424
  msgid "%s Price"
4425
  msgstr ""
4426
 
 
 
 
 
 
 
 
 
 
4427
  #: app/libraries/factory.php:148
4428
  msgid "M.E. Calendar"
4429
  msgstr "M.E. Calendar"
@@ -4495,32 +3950,32 @@ msgstr ""
4495
  msgid "There is no excerpt because this is a protected post."
4496
  msgstr "Er is geen samenvatting omdat dit bericht is beveiligd."
4497
 
4498
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4499
  msgid "Grid View"
4500
  msgstr "Grid weergave"
4501
 
4502
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4503
  msgid "Agenda View"
4504
  msgstr ""
4505
 
4506
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4507
  #, fuzzy
4508
  msgid "Full Calendar"
4509
  msgstr "Google kalender"
4510
 
4511
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4512
  msgid "Calendar/Monthly View"
4513
  msgstr "Kalender/Maandweergave"
4514
 
4515
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4516
  msgid "Timetable View"
4517
  msgstr ""
4518
 
4519
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4520
  msgid "Masonry View"
4521
  msgstr ""
4522
 
4523
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4524
  msgid "Map View"
4525
  msgstr "Map weergave"
4526
 
@@ -4546,31 +4001,31 @@ msgstr "Cover weergave"
4546
  msgid "Slider View"
4547
  msgstr ""
4548
 
4549
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4550
  msgid "SU"
4551
  msgstr "ZO"
4552
 
4553
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4554
  msgid "MO"
4555
  msgstr "MA"
4556
 
4557
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4558
  msgid "TU"
4559
  msgstr "DI"
4560
 
4561
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4562
  msgid "WE"
4563
  msgstr "WO"
4564
 
4565
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4566
  msgid "TH"
4567
  msgstr "DO"
4568
 
4569
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4570
  msgid "FR"
4571
  msgstr "VR"
4572
 
4573
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4574
  msgid "SA"
4575
  msgstr "ZA"
4576
 
@@ -4594,226 +4049,254 @@ msgstr "Google+"
4594
  msgid "Twitter"
4595
  msgstr "Twitter"
4596
 
4597
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4598
  msgid "Linkedin"
4599
  msgstr "Linkedin"
4600
 
4601
- #: app/libraries/main.php:1052
 
 
 
 
4602
  msgid "Share on Facebook"
4603
  msgstr "Deel op Facebook"
4604
 
4605
- #: app/libraries/main.php:1064
4606
  msgid "Google Plus"
4607
  msgstr "Google Plus"
4608
 
4609
- #: app/libraries/main.php:1076
4610
  msgid "Tweet"
4611
  msgstr "Tweet"
4612
 
4613
- #: app/libraries/main.php:1456
4614
  msgid "Your booking successfully verified."
4615
  msgstr "Uw boeking is succesvol geverifieerd."
4616
 
4617
- #: app/libraries/main.php:1457
4618
  msgid "Your booking cannot verify!"
4619
  msgstr "Uw boeking kan niet worden geverifieerd!"
4620
 
4621
- #: app/libraries/main.php:1469
4622
  msgid "Your booking successfully canceled."
4623
  msgstr "Uw boeking is succesvol geannuleerd."
4624
 
4625
- #: app/libraries/main.php:1470
4626
  msgid "Your booking cannot be canceled."
4627
  msgstr "Uw boeking kan niet worden geannuleerd."
4628
 
4629
- #: app/libraries/main.php:1474
4630
  msgid "You canceled the payment successfully."
4631
  msgstr "U heeft de betaling succesvol geannuleerd."
4632
 
4633
- #: app/libraries/main.php:1478
4634
  msgid "You returned from payment gateway successfully."
4635
  msgstr "U bent succesvol teruggestuurd vanaf uw betaling."
4636
 
4637
- #: app/libraries/main.php:1502
4638
  msgid "Cannot find the booking!"
4639
  msgstr ""
4640
 
4641
- #: app/libraries/main.php:1502
4642
  msgid "Booking is invalid."
4643
  msgstr ""
4644
 
4645
- #: app/libraries/main.php:1523
4646
  #, php-format
4647
  msgid "%s Invoice"
4648
  msgstr ""
4649
 
4650
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4651
  msgid "Billing"
4652
  msgstr ""
4653
 
4654
- #: app/libraries/main.php:1586
4655
  msgid "Total"
4656
  msgstr ""
4657
 
4658
- #: app/libraries/main.php:1619
4659
  msgid "Security nonce is not valid."
4660
  msgstr "Beveiligingscode ongeldig (nonce)"
4661
 
4662
- #: app/libraries/main.php:1619
4663
  msgid "iCal export stopped!"
4664
  msgstr "iCal exporteren gestopt!"
4665
 
4666
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4667
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4668
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4669
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4670
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4671
  msgid "Sort"
4672
  msgstr "Sorteren"
4673
 
4674
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4675
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4676
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4677
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4678
  msgid "Required Field"
4679
  msgstr "Verplicht veld"
4680
 
4681
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4682
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4683
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4684
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4685
  msgid "Insert a label for this field"
4686
  msgstr "Voer een label in voor dit veld"
4687
 
4688
- #: app/libraries/main.php:1962
4689
  msgid "HTML and shortcode are allowed."
4690
  msgstr "HTML en shortcodes zijn toegestaan."
4691
 
4692
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4693
- #: app/libraries/main.php:2093
4694
  msgid "Option"
4695
  msgstr "Optie"
4696
 
4697
- #: app/libraries/main.php:2127
4698
  #, php-format
4699
  msgid "Instead of %s, the page title with a link will be show."
4700
  msgstr ""
4701
 
4702
- #: app/libraries/main.php:2129
4703
  msgid "Agreement Page"
4704
  msgstr ""
4705
 
4706
- #: app/libraries/main.php:2138
4707
  msgid "Status"
4708
  msgstr ""
4709
 
4710
- #: app/libraries/main.php:2140
4711
  msgid "Checked by default"
4712
  msgstr ""
4713
 
4714
- #: app/libraries/main.php:2141
4715
  msgid "Unchecked by default"
4716
  msgstr ""
4717
 
4718
- #: app/libraries/main.php:2163
4719
  msgid "Insert a label for this option"
4720
  msgstr "Voer een label in voor deze optie"
4721
 
4722
- #: app/libraries/main.php:2830
 
 
 
 
4723
  #, php-format
4724
  msgid "Copy of %s"
4725
  msgstr ""
4726
 
4727
- #: app/libraries/main.php:3467
4728
  msgid "Booked an event."
4729
  msgstr ""
4730
 
4731
- #: app/libraries/main.php:3508
4732
  #, php-format
4733
  msgid "%s booked %s event."
4734
  msgstr ""
4735
 
4736
- #: app/libraries/main.php:3950
4737
  msgid "Taxonomies"
4738
  msgstr ""
4739
 
4740
- #: app/libraries/main.php:3952
4741
  msgid "Category Plural Label"
4742
  msgstr ""
4743
 
4744
- #: app/libraries/main.php:3953
4745
  msgid "Category Singular Label"
4746
  msgstr ""
4747
 
4748
- #: app/libraries/main.php:3954
4749
  msgid "Label Plural Label"
4750
  msgstr ""
4751
 
4752
- #: app/libraries/main.php:3955
4753
  msgid "Label Singular Label"
4754
  msgstr ""
4755
 
4756
- #: app/libraries/main.php:3955
4757
  msgid "label"
4758
  msgstr ""
4759
 
4760
- #: app/libraries/main.php:3956
4761
  msgid "Location Plural Label"
4762
  msgstr ""
4763
 
4764
- #: app/libraries/main.php:3957
4765
  msgid "Location Singular Label"
4766
  msgstr ""
4767
 
4768
- #: app/libraries/main.php:3958
4769
  msgid "Organizer Plural Label"
4770
  msgstr ""
4771
 
4772
- #: app/libraries/main.php:3959
4773
  msgid "Organizer Singular Label"
4774
  msgstr ""
4775
 
4776
- #: app/libraries/main.php:3965
4777
  msgid "Sunday abbreviation"
4778
  msgstr ""
4779
 
4780
- #: app/libraries/main.php:3966
4781
  msgid "Monday abbreviation"
4782
  msgstr ""
4783
 
4784
- #: app/libraries/main.php:3967
4785
  msgid "Tuesday abbreviation"
4786
  msgstr ""
4787
 
4788
- #: app/libraries/main.php:3968
4789
  msgid "Wednesday abbreviation"
4790
  msgstr ""
4791
 
4792
- #: app/libraries/main.php:3969
4793
  msgid "Thursday abbreviation"
4794
  msgstr ""
4795
 
4796
- #: app/libraries/main.php:3970
4797
  msgid "Friday abbreviation"
4798
  msgstr ""
4799
 
4800
- #: app/libraries/main.php:3971
4801
  msgid "Saturday abbreviation"
4802
  msgstr ""
4803
 
4804
- #: app/libraries/main.php:3975
4805
  msgid "Others"
4806
  msgstr ""
4807
 
4808
- #: app/libraries/main.php:3977
4809
  msgid "Booking Success Message"
4810
  msgstr ""
4811
 
4812
- #: app/libraries/main.php:3978
 
 
 
 
 
 
 
 
4813
  msgid "Register Button"
4814
  msgstr ""
4815
 
4816
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4817
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4818
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4819
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4827,11 +4310,11 @@ msgstr ""
4827
  msgid "REGISTER"
4828
  msgstr "REGISTREREN"
4829
 
4830
- #: app/libraries/main.php:3979
4831
  msgid "View Detail Button"
4832
  msgstr ""
4833
 
4834
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4835
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4836
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4837
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4842,40 +4325,40 @@ msgstr ""
4842
  msgid "View Detail"
4843
  msgstr "Bekijk detail"
4844
 
4845
- #: app/libraries/main.php:3980
4846
  msgid "Event Detail Button"
4847
  msgstr ""
4848
 
4849
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4850
  #, fuzzy
4851
  msgid "Event Detail"
4852
  msgstr "Evenement details"
4853
 
4854
- #: app/libraries/main.php:3982
4855
  msgid "More Info Link"
4856
  msgstr ""
4857
 
4858
- #: app/libraries/main.php:3985
4859
  msgid "Ticket (Singular)"
4860
  msgstr ""
4861
 
4862
- #: app/libraries/main.php:3986
4863
  msgid "Tickets (Plural)"
4864
  msgstr ""
4865
 
4866
- #: app/libraries/main.php:4052
4867
  msgid "EventON"
4868
  msgstr ""
4869
 
4870
- #: app/libraries/main.php:4053
4871
  msgid "The Events Calendar"
4872
  msgstr ""
4873
 
4874
- #: app/libraries/main.php:4054
4875
  msgid "Events Schedule WP Plugin"
4876
  msgstr ""
4877
 
4878
- #: app/libraries/main.php:4055
4879
  msgid "Calendarize It"
4880
  msgstr ""
4881
 
@@ -4899,6 +4382,14 @@ msgstr "Een nieuwe boeking ontvangen."
4899
  msgid "A new event is added."
4900
  msgstr "Een nieuw evenement is toegevoegd."
4901
 
 
 
 
 
 
 
 
 
4902
  #: app/libraries/render.php:337
4903
  msgid "Skin controller does not exist."
4904
  msgstr "Skin controller bestaat niet."
@@ -4927,6 +4418,10 @@ msgstr ""
4927
  msgid "%s tickets"
4928
  msgstr ""
4929
 
 
 
 
 
4930
  #: app/modules/booking/steps/checkout.php:33
4931
  msgid "Discount Coupon"
4932
  msgstr "Kortingscoupon"
@@ -4953,6 +4448,11 @@ msgstr ""
4953
  msgid "Next"
4954
  msgstr "Volgende"
4955
 
 
 
 
 
 
4956
  #: app/modules/booking/steps/tickets.php:18
4957
  msgid "Book Event"
4958
  msgstr "Evenement boeken"
@@ -5245,6 +4745,12 @@ msgstr ""
5245
  msgid "QR Code : "
5246
  msgstr ""
5247
 
 
 
 
 
 
 
5248
  #. Plugin URI of the plugin/theme
5249
  msgid "http://webnus.net/plugins/modern-events-calendar/"
5250
  msgstr ""
@@ -5261,6 +4767,224 @@ msgstr ""
5261
  msgid "http://webnus.net"
5262
  msgstr ""
5263
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5264
  #~ msgid "Attendee"
5265
  #~ msgstr "Aanwezige"
5266
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2018-09-09 16:07+0430\n"
5
+ "PO-Revision-Date: 2018-09-09 16:07+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
20
  "X-Poedit-SearchPath-0: .\n"
21
  "X-Poedit-SearchPathExcluded-0: *.js\n"
22
 
 
23
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
24
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
25
  #: app/widgets/MEC.php:23
30
  msgid "Content"
31
  msgstr "Inhoud"
32
 
33
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
34
+ #: app/features/mec.php:238 app/features/mec.php:264
35
  msgid "Shortcode"
36
  msgstr "Shortcode"
37
 
39
  msgid "Select from predefined shortcodes"
40
  msgstr "Selecteer uit voorgedefinieerde schortcodes"
41
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
42
  #: app/features/colors.php:50 app/features/fes/form.php:566
43
+ #: app/features/mec/settings.php:847
44
  msgid "Event Color"
45
  msgstr "Evenement kleur"
46
 
47
+ #: app/features/contextual.php:55 app/features/mec.php:195
48
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
49
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
50
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
51
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
52
  #: app/features/mec/support.php:18
53
  msgid "Settings"
54
  msgstr "Instellingen"
55
 
56
+ #: app/features/contextual.php:62 app/features/events.php:910
57
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
58
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
59
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
60
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
61
+ #: app/features/mec/support.php:27
62
+ msgid "Booking Form"
63
+ msgstr "Boekingsformulier"
64
+
65
  #: app/features/contextual.php:63
66
  msgid ""
67
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
74
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
75
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
76
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
77
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
78
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
79
  msgid "Payment Gateways"
80
  msgstr "Betaalmethoden "
89
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
90
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
91
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
92
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
93
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
94
  msgid "Notifications"
95
  msgstr "Meldingen"
150
  "\"0\" allowfullscreen></iframe>"
151
  msgstr ""
152
 
153
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
154
+ #: app/features/mec/settings.php:252
155
  msgid "General Options"
156
  msgstr "Algemene opties"
157
 
158
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
159
+ #: app/features/mec/settings.php:404
160
  msgid "Slugs/Permalinks"
161
  msgstr "Slugs/Permalink"
162
 
163
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
164
+ #: app/features/mec/settings.php:424
165
  msgid "Event Details/Single Event Page"
166
  msgstr ""
167
 
168
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
169
+ #: app/features/mec/settings.php:456
170
  msgid "Currency Options"
171
  msgstr "Valuta opties"
172
 
173
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
174
+ #: app/features/mec/settings.php:508
175
  msgid "Google Maps Options"
176
  msgstr "Google Maps opties"
177
 
178
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
179
+ #: app/features/mec/settings.php:582
180
  msgid "Google Recaptcha Options"
181
  msgstr "Google Recaptcha opties"
182
 
183
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
184
+ #: app/features/mec/settings.php:700
185
  msgid "Countdown Options"
186
  msgstr "Countdown opties"
187
 
188
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
189
+ #: app/features/mec/settings.php:721
190
  msgid "Social Networks"
191
  msgstr "Social media"
192
 
193
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
194
+ #: app/features/mec/settings.php:746
195
  msgid "Next Event Module"
196
  msgstr ""
197
 
198
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
199
+ #: app/features/mec/settings.php:774
200
  msgid "Frontend Event Submission"
201
  msgstr "Evenement aanmaken op een pagina"
202
 
203
  #: app/features/contextual.php:298 app/features/events.php:570
204
+ #: app/features/mec/settings.php:131
205
  #, fuzzy
206
  msgid "Exceptional Days"
207
  msgstr "Expiration Date"
208
 
209
+ #: app/features/contextual.php:308 app/features/events.php:253
210
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
211
+ msgid "Booking"
212
+ msgstr "Boeking"
213
+
214
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
215
+ #: app/features/mec/settings.php:1019
216
  msgid "Coupons"
217
  msgstr "Coupons"
218
 
219
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
220
+ #: app/features/mec/settings.php:1101
221
  msgid "BuddyPress Integration"
222
  msgstr ""
223
 
224
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
225
+ #: app/features/mec/settings.php:1131
226
  msgid "Mailchimp Integration"
227
  msgstr ""
228
 
229
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
230
+ #: app/features/mec/settings.php:1167
231
  msgid "MEC Activation"
232
  msgstr ""
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  #: app/features/events.php:122 app/features/ix/export.php:33
235
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
236
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
237
  msgid "Events"
238
  msgstr "Evenementen"
239
 
240
+ #: app/features/events.php:123
241
+ #: app/features/mec/meta_boxes/display_options.php:678
242
+ #: app/features/mec/meta_boxes/display_options.php:716
243
+ #: app/features/mec/meta_boxes/display_options.php:745
244
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
245
+ #: app/skins/yearly_view/tpl.php:69
246
+ msgid "Event"
247
+ msgstr "Evenement"
248
+
249
+ #: app/features/events.php:124 app/features/mec.php:188
250
  msgid "Add Event"
251
  msgstr "Evenement toevoegen"
252
 
259
  msgid "No events found!"
260
  msgstr "Geen evenementen gevonden!"
261
 
262
+ #: app/features/events.php:127
263
+ msgid "All Events"
264
+ msgstr "Alle evenementen"
265
+
266
  #: app/features/events.php:128
267
  msgid "Edit Event"
268
  msgstr ""
285
  #: app/features/mec/meta_boxes/search_form.php:285
286
  #: app/features/mec/meta_boxes/search_form.php:325
287
  #: app/features/mec/meta_boxes/search_form.php:372
288
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
289
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
290
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
291
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
293
  msgstr "Categorie"
294
 
295
  #: app/features/events.php:143 app/features/fes/form.php:518
296
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
297
+ #: app/libraries/main.php:3967
298
  msgid "Categories"
299
  msgstr "Categorieën"
300
 
361
  #: app/features/events.php:286 app/features/events.php:1631
362
  #: app/features/events.php:1675 app/features/fes/form.php:479
363
  #: app/features/ix.php:2328 app/features/ix.php:2369
364
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
365
  msgid "Event Cost"
366
  msgstr "Evenements kosten"
367
 
368
  #: app/features/events.php:289 app/features/fes/form.php:482
369
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
370
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
371
  #: app/skins/single/modern.php:179
372
  msgid "Cost"
380
  msgid "Guest Data"
381
  msgstr ""
382
 
383
+ #: app/features/events.php:370 app/features/fes/form.php:441
384
+ #: app/features/labels.php:151 app/features/organizers.php:268
385
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
386
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
387
+ msgid "Name"
388
+ msgstr "Naam"
389
+
390
+ #: app/features/events.php:371 app/features/events.php:945
391
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
392
+ #: app/features/organizers.php:110 app/features/organizers.php:150
393
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
394
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
395
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
396
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
397
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
398
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
399
+ #: app/skins/single/modern.php:38
400
+ msgid "Email"
401
+ msgstr "Email"
402
+
403
  #: app/features/events.php:375 app/features/fes/form.php:221
404
  msgid "Date and Time"
405
  msgstr "Datum en tijd"
409
  #: app/features/events.php:1675 app/features/fes/form.php:225
410
  #: app/features/fes/form.php:229 app/features/ix.php:2328
411
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
412
+ #: app/features/mec/dashboard.php:266
413
  #: app/features/mec/meta_boxes/display_options.php:42
414
  #: app/features/mec/meta_boxes/display_options.php:129
415
  #: app/features/mec/meta_boxes/display_options.php:225
441
  #: app/features/events.php:1675 app/features/fes/form.php:265
442
  #: app/features/fes/form.php:269 app/features/ix.php:2328
443
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
444
+ #: app/features/mec/dashboard.php:267
445
  msgid "End Date"
446
  msgstr "Einddatum"
447
 
478
  msgstr "Terugkerend"
479
 
480
  #: app/features/events.php:481 app/features/fes/form.php:327
481
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
482
  msgid "Daily"
483
  msgstr "Dagelijks"
484
 
501
  msgstr "Wekelijks"
502
 
503
  #: app/features/events.php:486 app/features/fes/form.php:332
504
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
505
  msgid "Monthly"
506
  msgstr "Maandelijks"
507
 
508
  #: app/features/events.php:487 app/features/fes/form.php:333
509
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
510
  msgid "Yearly"
511
  msgstr "Jaarlijks"
512
 
563
  msgid "Sunday"
564
  msgstr ""
565
 
566
+ #: app/features/events.php:508 app/features/events.php:580
567
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
568
+ #: app/modules/booking/steps/tickets.php:20
569
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
570
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
571
+ #: app/skins/single/modern.php:146
572
+ msgid "Date"
573
+ msgstr "Datum"
574
+
575
  #: app/features/events.php:509 app/features/events.php:581
576
  #: app/features/events.php:623 app/features/events.php:743
577
  #: app/features/events.php:839 app/features/fes/form.php:355
620
  msgid "Exclude certain days from event occurrence dates."
621
  msgstr ""
622
 
623
+ #: app/features/events.php:620 app/features/mec/settings.php:871
624
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
625
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
626
  msgid "Hourly Schedule"
641
  #: app/features/events.php:631 app/features/events.php:643
642
  #: app/features/events.php:1449 app/features/events.php:1631
643
  #: app/features/events.php:1675 app/features/fes/form.php:214
644
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
645
  msgid "Title"
646
  msgstr "Titel"
647
 
648
+ #: app/features/events.php:632 app/features/events.php:644
649
+ #: app/features/events.php:752 app/features/events.php:784
650
+ msgid "Description"
651
+ msgstr "Beschrijving"
652
+
653
  #: app/features/events.php:633 app/features/events.php:645
654
  #: app/features/events.php:771 app/features/events.php:803
655
  #: app/features/events.php:859 app/features/events.php:884
656
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
657
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
658
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
659
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
660
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
661
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
662
+ #: app/libraries/main.php:2177
663
  msgid "Remove"
664
  msgstr "Verwijderen"
665
 
666
  #: app/features/events.php:665 app/features/fes/form.php:456
667
+ #: app/features/mec/settings.php:817
668
  #, fuzzy
669
  msgid "Event Links"
670
  msgstr "Evenement locatie"
671
 
672
  #: app/features/events.php:667 app/features/fes/form.php:458
673
+ #: app/libraries/main.php:3996
674
  #, fuzzy
675
  msgid "Event Link"
676
  msgstr "Evenement locatie"
690
  "standaard evenementen pagina gaat. Vul de volledige link in: http(s)://"
691
 
692
  #: app/features/events.php:672 app/features/fes/form.php:463
693
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
694
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
695
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
696
  msgid "More Info"
722
  msgid "Total booking limits"
723
  msgstr "Maximum aantal boekingen"
724
 
725
+ #: app/features/events.php:715 app/features/events.php:769
726
+ #: app/features/events.php:801 app/modules/booking/default.php:82
727
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
728
+ msgid "Unlimited"
729
+ msgstr "Onbeperkt"
730
+
731
  #: app/features/events.php:717
732
  msgid "100"
733
  msgstr "100"
734
 
735
  #: app/features/events.php:735 app/libraries/book.php:59
736
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
737
  msgid "Tickets"
738
  msgstr "Tickets"
739
 
748
  msgid "Ticket Name"
749
  msgstr "Ticket naam"
750
 
751
+ #: app/features/events.php:756 app/features/events.php:788
752
+ msgid "Price"
753
+ msgstr "Prijs"
754
+
755
  #: app/features/events.php:757 app/features/events.php:789
756
  msgid "Insert 0 for free ticket. Only numbers please."
757
  msgstr "Vul 0 in voor gratis ticket. Alleen nummers alstublieft."
777
  msgstr "Standaardinstellingen gebruiken"
778
 
779
  #: app/features/events.php:845 app/features/events.php:870
780
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
781
  msgid "Fee Title"
782
  msgstr "Toeslag titel"
783
 
784
+ #: app/features/events.php:849 app/features/events.php:874
785
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
786
+ msgid "Amount"
787
+ msgstr "Bedrag"
788
+
789
  #: app/features/events.php:850 app/features/events.php:875
790
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
791
  msgid ""
792
  "Fee amount, considered as fixed amount if you set the type to amount "
793
  "otherwise considered as percentage"
795
  "Toeslag bedrag, zal beschouwd worden als vast bedrag als je het type hebt "
796
  "ingesteld op bedrag, anders zal het beschouwd worden als percentage"
797
 
798
+ #: app/features/events.php:854 app/features/events.php:879
799
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
800
+ msgid "Percent"
801
+ msgstr "Procent"
802
+
803
  #: app/features/events.php:855 app/features/events.php:880
804
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
805
  msgid "Amount (Per Ticket)"
806
  msgstr ""
807
 
808
  #: app/features/events.php:856 app/features/events.php:881
809
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
810
  msgid "Amount (Per Booking)"
811
  msgstr ""
812
 
813
  #: app/features/events.php:944 app/features/mec/regform.php:117
814
+ #: app/libraries/main.php:1856
815
  msgid "Text"
816
  msgstr "Tekst"
817
 
818
  #: app/features/events.php:946 app/features/mec/regform.php:119
819
  #: app/features/organizers.php:102 app/features/organizers.php:146
820
+ #: app/libraries/main.php:1914
821
  msgid "Tel"
822
  msgstr "Tel"
823
 
824
  #: app/features/events.php:947 app/features/mec/regform.php:120
825
+ #: app/libraries/main.php:1943
826
  msgid "Textarea"
827
  msgstr "Tekstgebied"
828
 
829
  #: app/features/events.php:948 app/features/mec/regform.php:121
830
+ #: app/libraries/main.php:1996
831
  msgid "Checkboxes"
832
  msgstr "Checkboxes"
833
 
834
  #: app/features/events.php:949 app/features/mec/regform.php:122
835
+ #: app/libraries/main.php:2040
836
  msgid "Radio Buttons"
837
  msgstr "Radio knoppen"
838
 
881
  #: app/features/mec/meta_boxes/search_form.php:436
882
  #: app/features/mec/meta_boxes/search_form.php:443
883
  #: app/features/mec/meta_boxes/search_form.php:450
884
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
885
  msgid "Dropdown"
886
  msgstr "Dropdown"
887
 
888
  #: app/features/events.php:951 app/features/mec/regform.php:124
889
+ #: app/libraries/main.php:2131
890
  msgid "Agreement"
891
  msgstr ""
892
 
893
  #: app/features/events.php:952 app/features/mec/regform.php:125
894
+ #: app/libraries/main.php:1972
895
  msgid "Paragraph"
896
  msgstr "Paragraaf"
897
 
917
  #: app/features/events.php:1675 app/features/ix.php:2328
918
  #: app/features/ix.php:2369 app/features/locations.php:58
919
  #: app/features/locations.php:229 app/features/locations.php:281
920
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
921
  #: app/features/mec/meta_boxes/display_options.php:641
922
  #: app/features/mec/meta_boxes/search_form.php:38
923
  #: app/features/mec/meta_boxes/search_form.php:85
927
  #: app/features/mec/meta_boxes/search_form.php:292
928
  #: app/features/mec/meta_boxes/search_form.php:332
929
  #: app/features/mec/meta_boxes/search_form.php:379
930
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
931
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
932
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
933
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
934
  #: app/skins/single/modern.php:77
937
 
938
  #: app/features/events.php:1451 app/features/events.php:1631
939
  #: app/features/events.php:1675 app/features/ix.php:2328
940
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
941
  #: app/features/mec/meta_boxes/display_options.php:642
942
  #: app/features/mec/meta_boxes/search_form.php:45
943
  #: app/features/mec/meta_boxes/search_form.php:92
950
  #: app/features/mec/meta_boxes/search_form.php:433
951
  #: app/features/organizers.php:58 app/features/organizers.php:199
952
  #: app/features/organizers.php:255 app/features/organizers.php:257
953
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
954
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
955
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
956
  #: app/skins/single/modern.php:21
969
  msgid "iCal Export"
970
  msgstr "iCal export"
971
 
972
+ #: app/features/events.php:1569 app/features/events.php:1570
973
+ msgid "CSV Export"
974
+ msgstr "CSV export"
975
+
976
+ #: app/features/events.php:1572 app/features/events.php:1573
977
+ msgid "MS Excel Export"
978
+ msgstr "Excel export"
979
+
980
  #: app/features/events.php:1575 app/features/events.php:1576
981
  msgid "XML Export"
982
  msgstr ""
989
  msgid "Duplicate"
990
  msgstr ""
991
 
992
+ #: app/features/events.php:1631 app/features/events.php:1675
993
+ #: app/features/ix.php:2328 app/features/ix.php:2369
994
+ #: app/features/labels.php:150 app/features/locations.php:228
995
+ #: app/features/organizers.php:198
996
+ msgid "ID"
997
+ msgstr "ID"
998
+
999
  #: app/features/events.php:1631 app/features/events.php:1675
1000
  #: app/features/ix.php:2328 app/features/ix.php:2369
1001
  msgid "Start Time"
1080
  msgstr ""
1081
 
1082
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1083
  msgid "Submit"
1084
  msgstr "Verzenden"
1085
 
1095
  msgid "eg. John Smith"
1096
  msgstr "bijv. John Smith"
1097
 
1098
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1099
  msgid "Featured Image"
1100
  msgstr "Uitgelichte afbeelding"
1101
 
1104
  msgstr "Verwijder afbeelding"
1105
 
1106
  #: app/features/fes/form.php:543 app/features/labels.php:61
1107
+ #: app/features/labels.php:194 app/features/mec.php:191
1108
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1109
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1110
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1111
  msgid "Labels"
1112
  msgstr "Labels"
1113
 
1114
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1115
  #: app/features/mec/meta_boxes/filter.php:138
1116
  msgid "Tags"
1117
  msgstr "Tags"
1137
  msgid "No events found! %s"
1138
  msgstr "Geen evenementen gevonden! %s"
1139
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1140
  #: app/features/ix.php:95
1141
  msgid "MEC - Import / Export"
1142
  msgstr ""
1169
  msgid "Third Party plugin is invalid!"
1170
  msgstr ""
1171
 
1172
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1173
+ msgid "Both of API key and Calendar ID are required!"
1174
+ msgstr ""
1175
+
1176
  #: app/features/ix.php:1961 app/features/ix.php:2791
1177
  msgid "Please select some events to import!"
1178
  msgstr ""
1194
  msgid "All seems good! Please click %s for authenticating your app."
1195
  msgstr ""
1196
 
1197
+ #: app/features/ix.php:2527
1198
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1199
+ msgstr ""
1200
+
1201
+ #: app/features/ix.php:2722
1202
+ #, php-format
1203
+ msgid "%s events added to Google Calendar successfully."
1204
+ msgstr ""
1205
+
1206
+ #: app/features/ix.php:2723
1207
+ #, php-format
1208
+ msgid "%s previously added events get updated."
1209
+ msgstr ""
1210
+
1211
+ #: app/features/ix.php:2724
1212
+ #, php-format
1213
+ msgid "%s events failed to add for following reasons: %s"
1214
+ msgstr ""
1215
+
1216
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1217
+ msgid "Please insert your facebook page's link."
1218
+ msgstr ""
1219
+
1220
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1221
+ msgid ""
1222
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1223
+ "valid facebook page link."
1224
+ msgstr ""
1225
+
1226
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1227
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1228
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1268
  "This will export all of your website events' data into your desired format."
1269
  msgstr ""
1270
 
1271
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1272
  msgid "iCal"
1273
  msgstr "iCal"
1274
 
1306
  msgid "For exporting bookings events, you can use bulk actions in %s page."
1307
  msgstr ""
1308
 
1309
+ #: app/features/ix/export.php:37
1310
+ msgid "Bookings"
1311
+ msgstr "Boekingen"
1312
+
1313
  #: app/features/ix/export_g_calendar.php:25
1314
  msgid "Add events to Google Calendar"
1315
  msgstr ""
1366
  msgid "Add to Google Calendar"
1367
  msgstr ""
1368
 
1369
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1370
  msgid "Checking ..."
1371
  msgstr ""
1372
 
1408
  msgid "ICS Feed"
1409
  msgstr ""
1410
 
1411
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1412
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1413
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1414
+ #: app/features/mec/settings.php:1039
1415
  #, php-format
1416
  msgid "%s is required to use this feature."
1417
  msgstr ""
1423
  #: app/features/mec/meta_boxes/display_options.php:558
1424
  #: app/features/mec/meta_boxes/display_options.php:608
1425
  #: app/features/mec/meta_boxes/display_options.php:734
1426
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1427
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1428
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1429
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1430
  msgid "Pro version of Modern Events Calendar"
1431
  msgstr ""
1432
 
1644
  msgid "Select label color"
1645
  msgstr "Selecteer label kleur"
1646
 
1647
+ #: app/features/labels.php:153 app/features/locations.php:231
1648
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1649
+ msgid "Count"
1650
+ msgstr "Aantal keer gebruikt"
1651
+
1652
  #: app/features/labels.php:154 app/features/locations.php:232
1653
  #: app/features/organizers.php:202
1654
  msgid "Slug"
1659
  msgid "Event %s"
1660
  msgstr ""
1661
 
1662
+ #: app/features/locations.php:59 app/features/mec.php:192
1663
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1664
  msgid "Locations"
1665
  msgstr "Locaties"
1666
 
1728
  msgid "eg. City Hall"
1729
  msgstr "bijv. Gemeentehuis"
1730
 
1731
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1732
  msgid "Event Location"
1733
  msgstr "Evenement locatie"
1734
 
1752
  msgid "Don't show map in single event page"
1753
  msgstr "Verberg de map op de pagina van het evenement"
1754
 
1755
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1756
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1757
  msgid "Organizers"
1758
  msgstr "Organisatoren"
1759
 
1760
+ #: app/features/mec.php:194 app/features/mec.php:208
1761
+ #: app/features/mec/dashboard.php:96
1762
  msgid "Shortcodes"
1763
  msgstr "Shortcodes"
1764
 
1765
+ #: app/features/mec.php:195
1766
  msgid "MEC - Settings"
1767
  msgstr "MEC - Instellingen"
1768
 
1769
+ #: app/features/mec.php:210
1770
  msgid "Add Shortcode"
1771
  msgstr "Shortcode toevoegen"
1772
 
1773
+ #: app/features/mec.php:211
1774
  msgid "Add New Shortcode"
1775
  msgstr "Nieuwe shortcode toevoegen"
1776
 
1777
+ #: app/features/mec.php:212
1778
  msgid "No shortcodes found!"
1779
  msgstr "Geen shortcodes gevonden!"
1780
 
1781
+ #: app/features/mec.php:213
1782
  msgid "All Shortcodes"
1783
  msgstr "Alle shortcodes"
1784
 
1785
+ #: app/features/mec.php:214
1786
  msgid "Edit shortcodes"
1787
  msgstr "Bewerk shortcodes"
1788
 
1789
+ #: app/features/mec.php:215
1790
  msgid "No shortcodes found in Trash!"
1791
  msgstr "Geen shortcodes gevonden in de prullenbak!"
1792
 
1793
+ #: app/features/mec.php:262
1794
  msgid "Display Options"
1795
  msgstr "Weergave opties"
1796
 
1797
+ #: app/features/mec.php:263
1798
  msgid "Filter Options"
1799
  msgstr "Filter opties"
1800
 
1801
+ #: app/features/mec.php:265
1802
  #, fuzzy
1803
  msgid "Search Form"
1804
  msgstr "Zoek coupons"
1805
 
1806
+ #: app/features/mec.php:553
1807
  msgid "Single Event Display Method"
1808
  msgstr ""
1809
 
1810
+ #: app/features/mec.php:558
1811
  msgid "Separate Window"
1812
  msgstr ""
1813
 
1814
+ #: app/features/mec.php:559
1815
  msgid "Modal 1"
1816
  msgstr ""
1817
 
1818
+ #: app/features/mec/dashboard.php:58
1819
  #, php-format
1820
  msgid "Welcome %s"
1821
  msgstr "Welkom %s"
1822
 
1823
+ #: app/features/mec/dashboard.php:61
1824
  #, php-format
1825
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1826
  msgstr ""
1827
 
1828
+ #: app/features/mec/dashboard.php:61
1829
  msgid "Modern Event Calendar"
1830
  msgstr ""
1831
 
1832
+ #: app/features/mec/dashboard.php:61
1833
  msgid "Modern Event Calendar (Lite)"
1834
  msgstr ""
1835
 
1836
+ #: app/features/mec/dashboard.php:70
1837
  msgid "Version"
1838
  msgstr "Versie"
1839
 
1840
+ #: app/features/mec/dashboard.php:79
1841
  #, php-format
1842
  msgid ""
1843
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1845
  "Spots, etc you should %s to the Pro version."
1846
  msgstr ""
1847
 
1848
+ #: app/features/mec/dashboard.php:79
1849
  msgid "lite"
1850
  msgstr ""
1851
 
1852
+ #: app/features/mec/dashboard.php:79
1853
  msgid "upgrade"
1854
  msgstr ""
1855
 
1856
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1857
  msgid "Documentation"
1858
  msgstr "Documentatie"
1859
 
1860
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1861
  msgid ""
1862
  "Our documentation is simple and functional with full details and cover all "
1863
  "essential aspects from beginning to the most advanced parts."
1865
  "Onze documentatie is simpel en functioneel, met details en uitleg van alle "
1866
  "essentiële aspecten plus uitleg over de basis tot geavanceerde onderdelen. "
1867
 
1868
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1869
  msgid "DOCUMENTATION"
1870
  msgstr "DOCUMENTATIE"
1871
 
1872
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1873
  msgid "Support Forum"
1874
  msgstr "Support forum"
1875
 
1876
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1877
  msgid ""
1878
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1879
  "If you want to use this service you need to upgrade your plugin to Pro "
1880
  "version. Click on the following button."
1881
  msgstr ""
1882
 
1883
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1884
  #, fuzzy
1885
  msgid ""
1886
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1891
  "tevreden gebruikers. Loop je tegen problemen aan, aarzel dan niet om contact "
1892
  "met ons op te nemen, wij zullen u zo spoedig mogelijk antwoorden."
1893
 
1894
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1895
  msgid "GO PREMIUM"
1896
  msgstr ""
1897
 
1898
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1899
  msgid "OPEN A TICKET"
1900
  msgstr "OPEN EEN TICKET"
1901
 
1902
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1903
  msgid "Upcoming Events"
1904
  msgstr ""
1905
 
1906
+ #: app/features/mec/dashboard.php:181
1907
  msgid "Popular Gateways"
1908
  msgstr ""
1909
 
1910
+ #: app/features/mec/dashboard.php:232
1911
  msgid "Total Bookings"
1912
  msgstr ""
1913
 
1914
+ #: app/features/mec/dashboard.php:259
1915
  msgid "This Month"
1916
  msgstr ""
1917
 
1918
+ #: app/features/mec/dashboard.php:260
1919
  msgid "Last Month"
1920
  msgstr ""
1921
 
1922
+ #: app/features/mec/dashboard.php:261
1923
  msgid "This Year"
1924
  msgstr ""
1925
 
1926
+ #: app/features/mec/dashboard.php:262
1927
  msgid "Last Year"
1928
  msgstr ""
1929
 
1930
+ #: app/features/mec/dashboard.php:274
1931
  msgid "Bar"
1932
  msgstr ""
1933
 
1934
+ #: app/features/mec/dashboard.php:275
1935
  msgid "Line"
1936
  msgstr ""
1937
 
1938
+ #: app/features/mec/dashboard.php:277
1939
  msgid "Filter"
1940
  msgstr ""
1941
 
1942
+ #: app/features/mec/dashboard.php:293
1943
  #, php-format
1944
  msgid "Total Sells (%s)"
1945
  msgstr ""
1946
 
1947
+ #: app/features/mec/dashboard.php:314
1948
  msgid "Change Log"
1949
  msgstr "Change log"
1950
 
1951
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1952
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1953
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1954
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1955
  msgid "Styling Options"
1956
  msgstr "Styling opties"
1957
 
1958
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1959
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1960
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1961
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1962
  msgid "Custom CSS"
1963
  msgstr "Custom CSS"
1964
 
1965
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1966
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1967
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1968
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1969
  #: app/features/mec/support.php:64
1970
  msgid "Messages"
1972
 
1973
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1974
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1975
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1976
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1977
  #: app/features/mec/support.php:84
1978
  msgid "Support"
1985
  #: app/features/mec/notifications.php:409
1986
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
1987
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
1988
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
1989
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
1990
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
1991
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
1992
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
1993
+ #: app/features/mec/styling.php:335
1994
  msgid "Save Changes"
1995
  msgstr "Wijzigingen opslaan"
1996
 
1997
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
1998
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
1999
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
2000
  #: app/features/mec/styling.php:313
2001
  msgid "Saved"
2002
  msgstr "Opgeslagen"
2003
 
2004
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2005
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2006
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
2007
  #: app/features/mec/styling.php:314
2008
  msgid "Settings Saved!"
2009
  msgstr ""
2215
  msgid "Default values are d and F"
2216
  msgstr "Standaardwaarde is Events"
2217
 
2218
+ #: app/features/mec/meta_boxes/display_options.php:85
2219
+ #: app/features/mec/meta_boxes/display_options.php:194
2220
+ #: app/features/mec/meta_boxes/display_options.php:244
2221
+ #: app/features/mec/meta_boxes/display_options.php:632
2222
+ #: app/features/mec/meta_boxes/display_options.php:806
2223
+ #: app/features/mec/meta_boxes/display_options.php:877
2224
+ msgid "Limit"
2225
+ msgstr "Limiet"
2226
+
2227
  #: app/features/mec/meta_boxes/display_options.php:86
2228
  #: app/features/mec/meta_boxes/display_options.php:195
2229
  #: app/features/mec/meta_boxes/display_options.php:245
2307
 
2308
  #: app/features/mec/meta_boxes/display_options.php:287
2309
  #: app/features/mec/meta_boxes/display_options.php:296
2310
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2311
  msgid "List View"
2312
  msgstr "Lijstweergave"
2313
 
2314
  #: app/features/mec/meta_boxes/display_options.php:288
2315
  #: app/features/mec/meta_boxes/display_options.php:306
2316
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2317
  msgid "Yearly View"
2318
  msgstr ""
2319
 
2325
 
2326
  #: app/features/mec/meta_boxes/display_options.php:290
2327
  #: app/features/mec/meta_boxes/display_options.php:326
2328
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2329
  msgid "Weekly View"
2330
  msgstr "Weekweergave "
2331
 
2332
  #: app/features/mec/meta_boxes/display_options.php:291
2333
  #: app/features/mec/meta_boxes/display_options.php:336
2334
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2335
  msgid "Daily View"
2336
  msgstr "Dagweergave"
2337
 
2576
  msgid "Show Search Form"
2577
  msgstr ""
2578
 
2579
+ #: app/features/mec/meta_boxes/search_form.php:33
2580
+ #: app/features/mec/meta_boxes/search_form.php:40
2581
+ #: app/features/mec/meta_boxes/search_form.php:47
2582
+ #: app/features/mec/meta_boxes/search_form.php:54
2583
+ #: app/features/mec/meta_boxes/search_form.php:61
2584
+ #: app/features/mec/meta_boxes/search_form.php:68
2585
+ #: app/features/mec/meta_boxes/search_form.php:80
2586
+ #: app/features/mec/meta_boxes/search_form.php:87
2587
+ #: app/features/mec/meta_boxes/search_form.php:94
2588
+ #: app/features/mec/meta_boxes/search_form.php:101
2589
+ #: app/features/mec/meta_boxes/search_form.php:108
2590
+ #: app/features/mec/meta_boxes/search_form.php:115
2591
+ #: app/features/mec/meta_boxes/search_form.php:127
2592
+ #: app/features/mec/meta_boxes/search_form.php:134
2593
+ #: app/features/mec/meta_boxes/search_form.php:141
2594
+ #: app/features/mec/meta_boxes/search_form.php:148
2595
+ #: app/features/mec/meta_boxes/search_form.php:155
2596
+ #: app/features/mec/meta_boxes/search_form.php:162
2597
+ #: app/features/mec/meta_boxes/search_form.php:174
2598
+ #: app/features/mec/meta_boxes/search_form.php:181
2599
+ #: app/features/mec/meta_boxes/search_form.php:193
2600
+ #: app/features/mec/meta_boxes/search_form.php:200
2601
+ #: app/features/mec/meta_boxes/search_form.php:207
2602
+ #: app/features/mec/meta_boxes/search_form.php:214
2603
+ #: app/features/mec/meta_boxes/search_form.php:221
2604
+ #: app/features/mec/meta_boxes/search_form.php:228
2605
+ #: app/features/mec/meta_boxes/search_form.php:240
2606
+ #: app/features/mec/meta_boxes/search_form.php:247
2607
+ #: app/features/mec/meta_boxes/search_form.php:254
2608
+ #: app/features/mec/meta_boxes/search_form.php:261
2609
+ #: app/features/mec/meta_boxes/search_form.php:268
2610
+ #: app/features/mec/meta_boxes/search_form.php:275
2611
+ #: app/features/mec/meta_boxes/search_form.php:287
2612
+ #: app/features/mec/meta_boxes/search_form.php:294
2613
+ #: app/features/mec/meta_boxes/search_form.php:301
2614
+ #: app/features/mec/meta_boxes/search_form.php:308
2615
+ #: app/features/mec/meta_boxes/search_form.php:315
2616
+ #: app/features/mec/meta_boxes/search_form.php:327
2617
+ #: app/features/mec/meta_boxes/search_form.php:334
2618
+ #: app/features/mec/meta_boxes/search_form.php:341
2619
+ #: app/features/mec/meta_boxes/search_form.php:348
2620
+ #: app/features/mec/meta_boxes/search_form.php:355
2621
+ #: app/features/mec/meta_boxes/search_form.php:362
2622
+ #: app/features/mec/meta_boxes/search_form.php:374
2623
+ #: app/features/mec/meta_boxes/search_form.php:381
2624
+ #: app/features/mec/meta_boxes/search_form.php:388
2625
+ #: app/features/mec/meta_boxes/search_form.php:395
2626
+ #: app/features/mec/meta_boxes/search_form.php:402
2627
+ #: app/features/mec/meta_boxes/search_form.php:409
2628
+ #: app/features/mec/meta_boxes/search_form.php:421
2629
+ #: app/features/mec/meta_boxes/search_form.php:428
2630
+ #: app/features/mec/meta_boxes/search_form.php:435
2631
+ #: app/features/mec/meta_boxes/search_form.php:442
2632
+ #: app/features/mec/meta_boxes/search_form.php:449
2633
+ #: app/features/mec/meta_boxes/search_form.php:456
2634
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2635
+ #: app/features/mec/settings.php:554
2636
+ msgid "Disabled"
2637
+ msgstr "Uitgeschakeld"
2638
+
2639
  #: app/features/mec/meta_boxes/search_form.php:59
2640
  #: app/features/mec/meta_boxes/search_form.php:106
2641
  #: app/features/mec/meta_boxes/search_form.php:153
2875
  msgid "Invoice Link"
2876
  msgstr ""
2877
 
2878
+ #: app/features/mec/notifications.php:140
2879
+ #: app/features/mec/notifications.php:177
2880
+ #: app/features/mec/notifications.php:214
2881
+ #: app/features/mec/notifications.php:255
2882
+ #: app/features/mec/notifications.php:307
2883
+ msgid "Total Attendees"
2884
+ msgstr ""
2885
+
2886
  #: app/features/mec/notifications.php:145
2887
  msgid "Booking Verification"
2888
  msgstr "Boekingsverificatie"
2900
  msgid "Email/Booking verification link."
2901
  msgstr "Email/boeking verificatie link"
2902
 
2903
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2904
  msgid "Booking Confirmation"
2905
  msgstr "Boekingsbevestiging"
2906
 
2983
  msgid "Status of event"
2984
  msgstr "Status evenement"
2985
 
2986
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
2987
  msgid "Event Note"
2988
  msgstr ""
2989
 
2991
  msgid "Admin events management link."
2992
  msgstr "Admin evenement beheer link"
2993
 
2994
+ #: app/features/mec/settings.php:47
2995
  msgid "Archive Page Options"
2996
  msgstr ""
2997
 
2998
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
2999
  msgid "Export Module Options"
3000
  msgstr "Export module opties"
3001
 
3002
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
3003
  msgid "Local Time Module"
3004
  msgstr ""
3005
 
3006
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
3007
  msgid "QR Code Module"
3008
  msgstr ""
3009
 
3010
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
3011
  msgid "Weather Module"
3012
  msgstr ""
3013
 
3014
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
3015
  #, fuzzy
3016
  msgid "Additional Organizers"
3017
  msgstr "Alle organisatoren"
3018
 
3019
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
3020
  msgid "Taxes / Fees"
3021
  msgstr "Belastingen / toeslagen"
3022
 
3023
+ #: app/features/mec/settings.php:255
3024
  msgid "Time Format"
3025
  msgstr "Tijdformaat"
3026
 
3027
+ #: app/features/mec/settings.php:258
3028
  msgid "12 hours format with AM/PM"
3029
  msgstr "12-uurs tijdformaat met AM/PM"
3030
 
3031
+ #: app/features/mec/settings.php:259
3032
  msgid "24 hours format"
3033
  msgstr "24-uurs tijdformaat"
3034
 
3035
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3036
  msgid ""
3037
  "This option is for showing start/end time of events on frontend of website."
3038
  msgstr ""
3039
  "Deze optie is voor het tonen van de start / eindtijd van de evenementen op "
3040
  "de website."
3041
 
3042
+ #: app/features/mec/settings.php:266
3043
  msgid "Hide Events"
3044
  msgstr ""
3045
 
3046
+ #: app/features/mec/settings.php:269
3047
  msgid "On Event Start"
3048
  msgstr ""
3049
 
3050
+ #: app/features/mec/settings.php:270
3051
  msgid "+1 Hour after start"
3052
  msgstr ""
3053
 
3054
+ #: app/features/mec/settings.php:271
3055
  msgid "+2 Hours after start"
3056
  msgstr ""
3057
 
3058
+ #: app/features/mec/settings.php:272
3059
  msgid "On Event End"
3060
  msgstr ""
3061
 
3062
+ #: app/features/mec/settings.php:280
3063
  #, fuzzy
3064
  msgid "Multiple Day Events"
3065
  msgstr "Hele dag"
3066
 
3067
+ #: app/features/mec/settings.php:283
3068
  msgid "Show only first day on List/Grid/Slider skins"
3069
  msgstr ""
3070
 
3071
+ #: app/features/mec/settings.php:284
3072
  msgid "Show only first day on all skins"
3073
  msgstr ""
3074
 
3075
+ #: app/features/mec/settings.php:285
3076
  #, fuzzy
3077
  msgid "Show all days"
3078
  msgstr "Alle labels"
3079
 
3080
+ #: app/features/mec/settings.php:287
3081
  msgid ""
3082
  "For showing all days of multiple day events on frontend or only show the "
3083
  "first day."
3084
  msgstr ""
3085
 
3086
+ #: app/features/mec/settings.php:293
3087
  msgid "Remove MEC Data on Plugin Uninstall"
3088
  msgstr ""
3089
 
3090
+ #: app/features/mec/settings.php:297
3091
+ msgid "Enabled"
3092
+ msgstr ""
3093
+
3094
+ #: app/features/mec/settings.php:303
3095
  msgid "Exclude Date Suffix"
3096
  msgstr ""
3097
 
3098
+ #: app/features/mec/settings.php:306
3099
  msgid "Remove suffix from calendars"
3100
  msgstr ""
3101
 
3102
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3103
  msgid "Weekdays"
3104
  msgstr ""
3105
 
3106
+ #: app/features/mec/settings.php:321
3107
  msgid ""
3108
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3109
  "and Friday."
3110
  msgstr ""
3111
 
3112
+ #: app/features/mec/settings.php:328
3113
  msgid "Weekends"
3114
  msgstr ""
3115
 
3116
+ #: app/features/mec/settings.php:336
3117
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3118
  msgstr ""
3119
 
3120
+ #: app/features/mec/settings.php:344
3121
  msgid "Archive Pages"
3122
  msgstr ""
3123
 
3124
+ #: app/features/mec/settings.php:347
3125
  msgid "Archive Page Title"
3126
  msgstr "Archief paginatitel"
3127
 
3128
+ #: app/features/mec/settings.php:350
3129
  msgid "Default value is Events"
3130
  msgstr "Standaardwaarde is Events"
3131
 
3132
+ #: app/features/mec/settings.php:355
3133
  msgid "Archive Page Skin"
3134
  msgstr "Archief paginaweergave"
3135
 
3136
+ #: app/features/mec/settings.php:362
3137
  msgid "Default value is Calendar/Monthly View"
3138
  msgstr "Standaardwaarde is Calendar/Monthly View"
3139
 
3140
+ #: app/features/mec/settings.php:367
3141
  #, fuzzy
3142
  msgid "Category Page Skin"
3143
  msgstr "Categorie slug"
3144
 
3145
+ #: app/features/mec/settings.php:374
3146
  #, fuzzy
3147
  msgid "Default value is List View"
3148
  msgstr "Standaardwaarde is Events"
3149
 
3150
+ #: app/features/mec/settings.php:379
3151
  msgid "Category Events Method"
3152
  msgstr ""
3153
 
3154
+ #: app/features/mec/settings.php:383
3155
  msgid "Expired Events"
3156
  msgstr ""
3157
 
3158
+ #: app/features/mec/settings.php:385
3159
  msgid "Default value is Upcoming Events"
3160
  msgstr ""
3161
 
3162
+ #: app/features/mec/settings.php:390
3163
  msgid "Events Archive Status"
3164
  msgstr ""
3165
 
3166
+ #: app/features/mec/settings.php:393
3167
  msgid "Enabled (Recommended)"
3168
  msgstr ""
3169
 
3170
+ #: app/features/mec/settings.php:396
3171
  msgid ""
3172
  "If you disable it, then you should create a page as archive page of MEC. "
3173
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3174
  "MEC rewrite rules."
3175
  msgstr ""
3176
 
3177
+ #: app/features/mec/settings.php:406
3178
  msgid "Main Slug"
3179
  msgstr "Hoofd slug"
3180
 
3181
+ #: app/features/mec/settings.php:409
3182
  msgid ""
3183
  "Default value is events. Valid characters are lowercase a-z, - character and "
3184
  "numbers."
3185
  msgstr ""
3186
 
3187
+ #: app/features/mec/settings.php:413
3188
  msgid "Category Slug"
3189
  msgstr "Categorie slug"
3190
 
3191
+ #: app/features/mec/settings.php:416
3192
  msgid ""
3193
  "It's slug of MEC categories, you can change it to events-cat or something "
3194
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3195
  "character and numbers."
3196
  msgstr ""
3197
 
3198
+ #: app/features/mec/settings.php:426
3199
  msgid "Single Event Date Format"
3200
  msgstr ""
3201
 
3202
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3203
  #, fuzzy
3204
  msgid "Default is M d Y"
3205
  msgstr "Standaard"
3206
 
3207
+ #: app/features/mec/settings.php:433
3208
  msgid "Date Method"
3209
  msgstr ""
3210
 
3211
+ #: app/features/mec/settings.php:436
3212
  msgid "Next occurrence date"
3213
  msgstr ""
3214
 
3215
+ #: app/features/mec/settings.php:437
3216
  msgid "Referred date"
3217
  msgstr ""
3218
 
3219
+ #: app/features/mec/settings.php:439
3220
  msgid ""
3221
  "\"Referred date\" shows the event date based on referred date in event list."
3222
  msgstr ""
3223
 
3224
+ #: app/features/mec/settings.php:443
3225
  msgid "Single Event Style"
3226
  msgstr ""
3227
 
3228
+ #: app/features/mec/settings.php:446
3229
  msgid "Default Style"
3230
  msgstr ""
3231
 
3232
+ #: app/features/mec/settings.php:447
3233
  msgid "Modern Style"
3234
  msgstr ""
3235
 
3236
+ #: app/features/mec/settings.php:449
3237
  msgid "Choose your single event style."
3238
  msgstr ""
3239
 
3240
+ #: app/features/mec/settings.php:458
3241
  msgid "Currency"
3242
  msgstr "Valuta"
3243
 
3244
+ #: app/features/mec/settings.php:468
3245
  msgid "Currency Sign"
3246
  msgstr "Valutasymbool"
3247
 
3248
+ #: app/features/mec/settings.php:471
3249
  msgid "Default value will be \"currency\" if you leave it empty."
3250
  msgstr "Standaardwaarde is \"currency\" als je het leeg laat."
3251
 
3252
+ #: app/features/mec/settings.php:475
3253
  msgid "Currency Position"
3254
  msgstr "Valutasymbool-positie"
3255
 
3256
+ #: app/features/mec/settings.php:478
3257
  msgid "Before $10"
3258
  msgstr "Voor $10"
3259
 
3260
+ #: app/features/mec/settings.php:479
3261
  msgid "After 10$"
3262
  msgstr "Achter 10$"
3263
 
3264
+ #: app/features/mec/settings.php:484
3265
  msgid "Thousand Separator"
3266
  msgstr "Duizendtalscheiding"
3267
 
3268
+ #: app/features/mec/settings.php:490
3269
  msgid "Decimal Separator"
3270
  msgstr "Decimaalscheiding"
3271
 
3272
+ #: app/features/mec/settings.php:500
3273
  msgid "No decimal"
3274
  msgstr "Geen decimaal"
3275
 
3276
+ #: app/features/mec/settings.php:516
3277
  msgid "Show Google Maps on event page"
3278
  msgstr "Laat Google Maps op evenementen pagina zien"
3279
 
3280
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3281
+ #: app/features/mec/settings.php:1140
3282
  msgid "API Key"
3283
  msgstr "API key"
3284
 
3285
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3286
+ #: app/features/mec/settings.php:1150
3287
  msgid "Required!"
3288
  msgstr "Verplicht!"
3289
 
3290
+ #: app/features/mec/settings.php:528
3291
  msgid "Zoom level"
3292
  msgstr "Zoom level"
3293
 
3294
+ #: app/features/mec/settings.php:535
3295
  msgid ""
3296
  "For Google Maps module in single event page. In Google Maps skin, it will "
3297
  "caculate the zoom level automatically based on event boundaries."
3298
  msgstr ""
3299
 
3300
+ #: app/features/mec/settings.php:539
3301
  msgid "Google Maps Style"
3302
  msgstr "Goog Maps stijl"
3303
 
3304
+ #: app/features/mec/settings.php:543
3305
  msgid "Default"
3306
  msgstr "Standaard"
3307
 
3308
+ #: app/features/mec/settings.php:551
3309
  msgid "Direction on single event"
3310
  msgstr "Routebeschrijving op evenementen pagina"
3311
 
3312
+ #: app/features/mec/settings.php:555
3313
  msgid "Simple Method"
3314
  msgstr "Eenvoudige weergave"
3315
 
3316
+ #: app/features/mec/settings.php:556
3317
  msgid "Advanced Method"
3318
  msgstr "Geavanceerde weergave"
3319
 
3320
+ #: app/features/mec/settings.php:561
3321
  msgid "Lightbox Date Format"
3322
  msgstr ""
3323
 
3324
+ #: app/features/mec/settings.php:564
3325
  #, fuzzy
3326
  msgid "Default value is M d Y"
3327
  msgstr "Standaardwaarde is Events"
3328
 
3329
+ #: app/features/mec/settings.php:568
3330
  #, fuzzy
3331
  msgid "Google Maps API"
3332
  msgstr "Goog Maps stijl"
3333
 
3334
+ #: app/features/mec/settings.php:572
3335
  msgid "Don't load Google Maps API library"
3336
  msgstr ""
3337
 
3338
+ #: app/features/mec/settings.php:574
3339
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3340
  msgstr ""
3341
 
3342
+ #: app/features/mec/settings.php:586
3343
  msgid "Enable Google Recaptcha"
3344
  msgstr "Google Recaptcha inschakelen"
3345
 
3346
+ #: app/features/mec/settings.php:593
3347
  msgid "Enable on booking form"
3348
  msgstr "Inschakelen op boekingsformulier"
3349
 
3350
+ #: app/features/mec/settings.php:599
3351
  msgid "Enable on \"Frontend Event Submittion\" form"
3352
  msgstr "Inschakelen op het formulier van \"Evenement aanmaken op een pagina\""
3353
 
3354
+ #: app/features/mec/settings.php:603
3355
  msgid "Site Key"
3356
  msgstr "Site key"
3357
 
3358
+ #: app/features/mec/settings.php:609
3359
+ msgid "Secret Key"
3360
+ msgstr "Secret key"
3361
+
3362
+ #: app/features/mec/settings.php:623
3363
  msgid ""
3364
  "Show export module (iCal export and add to Google calendars) on event page"
3365
  msgstr ""
3366
  "Laat export module (iCal export en toevoegen aan Google kalender) zien op de "
3367
  "evenementen pagina."
3368
 
3369
+ #: app/features/mec/settings.php:630
3370
  msgid "Google Calendar"
3371
  msgstr "Google kalender"
3372
 
3373
+ #: app/features/mec/settings.php:650
3374
  msgid "Show event time based on local time of visitor on event page"
3375
  msgstr ""
3376
 
3377
+ #: app/features/mec/settings.php:666
3378
  msgid "Show QR code of event in details page and booking invoice"
3379
  msgstr ""
3380
 
3381
+ #: app/features/mec/settings.php:684
3382
  msgid "Show weather module on event page"
3383
  msgstr ""
3384
 
3385
+ #: app/features/mec/settings.php:692
3386
  #, php-format
3387
  msgid "You can get a free API Key from %s"
3388
  msgstr ""
3389
 
3390
+ #: app/features/mec/settings.php:704
3391
  msgid "Show countdown module on event page"
3392
  msgstr "Laat countdown module zien op evenementen pagina"
3393
 
3394
+ #: app/features/mec/settings.php:709
3395
  msgid "Countdown Style"
3396
  msgstr ""
3397
 
3398
+ #: app/features/mec/settings.php:712
3399
  msgid "Plain Style"
3400
  msgstr ""
3401
 
3402
+ #: app/features/mec/settings.php:713
3403
  msgid "Flip Style"
3404
  msgstr ""
3405
 
3406
+ #: app/features/mec/settings.php:725
3407
  msgid "Show social network module"
3408
  msgstr "Laat social media module zien"
3409
 
3410
+ #: app/features/mec/settings.php:750
3411
  msgid "Show next event module on event page"
3412
  msgstr ""
3413
 
3414
+ #: app/features/mec/settings.php:755
3415
  msgid "Method"
3416
  msgstr ""
3417
 
3418
+ #: app/features/mec/settings.php:758
3419
  msgid "Next Occurrence of Current Event"
3420
  msgstr ""
3421
 
3422
+ #: app/features/mec/settings.php:759
3423
  msgid "Next Occurrence of Other Events"
3424
  msgstr ""
3425
 
3426
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3427
  #, fuzzy
3428
  msgid "Date Format"
3429
  msgstr "Tijdformaat"
3430
 
3431
+ #: app/features/mec/settings.php:776
3432
  #, fuzzy
3433
  msgid "Events List Page"
3434
  msgstr "Evenement titel"
3435
 
3436
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3437
  #, php-format
3438
  msgid "Put %s shortcode into the page."
3439
  msgstr "Zet %s shortcode in de pagina"
3440
 
3441
+ #: app/features/mec/settings.php:788
3442
  #, fuzzy
3443
  msgid "Add/Edit Events Page"
3444
  msgstr "Bewerk evenement"
3445
 
3446
+ #: app/features/mec/settings.php:802
3447
  msgid "Enable event submission by guest (Not logged-in) users"
3448
  msgstr "Laat gasten (niet ingelogd gebruikers) evenementen aan kunnen maken."
3449
 
3450
+ #: app/features/mec/settings.php:809
3451
  msgid "Enable mandatory email and name for guest user"
3452
  msgstr ""
3453
 
3454
+ #: app/features/mec/settings.php:813
3455
  #, fuzzy
3456
  msgid "Frontend Event Submission Sections"
3457
  msgstr "Evenement aanmaken op een pagina"
3458
 
3459
+ #: app/features/mec/settings.php:835
3460
  #, fuzzy
3461
  msgid "Event Categories"
3462
  msgstr "Categorieën"
3463
 
3464
+ #: app/features/mec/settings.php:841
3465
  msgid "Event Labels"
3466
  msgstr "Evenement label"
3467
 
3468
+ #: app/features/mec/settings.php:853
3469
  #, fuzzy
3470
  msgid "Event Tags"
3471
  msgstr "Evenementen"
3472
 
3473
+ #: app/features/mec/settings.php:865
3474
  msgid "Event Organizer"
3475
  msgstr "Evenement organisator"
3476
 
3477
+ #: app/features/mec/settings.php:877
3478
  #, fuzzy
3479
  msgid "Booking Options"
3480
  msgstr "Styling opties"
3481
 
3482
+ #: app/features/mec/settings.php:883
3483
  #, fuzzy
3484
  msgid "Fees/Taxes Options"
3485
  msgstr "Algemene opties"
3486
 
3487
+ #: app/features/mec/settings.php:891
3488
  #, php-format
3489
  msgid ""
3490
  "Users can put a note for editors while they're submitting the event. Also "
3492
  "users' note in email."
3493
  msgstr ""
3494
 
3495
+ #: app/features/mec/settings.php:895
3496
  msgid "Visibility of Note"
3497
  msgstr ""
3498
 
3499
+ #: app/features/mec/settings.php:898
3500
  msgid "Always"
3501
  msgstr ""
3502
 
3503
+ #: app/features/mec/settings.php:899
3504
  msgid "While event is not published"
3505
  msgstr ""
3506
 
3507
+ #: app/features/mec/settings.php:902
3508
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3509
  msgstr ""
3510
 
3511
+ #: app/features/mec/settings.php:908
3512
  msgid "Exceptional days"
3513
  msgstr ""
3514
 
3515
+ #: app/features/mec/settings.php:912
3516
  msgid "Show exceptional days option on Add/Edit events page"
3517
  msgstr ""
3518
 
3519
+ #: app/features/mec/settings.php:913
3520
  msgid ""
3521
  "Using this option you can include/exclude certain days to/from event "
3522
  "occurrence dates."
3523
  msgstr ""
3524
 
3525
+ #: app/features/mec/settings.php:923
3526
  msgid ""
3527
  "Show additional organizers option on Add/Edit events page and single event "
3528
  "page."
3529
  msgstr ""
3530
 
3531
+ #: app/features/mec/settings.php:937
3532
  msgid "Enable booking module"
3533
  msgstr "Boeking module inschakelen"
3534
 
3535
+ #: app/features/mec/settings.php:945
3536
  #, fuzzy
3537
  msgid "Default is Y-m-d"
3538
  msgstr "Standaard"
3539
 
3540
+ #: app/features/mec/settings.php:949
3541
  #, fuzzy
3542
  msgid "Maximum Dates"
3543
  msgstr "Mximum evenementen"
3544
 
3545
+ #: app/features/mec/settings.php:951
3546
  #, fuzzy
3547
  msgid "Default is 6"
3548
  msgstr "Standaard"
3549
 
3550
+ #: app/features/mec/settings.php:955
3551
  msgid "Thank You Page"
3552
  msgstr ""
3553
 
3554
+ #: app/features/mec/settings.php:963
3555
  msgid ""
3556
  "User redirects to this page after booking. Leave it empty if you want to "
3557
  "disable it."
3558
  msgstr ""
3559
 
3560
+ #: app/features/mec/settings.php:971
3561
  msgid "Enable Express Attendees Form"
3562
  msgstr ""
3563
 
3564
+ #: app/features/mec/settings.php:973
3565
  msgid ""
3566
  "Users are able to apply first attendee information for other attendees in "
3567
  "the booking form."
3568
  msgstr ""
3569
 
3570
+ #: app/features/mec/settings.php:976
3571
  msgid "Email verification"
3572
  msgstr "Email verificatie"
3573
 
3574
+ #: app/features/mec/settings.php:982
3575
  msgid "Auto verification for free bookings"
3576
  msgstr "Automatisch verifiëren voor gratis boekingen"
3577
 
3578
+ #: app/features/mec/settings.php:991
3579
  msgid "Auto verification for paid bookings"
3580
  msgstr "Automatisch verifiëren voor betaalde boekingen"
3581
 
3582
+ #: app/features/mec/settings.php:1001
3583
  msgid "Auto confirmation for free bookings"
3584
  msgstr "Automatisch bevestigen voor gratis boekingen"
3585
 
3586
+ #: app/features/mec/settings.php:1010
3587
  msgid "Auto confirmation for paid bookings"
3588
  msgstr "Automatisch bevestigen voor betaalde boekingen"
3589
 
3590
+ #: app/features/mec/settings.php:1027
3591
  msgid "Enable coupons module"
3592
  msgstr "Coupons module inschakelen"
3593
 
3594
+ #: app/features/mec/settings.php:1044
3595
  msgid "Enable taxes / fees module"
3596
  msgstr "Belastingen / toeslagen module inschakelen"
3597
 
3598
+ #: app/features/mec/settings.php:1049
3599
  msgid "Add Fee"
3600
  msgstr "Toeslag toevoegen"
3601
 
3602
+ #: app/features/mec/settings.php:1105
3603
  msgid "Enable BuddyPress Integration"
3604
  msgstr ""
3605
 
3606
+ #: app/features/mec/settings.php:1112
3607
  msgid "Show \"Attendees Module\" in event details page"
3608
  msgstr ""
3609
 
3610
+ #: app/features/mec/settings.php:1116
3611
  msgid "Attendees Limit"
3612
  msgstr ""
3613
 
3614
+ #: app/features/mec/settings.php:1124
3615
  msgid "Add booking activity to user profile"
3616
  msgstr ""
3617
 
3618
+ #: app/features/mec/settings.php:1135
3619
  msgid "Enable Mailchimp Integration"
3620
  msgstr ""
3621
 
3622
+ #: app/features/mec/settings.php:1147
3623
  msgid "List ID"
3624
  msgstr ""
3625
 
3626
+ #: app/features/mec/settings.php:1154
3627
  msgid "Subscription Status"
3628
  msgstr ""
3629
 
3630
+ #: app/features/mec/settings.php:1157
3631
  msgid "Subscribe automatically"
3632
  msgstr ""
3633
 
3634
+ #: app/features/mec/settings.php:1158
3635
  msgid "Subscribe by verification"
3636
  msgstr ""
3637
 
3638
+ #: app/features/mec/settings.php:1160
3639
  msgid ""
3640
  "If you choose \"Subscribe by verification\" then an email will send to user "
3641
  "by mailchimp for subscription verification."
3642
  msgstr ""
3643
 
3644
+ #: app/features/mec/settings.php:1170
3645
  #, php-format
3646
  msgid "%s is required to use this section."
3647
  msgstr ""
3648
 
3649
+ #: app/features/mec/settings.php:1173
3650
  msgid "Purchase Code"
3651
  msgstr ""
3652
 
3653
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3654
+ #: app/features/mec/settings.php:1262
3655
+ msgid "Verified"
3656
+ msgstr "Geverifieerd"
3657
+
3658
+ #: app/features/mec/settings.php:1180
3659
  #, fuzzy
3660
  msgid "UnVerified"
3661
  msgstr "Geverifieerd"
3662
 
3663
+ #: app/features/mec/settings.php:1182
3664
  msgid ""
3665
  "Please insert your purchase code validation. read documentation for more "
3666
  "information."
3667
  msgstr ""
3668
 
3669
+ #: app/features/mec/settings.php:1185
3670
  msgid "Product Name"
3671
  msgstr ""
3672
 
3673
+ #: app/features/mec/settings.php:1188
3674
  msgid "1 License for MEC Plugin"
3675
  msgstr ""
3676
 
3677
+ #: app/features/mec/settings.php:1189
3678
  msgid "5 License for MEC Plugin"
3679
  msgstr ""
3680
 
3681
+ #: app/features/mec/settings.php:1190
3682
  msgid "10 License for MEC Plugin"
3683
  msgstr ""
3684
 
3685
+ #: app/features/mec/settings.php:1197
3686
  msgid "MEC Deactivation"
3687
  msgstr ""
3688
 
3689
+ #: app/features/mec/settings.php:1199
3690
  msgid "Deactivate"
3691
  msgstr ""
3692
 
3693
+ #: app/features/mec/settings.php:1201
3694
  msgid ""
3695
  "For deactivation first delete your purchase from above field then press save "
3696
  "after that click on deactivate for deactivate this purchase code from this "
3697
  "domain then you can activate another domain."
3698
  msgstr ""
3699
 
3700
+ #: app/features/mec/settings.php:1264
3701
  msgid "Please Refresh Page"
3702
  msgstr ""
3703
 
3855
  msgid "eg. https://webnus.net"
3856
  msgstr "bijv. https://webnus.net"
3857
 
3858
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3859
  #: app/skins/single.php:194
3860
  msgid "Other Organizers"
3861
  msgstr ""
3870
  msgid "%s Price"
3871
  msgstr ""
3872
 
3873
+ #: app/libraries/book.php:516
3874
+ msgid "Discount"
3875
+ msgstr "Korting"
3876
+
3877
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3878
+ #: app/modules/booking/default.php:369
3879
+ msgid "Download Invoice"
3880
+ msgstr ""
3881
+
3882
  #: app/libraries/factory.php:148
3883
  msgid "M.E. Calendar"
3884
  msgstr "M.E. Calendar"
3950
  msgid "There is no excerpt because this is a protected post."
3951
  msgstr "Er is geen samenvatting omdat dit bericht is beveiligd."
3952
 
3953
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
3954
  msgid "Grid View"
3955
  msgstr "Grid weergave"
3956
 
3957
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
3958
  msgid "Agenda View"
3959
  msgstr ""
3960
 
3961
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
3962
  #, fuzzy
3963
  msgid "Full Calendar"
3964
  msgstr "Google kalender"
3965
 
3966
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
3967
  msgid "Calendar/Monthly View"
3968
  msgstr "Kalender/Maandweergave"
3969
 
3970
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
3971
  msgid "Timetable View"
3972
  msgstr ""
3973
 
3974
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
3975
  msgid "Masonry View"
3976
  msgstr ""
3977
 
3978
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
3979
  msgid "Map View"
3980
  msgstr "Map weergave"
3981
 
4001
  msgid "Slider View"
4002
  msgstr ""
4003
 
4004
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
4005
  msgid "SU"
4006
  msgstr "ZO"
4007
 
4008
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
4009
  msgid "MO"
4010
  msgstr "MA"
4011
 
4012
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
4013
  msgid "TU"
4014
  msgstr "DI"
4015
 
4016
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
4017
  msgid "WE"
4018
  msgstr "WO"
4019
 
4020
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
4021
  msgid "TH"
4022
  msgstr "DO"
4023
 
4024
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
4025
  msgid "FR"
4026
  msgstr "VR"
4027
 
4028
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
4029
  msgid "SA"
4030
  msgstr "ZA"
4031
 
4049
  msgid "Twitter"
4050
  msgstr "Twitter"
4051
 
4052
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
4053
  msgid "Linkedin"
4054
  msgstr "Linkedin"
4055
 
4056
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
4057
+ msgid "VK"
4058
+ msgstr ""
4059
+
4060
+ #: app/libraries/main.php:1053
4061
  msgid "Share on Facebook"
4062
  msgstr "Deel op Facebook"
4063
 
4064
+ #: app/libraries/main.php:1065
4065
  msgid "Google Plus"
4066
  msgstr "Google Plus"
4067
 
4068
+ #: app/libraries/main.php:1077
4069
  msgid "Tweet"
4070
  msgstr "Tweet"
4071
 
4072
+ #: app/libraries/main.php:1471
4073
  msgid "Your booking successfully verified."
4074
  msgstr "Uw boeking is succesvol geverifieerd."
4075
 
4076
+ #: app/libraries/main.php:1472
4077
  msgid "Your booking cannot verify!"
4078
  msgstr "Uw boeking kan niet worden geverifieerd!"
4079
 
4080
+ #: app/libraries/main.php:1484
4081
  msgid "Your booking successfully canceled."
4082
  msgstr "Uw boeking is succesvol geannuleerd."
4083
 
4084
+ #: app/libraries/main.php:1485
4085
  msgid "Your booking cannot be canceled."
4086
  msgstr "Uw boeking kan niet worden geannuleerd."
4087
 
4088
+ #: app/libraries/main.php:1489
4089
  msgid "You canceled the payment successfully."
4090
  msgstr "U heeft de betaling succesvol geannuleerd."
4091
 
4092
+ #: app/libraries/main.php:1493
4093
  msgid "You returned from payment gateway successfully."
4094
  msgstr "U bent succesvol teruggestuurd vanaf uw betaling."
4095
 
4096
+ #: app/libraries/main.php:1517
4097
  msgid "Cannot find the booking!"
4098
  msgstr ""
4099
 
4100
+ #: app/libraries/main.php:1517
4101
  msgid "Booking is invalid."
4102
  msgstr ""
4103
 
4104
+ #: app/libraries/main.php:1538
4105
  #, php-format
4106
  msgid "%s Invoice"
4107
  msgstr ""
4108
 
4109
+ #: app/libraries/main.php:1559
4110
+ msgid "Transaction ID"
4111
+ msgstr "Transactie ID"
4112
+
4113
+ #: app/libraries/main.php:1568
4114
+ msgid "Attendees"
4115
+ msgstr ""
4116
+
4117
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4118
+ msgid "Ticket"
4119
+ msgstr "Ticket"
4120
+
4121
+ #: app/libraries/main.php:1590
4122
  msgid "Billing"
4123
  msgstr ""
4124
 
4125
+ #: app/libraries/main.php:1601
4126
  msgid "Total"
4127
  msgstr ""
4128
 
4129
+ #: app/libraries/main.php:1634
4130
  msgid "Security nonce is not valid."
4131
  msgstr "Beveiligingscode ongeldig (nonce)"
4132
 
4133
+ #: app/libraries/main.php:1634
4134
  msgid "iCal export stopped!"
4135
  msgstr "iCal exporteren gestopt!"
4136
 
4137
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4138
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4139
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4140
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4141
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4142
  msgid "Sort"
4143
  msgstr "Sorteren"
4144
 
4145
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4146
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4147
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4148
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4149
  msgid "Required Field"
4150
  msgstr "Verplicht veld"
4151
 
4152
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4153
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4154
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4155
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4156
  msgid "Insert a label for this field"
4157
  msgstr "Voer een label in voor dit veld"
4158
 
4159
+ #: app/libraries/main.php:1977
4160
  msgid "HTML and shortcode are allowed."
4161
  msgstr "HTML en shortcodes zijn toegestaan."
4162
 
4163
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4164
+ #: app/libraries/main.php:2108
4165
  msgid "Option"
4166
  msgstr "Optie"
4167
 
4168
+ #: app/libraries/main.php:2142
4169
  #, php-format
4170
  msgid "Instead of %s, the page title with a link will be show."
4171
  msgstr ""
4172
 
4173
+ #: app/libraries/main.php:2144
4174
  msgid "Agreement Page"
4175
  msgstr ""
4176
 
4177
+ #: app/libraries/main.php:2153
4178
  msgid "Status"
4179
  msgstr ""
4180
 
4181
+ #: app/libraries/main.php:2155
4182
  msgid "Checked by default"
4183
  msgstr ""
4184
 
4185
+ #: app/libraries/main.php:2156
4186
  msgid "Unchecked by default"
4187
  msgstr ""
4188
 
4189
+ #: app/libraries/main.php:2178
4190
  msgid "Insert a label for this option"
4191
  msgstr "Voer een label in voor deze optie"
4192
 
4193
+ #: app/libraries/main.php:2193
4194
+ msgid "Free"
4195
+ msgstr "Gratis"
4196
+
4197
+ #: app/libraries/main.php:2845
4198
  #, php-format
4199
  msgid "Copy of %s"
4200
  msgstr ""
4201
 
4202
+ #: app/libraries/main.php:3482
4203
  msgid "Booked an event."
4204
  msgstr ""
4205
 
4206
+ #: app/libraries/main.php:3523
4207
  #, php-format
4208
  msgid "%s booked %s event."
4209
  msgstr ""
4210
 
4211
+ #: app/libraries/main.php:3965
4212
  msgid "Taxonomies"
4213
  msgstr ""
4214
 
4215
+ #: app/libraries/main.php:3967
4216
  msgid "Category Plural Label"
4217
  msgstr ""
4218
 
4219
+ #: app/libraries/main.php:3968
4220
  msgid "Category Singular Label"
4221
  msgstr ""
4222
 
4223
+ #: app/libraries/main.php:3969
4224
  msgid "Label Plural Label"
4225
  msgstr ""
4226
 
4227
+ #: app/libraries/main.php:3970
4228
  msgid "Label Singular Label"
4229
  msgstr ""
4230
 
4231
+ #: app/libraries/main.php:3970
4232
  msgid "label"
4233
  msgstr ""
4234
 
4235
+ #: app/libraries/main.php:3971
4236
  msgid "Location Plural Label"
4237
  msgstr ""
4238
 
4239
+ #: app/libraries/main.php:3972
4240
  msgid "Location Singular Label"
4241
  msgstr ""
4242
 
4243
+ #: app/libraries/main.php:3973
4244
  msgid "Organizer Plural Label"
4245
  msgstr ""
4246
 
4247
+ #: app/libraries/main.php:3974
4248
  msgid "Organizer Singular Label"
4249
  msgstr ""
4250
 
4251
+ #: app/libraries/main.php:3980
4252
  msgid "Sunday abbreviation"
4253
  msgstr ""
4254
 
4255
+ #: app/libraries/main.php:3981
4256
  msgid "Monday abbreviation"
4257
  msgstr ""
4258
 
4259
+ #: app/libraries/main.php:3982
4260
  msgid "Tuesday abbreviation"
4261
  msgstr ""
4262
 
4263
+ #: app/libraries/main.php:3983
4264
  msgid "Wednesday abbreviation"
4265
  msgstr ""
4266
 
4267
+ #: app/libraries/main.php:3984
4268
  msgid "Thursday abbreviation"
4269
  msgstr ""
4270
 
4271
+ #: app/libraries/main.php:3985
4272
  msgid "Friday abbreviation"
4273
  msgstr ""
4274
 
4275
+ #: app/libraries/main.php:3986
4276
  msgid "Saturday abbreviation"
4277
  msgstr ""
4278
 
4279
+ #: app/libraries/main.php:3990
4280
  msgid "Others"
4281
  msgstr ""
4282
 
4283
+ #: app/libraries/main.php:3992
4284
  msgid "Booking Success Message"
4285
  msgstr ""
4286
 
4287
+ #: app/libraries/main.php:3992
4288
+ msgid ""
4289
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4290
+ "needed, please check your email."
4291
+ msgstr ""
4292
+ "Bedankt voor uw boeking. Je tickets zijn geboekt, boekings verificatie kan "
4293
+ "nodig zijn, controleer uw email alstublieft."
4294
+
4295
+ #: app/libraries/main.php:3993
4296
  msgid "Register Button"
4297
  msgstr ""
4298
 
4299
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4300
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4301
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4302
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4310
  msgid "REGISTER"
4311
  msgstr "REGISTREREN"
4312
 
4313
+ #: app/libraries/main.php:3994
4314
  msgid "View Detail Button"
4315
  msgstr ""
4316
 
4317
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4318
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4319
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4320
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4325
  msgid "View Detail"
4326
  msgstr "Bekijk detail"
4327
 
4328
+ #: app/libraries/main.php:3995
4329
  msgid "Event Detail Button"
4330
  msgstr ""
4331
 
4332
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4333
  #, fuzzy
4334
  msgid "Event Detail"
4335
  msgstr "Evenement details"
4336
 
4337
+ #: app/libraries/main.php:3997
4338
  msgid "More Info Link"
4339
  msgstr ""
4340
 
4341
+ #: app/libraries/main.php:4000
4342
  msgid "Ticket (Singular)"
4343
  msgstr ""
4344
 
4345
+ #: app/libraries/main.php:4001
4346
  msgid "Tickets (Plural)"
4347
  msgstr ""
4348
 
4349
+ #: app/libraries/main.php:4067
4350
  msgid "EventON"
4351
  msgstr ""
4352
 
4353
+ #: app/libraries/main.php:4068
4354
  msgid "The Events Calendar"
4355
  msgstr ""
4356
 
4357
+ #: app/libraries/main.php:4069
4358
  msgid "Events Schedule WP Plugin"
4359
  msgstr ""
4360
 
4361
+ #: app/libraries/main.php:4070
4362
  msgid "Calendarize It"
4363
  msgstr ""
4364
 
4382
  msgid "A new event is added."
4383
  msgstr "Een nieuw evenement is toegevoegd."
4384
 
4385
+ #: app/libraries/notifications.php:516
4386
+ msgid "Yes"
4387
+ msgstr ""
4388
+
4389
+ #: app/libraries/notifications.php:516
4390
+ msgid "No"
4391
+ msgstr ""
4392
+
4393
  #: app/libraries/render.php:337
4394
  msgid "Skin controller does not exist."
4395
  msgstr "Skin controller bestaat niet."
4418
  msgid "%s tickets"
4419
  msgstr ""
4420
 
4421
+ #: app/modules/booking/steps/checkout.php:16
4422
+ msgid "Checkout"
4423
+ msgstr "Afrekenen"
4424
+
4425
  #: app/modules/booking/steps/checkout.php:33
4426
  msgid "Discount Coupon"
4427
  msgstr "Kortingscoupon"
4448
  msgid "Next"
4449
  msgstr "Volgende"
4450
 
4451
+ #: app/modules/booking/steps/message.php:7
4452
+ #, fuzzy
4453
+ msgid "Thanks for your booking."
4454
+ msgstr "Bedankt voor uw boeking"
4455
+
4456
  #: app/modules/booking/steps/tickets.php:18
4457
  msgid "Book Event"
4458
  msgstr "Evenement boeken"
4745
  msgid "QR Code : "
4746
  msgstr ""
4747
 
4748
+ #. Plugin Name of the plugin/theme
4749
+ #, fuzzy
4750
+ #| msgid "Modern Events Calendar"
4751
+ msgid "Modern Events Calendar Lite"
4752
+ msgstr "Modern Events Calendar"
4753
+
4754
  #. Plugin URI of the plugin/theme
4755
  msgid "http://webnus.net/plugins/modern-events-calendar/"
4756
  msgstr ""
4767
  msgid "http://webnus.net"
4768
  msgstr ""
4769
 
4770
+ #~ msgid "Add Booking"
4771
+ #~ msgstr "Boeking toevoegen"
4772
+
4773
+ #~ msgid "No bookings found!"
4774
+ #~ msgstr "Geen boekingen gevonden!"
4775
+
4776
+ #~ msgid "Edit Bookings"
4777
+ #~ msgstr "Bewerk boekingen"
4778
+
4779
+ #~ msgid "No bookings found in Trash!"
4780
+ #~ msgstr "Geen boekingen gevonden in de prullenbak!"
4781
+
4782
+ #~ msgid "Book Details"
4783
+ #~ msgstr "Boeking gegevens"
4784
+
4785
+ #~ msgid "Confirmation"
4786
+ #~ msgstr "Bevestiging"
4787
+
4788
+ #~ msgid "Pending"
4789
+ #~ msgstr "In afwachting"
4790
+
4791
+ #~ msgid "Confirmed"
4792
+ #~ msgstr "Bevestigd"
4793
+
4794
+ #~ msgid "Rejected"
4795
+ #~ msgstr "Afgewezen"
4796
+
4797
+ #~ msgid "Verification"
4798
+ #~ msgstr "Verificatie"
4799
+
4800
+ #~ msgid "Waiting"
4801
+ #~ msgstr "In afwachting"
4802
+
4803
+ #~ msgid "Canceled"
4804
+ #~ msgstr "Geannuleerd"
4805
+
4806
+ #~ msgid "Payment"
4807
+ #~ msgstr "Betaling"
4808
+
4809
+ #~ msgid "Gateway"
4810
+ #~ msgstr "Methode "
4811
+
4812
+ #~ msgid "Unknown"
4813
+ #~ msgstr "Onbekend"
4814
+
4815
+ #~ msgid "%s to %s"
4816
+ #~ msgstr "%s tot %s"
4817
+
4818
+ #~ msgid "Book Date"
4819
+ #~ msgstr "Boekings datum"
4820
+
4821
+ #~ msgid "Confirm"
4822
+ #~ msgstr "Bevestig"
4823
+
4824
+ #~ msgid "Reject"
4825
+ #~ msgstr "Afwijzen"
4826
+
4827
+ #~ msgid "Security nonce is missing."
4828
+ #~ msgstr "Beveiligingscode ontbreekt (nonce)"
4829
+
4830
+ #~ msgid "Security nonce is invalid."
4831
+ #~ msgstr "Beveiligingscode ongeldig (nonce)"
4832
+
4833
+ #~ msgid "Invalid request."
4834
+ #~ msgstr "Ongeldige aanvraag."
4835
+
4836
+ #~ msgid "Please select some tickets!"
4837
+ #~ msgstr "Selecteer een aantal tickets!"
4838
+
4839
+ #~ msgid "Captcha is invalid. Please try again."
4840
+ #~ msgstr "Captcha in ongeldig. Probeer opnieuw."
4841
+
4842
+ #~ msgid "Coupon"
4843
+ #~ msgstr "Coupon"
4844
+
4845
+ #~ msgid "All Coupons"
4846
+ #~ msgstr "Alle coupons"
4847
+
4848
+ #~ msgid "Edit Coupon"
4849
+ #~ msgstr "Bewerk coupon"
4850
+
4851
+ #~ msgid "View Coupon"
4852
+ #~ msgstr "Bekijk coupon"
4853
+
4854
+ #~ msgid "Update Coupon"
4855
+ #~ msgstr "Update coupon"
4856
+
4857
+ #~ msgid "Add New Coupon"
4858
+ #~ msgstr "Voeg nieuwe coupon toe"
4859
+
4860
+ #~ msgid "New Coupon Name"
4861
+ #~ msgstr "Nieuwe coupon naam"
4862
+
4863
+ #~ msgid "Popular Coupons"
4864
+ #~ msgstr "Populaire coupons"
4865
+
4866
+ #~ msgid "Search Coupons"
4867
+ #~ msgstr "Zoek coupons"
4868
+
4869
+ #~ msgid "Discount Type"
4870
+ #~ msgstr "Kortings soort"
4871
+
4872
+ #~ msgid ""
4873
+ #~ "Discount percent, considered as amount if you set the discount type to "
4874
+ #~ "amount"
4875
+ #~ msgstr ""
4876
+ #~ "Hetgeen wat je invult, zal bij procent gezien worden als procent en als "
4877
+ #~ "bedrag als het soort korting geselecteerd is als bedrag."
4878
+
4879
+ #~ msgid "Usage Limit"
4880
+ #~ msgstr "Gebruik limiet"
4881
+
4882
+ #~ msgid "Insert -1 for unlimited usage"
4883
+ #~ msgstr "Voer -1 in voor onbeperkt gebruik"
4884
+
4885
+ #~ msgid "Expiration Date"
4886
+ #~ msgstr "Expiration Date"
4887
+
4888
+ #~ msgid "Name/Code"
4889
+ #~ msgstr "Naam/code"
4890
+
4891
+ #~ msgid "Discount coupon is invalid!"
4892
+ #~ msgstr "Kortingscoupon is ongeldig!"
4893
+
4894
+ #~ msgid "Discount coupon usage limit reached!"
4895
+ #~ msgstr "Kortingsbon gebruik limiet bereikt!"
4896
+
4897
+ #~ msgid "Coupon is valid and you get %s discount."
4898
+ #~ msgstr "Coupon is geldig en je krijgt %s korting."
4899
+
4900
+ #~ msgid "Request is invalid!"
4901
+ #~ msgstr "Aanvraag is ongeldig!"
4902
+
4903
+ #~ msgid "There is no attendee for booking!"
4904
+ #~ msgstr "Er is geen deelnemer voor deze boeking!"
4905
+
4906
+ #, fuzzy
4907
+ #~ msgid "MEC Transaction ID: %s"
4908
+ #~ msgstr "Transactie ID"
4909
+
4910
+ #~ msgid "Pay"
4911
+ #~ msgstr "Betalen"
4912
+
4913
+ #~ msgid "Comment"
4914
+ #~ msgstr "Opmerking"
4915
+
4916
+ #~ msgid "HTML allowed."
4917
+ #~ msgstr "HTML toegestaan."
4918
+
4919
+ #~ msgid "Pay Locally"
4920
+ #~ msgstr "Ter plaatse betalen"
4921
+
4922
+ #~ msgid "PayPal Express"
4923
+ #~ msgstr "PayPal Express"
4924
+
4925
+ #~ msgid "Business Account"
4926
+ #~ msgstr "Zakelijk account"
4927
+
4928
+ #~ msgid "Normally PayPal Email."
4929
+ #~ msgstr "Normale PayPal email."
4930
+
4931
+ #~ msgid "Mode"
4932
+ #~ msgstr "Mode"
4933
+
4934
+ #~ msgid "Live"
4935
+ #~ msgstr "Live"
4936
+
4937
+ #~ msgid "Sandbox"
4938
+ #~ msgstr "Sandbox"
4939
+
4940
+ #~ msgid "Waiting for getting response from gateway."
4941
+ #~ msgstr "Wachtend op een reactie van de gateway."
4942
+
4943
+ #~ msgid "Payment was invalid! Booking failed."
4944
+ #~ msgstr "Betaling is ongeldig! Boeking mislukt."
4945
+
4946
+ #~ msgid "PayPal Credit Card"
4947
+ #~ msgstr "PayPal creditcard"
4948
+
4949
+ #~ msgid "API Username"
4950
+ #~ msgstr "API gebruikersnaam"
4951
+
4952
+ #~ msgid "API Password"
4953
+ #~ msgstr "API wachtwoord"
4954
+
4955
+ #~ msgid "API Signature"
4956
+ #~ msgstr "API signature"
4957
+
4958
+ #~ msgid "First name"
4959
+ #~ msgstr "Voornaam"
4960
+
4961
+ #~ msgid "Last name"
4962
+ #~ msgstr "Achternaam"
4963
+
4964
+ #~ msgid "Card Type"
4965
+ #~ msgstr "Card type"
4966
+
4967
+ #~ msgid "Visa"
4968
+ #~ msgstr "Visa"
4969
+
4970
+ #~ msgid "MasterCard"
4971
+ #~ msgstr "MasterCard"
4972
+
4973
+ #~ msgid "Discover"
4974
+ #~ msgstr "Discover"
4975
+
4976
+ #~ msgid "American Express"
4977
+ #~ msgstr "American Express"
4978
+
4979
+ #~ msgid "CC Number"
4980
+ #~ msgstr "CC Number"
4981
+
4982
+ #~ msgid "CVV2"
4983
+ #~ msgstr "CVV2"
4984
+
4985
+ #~ msgid "Payment is invalid."
4986
+ #~ msgstr "Betaling is ongeldig."
4987
+
4988
  #~ msgid "Attendee"
4989
  #~ msgstr "Aanwezige"
4990
 
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: 2018-07-24 11:59+0430\n"
5
- "PO-Revision-Date: 2018-08-21 16:25+0430\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
@@ -21,7 +21,6 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #. Plugin Name of the plugin/theme
25
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
26
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
27
  #: app/widgets/MEC.php:23
@@ -32,8 +31,8 @@ msgstr "Nowoczesny Kalendarz Wydarzeń"
32
  msgid "Content"
33
  msgstr "Treść"
34
 
35
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
36
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
37
  msgid "Shortcode"
38
  msgstr "Shortcode"
39
 
@@ -41,366 +40,29 @@ msgstr "Shortcode"
41
  msgid "Select from predefined shortcodes"
42
  msgstr "Wybierz jedną z predefiniowanych shortcodes"
43
 
44
- #: app/crons/booking-reminder.php:33
45
- msgid "Booking reminder notification is not enabled!"
46
- msgstr ""
47
-
48
- #: app/crons/booking-reminder.php:43
49
- msgid "Booking module is not enabled!"
50
- msgstr ""
51
-
52
- #: app/crons/booking-reminder.php:52
53
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
54
- msgstr ""
55
-
56
- #: app/crons/booking-reminder.php:104
57
- #, php-format
58
- msgid "%s reminders sent."
59
- msgstr ""
60
-
61
- #: app/crons/f-import.php:32
62
- msgid "Auto Facebook import is disabled!"
63
- msgstr "Automatyczny import z Facebook jest wyłączony!"
64
-
65
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
66
- msgid "Please insert your facebook page's link."
67
- msgstr "Wstaw własny odnośnik Facebook."
68
-
69
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
70
- msgid ""
71
- "We couldn't recognize your Facebook page. Please check it and provide us a "
72
- "valid facebook page link."
73
- msgstr ""
74
- "Nie mogliśmy rozpoznać odnośnika Facebook. Sprawdź link i spróbuj ponownie."
75
-
76
- #: app/crons/f-import.php:198
77
- #, php-format
78
- msgid "%s facebook events imported/updated."
79
- msgstr "%s wydarzeń z Facebook zaimportowano/zaktualizowano."
80
-
81
- #: app/crons/g-export.php:37 app/features/ix.php:2527
82
- msgid "All of Client App, Client Secret and Calendar ID are required!"
83
- msgstr "Wszystkie Client APP, Client Secret oraz Calendar ID są wymagane!"
84
-
85
- #: app/crons/g-export.php:234 app/features/ix.php:2722
86
- #, php-format
87
- msgid "%s events added to Google Calendar successfully."
88
- msgstr "%s wydarzenia dodane do Kalendarza Google pomyślnie."
89
-
90
- #: app/crons/g-export.php:235 app/features/ix.php:2723
91
- #, php-format
92
- msgid "%s previously added events get updated."
93
- msgstr "%s wcześniej dodane wydarzenia zaktualizowane."
94
-
95
- #: app/crons/g-export.php:236 app/features/ix.php:2724
96
- #, php-format
97
- msgid "%s events failed to add for following reasons: %s"
98
- msgstr "%s wydarzenia nie udało się dodać z następujących powodów:%s"
99
-
100
- #: app/crons/g-import.php:32
101
- msgid "Auto Google Calendar import is disabled!"
102
- msgstr "Automatyczny import do kalendarza Google jest wyłączony!"
103
-
104
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
105
- msgid "Both of API key and Calendar ID are required!"
106
- msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
107
-
108
- #: app/crons/g-import.php:370
109
- #, php-format
110
- msgid "%s google events imported/updated."
111
- msgstr "%s wydarzeń google zaimportowano/zaktualizowano."
112
-
113
- #: app/features/books.php:105 app/features/books.php:110
114
- #: app/features/ix/export.php:37
115
- msgid "Bookings"
116
- msgstr "Rezerwacje"
117
-
118
- #: app/features/books.php:106 app/features/books.php:328
119
- #: app/features/contextual.php:308 app/features/events.php:253
120
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
121
- msgid "Booking"
122
- msgstr "Rezerwacja"
123
-
124
- #: app/features/books.php:107 app/features/books.php:108
125
- msgid "Add Booking"
126
- msgstr "Dodaj Rezerwację"
127
-
128
- #: app/features/books.php:109
129
- msgid "No bookings found!"
130
- msgstr "Nie znaleziono rezerwacji!"
131
-
132
- #: app/features/books.php:111
133
- msgid "Edit Bookings"
134
- msgstr "Edytuj rezerwacje"
135
-
136
- #: app/features/books.php:112
137
- msgid "No bookings found in Trash!"
138
- msgstr "Nie znaleziono rezerwacji w koszu!"
139
-
140
- #: app/features/books.php:149
141
- msgid "Book Details"
142
- msgstr "Szczegóły rezerwacji"
143
-
144
- #: app/features/books.php:150
145
- msgid "Status & Invoice"
146
- msgstr ""
147
-
148
- #: app/features/books.php:176 app/features/books.php:387
149
- #: app/features/books.php:576 app/features/books.php:651
150
- #: app/features/books.php:709
151
- msgid "Confirmation"
152
- msgstr "Potwierdzenie"
153
-
154
- #: app/features/books.php:178 app/features/books.php:578
155
- #: app/features/books.php:602 app/features/books.php:894
156
- msgid "Pending"
157
- msgstr "Oczekuje"
158
-
159
- #: app/features/books.php:179 app/features/books.php:577
160
- #: app/features/books.php:892
161
- msgid "Confirmed"
162
- msgstr "Potwierdzone"
163
-
164
- #: app/features/books.php:180 app/features/books.php:579
165
- #: app/features/books.php:893
166
- msgid "Rejected"
167
- msgstr "Odrzucone"
168
-
169
- #: app/features/books.php:184 app/features/books.php:388
170
- #: app/features/books.php:585 app/features/books.php:651
171
- #: app/features/books.php:709
172
- msgid "Verification"
173
- msgstr "Potwierdzenie"
174
-
175
- #: app/features/books.php:186 app/features/books.php:587
176
- #: app/features/books.php:909
177
- msgid "Waiting"
178
- msgstr "Oczekuje"
179
-
180
- #: app/features/books.php:187 app/features/books.php:586
181
- #: app/features/books.php:907 app/features/mec/settings.php:1173
182
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
183
- msgid "Verified"
184
- msgstr "Zweryfikowane"
185
-
186
- #: app/features/books.php:188 app/features/books.php:588
187
- #: app/features/books.php:908
188
- msgid "Canceled"
189
- msgstr "Anulowane"
190
-
191
- #: app/features/books.php:203
192
- #, php-format
193
- msgid "Here, you can %s invoice of %s transaction."
194
- msgstr ""
195
-
196
- #: app/features/books.php:203
197
- msgid "download"
198
- msgstr ""
199
-
200
- #: app/features/books.php:246
201
- msgid "It will create a new booking under \"Pay Locally\" gateway."
202
- msgstr ""
203
-
204
- #: app/features/books.php:248 app/features/contextual.php:62
205
- #: app/features/events.php:910 app/features/mec/gateways.php:29
206
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
207
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
208
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
209
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
210
- msgid "Booking Form"
211
- msgstr "Formularz rezerwacji"
212
-
213
- #: app/features/books.php:251 app/features/books.php:330
214
- #: app/features/books.php:385 app/features/books.php:569
215
- #: app/features/books.php:651 app/features/books.php:709
216
- #: app/features/events.php:123
217
- #: app/features/mec/meta_boxes/display_options.php:678
218
- #: app/features/mec/meta_boxes/display_options.php:716
219
- #: app/features/mec/meta_boxes/display_options.php:745
220
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
221
- #: app/skins/yearly_view/tpl.php:69
222
- msgid "Event"
223
- msgstr "Wydarzenie"
224
-
225
- #: app/features/books.php:315
226
- msgid "Payment"
227
- msgstr "Płatność"
228
-
229
- #: app/features/books.php:317 app/features/books.php:386
230
- #: app/features/events.php:756 app/features/events.php:788
231
- msgid "Price"
232
- msgstr "Cena"
233
-
234
- #: app/features/books.php:321 app/features/gateways.php:148
235
- msgid "Gateway"
236
- msgstr "Bramka"
237
-
238
- #: app/features/books.php:322 app/features/books.php:326
239
- #: app/features/books.php:331 app/features/books.php:335
240
- #: app/features/books.php:352 app/features/books.php:690
241
- #: app/features/books.php:748
242
- msgid "Unknown"
243
- msgstr "Nieznane"
244
-
245
- #: app/features/books.php:325 app/features/books.php:389
246
- #: app/features/books.php:651 app/features/books.php:709
247
- #: app/libraries/main.php:1544
248
- msgid "Transaction ID"
249
- msgstr "ID transakcji"
250
-
251
- #: app/features/books.php:334 app/features/books.php:651
252
- #: app/features/books.php:709 app/features/books.php:1099
253
- #: app/features/events.php:508 app/features/events.php:580
254
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
255
- #: app/modules/booking/steps/tickets.php:20
256
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
257
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
258
- #: app/skins/single/modern.php:146
259
- msgid "Date"
260
- msgstr "Data"
261
-
262
- #: app/features/books.php:335
263
- #, php-format
264
- msgid "%s to %s"
265
- msgstr "%s do%s"
266
-
267
- #: app/features/books.php:338 app/features/mec/notifications.php:140
268
- #: app/features/mec/notifications.php:177
269
- #: app/features/mec/notifications.php:214
270
- #: app/features/mec/notifications.php:255
271
- #: app/features/mec/notifications.php:307
272
- msgid "Total Attendees"
273
- msgstr ""
274
-
275
- #: app/features/books.php:341 app/features/books.php:384
276
- #: app/libraries/main.php:1553
277
- msgid "Attendees"
278
- msgstr ""
279
-
280
- #: app/features/books.php:347 app/features/books.php:651
281
- #: app/features/books.php:709 app/features/books.php:1114
282
- #: app/features/events.php:371 app/features/events.php:945
283
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
284
- #: app/features/organizers.php:110 app/features/organizers.php:150
285
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
286
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
287
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
288
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
289
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
290
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
291
- #: app/skins/single/modern.php:38
292
- msgid "Email"
293
- msgstr "Email"
294
-
295
- #: app/features/books.php:351 app/features/books.php:431
296
- #: app/features/books.php:651 app/features/books.php:709
297
- #: app/features/books.php:1106 app/libraries/main.php:1559
298
- #: app/libraries/main.php:3985
299
- msgid "Ticket"
300
- msgstr "Zgłoszenie"
301
-
302
- #: app/features/books.php:358 app/libraries/notifications.php:516
303
- msgid "Yes"
304
- msgstr ""
305
-
306
- #: app/features/books.php:358 app/libraries/notifications.php:516
307
- msgid "No"
308
- msgstr ""
309
-
310
- #: app/features/books.php:390
311
- msgid "Book Date"
312
- msgstr "Data rezerwacji"
313
-
314
- #: app/features/books.php:602
315
- msgid "Confirm"
316
- msgstr "Potwierdź"
317
-
318
- #: app/features/books.php:602
319
- msgid "Reject"
320
- msgstr "Odrzuć"
321
-
322
- #: app/features/books.php:602 app/features/events.php:1569
323
- #: app/features/events.php:1570
324
- msgid "CSV Export"
325
- msgstr "Eksport CSV"
326
-
327
- #: app/features/books.php:602 app/features/events.php:1572
328
- #: app/features/events.php:1573
329
- msgid "MS Excel Export"
330
- msgstr "MS Excel Export"
331
-
332
- #: app/features/books.php:651 app/features/books.php:709
333
- #: app/features/events.php:1631 app/features/events.php:1675
334
- #: app/features/ix.php:2328 app/features/ix.php:2369
335
- #: app/features/labels.php:150 app/features/locations.php:228
336
- #: app/features/organizers.php:198
337
- msgid "ID"
338
- msgstr "ID"
339
-
340
- #: app/features/books.php:651 app/features/books.php:709
341
- msgid "Total Price"
342
- msgstr ""
343
-
344
- #: app/features/books.php:651 app/features/books.php:709
345
- #: app/features/books.php:1113 app/features/events.php:370
346
- #: app/features/fes/form.php:441 app/features/gateways.php:503
347
- #: app/features/labels.php:151 app/features/organizers.php:268
348
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
349
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
350
- msgid "Name"
351
- msgstr "Imię"
352
-
353
- #: app/features/books.php:923
354
- msgid "Security nonce is missing."
355
- msgstr "Kod bezpieczeństwa nie został wprowadzony."
356
-
357
- #: app/features/books.php:926
358
- msgid "Security nonce is invalid."
359
- msgstr "Kod bezpieczeństwa nie jest poprawny."
360
-
361
- #: app/features/books.php:935
362
- msgid "Invalid request."
363
- msgstr "Nieprawidłowe żądanie."
364
-
365
- #: app/features/books.php:963
366
- msgid "Please select some tickets!"
367
- msgstr "Proszę wybrać bilety!"
368
-
369
- #: app/features/books.php:969
370
- msgid "Captcha is invalid. Please try again."
371
- msgstr "Nieprawidłowy kod. Spróbuj ponownie."
372
-
373
- #: app/features/books.php:1015
374
- msgid "Please fill the form correctly. Email and Name fields are required!"
375
- msgstr ""
376
-
377
- #: app/features/books.php:1085
378
- msgid "Event is invalid. Please select an event."
379
- msgstr ""
380
-
381
- #: app/features/books.php:1093
382
- msgid ""
383
- "No ticket ro future dates found for this event! Please try another event."
384
- msgstr ""
385
-
386
- #: app/features/books.php:1175
387
- msgid "Attendee Information"
388
- msgstr ""
389
-
390
  #: app/features/colors.php:50 app/features/fes/form.php:566
391
- #: app/features/mec/settings.php:842
392
  msgid "Event Color"
393
  msgstr "Kolor wydarzenia"
394
 
395
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
396
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
397
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
398
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
399
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
400
  #: app/features/mec/support.php:18
401
  msgid "Settings"
402
  msgstr "Ustawienia"
403
 
 
 
 
 
 
 
 
 
 
404
  #: app/features/contextual.php:63
405
  msgid ""
406
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -413,7 +75,7 @@ msgstr ""
413
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
414
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
415
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
416
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
417
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
418
  msgid "Payment Gateways"
419
  msgstr "Bramki płatności"
@@ -428,7 +90,7 @@ msgstr ""
428
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
429
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
430
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
431
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
432
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
433
  msgid "Notifications"
434
  msgstr "Powiadomienia"
@@ -489,234 +151,102 @@ msgid ""
489
  "\"0\" allowfullscreen></iframe>"
490
  msgstr ""
491
 
492
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
493
- #: app/features/mec/settings.php:247
494
  msgid "General Options"
495
  msgstr "Opcje Ogólne"
496
 
497
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
498
- #: app/features/mec/settings.php:399
499
  msgid "Slugs/Permalinks"
500
  msgstr "Uproszczone nazwy, permalinki"
501
 
502
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
503
- #: app/features/mec/settings.php:419
504
  msgid "Event Details/Single Event Page"
505
  msgstr "Szczegóły wydarzenia / Strona wydarzenia"
506
 
507
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
508
- #: app/features/mec/settings.php:451
509
  msgid "Currency Options"
510
  msgstr "Ustawienia waluty"
511
 
512
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
513
- #: app/features/mec/settings.php:503
514
  msgid "Google Maps Options"
515
  msgstr "Ustawienia Google Maps"
516
 
517
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
518
- #: app/features/mec/settings.php:577
519
  msgid "Google Recaptcha Options"
520
  msgstr "Ustawienia Google Recaptcha"
521
 
522
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
523
- #: app/features/mec/settings.php:695
524
  msgid "Countdown Options"
525
  msgstr "Ustawienia odliczania"
526
 
527
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
528
- #: app/features/mec/settings.php:716
529
  msgid "Social Networks"
530
  msgstr "Strony społecznościowe"
531
 
532
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
533
- #: app/features/mec/settings.php:741
534
  msgid "Next Event Module"
535
  msgstr "Moduł następnego wydarzenia"
536
 
537
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
538
- #: app/features/mec/settings.php:769
539
  msgid "Frontend Event Submission"
540
  msgstr "Dodawanie wydarzeń na stronie frontalnej"
541
 
542
  #: app/features/contextual.php:298 app/features/events.php:570
543
- #: app/features/mec/settings.php:126
544
  msgid "Exceptional Days"
545
  msgstr "Wykluczone dni"
546
 
547
- #: app/features/contextual.php:318 app/features/coupons.php:76
548
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
549
- #: app/features/mec/settings.php:1014
 
 
 
 
550
  msgid "Coupons"
551
  msgstr "Kupony"
552
 
553
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
554
- #: app/features/mec/settings.php:1096
555
  msgid "BuddyPress Integration"
556
  msgstr "Integracja z BuddyPressem"
557
 
558
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
559
- #: app/features/mec/settings.php:1126
560
  msgid "Mailchimp Integration"
561
  msgstr "Integracja MailChimp"
562
 
563
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
564
- #: app/features/mec/settings.php:1162
565
  msgid "MEC Activation"
566
  msgstr "Aktywacja MEC"
567
 
568
- #: app/features/coupons.php:79
569
- msgid "Coupon"
570
- msgstr "Kupon"
571
-
572
- #: app/features/coupons.php:80
573
- msgid "All Coupons"
574
- msgstr "Wszystkie kupony"
575
-
576
- #: app/features/coupons.php:81
577
- msgid "Edit Coupon"
578
- msgstr "Edytuj kupon"
579
-
580
- #: app/features/coupons.php:82
581
- msgid "View Coupon"
582
- msgstr "Zobacz kupon"
583
-
584
- #: app/features/coupons.php:83
585
- msgid "Update Coupon"
586
- msgstr "Aktualizuj kupon"
587
-
588
- #: app/features/coupons.php:84
589
- msgid "Add New Coupon"
590
- msgstr "Dodaj nowy kupon"
591
-
592
- #: app/features/coupons.php:85
593
- msgid "New Coupon Name"
594
- msgstr "Nazwa nowego kuponu"
595
-
596
- #: app/features/coupons.php:86
597
- msgid "Popular Coupons"
598
- msgstr "Popularne kupony"
599
-
600
- #: app/features/coupons.php:87
601
- msgid "Search Coupons"
602
- msgstr "Szukaj kuponu"
603
-
604
- #: app/features/coupons.php:116 app/features/coupons.php:177
605
- msgid "Discount Type"
606
- msgstr "Rodzaj rabatu"
607
-
608
- #: app/features/coupons.php:120 app/features/coupons.php:179
609
- #: app/features/events.php:854 app/features/events.php:879
610
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
611
- msgid "Percent"
612
- msgstr "Procent"
613
-
614
- #: app/features/coupons.php:121 app/features/coupons.php:180
615
- #: app/features/events.php:849 app/features/events.php:874
616
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
617
- msgid "Amount"
618
- msgstr "Kwota"
619
-
620
- #: app/features/coupons.php:127 app/features/coupons.php:184
621
- #: app/features/coupons.php:248 app/features/coupons.php:322
622
- #: app/libraries/book.php:505
623
- msgid "Discount"
624
- msgstr "Zniżka"
625
-
626
- #: app/features/coupons.php:131 app/features/coupons.php:186
627
- msgid ""
628
- "Discount percent, considered as amount if you set the discount type to amount"
629
- msgstr ""
630
- "Procent zniżki interpretowany jako ilość jeżeli wybierzesz rodzaj zniżki "
631
- "jako ilość"
632
-
633
- #: app/features/coupons.php:136 app/features/coupons.php:189
634
- msgid "Usage Limit"
635
- msgstr "Wykorzystanie limitu"
636
-
637
- #: app/features/coupons.php:140 app/features/coupons.php:191
638
- msgid "Insert -1 for unlimited usage"
639
- msgstr "Wstaw -1 dla braku limitu"
640
-
641
- #: app/features/coupons.php:145 app/features/coupons.php:194
642
- #: app/features/gateways.php:1202
643
- msgid "Expiration Date"
644
- msgstr "Termin ważności"
645
-
646
- #: app/features/coupons.php:149 app/features/coupons.php:196
647
- msgid "Leave it empty for no expiration!"
648
- msgstr ""
649
-
650
- #: app/features/coupons.php:154 app/features/coupons.php:199
651
- msgid "Target Event"
652
- msgstr ""
653
-
654
- #: app/features/coupons.php:158 app/features/coupons.php:201
655
- #: app/features/events.php:127
656
- msgid "All Events"
657
- msgstr "Wszystkie wydarzenia"
658
-
659
- #: app/features/coupons.php:246
660
- msgid "Name/Code"
661
- msgstr "Nazwa / Kod"
662
-
663
- #: app/features/coupons.php:247 app/features/events.php:632
664
- #: app/features/events.php:644 app/features/events.php:752
665
- #: app/features/events.php:784
666
- msgid "Description"
667
- msgstr "Opis"
668
-
669
- #: app/features/coupons.php:249
670
- #: app/features/mec/meta_boxes/display_options.php:85
671
- #: app/features/mec/meta_boxes/display_options.php:194
672
- #: app/features/mec/meta_boxes/display_options.php:244
673
- #: app/features/mec/meta_boxes/display_options.php:632
674
- #: app/features/mec/meta_boxes/display_options.php:806
675
- #: app/features/mec/meta_boxes/display_options.php:877
676
- msgid "Limit"
677
- msgstr "Limit"
678
-
679
- #: app/features/coupons.php:250 app/features/labels.php:153
680
- #: app/features/locations.php:231 app/features/organizers.php:201
681
- #: app/modules/booking/steps/tickets.php:36
682
- msgid "Count"
683
- msgstr "Liczba"
684
-
685
- #: app/features/coupons.php:280 app/features/events.php:715
686
- #: app/features/events.php:769 app/features/events.php:801
687
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
688
- #: app/skins/available_spot/tpl.php:84
689
- msgid "Unlimited"
690
- msgstr "Nieograniczony"
691
-
692
- #: app/features/coupons.php:309
693
- msgid "Discount coupon is invalid!"
694
- msgstr "Wprowadzony kupon rabatowy jest nieprawidłowy!"
695
-
696
- #: app/features/coupons.php:311
697
- msgid "Discount coupon usage limit reached!"
698
- msgstr "Przekroczono limit użycia kuponu!"
699
-
700
- #: app/features/coupons.php:313
701
- msgid "Discount coupon is expired!"
702
- msgstr ""
703
-
704
- #: app/features/coupons.php:315
705
- msgid "Discount is not valid for this event!"
706
- msgstr ""
707
-
708
- #: app/features/coupons.php:326
709
- #, php-format
710
- msgid "Coupon is valid and you get %s discount."
711
- msgstr "Kupon jest ważny i otrzymujesz % s zniżki."
712
-
713
  #: app/features/events.php:122 app/features/ix/export.php:33
714
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
715
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
716
  msgid "Events"
717
  msgstr "Wydarzenia"
718
 
719
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
720
  msgid "Add Event"
721
  msgstr "Dodaj wydarzenie"
722
 
@@ -729,6 +259,10 @@ msgstr "Dodaj nowe wydarzenie"
729
  msgid "No events found!"
730
  msgstr "Nie znaleziono wydarzeń!"
731
 
 
 
 
 
732
  #: app/features/events.php:128
733
  msgid "Edit Event"
734
  msgstr ""
@@ -751,7 +285,7 @@ msgstr "Nie znaleziono wydarzeń w Koszu!"
751
  #: app/features/mec/meta_boxes/search_form.php:285
752
  #: app/features/mec/meta_boxes/search_form.php:325
753
  #: app/features/mec/meta_boxes/search_form.php:372
754
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
755
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
756
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
757
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -759,8 +293,8 @@ msgid "Category"
759
  msgstr "Kategoria"
760
 
761
  #: app/features/events.php:143 app/features/fes/form.php:518
762
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
763
- #: app/libraries/main.php:3952
764
  msgid "Categories"
765
  msgstr "Kategorie"
766
 
@@ -827,12 +361,12 @@ msgstr "Szczegóły wydarzenia"
827
  #: app/features/events.php:286 app/features/events.php:1631
828
  #: app/features/events.php:1675 app/features/fes/form.php:479
829
  #: app/features/ix.php:2328 app/features/ix.php:2369
830
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
831
  msgid "Event Cost"
832
  msgstr "Koszt wydarzenia"
833
 
834
  #: app/features/events.php:289 app/features/fes/form.php:482
835
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
836
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
837
  #: app/skins/single/modern.php:179
838
  msgid "Cost"
@@ -846,6 +380,26 @@ msgstr "Uwaga dla administratora"
846
  msgid "Guest Data"
847
  msgstr "Dane gości"
848
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
849
  #: app/features/events.php:375 app/features/fes/form.php:221
850
  msgid "Date and Time"
851
  msgstr "Data i godzina"
@@ -855,7 +409,7 @@ msgstr "Data i godzina"
855
  #: app/features/events.php:1675 app/features/fes/form.php:225
856
  #: app/features/fes/form.php:229 app/features/ix.php:2328
857
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
858
- #: app/features/mec/dashboard.php:262
859
  #: app/features/mec/meta_boxes/display_options.php:42
860
  #: app/features/mec/meta_boxes/display_options.php:129
861
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -887,7 +441,7 @@ msgstr "PM"
887
  #: app/features/events.php:1675 app/features/fes/form.php:265
888
  #: app/features/fes/form.php:269 app/features/ix.php:2328
889
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
890
- #: app/features/mec/dashboard.php:263
891
  msgid "End Date"
892
  msgstr "Data zakończenia"
893
 
@@ -924,7 +478,7 @@ msgid "Repeats"
924
  msgstr "Powtórzenia"
925
 
926
  #: app/features/events.php:481 app/features/fes/form.php:327
927
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
928
  msgid "Daily"
929
  msgstr "Codziennie"
930
 
@@ -946,12 +500,12 @@ msgid "Weekly"
946
  msgstr "Co tydzień"
947
 
948
  #: app/features/events.php:486 app/features/fes/form.php:332
949
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
950
  msgid "Monthly"
951
  msgstr "Co miesiąc"
952
 
953
  #: app/features/events.php:487 app/features/fes/form.php:333
954
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
955
  msgid "Yearly"
956
  msgstr "Co roku"
957
 
@@ -1006,6 +560,15 @@ msgstr "Sobota"
1006
  msgid "Sunday"
1007
  msgstr "Niedziea"
1008
 
 
 
 
 
 
 
 
 
 
1009
  #: app/features/events.php:509 app/features/events.php:581
1010
  #: app/features/events.php:623 app/features/events.php:743
1011
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1052,7 +615,7 @@ msgstr "Wyklucz pewne dni"
1052
  msgid "Exclude certain days from event occurrence dates."
1053
  msgstr "Wyklucz niektóre dni do daty występowania wydarzenia."
1054
 
1055
- #: app/features/events.php:620 app/features/mec/settings.php:866
1056
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1057
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1058
  msgid "Hourly Schedule"
@@ -1073,33 +636,35 @@ msgstr "Do np 8:45"
1073
  #: app/features/events.php:631 app/features/events.php:643
1074
  #: app/features/events.php:1449 app/features/events.php:1631
1075
  #: app/features/events.php:1675 app/features/fes/form.php:214
1076
- #: app/features/gateways.php:550 app/features/gateways.php:617
1077
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1078
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1079
- #: app/features/ix.php:2369
1080
  msgid "Title"
1081
  msgstr "Tytuł"
1082
 
 
 
 
 
 
1083
  #: app/features/events.php:633 app/features/events.php:645
1084
  #: app/features/events.php:771 app/features/events.php:803
1085
  #: app/features/events.php:859 app/features/events.php:884
1086
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1087
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1088
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1089
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1090
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1091
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1092
- #: app/libraries/main.php:2162
1093
  msgid "Remove"
1094
  msgstr "Usuń"
1095
 
1096
  #: app/features/events.php:665 app/features/fes/form.php:456
1097
- #: app/features/mec/settings.php:812
1098
  msgid "Event Links"
1099
  msgstr "Linki wydarzenia"
1100
 
1101
  #: app/features/events.php:667 app/features/fes/form.php:458
1102
- #: app/libraries/main.php:3981
1103
  msgid "Event Link"
1104
  msgstr "Link strony www wydarzenia"
1105
 
@@ -1117,7 +682,7 @@ msgstr ""
1117
  "wydarzenia. Podaj pełen link w tym http(s)://"
1118
 
1119
  #: app/features/events.php:672 app/features/fes/form.php:463
1120
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1121
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1122
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1123
  msgid "More Info"
@@ -1147,12 +712,18 @@ msgstr ""
1147
  msgid "Total booking limits"
1148
  msgstr "Limity rezerwacji"
1149
 
 
 
 
 
 
 
1150
  #: app/features/events.php:717
1151
  msgid "100"
1152
  msgstr "100"
1153
 
1154
  #: app/features/events.php:735 app/libraries/book.php:59
1155
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1156
  msgid "Tickets"
1157
  msgstr "Bilety"
1158
 
@@ -1167,6 +738,10 @@ msgstr ""
1167
  msgid "Ticket Name"
1168
  msgstr "Nazwa biletu"
1169
 
 
 
 
 
1170
  #: app/features/events.php:757 app/features/events.php:789
1171
  msgid "Insert 0 for free ticket. Only numbers please."
1172
  msgstr "Wprowadź 0 aby bilet był darmowy. Wprowadzaj tylko cyfry."
@@ -1192,12 +767,17 @@ msgid "Inherit from global options"
1192
  msgstr "Dziedziczenie z opcji globalnych"
1193
 
1194
  #: app/features/events.php:845 app/features/events.php:870
1195
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1196
  msgid "Fee Title"
1197
  msgstr "Tytuł opłaty"
1198
 
 
 
 
 
 
1199
  #: app/features/events.php:850 app/features/events.php:875
1200
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1201
  msgid ""
1202
  "Fee amount, considered as fixed amount if you set the type to amount "
1203
  "otherwise considered as percentage"
@@ -1206,39 +786,44 @@ msgstr ""
1206
  "rodzaj zniżki jako stałą kwotę, w innym wypadku zniżka będzie liczona w "
1207
  "procentach"
1208
 
 
 
 
 
 
1209
  #: app/features/events.php:855 app/features/events.php:880
1210
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1211
  msgid "Amount (Per Ticket)"
1212
  msgstr "Wartość (bilet)"
1213
 
1214
  #: app/features/events.php:856 app/features/events.php:881
1215
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1216
  msgid "Amount (Per Booking)"
1217
  msgstr "Wartość (rezerwacja)"
1218
 
1219
  #: app/features/events.php:944 app/features/mec/regform.php:117
1220
- #: app/libraries/main.php:1841
1221
  msgid "Text"
1222
  msgstr "Pole tekstowe"
1223
 
1224
  #: app/features/events.php:946 app/features/mec/regform.php:119
1225
  #: app/features/organizers.php:102 app/features/organizers.php:146
1226
- #: app/libraries/main.php:1899
1227
  msgid "Tel"
1228
  msgstr "Tel"
1229
 
1230
  #: app/features/events.php:947 app/features/mec/regform.php:120
1231
- #: app/libraries/main.php:1928
1232
  msgid "Textarea"
1233
  msgstr "Obszar tekstowy"
1234
 
1235
  #: app/features/events.php:948 app/features/mec/regform.php:121
1236
- #: app/libraries/main.php:1981
1237
  msgid "Checkboxes"
1238
  msgstr "Pola wyboru"
1239
 
1240
  #: app/features/events.php:949 app/features/mec/regform.php:122
1241
- #: app/libraries/main.php:2025
1242
  msgid "Radio Buttons"
1243
  msgstr "Przyciski radiowe"
1244
 
@@ -1287,17 +872,17 @@ msgstr "Przyciski radiowe"
1287
  #: app/features/mec/meta_boxes/search_form.php:436
1288
  #: app/features/mec/meta_boxes/search_form.php:443
1289
  #: app/features/mec/meta_boxes/search_form.php:450
1290
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1291
  msgid "Dropdown"
1292
  msgstr "Lista rozwijalna"
1293
 
1294
  #: app/features/events.php:951 app/features/mec/regform.php:124
1295
- #: app/libraries/main.php:2116
1296
  msgid "Agreement"
1297
  msgstr ""
1298
 
1299
  #: app/features/events.php:952 app/features/mec/regform.php:125
1300
- #: app/libraries/main.php:1957
1301
  msgid "Paragraph"
1302
  msgstr "Paragraf"
1303
 
@@ -1323,7 +908,7 @@ msgstr "organizatorzy"
1323
  #: app/features/events.php:1675 app/features/ix.php:2328
1324
  #: app/features/ix.php:2369 app/features/locations.php:58
1325
  #: app/features/locations.php:229 app/features/locations.php:281
1326
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1327
  #: app/features/mec/meta_boxes/display_options.php:641
1328
  #: app/features/mec/meta_boxes/search_form.php:38
1329
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1333,8 +918,8 @@ msgstr "organizatorzy"
1333
  #: app/features/mec/meta_boxes/search_form.php:292
1334
  #: app/features/mec/meta_boxes/search_form.php:332
1335
  #: app/features/mec/meta_boxes/search_form.php:379
1336
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1337
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1338
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1339
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1340
  #: app/skins/single/modern.php:77
@@ -1343,7 +928,7 @@ msgstr "Lokalizacja"
1343
 
1344
  #: app/features/events.php:1451 app/features/events.php:1631
1345
  #: app/features/events.php:1675 app/features/ix.php:2328
1346
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1347
  #: app/features/mec/meta_boxes/display_options.php:642
1348
  #: app/features/mec/meta_boxes/search_form.php:45
1349
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1356,7 +941,7 @@ msgstr "Lokalizacja"
1356
  #: app/features/mec/meta_boxes/search_form.php:433
1357
  #: app/features/organizers.php:58 app/features/organizers.php:199
1358
  #: app/features/organizers.php:255 app/features/organizers.php:257
1359
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1360
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1361
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1362
  #: app/skins/single/modern.php:21
@@ -1375,6 +960,14 @@ msgstr "Author"
1375
  msgid "iCal Export"
1376
  msgstr "iCal eksport"
1377
 
 
 
 
 
 
 
 
 
1378
  #: app/features/events.php:1575 app/features/events.php:1576
1379
  msgid "XML Export"
1380
  msgstr "Eksportuj XML"
@@ -1387,6 +980,13 @@ msgstr "Eksportuj JSON"
1387
  msgid "Duplicate"
1388
  msgstr "Duplikuj"
1389
 
 
 
 
 
 
 
 
1390
  #: app/features/events.php:1631 app/features/events.php:1675
1391
  #: app/features/ix.php:2328 app/features/ix.php:2369
1392
  msgid "Start Time"
@@ -1471,7 +1071,6 @@ msgid "Note to reviewer"
1471
  msgstr "Uwaga dla administratora"
1472
 
1473
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1474
- #: app/features/gateways.php:695
1475
  msgid "Submit"
1476
  msgstr "Wyślij"
1477
 
@@ -1487,7 +1086,7 @@ msgstr "np. twojanazwa@gmail.com"
1487
  msgid "eg. John Smith"
1488
  msgstr "np. Jan Nowak"
1489
 
1490
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1491
  msgid "Featured Image"
1492
  msgstr "Obraz wyróżniający"
1493
 
@@ -1496,14 +1095,14 @@ msgid "Remove Image"
1496
  msgstr "Usuń obraz"
1497
 
1498
  #: app/features/fes/form.php:543 app/features/labels.php:61
1499
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1500
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1501
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1502
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1503
  msgid "Labels"
1504
  msgstr "Etykiety"
1505
 
1506
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1507
  #: app/features/mec/meta_boxes/filter.php:138
1508
  msgid "Tags"
1509
  msgstr "Tagi"
@@ -1529,292 +1128,6 @@ msgstr "Widok"
1529
  msgid "No events found! %s"
1530
  msgstr "Nie znaleziono wydarzeń! %s"
1531
 
1532
- #: app/features/gateways.php:70 app/features/gateways.php:327
1533
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1534
- #: app/features/gateways.php:1396
1535
- msgid "Request is invalid!"
1536
- msgstr "Nieprawidłowe żądanie!"
1537
-
1538
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1539
- msgid "Thanks for your booking."
1540
- msgstr "Dziękujemy za rezerwację."
1541
-
1542
- #: app/features/gateways.php:307 app/features/gateways.php:545
1543
- msgid "Stripe"
1544
- msgstr "Stripe"
1545
-
1546
- #: app/features/gateways.php:342 app/features/gateways.php:716
1547
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1548
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1549
- msgid "There is no attendee for booking!"
1550
- msgstr "Nie ma uczestnika do rezerwacji!"
1551
-
1552
- #: app/features/gateways.php:373 app/features/gateways.php:743
1553
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1554
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1555
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1556
- msgid ""
1557
- "Thanks for your booking. Your tickets booked, booking verification might be "
1558
- "needed, please check your email."
1559
- msgstr ""
1560
- "Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
1561
- "rezerwacji może być konieczna, sprawdź swoją pocztę email."
1562
-
1563
- #: app/features/gateways.php:390
1564
- #, php-format
1565
- msgid "MEC Transaction ID: %s"
1566
- msgstr "ID transakcji: %s"
1567
-
1568
- #: app/features/gateways.php:473 app/features/gateways.php:668
1569
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1570
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1571
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1572
- msgid "Download Invoice"
1573
- msgstr ""
1574
-
1575
- #: app/features/gateways.php:509
1576
- msgid "Card Number"
1577
- msgstr "Numer karty"
1578
-
1579
- #: app/features/gateways.php:515
1580
- msgid "CVC"
1581
- msgstr "CVC"
1582
-
1583
- #: app/features/gateways.php:521
1584
- msgid "Expiration (MM/YYYY)"
1585
- msgstr "Data wygaśnięcia (MM/RRRR)"
1586
-
1587
- #: app/features/gateways.php:522
1588
- msgid "Month"
1589
- msgstr "Miesiąc"
1590
-
1591
- #: app/features/gateways.php:524
1592
- msgid "Year"
1593
- msgstr "Rok"
1594
-
1595
- #: app/features/gateways.php:532 app/features/gateways.php:919
1596
- #: app/features/gateways.php:1223
1597
- msgid "Pay"
1598
- msgstr "Zapłać"
1599
-
1600
- #: app/features/gateways.php:556 app/features/gateways.php:623
1601
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1602
- #: app/features/gateways.php:1621
1603
- msgid "Comment"
1604
- msgstr "Komentarz"
1605
-
1606
- #: app/features/gateways.php:559 app/features/gateways.php:626
1607
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1608
- #: app/features/gateways.php:1624
1609
- msgid "HTML allowed."
1610
- msgstr "HTML dozwolony."
1611
-
1612
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1613
- msgid "Secret Key"
1614
- msgstr "Sekretny klucz"
1615
-
1616
- #: app/features/gateways.php:569
1617
- msgid "Publishable Key"
1618
- msgstr "Klucz do publikacji"
1619
-
1620
- #: app/features/gateways.php:598 app/features/gateways.php:612
1621
- msgid "Pay Locally"
1622
- msgstr "Zapłać lokalnie"
1623
-
1624
- #: app/features/gateways.php:766 app/features/gateways.php:780
1625
- msgid "PayPal Express"
1626
- msgstr "PayPal Express"
1627
-
1628
- #: app/features/gateways.php:798
1629
- msgid "Business Account"
1630
- msgstr "Konto biznesowe"
1631
-
1632
- #: app/features/gateways.php:801
1633
- msgid "Normally PayPal Email."
1634
- msgstr "PayPal Email."
1635
-
1636
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1637
- msgid "Mode"
1638
- msgstr "Tryb"
1639
-
1640
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1641
- msgid "Live"
1642
- msgstr "Na żywo"
1643
-
1644
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1645
- msgid "Sandbox"
1646
- msgstr "Środowisko testowe"
1647
-
1648
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1649
- msgid "Waiting for getting response from gateway."
1650
- msgstr "Oczekiwanie na uzyskanie odpowiedzi od bramy."
1651
-
1652
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1653
- msgid "Payment was invalid! Booking failed."
1654
- msgstr "Płatność jest nieprawidłowa! Rezerwacja nie powiodła się."
1655
-
1656
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1657
- msgid "PayPal Credit Card"
1658
- msgstr "Płatności kartą kredytową PayPal"
1659
-
1660
- #: app/features/gateways.php:1089
1661
- msgid "API Username"
1662
- msgstr "Nazwa użytkownika API"
1663
-
1664
- #: app/features/gateways.php:1095
1665
- msgid "API Password"
1666
- msgstr "Hasło API"
1667
-
1668
- #: app/features/gateways.php:1101
1669
- msgid "API Signature"
1670
- msgstr "Podpis API"
1671
-
1672
- #: app/features/gateways.php:1181
1673
- msgid "First name"
1674
- msgstr "Imię"
1675
-
1676
- #: app/features/gateways.php:1185
1677
- msgid "Last name"
1678
- msgstr "Nazwisko"
1679
-
1680
- #: app/features/gateways.php:1189
1681
- msgid "Card Type"
1682
- msgstr "Typ karty"
1683
-
1684
- #: app/features/gateways.php:1191
1685
- msgid "Visa"
1686
- msgstr "Visa"
1687
-
1688
- #: app/features/gateways.php:1192
1689
- msgid "MasterCard"
1690
- msgstr "MasterCard"
1691
-
1692
- #: app/features/gateways.php:1193
1693
- msgid "Discover"
1694
- msgstr "Discover"
1695
-
1696
- #: app/features/gateways.php:1194
1697
- msgid "American Express"
1698
- msgstr "American Express"
1699
-
1700
- #: app/features/gateways.php:1198
1701
- msgid "CC Number"
1702
- msgstr "Numer CC"
1703
-
1704
- #: app/features/gateways.php:1215
1705
- msgid "CVV2"
1706
- msgstr "CVV2"
1707
-
1708
- #: app/features/gateways.php:1248
1709
- msgid "Payment is invalid."
1710
- msgstr "Płatność jest nieprawidłowa."
1711
-
1712
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1713
- msgid "Pay by WooCommerce"
1714
- msgstr "Zapłacić z WooCommerce"
1715
-
1716
- #: app/features/gateways.php:1418
1717
- #, php-format
1718
- msgid "Booking fee for %s"
1719
- msgstr "Opłata za rezerwację dla %s"
1720
-
1721
- #: app/features/gateways.php:1429
1722
- msgid "Your order is created. Please proceed with checkout."
1723
- msgstr "Zamówienie jest tworzone. Przejdź do kasy."
1724
-
1725
- #: app/features/gateways.php:1591
1726
- msgid "Add to Cart"
1727
- msgstr ""
1728
-
1729
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1730
- msgid "Checkout"
1731
- msgstr "Zamówienie"
1732
-
1733
- #: app/features/gateways.php:1612
1734
- msgid "WooCommerce must be installed and activated first."
1735
- msgstr "WooCommerce musi być zainstalowany i aktywowany."
1736
-
1737
- #: app/features/gateways.php:1628
1738
- msgid "Automatically complete WC orders"
1739
- msgstr "Automatycznie realizuj zamówienia WooCommerce"
1740
-
1741
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1742
- msgid "Enabled"
1743
- msgstr "Włączone"
1744
-
1745
- #: app/features/gateways.php:1632
1746
- #: app/features/mec/meta_boxes/search_form.php:33
1747
- #: app/features/mec/meta_boxes/search_form.php:40
1748
- #: app/features/mec/meta_boxes/search_form.php:47
1749
- #: app/features/mec/meta_boxes/search_form.php:54
1750
- #: app/features/mec/meta_boxes/search_form.php:61
1751
- #: app/features/mec/meta_boxes/search_form.php:68
1752
- #: app/features/mec/meta_boxes/search_form.php:80
1753
- #: app/features/mec/meta_boxes/search_form.php:87
1754
- #: app/features/mec/meta_boxes/search_form.php:94
1755
- #: app/features/mec/meta_boxes/search_form.php:101
1756
- #: app/features/mec/meta_boxes/search_form.php:108
1757
- #: app/features/mec/meta_boxes/search_form.php:115
1758
- #: app/features/mec/meta_boxes/search_form.php:127
1759
- #: app/features/mec/meta_boxes/search_form.php:134
1760
- #: app/features/mec/meta_boxes/search_form.php:141
1761
- #: app/features/mec/meta_boxes/search_form.php:148
1762
- #: app/features/mec/meta_boxes/search_form.php:155
1763
- #: app/features/mec/meta_boxes/search_form.php:162
1764
- #: app/features/mec/meta_boxes/search_form.php:174
1765
- #: app/features/mec/meta_boxes/search_form.php:181
1766
- #: app/features/mec/meta_boxes/search_form.php:193
1767
- #: app/features/mec/meta_boxes/search_form.php:200
1768
- #: app/features/mec/meta_boxes/search_form.php:207
1769
- #: app/features/mec/meta_boxes/search_form.php:214
1770
- #: app/features/mec/meta_boxes/search_form.php:221
1771
- #: app/features/mec/meta_boxes/search_form.php:228
1772
- #: app/features/mec/meta_boxes/search_form.php:240
1773
- #: app/features/mec/meta_boxes/search_form.php:247
1774
- #: app/features/mec/meta_boxes/search_form.php:254
1775
- #: app/features/mec/meta_boxes/search_form.php:261
1776
- #: app/features/mec/meta_boxes/search_form.php:268
1777
- #: app/features/mec/meta_boxes/search_form.php:275
1778
- #: app/features/mec/meta_boxes/search_form.php:287
1779
- #: app/features/mec/meta_boxes/search_form.php:294
1780
- #: app/features/mec/meta_boxes/search_form.php:301
1781
- #: app/features/mec/meta_boxes/search_form.php:308
1782
- #: app/features/mec/meta_boxes/search_form.php:315
1783
- #: app/features/mec/meta_boxes/search_form.php:327
1784
- #: app/features/mec/meta_boxes/search_form.php:334
1785
- #: app/features/mec/meta_boxes/search_form.php:341
1786
- #: app/features/mec/meta_boxes/search_form.php:348
1787
- #: app/features/mec/meta_boxes/search_form.php:355
1788
- #: app/features/mec/meta_boxes/search_form.php:362
1789
- #: app/features/mec/meta_boxes/search_form.php:374
1790
- #: app/features/mec/meta_boxes/search_form.php:381
1791
- #: app/features/mec/meta_boxes/search_form.php:388
1792
- #: app/features/mec/meta_boxes/search_form.php:395
1793
- #: app/features/mec/meta_boxes/search_form.php:402
1794
- #: app/features/mec/meta_boxes/search_form.php:409
1795
- #: app/features/mec/meta_boxes/search_form.php:421
1796
- #: app/features/mec/meta_boxes/search_form.php:428
1797
- #: app/features/mec/meta_boxes/search_form.php:435
1798
- #: app/features/mec/meta_boxes/search_form.php:442
1799
- #: app/features/mec/meta_boxes/search_form.php:449
1800
- #: app/features/mec/meta_boxes/search_form.php:456
1801
- #: app/features/mec/settings.php:291 app/features/mec/settings.php:389
1802
- #: app/features/mec/settings.php:549
1803
- msgid "Disabled"
1804
- msgstr "Wyłączone"
1805
-
1806
- #: app/features/gateways.php:1634
1807
- msgid "It applies only to the orders that are related to MEC."
1808
- msgstr "Stosuje się tylko do zamówień, które są związane z MEC."
1809
-
1810
- #: app/features/gateways.php:1728 app/libraries/main.php:2178
1811
- msgid "Free"
1812
- msgstr "Darmowy"
1813
-
1814
- #: app/features/gateways.php:1744
1815
- msgid "This booking is not free!"
1816
- msgstr ""
1817
-
1818
  #: app/features/ix.php:95
1819
  msgid "MEC - Import / Export"
1820
  msgstr "MEC - Importowanie / eksportowanie"
@@ -1847,6 +1160,10 @@ msgstr ""
1847
  msgid "Third Party plugin is invalid!"
1848
  msgstr ""
1849
 
 
 
 
 
1850
  #: app/features/ix.php:1961 app/features/ix.php:2791
1851
  msgid "Please select some events to import!"
1852
  msgstr "Proszę wybrać dane do zaimportowania!"
@@ -1870,6 +1187,36 @@ msgstr ""
1870
  "Wszystko wydaje się być w porządku! Kliknij %s w celu uwierzytelnienia "
1871
  "swojej aplikacji."
1872
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1873
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1874
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1875
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
@@ -1917,7 +1264,7 @@ msgstr ""
1917
  "To działanie wyeksportuje wszystkie wydarzenia zapisane w systemie do "
1918
  "wybranego przez ciebie formatu."
1919
 
1920
- #: app/features/ix/export.php:24 app/features/mec/settings.php:625
1921
  msgid "iCal"
1922
  msgstr "iCal"
1923
 
@@ -1959,6 +1306,10 @@ msgstr ""
1959
  "W celu eksportu przefiltrowanych wydarzeń, można użyć narzędzia działań "
1960
  "masowych na stronie %s."
1961
 
 
 
 
 
1962
  #: app/features/ix/export_g_calendar.php:25
1963
  msgid "Add events to Google Calendar"
1964
  msgstr "Dodaj do Kalendarza Google"
@@ -2015,7 +1366,7 @@ msgstr "Przełącz"
2015
  msgid "Add to Google Calendar"
2016
  msgstr "Dodaj do Kalendarza Google"
2017
 
2018
- #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1240
2019
  msgid "Checking ..."
2020
  msgstr "Sprawdzanie ..."
2021
 
@@ -2057,10 +1408,10 @@ msgstr ""
2057
  msgid "ICS Feed"
2058
  msgstr ""
2059
 
2060
- #: app/features/ix/import.php:45 app/features/mec/settings.php:506
2061
- #: app/features/mec/settings.php:656 app/features/mec/settings.php:674
2062
- #: app/features/mec/settings.php:927 app/features/mec/settings.php:1017
2063
- #: app/features/mec/settings.php:1034
2064
  #, php-format
2065
  msgid "%s is required to use this feature."
2066
  msgstr ""
@@ -2072,10 +1423,10 @@ msgstr ""
2072
  #: app/features/mec/meta_boxes/display_options.php:558
2073
  #: app/features/mec/meta_boxes/display_options.php:608
2074
  #: app/features/mec/meta_boxes/display_options.php:734
2075
- #: app/features/mec/settings.php:506 app/features/mec/settings.php:656
2076
- #: app/features/mec/settings.php:674 app/features/mec/settings.php:927
2077
- #: app/features/mec/settings.php:1017 app/features/mec/settings.php:1034
2078
- #: app/features/mec/settings.php:1165 app/libraries/skins.php:247
2079
  msgid "Pro version of Modern Events Calendar"
2080
  msgstr ""
2081
 
@@ -2303,6 +1654,11 @@ msgstr "Kolor"
2303
  msgid "Select label color"
2304
  msgstr "Wybierz kolor etykiety"
2305
 
 
 
 
 
 
2306
  #: app/features/labels.php:154 app/features/locations.php:232
2307
  #: app/features/organizers.php:202
2308
  msgid "Slug"
@@ -2313,8 +1669,8 @@ msgstr "Upr. nazwa"
2313
  msgid "Event %s"
2314
  msgstr "Wydarzenie %s"
2315
 
2316
- #: app/features/locations.php:59 app/features/modern-events-calendar-lite.php:192
2317
- #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3956
2318
  msgid "Locations"
2319
  msgstr "Lokalizacje"
2320
 
@@ -2382,7 +1738,7 @@ msgstr "Nazwa lokalizacji"
2382
  msgid "eg. City Hall"
2383
  msgstr "np. Ratusz"
2384
 
2385
- #: app/features/locations.php:298 app/features/mec/settings.php:854
2386
  msgid "Event Location"
2387
  msgstr "Miejsce wydarzenia"
2388
 
@@ -2406,91 +1762,91 @@ msgstr "Wybierz obraz"
2406
  msgid "Don't show map in single event page"
2407
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
2408
 
2409
- #: app/features/modern-events-calendar-lite.php:193 app/features/mec/meta_boxes/filter.php:104
2410
- #: app/features/organizers.php:59 app/libraries/main.php:3958
2411
  msgid "Organizers"
2412
  msgstr "Organizatorzy"
2413
 
2414
- #: app/features/modern-events-calendar-lite.php:194 app/features/modern-events-calendar-lite.php:208
2415
- #: app/features/mec/dashboard.php:92
2416
  msgid "Shortcodes"
2417
  msgstr "Shortcodes"
2418
 
2419
- #: app/features/modern-events-calendar-lite.php:195
2420
  msgid "MEC - Settings"
2421
  msgstr "MEC - Ustawienia"
2422
 
2423
- #: app/features/modern-events-calendar-lite.php:210
2424
  msgid "Add Shortcode"
2425
  msgstr "Dodaj shortcode"
2426
 
2427
- #: app/features/modern-events-calendar-lite.php:211
2428
  msgid "Add New Shortcode"
2429
  msgstr "Dodaj nowy shortcode"
2430
 
2431
- #: app/features/modern-events-calendar-lite.php:212
2432
  msgid "No shortcodes found!"
2433
  msgstr "Nie znaleziono shortcodes!"
2434
 
2435
- #: app/features/modern-events-calendar-lite.php:213
2436
  msgid "All Shortcodes"
2437
  msgstr "Wszystkie shortcodes"
2438
 
2439
- #: app/features/modern-events-calendar-lite.php:214
2440
  msgid "Edit shortcodes"
2441
  msgstr "Edytuj shortcodes"
2442
 
2443
- #: app/features/modern-events-calendar-lite.php:215
2444
  msgid "No shortcodes found in Trash!"
2445
  msgstr "Brak shortcodes w koszu!"
2446
 
2447
- #: app/features/modern-events-calendar-lite.php:262
2448
  msgid "Display Options"
2449
  msgstr "Opcje wyświetlania"
2450
 
2451
- #: app/features/modern-events-calendar-lite.php:263
2452
  msgid "Filter Options"
2453
  msgstr "Opcje filtrów"
2454
 
2455
- #: app/features/modern-events-calendar-lite.php:265
2456
  msgid "Search Form"
2457
  msgstr "Formularz wyszukiwania"
2458
 
2459
- #: app/features/modern-events-calendar-lite.php:556
2460
  msgid "Single Event Display Method"
2461
  msgstr "Sposób wyświetlania wydarzenia"
2462
 
2463
- #: app/features/modern-events-calendar-lite.php:561
2464
  msgid "Separate Window"
2465
  msgstr "Osobna karta"
2466
 
2467
- #: app/features/modern-events-calendar-lite.php:562
2468
  msgid "Modal 1"
2469
  msgstr "Okno modalne"
2470
 
2471
- #: app/features/mec/dashboard.php:54
2472
  #, php-format
2473
  msgid "Welcome %s"
2474
  msgstr "Witaj %s"
2475
 
2476
- #: app/features/mec/dashboard.php:57
2477
  #, php-format
2478
  msgid "%s - Most Powerful & Easy to Use Events Management System"
2479
  msgstr ""
2480
 
2481
- #: app/features/mec/dashboard.php:57
2482
  msgid "Modern Event Calendar"
2483
  msgstr ""
2484
 
2485
- #: app/features/mec/dashboard.php:57
2486
  msgid "Modern Event Calendar (Lite)"
2487
  msgstr ""
2488
 
2489
- #: app/features/mec/dashboard.php:66
2490
  msgid "Version"
2491
  msgstr "Wersja"
2492
 
2493
- #: app/features/mec/dashboard.php:75
2494
  #, php-format
2495
  msgid ""
2496
  "You're using %s version of Modern Events Calendar. To use advanced booking "
@@ -2498,19 +1854,19 @@ msgid ""
2498
  "Spots, etc you should %s to the Pro version."
2499
  msgstr ""
2500
 
2501
- #: app/features/mec/dashboard.php:75
2502
  msgid "lite"
2503
  msgstr ""
2504
 
2505
- #: app/features/mec/dashboard.php:75
2506
  msgid "upgrade"
2507
  msgstr ""
2508
 
2509
- #: app/features/mec/dashboard.php:114 app/features/mec/support.php:91
2510
  msgid "Documentation"
2511
  msgstr "Dokumentacja"
2512
 
2513
- #: app/features/mec/dashboard.php:117 app/features/mec/support.php:95
2514
  msgid ""
2515
  "Our documentation is simple and functional with full details and cover all "
2516
  "essential aspects from beginning to the most advanced parts."
@@ -2519,22 +1875,22 @@ msgstr ""
2519
  "funkcjonowania MEC i jest odpowiednia zarówno dla początkujących jak i "
2520
  "zaawansowanych użytkowników."
2521
 
2522
- #: app/features/mec/dashboard.php:119 app/features/mec/support.php:98
2523
  msgid "DOCUMENTATION"
2524
  msgstr "DOKUMENTACJA"
2525
 
2526
- #: app/features/mec/dashboard.php:128 app/features/mec/support.php:107
2527
  msgid "Support Forum"
2528
  msgstr "Forum wsparcia"
2529
 
2530
- #: app/features/mec/dashboard.php:132 app/features/mec/support.php:111
2531
  msgid ""
2532
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2533
  "If you want to use this service you need to upgrade your plugin to Pro "
2534
  "version. Click on the following button."
2535
  msgstr ""
2536
 
2537
- #: app/features/mec/dashboard.php:134 app/features/mec/support.php:113
2538
  msgid ""
2539
  "Webnus is elite and trusted author with high percentage of satisfied user. "
2540
  "If you have any issues please don't hesitate to contact us, we will reply as "
@@ -2545,80 +1901,80 @@ msgstr ""
2545
  "funkcjonowaniem kalendarza, niezwłocznie skontaktuj się z nami - pomożemy Ci "
2546
  "najszybciej jak tylko będzie to możliwe."
2547
 
2548
- #: app/features/mec/dashboard.php:138 app/features/mec/support.php:117
2549
  msgid "GO PREMIUM"
2550
  msgstr ""
2551
 
2552
- #: app/features/mec/dashboard.php:140 app/features/mec/support.php:119
2553
  msgid "OPEN A TICKET"
2554
  msgstr "Wyślij zgłoszenie"
2555
 
2556
- #: app/features/mec/dashboard.php:153 app/features/mec/settings.php:377
2557
  msgid "Upcoming Events"
2558
  msgstr "Nadchodzące wydarzenia"
2559
 
2560
- #: app/features/mec/dashboard.php:177
2561
  msgid "Popular Gateways"
2562
  msgstr "Popularne bramki płatności"
2563
 
2564
- #: app/features/mec/dashboard.php:228
2565
  msgid "Total Bookings"
2566
  msgstr "Rezerwacje"
2567
 
2568
- #: app/features/mec/dashboard.php:255
2569
  msgid "This Month"
2570
  msgstr "Ten miesiąc"
2571
 
2572
- #: app/features/mec/dashboard.php:256
2573
  msgid "Last Month"
2574
  msgstr "Ostatni miesiąc"
2575
 
2576
- #: app/features/mec/dashboard.php:257
2577
  msgid "This Year"
2578
  msgstr "W tym roku"
2579
 
2580
- #: app/features/mec/dashboard.php:258
2581
  msgid "Last Year"
2582
  msgstr "W poprzednim roku"
2583
 
2584
- #: app/features/mec/dashboard.php:270
2585
  msgid "Bar"
2586
  msgstr "Pasek"
2587
 
2588
- #: app/features/mec/dashboard.php:271
2589
  msgid "Line"
2590
  msgstr "Linia"
2591
 
2592
- #: app/features/mec/dashboard.php:273
2593
  msgid "Filter"
2594
  msgstr "Filtr"
2595
 
2596
- #: app/features/mec/dashboard.php:289
2597
  #, php-format
2598
  msgid "Total Sells (%s)"
2599
  msgstr "Sprzedaż w sumie (%s)"
2600
 
2601
- #: app/features/mec/dashboard.php:310
2602
  msgid "Change Log"
2603
  msgstr "Dziennik Zmian"
2604
 
2605
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
2606
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
2607
- #: app/features/mec/settings.php:204 app/features/mec/styles.php:52
2608
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
2609
  msgid "Styling Options"
2610
  msgstr "Opcje stylów"
2611
 
2612
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
2613
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
2614
- #: app/features/mec/settings.php:211 app/features/mec/styles.php:59
2615
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
2616
  msgid "Custom CSS"
2617
  msgstr "Własny kod CSS"
2618
 
2619
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
2620
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
2621
- #: app/features/mec/regform.php:64 app/features/mec/settings.php:218
2622
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
2623
  #: app/features/mec/support.php:64
2624
  msgid "Messages"
@@ -2626,7 +1982,7 @@ msgstr "Wiadomości"
2626
 
2627
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
2628
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
2629
- #: app/features/mec/settings.php:225 app/features/mec/styles.php:73
2630
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
2631
  #: app/features/mec/support.php:84
2632
  msgid "Support"
@@ -2639,24 +1995,25 @@ msgstr "Wsparcie"
2639
  #: app/features/mec/notifications.php:409
2640
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
2641
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
2642
- #: app/features/mec/settings.php:233 app/features/mec/settings.php:1203
2643
- #: app/features/mec/settings.php:1253 app/features/mec/settings.php:1265
2644
- #: app/features/mec/styles.php:96 app/features/mec/styles.php:136
2645
- #: app/features/mec/styles.php:144 app/features/mec/styling.php:262
2646
- #: app/features/mec/styling.php:327 app/features/mec/styling.php:335
 
2647
  msgid "Save Changes"
2648
  msgstr "Zapisz zmiany"
2649
 
2650
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2651
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2652
- #: app/features/mec/settings.php:1235 app/features/mec/styles.php:123
2653
  #: app/features/mec/styling.php:313
2654
  msgid "Saved"
2655
  msgstr "Zapisane"
2656
 
2657
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2658
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2659
- #: app/features/mec/settings.php:1236 app/features/mec/styles.php:124
2660
  #: app/features/mec/styling.php:314
2661
  msgid "Settings Saved!"
2662
  msgstr ""
@@ -2866,6 +2223,15 @@ msgstr "Domyślną wartością jest \"M d\""
2866
  msgid "Default values are d and F"
2867
  msgstr "Wartości domyślne to d i F"
2868
 
 
 
 
 
 
 
 
 
 
2869
  #: app/features/mec/meta_boxes/display_options.php:86
2870
  #: app/features/mec/meta_boxes/display_options.php:195
2871
  #: app/features/mec/meta_boxes/display_options.php:245
@@ -2945,13 +2311,13 @@ msgstr "Widok domyślny"
2945
 
2946
  #: app/features/mec/meta_boxes/display_options.php:287
2947
  #: app/features/mec/meta_boxes/display_options.php:296
2948
- #: app/libraries/main.php:323 app/libraries/main.php:1118
2949
  msgid "List View"
2950
  msgstr "Widok Listy"
2951
 
2952
  #: app/features/mec/meta_boxes/display_options.php:288
2953
  #: app/features/mec/meta_boxes/display_options.php:306
2954
- #: app/libraries/main.php:327 app/libraries/main.php:1112
2955
  msgid "Yearly View"
2956
  msgstr ""
2957
 
@@ -2962,13 +2328,13 @@ msgstr "Widok miesięczny / kalendarz"
2962
 
2963
  #: app/features/mec/meta_boxes/display_options.php:290
2964
  #: app/features/mec/meta_boxes/display_options.php:326
2965
- #: app/libraries/main.php:330 app/libraries/main.php:1114
2966
  msgid "Weekly View"
2967
  msgstr "Widok tygodniowy"
2968
 
2969
  #: app/features/mec/meta_boxes/display_options.php:291
2970
  #: app/features/mec/meta_boxes/display_options.php:336
2971
- #: app/libraries/main.php:329 app/libraries/main.php:1115
2972
  msgid "Daily View"
2973
  msgstr "Widok dzienny"
2974
 
@@ -3204,6 +2570,66 @@ msgstr "Pokazuje tylko wydarzenia w trakcie."
3204
  msgid "Show Search Form"
3205
  msgstr "Pokaż formularz wyszukiwania"
3206
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3207
  #: app/features/mec/meta_boxes/search_form.php:59
3208
  #: app/features/mec/meta_boxes/search_form.php:106
3209
  #: app/features/mec/meta_boxes/search_form.php:153
@@ -3441,6 +2867,14 @@ msgstr ""
3441
  msgid "Invoice Link"
3442
  msgstr ""
3443
 
 
 
 
 
 
 
 
 
3444
  #: app/features/mec/notifications.php:145
3445
  msgid "Booking Verification"
3446
  msgstr "Potwierdzenie rezerwacji"
@@ -3459,7 +2893,7 @@ msgstr ""
3459
  msgid "Email/Booking verification link."
3460
  msgstr "Link potwierdzający rezerwację."
3461
 
3462
- #: app/features/mec/notifications.php:181 app/features/mec/settings.php:990
3463
  msgid "Booking Confirmation"
3464
  msgstr "Potwierdzenie rezerwacji"
3465
 
@@ -3537,7 +2971,7 @@ msgstr "Tytuł wydarzenia"
3537
  msgid "Status of event"
3538
  msgstr "Status wydarzenia"
3539
 
3540
- #: app/features/mec/notifications.php:339 app/features/mec/settings.php:884
3541
  msgid "Event Note"
3542
  msgstr "Uwaga"
3543
 
@@ -3545,91 +2979,91 @@ msgstr "Uwaga"
3545
  msgid "Admin events management link."
3546
  msgstr "Link do zarzadzania wydarzeniami."
3547
 
3548
- #: app/features/mec/settings.php:42
3549
  msgid "Archive Page Options"
3550
  msgstr ""
3551
 
3552
- #: app/features/mec/settings.php:78 app/features/mec/settings.php:614
3553
  msgid "Export Module Options"
3554
  msgstr "Opcje modułu eksportu"
3555
 
3556
- #: app/features/mec/settings.php:84 app/features/mec/settings.php:641
3557
  msgid "Local Time Module"
3558
  msgstr "Moduł czasu lokalnego"
3559
 
3560
- #: app/features/mec/settings.php:90 app/features/mec/settings.php:653
3561
  msgid "QR Code Module"
3562
  msgstr ""
3563
 
3564
- #: app/features/mec/settings.php:96 app/features/mec/settings.php:671
3565
  msgid "Weather Module"
3566
  msgstr ""
3567
 
3568
- #: app/features/mec/settings.php:132 app/features/mec/settings.php:914
3569
  #, fuzzy
3570
  msgid "Additional Organizers"
3571
  msgstr "Wszyscy organizatorzy"
3572
 
3573
- #: app/features/mec/settings.php:150 app/features/mec/settings.php:1031
3574
  msgid "Taxes / Fees"
3575
  msgstr "Podatki / Opłaty"
3576
 
3577
- #: app/features/mec/settings.php:250
3578
  msgid "Time Format"
3579
  msgstr "Format czasu"
3580
 
3581
- #: app/features/mec/settings.php:253
3582
  msgid "12 hours format with AM/PM"
3583
  msgstr "12 godzin z AM/PM"
3584
 
3585
- #: app/features/mec/settings.php:254
3586
  msgid "24 hours format"
3587
  msgstr "24 godziny"
3588
 
3589
- #: app/features/mec/settings.php:256 app/features/mec/settings.php:269
3590
  msgid ""
3591
  "This option is for showing start/end time of events on frontend of website."
3592
  msgstr ""
3593
  "Opcja odpowiada za wyświetlanie początku / końca wydarzenia na stronie "
3594
  "głównej."
3595
 
3596
- #: app/features/mec/settings.php:261
3597
  msgid "Hide Events"
3598
  msgstr "Ukryj wydarzenia"
3599
 
3600
- #: app/features/mec/settings.php:264
3601
  msgid "On Event Start"
3602
  msgstr "Po rozpoczęciu wydarzenia"
3603
 
3604
- #: app/features/mec/settings.php:265
3605
  msgid "+1 Hour after start"
3606
  msgstr "+1 godzinę po starcie wydarzenia"
3607
 
3608
- #: app/features/mec/settings.php:266
3609
  msgid "+2 Hours after start"
3610
  msgstr "+2 godziny po starcie wydarzenia"
3611
 
3612
- #: app/features/mec/settings.php:267
3613
  msgid "On Event End"
3614
  msgstr "Podczas zakończenia wydarzenia"
3615
 
3616
- #: app/features/mec/settings.php:275
3617
  msgid "Multiple Day Events"
3618
  msgstr "Wydarzenia trwające wiele dni"
3619
 
3620
- #: app/features/mec/settings.php:278
3621
  msgid "Show only first day on List/Grid/Slider skins"
3622
  msgstr "Pokaż tylko pierwszy dzień w widokach listy / siatki / slidera"
3623
 
3624
- #: app/features/mec/settings.php:279
3625
  msgid "Show only first day on all skins"
3626
  msgstr "Pokaż tylko pierwszy dzień wydarzenia na wszystkich skórkach"
3627
 
3628
- #: app/features/mec/settings.php:280
3629
  msgid "Show all days"
3630
  msgstr "Pokaż wszystkie dni"
3631
 
3632
- #: app/features/mec/settings.php:282
3633
  msgid ""
3634
  "For showing all days of multiple day events on frontend or only show the "
3635
  "first day."
@@ -3637,23 +3071,27 @@ msgstr ""
3637
  "W celu pokazywania wszystkich dni wydarzenia trwającego wiele dni, lub w "
3638
  "celu pokazywania tylko pierwszego dnia takiego wydarzenia."
3639
 
3640
- #: app/features/mec/settings.php:288
3641
  msgid "Remove MEC Data on Plugin Uninstall"
3642
  msgstr "Usuń wszystkie dane podczas odinstalowania"
3643
 
3644
- #: app/features/mec/settings.php:298
 
 
 
 
3645
  msgid "Exclude Date Suffix"
3646
  msgstr "Wykluczenie sufiksu daty"
3647
 
3648
- #: app/features/mec/settings.php:301
3649
  msgid "Remove suffix from calendars"
3650
  msgstr "Usuń przyrostek z kalendarzy"
3651
 
3652
- #: app/features/mec/settings.php:308 app/libraries/main.php:3963
3653
  msgid "Weekdays"
3654
  msgstr "Dni powszednie"
3655
 
3656
- #: app/features/mec/settings.php:316
3657
  msgid ""
3658
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3659
  "and Friday."
@@ -3661,63 +3099,63 @@ msgstr ""
3661
  "Należy postępować ostrożnie. Domyślna wartość to poniedziałek, wtorek, "
3662
  "środa, czwartek i piątek."
3663
 
3664
- #: app/features/mec/settings.php:323
3665
  msgid "Weekends"
3666
  msgstr "Weekendy"
3667
 
3668
- #: app/features/mec/settings.php:331
3669
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3670
  msgstr "Należy postępować ostrożnie. Domyślna wartość to sobota i niedziela."
3671
 
3672
- #: app/features/mec/settings.php:339
3673
  msgid "Archive Pages"
3674
  msgstr ""
3675
 
3676
- #: app/features/mec/settings.php:342
3677
  msgid "Archive Page Title"
3678
  msgstr "Tytuł strony archiwum"
3679
 
3680
- #: app/features/mec/settings.php:345
3681
  msgid "Default value is Events"
3682
  msgstr "Wartość domyślna to Wydarzenia"
3683
 
3684
- #: app/features/mec/settings.php:350
3685
  msgid "Archive Page Skin"
3686
  msgstr "Skórka strony archiwum"
3687
 
3688
- #: app/features/mec/settings.php:357
3689
  msgid "Default value is Calendar/Monthly View"
3690
  msgstr "Wartość domyślna to Kalendarz / widok miesięczny"
3691
 
3692
- #: app/features/mec/settings.php:362
3693
  msgid "Category Page Skin"
3694
  msgstr "Skórka strony kategorii"
3695
 
3696
- #: app/features/mec/settings.php:369
3697
  msgid "Default value is List View"
3698
  msgstr "Wartość domyślna to widok listy"
3699
 
3700
- #: app/features/mec/settings.php:374
3701
  msgid "Category Events Method"
3702
  msgstr ""
3703
 
3704
- #: app/features/mec/settings.php:378
3705
  msgid "Expired Events"
3706
  msgstr ""
3707
 
3708
- #: app/features/mec/settings.php:380
3709
  msgid "Default value is Upcoming Events"
3710
  msgstr ""
3711
 
3712
- #: app/features/mec/settings.php:385
3713
  msgid "Events Archive Status"
3714
  msgstr "Status archiwum wydarzeń"
3715
 
3716
- #: app/features/mec/settings.php:388
3717
  msgid "Enabled (Recommended)"
3718
  msgstr "Włączone (zalecane)"
3719
 
3720
- #: app/features/mec/settings.php:391
3721
  msgid ""
3722
  "If you disable it, then you should create a page as archive page of MEC. "
3723
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
@@ -3728,22 +3166,22 @@ msgstr ""
3728
  "kalendarza. Ponadto, takie działanie wyłączy wszystkie reguły przepisywania "
3729
  "adresów kalendarza."
3730
 
3731
- #: app/features/mec/settings.php:401
3732
  msgid "Main Slug"
3733
  msgstr "Główna upr. nazwa"
3734
 
3735
- #: app/features/mec/settings.php:404
3736
  msgid ""
3737
  "Default value is events. Valid characters are lowercase a-z, - character and "
3738
  "numbers."
3739
  msgstr ""
3740
  "Domyślna wartość to events. Dopuszczalne znaki to a-z, minus oraz cyfry."
3741
 
3742
- #: app/features/mec/settings.php:408
3743
  msgid "Category Slug"
3744
  msgstr "Upr. nazwa kategorii"
3745
 
3746
- #: app/features/mec/settings.php:411
3747
  msgid ""
3748
  "It's slug of MEC categories, you can change it to events-cat or something "
3749
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
@@ -3753,104 +3191,104 @@ msgstr ""
3753
  "cat lub coś innego. Domyślna wartość to mec-category. Dopuszczalne znaki to "
3754
  "a-z, minus oraz cyfry."
3755
 
3756
- #: app/features/mec/settings.php:421
3757
  msgid "Single Event Date Format"
3758
  msgstr "Format daty dla strony szczegółów wydarzenia"
3759
 
3760
- #: app/features/mec/settings.php:424 app/features/mec/settings.php:762
3761
  msgid "Default is M d Y"
3762
  msgstr "Domyślna wartość to M d Y"
3763
 
3764
- #: app/features/mec/settings.php:428
3765
  msgid "Date Method"
3766
  msgstr "Sposób wyświetlania dat"
3767
 
3768
- #: app/features/mec/settings.php:431
3769
  msgid "Next occurrence date"
3770
  msgstr "Data następnego wystąpienia"
3771
 
3772
- #: app/features/mec/settings.php:432
3773
  msgid "Referred date"
3774
  msgstr "Określona data"
3775
 
3776
- #: app/features/mec/settings.php:434
3777
  msgid ""
3778
  "\"Referred date\" shows the event date based on referred date in event list."
3779
  msgstr ""
3780
  "\"Określona data\" pokazuje datę wydarzenia w oparciu o datę określoną w "
3781
  "parametrach wydarzenia."
3782
 
3783
- #: app/features/mec/settings.php:438
3784
  msgid "Single Event Style"
3785
  msgstr "Styl dla strony wydarzenia"
3786
 
3787
- #: app/features/mec/settings.php:441
3788
  msgid "Default Style"
3789
  msgstr "Domyślny styl"
3790
 
3791
- #: app/features/mec/settings.php:442
3792
  msgid "Modern Style"
3793
  msgstr "Nowoczesny styl"
3794
 
3795
- #: app/features/mec/settings.php:444
3796
  msgid "Choose your single event style."
3797
  msgstr "Wybierz swój styl pojedynczego wydarzenia."
3798
 
3799
- #: app/features/mec/settings.php:453
3800
  msgid "Currency"
3801
  msgstr "Waluta"
3802
 
3803
- #: app/features/mec/settings.php:463
3804
  msgid "Currency Sign"
3805
  msgstr "Symbol waluty"
3806
 
3807
- #: app/features/mec/settings.php:466
3808
  msgid "Default value will be \"currency\" if you leave it empty."
3809
  msgstr "Jeżeli pozostawisz pole puste, wartością domyślną będzie \"currency\"."
3810
 
3811
- #: app/features/mec/settings.php:470
3812
  msgid "Currency Position"
3813
  msgstr "Pozycja symbolu waluty"
3814
 
3815
- #: app/features/mec/settings.php:473
3816
  msgid "Before $10"
3817
  msgstr "Przed - $10"
3818
 
3819
- #: app/features/mec/settings.php:474
3820
  msgid "After 10$"
3821
  msgstr "Po - 10$"
3822
 
3823
- #: app/features/mec/settings.php:479
3824
  msgid "Thousand Separator"
3825
  msgstr "Seperator tysięcy"
3826
 
3827
- #: app/features/mec/settings.php:485
3828
  msgid "Decimal Separator"
3829
  msgstr "Separator miejsc dziesiętnych"
3830
 
3831
- #: app/features/mec/settings.php:495
3832
  msgid "No decimal"
3833
  msgstr "Brak przecinka"
3834
 
3835
- #: app/features/mec/settings.php:511
3836
  msgid "Show Google Maps on event page"
3837
  msgstr "Pokaż Mapy Google na stronie wydarzenia"
3838
 
3839
- #: app/features/mec/settings.php:516 app/features/mec/settings.php:684
3840
- #: app/features/mec/settings.php:1135
3841
  msgid "API Key"
3842
  msgstr "Klucz API"
3843
 
3844
- #: app/features/mec/settings.php:519 app/features/mec/settings.php:1138
3845
- #: app/features/mec/settings.php:1145
3846
  msgid "Required!"
3847
  msgstr "Wymagane!"
3848
 
3849
- #: app/features/mec/settings.php:523
3850
  msgid "Zoom level"
3851
  msgstr "Poziom powiększenia"
3852
 
3853
- #: app/features/mec/settings.php:530
3854
  msgid ""
3855
  "For Google Maps module in single event page. In Google Maps skin, it will "
3856
  "caculate the zoom level automatically based on event boundaries."
@@ -3858,184 +3296,188 @@ msgstr ""
3858
  "Dla map Google na stronach wydarzenia. Ustawienie spowoduje, że przybliżenie "
3859
  "będzie dostosowane automatycznie na podstawie zasięgu wydarzenia."
3860
 
3861
- #: app/features/mec/settings.php:534
3862
  msgid "Google Maps Style"
3863
  msgstr "Skórka Map Google"
3864
 
3865
- #: app/features/mec/settings.php:538
3866
  msgid "Default"
3867
  msgstr "Domyślnie"
3868
 
3869
- #: app/features/mec/settings.php:546
3870
  msgid "Direction on single event"
3871
  msgstr "Droga dojazdu na stronie wydarzenia"
3872
 
3873
- #: app/features/mec/settings.php:550
3874
  msgid "Simple Method"
3875
  msgstr "Prosta metoda"
3876
 
3877
- #: app/features/mec/settings.php:551
3878
  msgid "Advanced Method"
3879
  msgstr "Zaawansowana metoda"
3880
 
3881
- #: app/features/mec/settings.php:556
3882
  msgid "Lightbox Date Format"
3883
  msgstr "Format daty w oknie"
3884
 
3885
- #: app/features/mec/settings.php:559
3886
  msgid "Default value is M d Y"
3887
  msgstr "Domyślną wartością jest M d Y"
3888
 
3889
- #: app/features/mec/settings.php:563
3890
  msgid "Google Maps API"
3891
  msgstr "Klucz API Google Maps"
3892
 
3893
- #: app/features/mec/settings.php:567
3894
  msgid "Don't load Google Maps API library"
3895
  msgstr "Nie ładuj bibliotek Google Maps"
3896
 
3897
- #: app/features/mec/settings.php:569
3898
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3899
  msgstr ""
3900
  "Zaznacz tylko w przypadku gdy inna wtyczka lub szablon ładują biblioteki "
3901
  "Google Maps"
3902
 
3903
- #: app/features/mec/settings.php:581
3904
  msgid "Enable Google Recaptcha"
3905
  msgstr "Włącz Google Recaptcha"
3906
 
3907
- #: app/features/mec/settings.php:588
3908
  msgid "Enable on booking form"
3909
  msgstr "Włącz na formularzu rezerwacji"
3910
 
3911
- #: app/features/mec/settings.php:594
3912
  msgid "Enable on \"Frontend Event Submittion\" form"
3913
  msgstr "Włącz na stronie przesyłania nowego wydarzenia"
3914
 
3915
- #: app/features/mec/settings.php:598
3916
  msgid "Site Key"
3917
  msgstr "Site Key"
3918
 
3919
- #: app/features/mec/settings.php:618
 
 
 
 
3920
  msgid ""
3921
  "Show export module (iCal export and add to Google calendars) on event page"
3922
  msgstr ""
3923
  "Pokaż modułu eksportu (eksport iCal i dodaj do kalendarzy Google) na stronie "
3924
  "wydarzenia"
3925
 
3926
- #: app/features/mec/settings.php:625
3927
  msgid "Google Calendar"
3928
  msgstr "Kalendarz Google"
3929
 
3930
- #: app/features/mec/settings.php:645
3931
  msgid "Show event time based on local time of visitor on event page"
3932
  msgstr ""
3933
  "Wyświetl czas wydarzenia na podstawie czasu lokalnego osoby odwiedzającej "
3934
  "stronę wydarzenia"
3935
 
3936
- #: app/features/mec/settings.php:661
3937
  msgid "Show QR code of event in details page and booking invoice"
3938
  msgstr ""
3939
 
3940
- #: app/features/mec/settings.php:679
3941
  msgid "Show weather module on event page"
3942
  msgstr ""
3943
 
3944
- #: app/features/mec/settings.php:687
3945
  #, php-format
3946
  msgid "You can get a free API Key from %s"
3947
  msgstr ""
3948
 
3949
- #: app/features/mec/settings.php:699
3950
  msgid "Show countdown module on event page"
3951
  msgstr "Pokaż moduł odliczania na stronie wydarzenia"
3952
 
3953
- #: app/features/mec/settings.php:704
3954
  msgid "Countdown Style"
3955
  msgstr "Style licznika"
3956
 
3957
- #: app/features/mec/settings.php:707
3958
  msgid "Plain Style"
3959
  msgstr "Zwykły Styl"
3960
 
3961
- #: app/features/mec/settings.php:708
3962
  msgid "Flip Style"
3963
  msgstr "Styl przerzucanych kart"
3964
 
3965
- #: app/features/mec/settings.php:720
3966
  msgid "Show social network module"
3967
  msgstr "Pokaż moduł sieci społecznej"
3968
 
3969
- #: app/features/mec/settings.php:745
3970
  msgid "Show next event module on event page"
3971
  msgstr "Wyświetl moduł następnego wydarzenia na stronie szczegółów wydarzenia"
3972
 
3973
- #: app/features/mec/settings.php:750
3974
  msgid "Method"
3975
  msgstr "Metoda"
3976
 
3977
- #: app/features/mec/settings.php:753
3978
  msgid "Next Occurrence of Current Event"
3979
  msgstr "Kolejne wystąpienie bieżącego wydarzenia"
3980
 
3981
- #: app/features/mec/settings.php:754
3982
  msgid "Next Occurrence of Other Events"
3983
  msgstr "Kolejne wystąpienie innych wydarzeń"
3984
 
3985
- #: app/features/mec/settings.php:759 app/features/mec/settings.php:937
3986
  msgid "Date Format"
3987
  msgstr "Format daty"
3988
 
3989
- #: app/features/mec/settings.php:771
3990
  msgid "Events List Page"
3991
  msgstr "Strona listy wydarzeń"
3992
 
3993
- #: app/features/mec/settings.php:780 app/features/mec/settings.php:792
3994
  #, php-format
3995
  msgid "Put %s shortcode into the page."
3996
  msgstr "Dodaj %s shortcode na stronie."
3997
 
3998
- #: app/features/mec/settings.php:783
3999
  msgid "Add/Edit Events Page"
4000
  msgstr "Strona dodawania / edycji wydarzenia"
4001
 
4002
- #: app/features/mec/settings.php:797
4003
  msgid "Enable event submission by guest (Not logged-in) users"
4004
  msgstr "Pozwól na dodawanie wydarzeń przez niezalogowanych użytkowników"
4005
 
4006
- #: app/features/mec/settings.php:804
4007
  msgid "Enable mandatory email and name for guest user"
4008
  msgstr "Włącz obowiązkowy email oraz nazwę dla użytkowników gościnnych"
4009
 
4010
- #: app/features/mec/settings.php:808
4011
  msgid "Frontend Event Submission Sections"
4012
  msgstr "Sekcje widoczne na stronie frontalnej dodawania wydarzenia"
4013
 
4014
- #: app/features/mec/settings.php:830
4015
  msgid "Event Categories"
4016
  msgstr "Kategorie wydarzeń"
4017
 
4018
- #: app/features/mec/settings.php:836
4019
  msgid "Event Labels"
4020
  msgstr "Etykiety wydarzeń"
4021
 
4022
- #: app/features/mec/settings.php:848
4023
  msgid "Event Tags"
4024
  msgstr "Tagi wydarzeń"
4025
 
4026
- #: app/features/mec/settings.php:860
4027
  msgid "Event Organizer"
4028
  msgstr "Organizator wydarzenia"
4029
 
4030
- #: app/features/mec/settings.php:872
4031
  msgid "Booking Options"
4032
  msgstr "Opcje rezerwacji"
4033
 
4034
- #: app/features/mec/settings.php:878
4035
  msgid "Fees/Taxes Options"
4036
  msgstr "Podatki / Opłaty"
4037
 
4038
- #: app/features/mec/settings.php:886
4039
  #, php-format
4040
  msgid ""
4041
  "Users can put a note for editors while they're submitting the event. Also "
@@ -4045,32 +3487,32 @@ msgstr ""
4045
  "Użytkownicy mogą skorzystać z tego pola aby napisać w nim wiadomość do "
4046
  "administratora, który będzie rozpatrywał zgłoszenie."
4047
 
4048
- #: app/features/mec/settings.php:890
4049
  msgid "Visibility of Note"
4050
  msgstr "Widoczność uwagi"
4051
 
4052
- #: app/features/mec/settings.php:893
4053
  msgid "Always"
4054
  msgstr "Zawsze"
4055
 
4056
- #: app/features/mec/settings.php:894
4057
  msgid "While event is not published"
4058
  msgstr "Podczas gdy wydarzenie nie jest opublikowane"
4059
 
4060
- #: app/features/mec/settings.php:897
4061
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
4062
  msgstr ""
4063
  "Notatka jest wyświetlana w formularzu na stronie frontalnej oraz na zapleczu."
4064
 
4065
- #: app/features/mec/settings.php:903
4066
  msgid "Exceptional days"
4067
  msgstr "Wykluczone dni"
4068
 
4069
- #: app/features/mec/settings.php:907
4070
  msgid "Show exceptional days option on Add/Edit events page"
4071
  msgstr "Pokaż wykluczone dni na stronie dodawania / usuwania wydarzenia"
4072
 
4073
- #: app/features/mec/settings.php:908
4074
  msgid ""
4075
  "Using this option you can include/exclude certain days to/from event "
4076
  "occurrence dates."
@@ -4078,34 +3520,34 @@ msgstr ""
4078
  "Za pomocą tej opcji można włączyć / wyłączyć niektóre dni z puli dni do "
4079
  "wyboru przy tworzeniu wydarzeń."
4080
 
4081
- #: app/features/mec/settings.php:918
4082
  #, fuzzy
4083
  msgid ""
4084
  "Show additional organizers option on Add/Edit events page and single event "
4085
  "page."
4086
  msgstr "Pokaż wykluczone dni na stronie dodawania / usuwania wydarzenia"
4087
 
4088
- #: app/features/mec/settings.php:932
4089
  msgid "Enable booking module"
4090
  msgstr "Włącz moduł rezerwacji"
4091
 
4092
- #: app/features/mec/settings.php:940
4093
  msgid "Default is Y-m-d"
4094
  msgstr "Domyślna wartość to Y-m-d"
4095
 
4096
- #: app/features/mec/settings.php:944
4097
  msgid "Maximum Dates"
4098
  msgstr "Maksymalna ilość dat"
4099
 
4100
- #: app/features/mec/settings.php:946
4101
  msgid "Default is 6"
4102
  msgstr "Domyślnie 6"
4103
 
4104
- #: app/features/mec/settings.php:950
4105
  msgid "Thank You Page"
4106
  msgstr "Strona podziękowania"
4107
 
4108
- #: app/features/mec/settings.php:958
4109
  msgid ""
4110
  "User redirects to this page after booking. Leave it empty if you want to "
4111
  "disable it."
@@ -4113,85 +3555,85 @@ msgstr ""
4113
  "Użytkownik jest przekierowywany na tą stronę po złożeniu rezerwacji. "
4114
  "Pozostaw pole puste jeśli chcesz wyłączyć tą stronę."
4115
 
4116
- #: app/features/mec/settings.php:966
4117
  msgid "Enable Express Attendees Form"
4118
  msgstr ""
4119
 
4120
- #: app/features/mec/settings.php:968
4121
  msgid ""
4122
  "Users are able to apply first attendee information for other attendees in "
4123
  "the booking form."
4124
  msgstr ""
4125
 
4126
- #: app/features/mec/settings.php:971
4127
  msgid "Email verification"
4128
  msgstr "Weryfikacja przez email"
4129
 
4130
- #: app/features/mec/settings.php:977
4131
  msgid "Auto verification for free bookings"
4132
  msgstr "Automatyczna weryfikacja dla bezpłatnych rezerwacji"
4133
 
4134
- #: app/features/mec/settings.php:986
4135
  msgid "Auto verification for paid bookings"
4136
  msgstr "Automatyczna rezerwacja dla płatnych rezerwacji"
4137
 
4138
- #: app/features/mec/settings.php:996
4139
  msgid "Auto confirmation for free bookings"
4140
  msgstr "Automatyczne potwierdzenie dla bezpłatnych rezerwacji"
4141
 
4142
- #: app/features/mec/settings.php:1005
4143
  msgid "Auto confirmation for paid bookings"
4144
  msgstr "Automatyczne potwierdzenie dla płatnych rezerwacji"
4145
 
4146
- #: app/features/mec/settings.php:1022
4147
  msgid "Enable coupons module"
4148
  msgstr "Włącz moduł kupony"
4149
 
4150
- #: app/features/mec/settings.php:1039
4151
  msgid "Enable taxes / fees module"
4152
  msgstr "Włącz moduł podatki / opłaty"
4153
 
4154
- #: app/features/mec/settings.php:1044
4155
  msgid "Add Fee"
4156
  msgstr "Dodaj rodzaj opłaty"
4157
 
4158
- #: app/features/mec/settings.php:1100
4159
  msgid "Enable BuddyPress Integration"
4160
  msgstr "Włącz integrację BuddyPressa"
4161
 
4162
- #: app/features/mec/settings.php:1107
4163
  msgid "Show \"Attendees Module\" in event details page"
4164
  msgstr "Pokaż moduł uczestników na stronie wydarzenia"
4165
 
4166
- #: app/features/mec/settings.php:1111
4167
  msgid "Attendees Limit"
4168
  msgstr "Limit uczestników"
4169
 
4170
- #: app/features/mec/settings.php:1119
4171
  msgid "Add booking activity to user profile"
4172
  msgstr "Dodaj aktywności związane z rezerwacją do profilu użytkownika"
4173
 
4174
- #: app/features/mec/settings.php:1130
4175
  msgid "Enable Mailchimp Integration"
4176
  msgstr "Włącz integrację z MailChimp"
4177
 
4178
- #: app/features/mec/settings.php:1142
4179
  msgid "List ID"
4180
  msgstr "ID listy"
4181
 
4182
- #: app/features/mec/settings.php:1149
4183
  msgid "Subscription Status"
4184
  msgstr "Status subskrypcji"
4185
 
4186
- #: app/features/mec/settings.php:1152
4187
  msgid "Subscribe automatically"
4188
  msgstr "Zapisz się automatycznie"
4189
 
4190
- #: app/features/mec/settings.php:1153
4191
  msgid "Subscribe by verification"
4192
  msgstr "Subskrybuj przez weryfikację"
4193
 
4194
- #: app/features/mec/settings.php:1155
4195
  msgid ""
4196
  "If you choose \"Subscribe by verification\" then an email will send to user "
4197
  "by mailchimp for subscription verification."
@@ -4200,20 +3642,25 @@ msgstr ""
4200
  "będzie musiał potwierdzić zapisanie do newslettera za pomocą linku "
4201
  "umieszczonego w wiadomości email."
4202
 
4203
- #: app/features/mec/settings.php:1165
4204
  #, php-format
4205
  msgid "%s is required to use this section."
4206
  msgstr ""
4207
 
4208
- #: app/features/mec/settings.php:1168
4209
  msgid "Purchase Code"
4210
  msgstr "Kod zakupu"
4211
 
4212
- #: app/features/mec/settings.php:1175
 
 
 
 
 
4213
  msgid "UnVerified"
4214
  msgstr "Niesprawdzony"
4215
 
4216
- #: app/features/mec/settings.php:1177
4217
  msgid ""
4218
  "Please insert your purchase code validation. read documentation for more "
4219
  "information."
@@ -4221,31 +3668,31 @@ msgstr ""
4221
  "Proszę podać kod zakupu w celu weryfikacji. Więcej informacji na ten temat "
4222
  "znajdziesz w dokumentacji."
4223
 
4224
- #: app/features/mec/settings.php:1180
4225
  msgid "Product Name"
4226
  msgstr ""
4227
 
4228
- #: app/features/mec/settings.php:1183
4229
  msgid "1 License for MEC Plugin"
4230
  msgstr ""
4231
 
4232
- #: app/features/mec/settings.php:1184
4233
  msgid "5 License for MEC Plugin"
4234
  msgstr ""
4235
 
4236
- #: app/features/mec/settings.php:1185
4237
  msgid "10 License for MEC Plugin"
4238
  msgstr ""
4239
 
4240
- #: app/features/mec/settings.php:1192
4241
  msgid "MEC Deactivation"
4242
  msgstr "MEC Dezaktywacja"
4243
 
4244
- #: app/features/mec/settings.php:1194
4245
  msgid "Deactivate"
4246
  msgstr "Dezaktywuj"
4247
 
4248
- #: app/features/mec/settings.php:1196
4249
  msgid ""
4250
  "For deactivation first delete your purchase from above field then press save "
4251
  "after that click on deactivate for deactivate this purchase code from this "
@@ -4255,7 +3702,7 @@ msgstr ""
4255
  "naciśnij przycisk Zapis. Po dezaktywacji tej domeny, będziesz mógł "
4256
  "wykorzystać ten sam kod zakupu do aktywacji kalendarza na innej domenie."
4257
 
4258
- #: app/features/mec/settings.php:1257
4259
  msgid "Please Refresh Page"
4260
  msgstr "Proszę odświeżyć stronę"
4261
 
@@ -4410,7 +3857,7 @@ msgstr "np. email@domena.pl"
4410
  msgid "eg. https://webnus.net"
4411
  msgstr "np. https://webnus.net"
4412
 
4413
- #: app/features/organizers.php:300 app/libraries/main.php:3987
4414
  #: app/skins/single.php:194
4415
  msgid "Other Organizers"
4416
  msgstr ""
@@ -4425,6 +3872,15 @@ msgstr ""
4425
  msgid "%s Price"
4426
  msgstr ""
4427
 
 
 
 
 
 
 
 
 
 
4428
  #: app/libraries/factory.php:148
4429
  msgid "M.E. Calendar"
4430
  msgstr "Kalendarz"
@@ -4497,31 +3953,31 @@ msgstr ""
4497
  msgid "There is no excerpt because this is a protected post."
4498
  msgstr "Nie ma zajawki ponieważ ten wpis jest chroniony."
4499
 
4500
- #: app/libraries/main.php:324 app/libraries/main.php:1119
4501
  msgid "Grid View"
4502
  msgstr "Widok siatki"
4503
 
4504
- #: app/libraries/main.php:325 app/libraries/main.php:1120
4505
  msgid "Agenda View"
4506
  msgstr ""
4507
 
4508
- #: app/libraries/main.php:326 app/libraries/main.php:1111
4509
  msgid "Full Calendar"
4510
  msgstr "Pełny kalendarz"
4511
 
4512
- #: app/libraries/main.php:328 app/libraries/main.php:1113
4513
  msgid "Calendar/Monthly View"
4514
  msgstr "Kalendarz / Miesiąc"
4515
 
4516
- #: app/libraries/main.php:331 app/libraries/main.php:1116
4517
  msgid "Timetable View"
4518
  msgstr ""
4519
 
4520
- #: app/libraries/main.php:332 app/libraries/main.php:1117
4521
  msgid "Masonry View"
4522
  msgstr ""
4523
 
4524
- #: app/libraries/main.php:333 app/libraries/main.php:1121
4525
  msgid "Map View"
4526
  msgstr "Widok mapy"
4527
 
@@ -4545,31 +4001,31 @@ msgstr "Widok karuzeli"
4545
  msgid "Slider View"
4546
  msgstr "Widok suwaka"
4547
 
4548
- #: app/libraries/main.php:375 app/libraries/main.php:3965
4549
  msgid "SU"
4550
  msgstr "NIE"
4551
 
4552
- #: app/libraries/main.php:376 app/libraries/main.php:3966
4553
  msgid "MO"
4554
  msgstr "PN"
4555
 
4556
- #: app/libraries/main.php:377 app/libraries/main.php:3967
4557
  msgid "TU"
4558
  msgstr "WT"
4559
 
4560
- #: app/libraries/main.php:378 app/libraries/main.php:3968
4561
  msgid "WE"
4562
  msgstr "ŚR"
4563
 
4564
- #: app/libraries/main.php:379 app/libraries/main.php:3969
4565
  msgid "TH"
4566
  msgstr "CZW"
4567
 
4568
- #: app/libraries/main.php:380 app/libraries/main.php:3970
4569
  msgid "FR"
4570
  msgstr "PT"
4571
 
4572
- #: app/libraries/main.php:381 app/libraries/main.php:3971
4573
  msgid "SA"
4574
  msgstr "SOB"
4575
 
@@ -4593,226 +4049,254 @@ msgstr "Google+"
4593
  msgid "Twitter"
4594
  msgstr "Twitter"
4595
 
4596
- #: app/libraries/main.php:1036 app/libraries/main.php:1088
4597
  msgid "Linkedin"
4598
  msgstr "Linkedin"
4599
 
4600
- #: app/libraries/main.php:1052
 
 
 
 
4601
  msgid "Share on Facebook"
4602
  msgstr "Udostępnij na Facebooku"
4603
 
4604
- #: app/libraries/main.php:1064
4605
  msgid "Google Plus"
4606
  msgstr "Google Plus"
4607
 
4608
- #: app/libraries/main.php:1076
4609
  msgid "Tweet"
4610
  msgstr "Tweetuj"
4611
 
4612
- #: app/libraries/main.php:1456
4613
  msgid "Your booking successfully verified."
4614
  msgstr "Twoja rezerwacja została pomyślnie zweryfikowana."
4615
 
4616
- #: app/libraries/main.php:1457
4617
  msgid "Your booking cannot verify!"
4618
  msgstr "Twoja rezerwacja nie może zostać zweryfikowana!"
4619
 
4620
- #: app/libraries/main.php:1469
4621
  msgid "Your booking successfully canceled."
4622
  msgstr "Twoja rezerwacja została pomyślnie anulowana."
4623
 
4624
- #: app/libraries/main.php:1470
4625
  msgid "Your booking cannot be canceled."
4626
  msgstr "Twoja rezerwacja nie może zostać anulowana."
4627
 
4628
- #: app/libraries/main.php:1474
4629
  msgid "You canceled the payment successfully."
4630
  msgstr "Anulowałeś płatności pomyślnie."
4631
 
4632
- #: app/libraries/main.php:1478
4633
  msgid "You returned from payment gateway successfully."
4634
  msgstr "Wróciłeś z bramki płatności pomyślnie."
4635
 
4636
- #: app/libraries/main.php:1502
4637
  msgid "Cannot find the booking!"
4638
  msgstr ""
4639
 
4640
- #: app/libraries/main.php:1502
4641
  msgid "Booking is invalid."
4642
  msgstr ""
4643
 
4644
- #: app/libraries/main.php:1523
4645
  #, php-format
4646
  msgid "%s Invoice"
4647
  msgstr ""
4648
 
4649
- #: app/libraries/main.php:1575
 
 
 
 
 
 
 
 
 
 
 
 
4650
  msgid "Billing"
4651
  msgstr ""
4652
 
4653
- #: app/libraries/main.php:1586
4654
  msgid "Total"
4655
  msgstr ""
4656
 
4657
- #: app/libraries/main.php:1619
4658
  msgid "Security nonce is not valid."
4659
  msgstr "Kod bezpieczeństwa nie jest poprawny."
4660
 
4661
- #: app/libraries/main.php:1619
4662
  msgid "iCal export stopped!"
4663
  msgstr "iCal eksport zatrzymany!"
4664
 
4665
- #: app/libraries/main.php:1840 app/libraries/main.php:1869
4666
- #: app/libraries/main.php:1898 app/libraries/main.php:1927
4667
- #: app/libraries/main.php:1956 app/libraries/main.php:1980
4668
- #: app/libraries/main.php:2024 app/libraries/main.php:2068
4669
- #: app/libraries/main.php:2115 app/libraries/main.php:2161
4670
  msgid "Sort"
4671
  msgstr "Sortowanie"
4672
 
4673
- #: app/libraries/main.php:1846 app/libraries/main.php:1875
4674
- #: app/libraries/main.php:1904 app/libraries/main.php:1933
4675
- #: app/libraries/main.php:1986 app/libraries/main.php:2030
4676
- #: app/libraries/main.php:2074 app/libraries/main.php:2121
4677
  msgid "Required Field"
4678
  msgstr "Wymagane pole"
4679
 
4680
- #: app/libraries/main.php:1852 app/libraries/main.php:1881
4681
- #: app/libraries/main.php:1910 app/libraries/main.php:1939
4682
- #: app/libraries/main.php:1992 app/libraries/main.php:2036
4683
- #: app/libraries/main.php:2080 app/libraries/main.php:2127
4684
  msgid "Insert a label for this field"
4685
  msgstr "Wpisz etykietę dla tego pola"
4686
 
4687
- #: app/libraries/main.php:1962
4688
  msgid "HTML and shortcode are allowed."
4689
  msgstr "HTML i shortcode są dozwolone."
4690
 
4691
- #: app/libraries/main.php:2005 app/libraries/main.php:2049
4692
- #: app/libraries/main.php:2093
4693
  msgid "Option"
4694
  msgstr "Opcja"
4695
 
4696
- #: app/libraries/main.php:2127
4697
  #, php-format
4698
  msgid "Instead of %s, the page title with a link will be show."
4699
  msgstr ""
4700
 
4701
- #: app/libraries/main.php:2129
4702
  msgid "Agreement Page"
4703
  msgstr ""
4704
 
4705
- #: app/libraries/main.php:2138
4706
  msgid "Status"
4707
  msgstr ""
4708
 
4709
- #: app/libraries/main.php:2140
4710
  msgid "Checked by default"
4711
  msgstr ""
4712
 
4713
- #: app/libraries/main.php:2141
4714
  msgid "Unchecked by default"
4715
  msgstr ""
4716
 
4717
- #: app/libraries/main.php:2163
4718
  msgid "Insert a label for this option"
4719
  msgstr "Podaj etykietę dla tej opcji"
4720
 
4721
- #: app/libraries/main.php:2830
 
 
 
 
4722
  #, php-format
4723
  msgid "Copy of %s"
4724
  msgstr "Kopia %s"
4725
 
4726
- #: app/libraries/main.php:3467
4727
  msgid "Booked an event."
4728
  msgstr "Zarezerwowano wydarzenie."
4729
 
4730
- #: app/libraries/main.php:3508
4731
  #, php-format
4732
  msgid "%s booked %s event."
4733
  msgstr "%s zarezerwował %s wydarzenie."
4734
 
4735
- #: app/libraries/main.php:3950
4736
  msgid "Taxonomies"
4737
  msgstr "Taksonomie"
4738
 
4739
- #: app/libraries/main.php:3952
4740
  msgid "Category Plural Label"
4741
  msgstr "Etykieta dla kategorii - liczba mnoga"
4742
 
4743
- #: app/libraries/main.php:3953
4744
  msgid "Category Singular Label"
4745
  msgstr "Etykieta dla kategorii - liczba pojedyncza"
4746
 
4747
- #: app/libraries/main.php:3954
4748
  msgid "Label Plural Label"
4749
  msgstr "Etykieta - liczba mnoga"
4750
 
4751
- #: app/libraries/main.php:3955
4752
  msgid "Label Singular Label"
4753
  msgstr "Etykieta - liczba pojedyncza"
4754
 
4755
- #: app/libraries/main.php:3955
4756
  msgid "label"
4757
  msgstr "etykieta"
4758
 
4759
- #: app/libraries/main.php:3956
4760
  msgid "Location Plural Label"
4761
  msgstr "Etykieta dla lokalizacji - wersja mnoga"
4762
 
4763
- #: app/libraries/main.php:3957
4764
  msgid "Location Singular Label"
4765
  msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
4766
 
4767
- #: app/libraries/main.php:3958
4768
  msgid "Organizer Plural Label"
4769
  msgstr "Etykieta dla organizatora - wersja mnoga"
4770
 
4771
- #: app/libraries/main.php:3959
4772
  msgid "Organizer Singular Label"
4773
  msgstr "Etykieta dla organizatora - wersja pojedyncza"
4774
 
4775
- #: app/libraries/main.php:3965
4776
  msgid "Sunday abbreviation"
4777
  msgstr "Niedziela"
4778
 
4779
- #: app/libraries/main.php:3966
4780
  msgid "Monday abbreviation"
4781
  msgstr "Poniedziałek"
4782
 
4783
- #: app/libraries/main.php:3967
4784
  msgid "Tuesday abbreviation"
4785
  msgstr "Wtorek"
4786
 
4787
- #: app/libraries/main.php:3968
4788
  msgid "Wednesday abbreviation"
4789
  msgstr "Środa"
4790
 
4791
- #: app/libraries/main.php:3969
4792
  msgid "Thursday abbreviation"
4793
  msgstr "Czwartek"
4794
 
4795
- #: app/libraries/main.php:3970
4796
  msgid "Friday abbreviation"
4797
  msgstr "Piątek"
4798
 
4799
- #: app/libraries/main.php:3971
4800
  msgid "Saturday abbreviation"
4801
  msgstr "Sobota"
4802
 
4803
- #: app/libraries/main.php:3975
4804
  msgid "Others"
4805
  msgstr "Inne"
4806
 
4807
- #: app/libraries/main.php:3977
4808
  msgid "Booking Success Message"
4809
  msgstr "Wiadomość zakończenia rezerwacji"
4810
 
4811
- #: app/libraries/main.php:3978
 
 
 
 
 
 
 
 
4812
  msgid "Register Button"
4813
  msgstr "Przycisk rejestracji"
4814
 
4815
- #: app/libraries/main.php:3978 app/skins/available_spot/tpl.php:149
4816
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4817
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4818
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
@@ -4826,11 +4310,11 @@ msgstr "Przycisk rejestracji"
4826
  msgid "REGISTER"
4827
  msgstr "REJESTRACJA"
4828
 
4829
- #: app/libraries/main.php:3979
4830
  msgid "View Detail Button"
4831
  msgstr "Pokaż szczegóły"
4832
 
4833
- #: app/libraries/main.php:3979 app/skins/carousel/render.php:64
4834
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4835
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4836
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
@@ -4841,39 +4325,39 @@ msgstr "Pokaż szczegóły"
4841
  msgid "View Detail"
4842
  msgstr "Pokaż szczegóły"
4843
 
4844
- #: app/libraries/main.php:3980
4845
  msgid "Event Detail Button"
4846
  msgstr "Szczegóły wydarzenia"
4847
 
4848
- #: app/libraries/main.php:3980 app/skins/countdown/tpl.php:163
4849
  msgid "Event Detail"
4850
  msgstr "Szczegóły wydarzenia"
4851
 
4852
- #: app/libraries/main.php:3982
4853
  msgid "More Info Link"
4854
  msgstr "Więcej informacji"
4855
 
4856
- #: app/libraries/main.php:3985
4857
  msgid "Ticket (Singular)"
4858
  msgstr ""
4859
 
4860
- #: app/libraries/main.php:3986
4861
  msgid "Tickets (Plural)"
4862
  msgstr ""
4863
 
4864
- #: app/libraries/main.php:4052
4865
  msgid "EventON"
4866
  msgstr ""
4867
 
4868
- #: app/libraries/main.php:4053
4869
  msgid "The Events Calendar"
4870
  msgstr ""
4871
 
4872
- #: app/libraries/main.php:4054
4873
  msgid "Events Schedule WP Plugin"
4874
  msgstr ""
4875
 
4876
- #: app/libraries/main.php:4055
4877
  msgid "Calendarize It"
4878
  msgstr ""
4879
 
@@ -4897,6 +4381,14 @@ msgstr "Otrzymałeś nową rezerwację."
4897
  msgid "A new event is added."
4898
  msgstr "Nowe wydarzenie zostało dodane."
4899
 
 
 
 
 
 
 
 
 
4900
  #: app/libraries/render.php:337
4901
  msgid "Skin controller does not exist."
4902
  msgstr "Kontroler skórki nie iestnieje."
@@ -4925,6 +4417,10 @@ msgstr "Brak zgłoszonych uczestników! Bądź pierwszym zarejestrowanym!"
4925
  msgid "%s tickets"
4926
  msgstr "%s biletów"
4927
 
 
 
 
 
4928
  #: app/modules/booking/steps/checkout.php:33
4929
  msgid "Discount Coupon"
4930
  msgstr "Kupon rabatowy"
@@ -4951,6 +4447,10 @@ msgstr ""
4951
  msgid "Next"
4952
  msgstr "Następny"
4953
 
 
 
 
 
4954
  #: app/modules/booking/steps/tickets.php:18
4955
  msgid "Book Event"
4956
  msgstr "Rezerwuj wydarzenie"
@@ -5241,6 +4741,12 @@ msgstr "Mapa Google: "
5241
  msgid "QR Code : "
5242
  msgstr ""
5243
 
 
 
 
 
 
 
5244
  #. Plugin URI of the plugin/theme
5245
  msgid "http://webnus.net/plugins/modern-events-calendar/"
5246
  msgstr ""
@@ -5257,6 +4763,274 @@ msgstr "Zespół Webnus"
5257
  msgid "http://webnus.net"
5258
  msgstr ""
5259
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5260
  #~ msgid "Attendee"
5261
  #~ msgstr "Uczestnik"
5262
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2018-09-09 16:07+0430\n"
5
+ "PO-Revision-Date: 2018-09-09 16:07+0430\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
 
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
25
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
26
  #: app/widgets/MEC.php:23
31
  msgid "Content"
32
  msgstr "Treść"
33
 
34
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
35
+ #: app/features/mec.php:238 app/features/mec.php:264
36
  msgid "Shortcode"
37
  msgstr "Shortcode"
38
 
40
  msgid "Select from predefined shortcodes"
41
  msgstr "Wybierz jedną z predefiniowanych shortcodes"
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  #: app/features/colors.php:50 app/features/fes/form.php:566
44
+ #: app/features/mec/settings.php:847
45
  msgid "Event Color"
46
  msgstr "Kolor wydarzenia"
47
 
48
+ #: app/features/contextual.php:55 app/features/mec.php:195
49
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
50
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
51
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
52
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
53
  #: app/features/mec/support.php:18
54
  msgid "Settings"
55
  msgstr "Ustawienia"
56
 
57
+ #: app/features/contextual.php:62 app/features/events.php:910
58
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
59
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
60
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
61
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
62
+ #: app/features/mec/support.php:27
63
+ msgid "Booking Form"
64
+ msgstr "Formularz rezerwacji"
65
+
66
  #: app/features/contextual.php:63
67
  msgid ""
68
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
75
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
76
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
77
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
78
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
79
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
80
  msgid "Payment Gateways"
81
  msgstr "Bramki płatności"
90
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
91
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
92
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
93
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
94
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
95
  msgid "Notifications"
96
  msgstr "Powiadomienia"
151
  "\"0\" allowfullscreen></iframe>"
152
  msgstr ""
153
 
154
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
155
+ #: app/features/mec/settings.php:252
156
  msgid "General Options"
157
  msgstr "Opcje Ogólne"
158
 
159
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
160
+ #: app/features/mec/settings.php:404
161
  msgid "Slugs/Permalinks"
162
  msgstr "Uproszczone nazwy, permalinki"
163
 
164
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
165
+ #: app/features/mec/settings.php:424
166
  msgid "Event Details/Single Event Page"
167
  msgstr "Szczegóły wydarzenia / Strona wydarzenia"
168
 
169
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
170
+ #: app/features/mec/settings.php:456
171
  msgid "Currency Options"
172
  msgstr "Ustawienia waluty"
173
 
174
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
175
+ #: app/features/mec/settings.php:508
176
  msgid "Google Maps Options"
177
  msgstr "Ustawienia Google Maps"
178
 
179
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
180
+ #: app/features/mec/settings.php:582
181
  msgid "Google Recaptcha Options"
182
  msgstr "Ustawienia Google Recaptcha"
183
 
184
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
185
+ #: app/features/mec/settings.php:700
186
  msgid "Countdown Options"
187
  msgstr "Ustawienia odliczania"
188
 
189
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
190
+ #: app/features/mec/settings.php:721
191
  msgid "Social Networks"
192
  msgstr "Strony społecznościowe"
193
 
194
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
195
+ #: app/features/mec/settings.php:746
196
  msgid "Next Event Module"
197
  msgstr "Moduł następnego wydarzenia"
198
 
199
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
200
+ #: app/features/mec/settings.php:774
201
  msgid "Frontend Event Submission"
202
  msgstr "Dodawanie wydarzeń na stronie frontalnej"
203
 
204
  #: app/features/contextual.php:298 app/features/events.php:570
205
+ #: app/features/mec/settings.php:131
206
  msgid "Exceptional Days"
207
  msgstr "Wykluczone dni"
208
 
209
+ #: app/features/contextual.php:308 app/features/events.php:253
210
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
211
+ msgid "Booking"
212
+ msgstr "Rezerwacja"
213
+
214
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
215
+ #: app/features/mec/settings.php:1019
216
  msgid "Coupons"
217
  msgstr "Kupony"
218
 
219
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
220
+ #: app/features/mec/settings.php:1101
221
  msgid "BuddyPress Integration"
222
  msgstr "Integracja z BuddyPressem"
223
 
224
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
225
+ #: app/features/mec/settings.php:1131
226
  msgid "Mailchimp Integration"
227
  msgstr "Integracja MailChimp"
228
 
229
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
230
+ #: app/features/mec/settings.php:1167
231
  msgid "MEC Activation"
232
  msgstr "Aktywacja MEC"
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  #: app/features/events.php:122 app/features/ix/export.php:33
235
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
236
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
237
  msgid "Events"
238
  msgstr "Wydarzenia"
239
 
240
+ #: app/features/events.php:123
241
+ #: app/features/mec/meta_boxes/display_options.php:678
242
+ #: app/features/mec/meta_boxes/display_options.php:716
243
+ #: app/features/mec/meta_boxes/display_options.php:745
244
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
245
+ #: app/skins/yearly_view/tpl.php:69
246
+ msgid "Event"
247
+ msgstr "Wydarzenie"
248
+
249
+ #: app/features/events.php:124 app/features/mec.php:188
250
  msgid "Add Event"
251
  msgstr "Dodaj wydarzenie"
252
 
259
  msgid "No events found!"
260
  msgstr "Nie znaleziono wydarzeń!"
261
 
262
+ #: app/features/events.php:127
263
+ msgid "All Events"
264
+ msgstr "Wszystkie wydarzenia"
265
+
266
  #: app/features/events.php:128
267
  msgid "Edit Event"
268
  msgstr ""
285
  #: app/features/mec/meta_boxes/search_form.php:285
286
  #: app/features/mec/meta_boxes/search_form.php:325
287
  #: app/features/mec/meta_boxes/search_form.php:372
288
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
289
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
290
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
291
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
293
  msgstr "Kategoria"
294
 
295
  #: app/features/events.php:143 app/features/fes/form.php:518
296
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
297
+ #: app/libraries/main.php:3967
298
  msgid "Categories"
299
  msgstr "Kategorie"
300
 
361
  #: app/features/events.php:286 app/features/events.php:1631
362
  #: app/features/events.php:1675 app/features/fes/form.php:479
363
  #: app/features/ix.php:2328 app/features/ix.php:2369
364
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
365
  msgid "Event Cost"
366
  msgstr "Koszt wydarzenia"
367
 
368
  #: app/features/events.php:289 app/features/fes/form.php:482
369
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
370
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
371
  #: app/skins/single/modern.php:179
372
  msgid "Cost"
380
  msgid "Guest Data"
381
  msgstr "Dane gości"
382
 
383
+ #: app/features/events.php:370 app/features/fes/form.php:441
384
+ #: app/features/labels.php:151 app/features/organizers.php:268
385
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
386
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
387
+ msgid "Name"
388
+ msgstr "Imię"
389
+
390
+ #: app/features/events.php:371 app/features/events.php:945
391
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
392
+ #: app/features/organizers.php:110 app/features/organizers.php:150
393
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
394
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
395
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
396
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
397
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
398
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
399
+ #: app/skins/single/modern.php:38
400
+ msgid "Email"
401
+ msgstr "Email"
402
+
403
  #: app/features/events.php:375 app/features/fes/form.php:221
404
  msgid "Date and Time"
405
  msgstr "Data i godzina"
409
  #: app/features/events.php:1675 app/features/fes/form.php:225
410
  #: app/features/fes/form.php:229 app/features/ix.php:2328
411
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
412
+ #: app/features/mec/dashboard.php:266
413
  #: app/features/mec/meta_boxes/display_options.php:42
414
  #: app/features/mec/meta_boxes/display_options.php:129
415
  #: app/features/mec/meta_boxes/display_options.php:225
441
  #: app/features/events.php:1675 app/features/fes/form.php:265
442
  #: app/features/fes/form.php:269 app/features/ix.php:2328
443
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
444
+ #: app/features/mec/dashboard.php:267
445
  msgid "End Date"
446
  msgstr "Data zakończenia"
447
 
478
  msgstr "Powtórzenia"
479
 
480
  #: app/features/events.php:481 app/features/fes/form.php:327
481
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
482
  msgid "Daily"
483
  msgstr "Codziennie"
484
 
500
  msgstr "Co tydzień"
501
 
502
  #: app/features/events.php:486 app/features/fes/form.php:332
503
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
504
  msgid "Monthly"
505
  msgstr "Co miesiąc"
506
 
507
  #: app/features/events.php:487 app/features/fes/form.php:333
508
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
509
  msgid "Yearly"
510
  msgstr "Co roku"
511
 
560
  msgid "Sunday"
561
  msgstr "Niedziea"
562
 
563
+ #: app/features/events.php:508 app/features/events.php:580
564
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
565
+ #: app/modules/booking/steps/tickets.php:20
566
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
567
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
568
+ #: app/skins/single/modern.php:146
569
+ msgid "Date"
570
+ msgstr "Data"
571
+
572
  #: app/features/events.php:509 app/features/events.php:581
573
  #: app/features/events.php:623 app/features/events.php:743
574
  #: app/features/events.php:839 app/features/fes/form.php:355
615
  msgid "Exclude certain days from event occurrence dates."
616
  msgstr "Wyklucz niektóre dni do daty występowania wydarzenia."
617
 
618
+ #: app/features/events.php:620 app/features/mec/settings.php:871
619
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
620
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
621
  msgid "Hourly Schedule"
636
  #: app/features/events.php:631 app/features/events.php:643
637
  #: app/features/events.php:1449 app/features/events.php:1631
638
  #: app/features/events.php:1675 app/features/fes/form.php:214
639
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
640
  msgid "Title"
641
  msgstr "Tytuł"
642
 
643
+ #: app/features/events.php:632 app/features/events.php:644
644
+ #: app/features/events.php:752 app/features/events.php:784
645
+ msgid "Description"
646
+ msgstr "Opis"
647
+
648
  #: app/features/events.php:633 app/features/events.php:645
649
  #: app/features/events.php:771 app/features/events.php:803
650
  #: app/features/events.php:859 app/features/events.php:884
651
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
652
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
653
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
654
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
655
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
656
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
657
+ #: app/libraries/main.php:2177
658
  msgid "Remove"
659
  msgstr "Usuń"
660
 
661
  #: app/features/events.php:665 app/features/fes/form.php:456
662
+ #: app/features/mec/settings.php:817
663
  msgid "Event Links"
664
  msgstr "Linki wydarzenia"
665
 
666
  #: app/features/events.php:667 app/features/fes/form.php:458
667
+ #: app/libraries/main.php:3996
668
  msgid "Event Link"
669
  msgstr "Link strony www wydarzenia"
670
 
682
  "wydarzenia. Podaj pełen link w tym http(s)://"
683
 
684
  #: app/features/events.php:672 app/features/fes/form.php:463
685
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
686
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
687
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
688
  msgid "More Info"
712
  msgid "Total booking limits"
713
  msgstr "Limity rezerwacji"
714
 
715
+ #: app/features/events.php:715 app/features/events.php:769
716
+ #: app/features/events.php:801 app/modules/booking/default.php:82
717
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
718
+ msgid "Unlimited"
719
+ msgstr "Nieograniczony"
720
+
721
  #: app/features/events.php:717
722
  msgid "100"
723
  msgstr "100"
724
 
725
  #: app/features/events.php:735 app/libraries/book.php:59
726
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
727
  msgid "Tickets"
728
  msgstr "Bilety"
729
 
738
  msgid "Ticket Name"
739
  msgstr "Nazwa biletu"
740
 
741
+ #: app/features/events.php:756 app/features/events.php:788
742
+ msgid "Price"
743
+ msgstr "Cena"
744
+
745
  #: app/features/events.php:757 app/features/events.php:789
746
  msgid "Insert 0 for free ticket. Only numbers please."
747
  msgstr "Wprowadź 0 aby bilet był darmowy. Wprowadzaj tylko cyfry."
767
  msgstr "Dziedziczenie z opcji globalnych"
768
 
769
  #: app/features/events.php:845 app/features/events.php:870
770
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
771
  msgid "Fee Title"
772
  msgstr "Tytuł opłaty"
773
 
774
+ #: app/features/events.php:849 app/features/events.php:874
775
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
776
+ msgid "Amount"
777
+ msgstr "Kwota"
778
+
779
  #: app/features/events.php:850 app/features/events.php:875
780
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
781
  msgid ""
782
  "Fee amount, considered as fixed amount if you set the type to amount "
783
  "otherwise considered as percentage"
786
  "rodzaj zniżki jako stałą kwotę, w innym wypadku zniżka będzie liczona w "
787
  "procentach"
788
 
789
+ #: app/features/events.php:854 app/features/events.php:879
790
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
791
+ msgid "Percent"
792
+ msgstr "Procent"
793
+
794
  #: app/features/events.php:855 app/features/events.php:880
795
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
796
  msgid "Amount (Per Ticket)"
797
  msgstr "Wartość (bilet)"
798
 
799
  #: app/features/events.php:856 app/features/events.php:881
800
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
801
  msgid "Amount (Per Booking)"
802
  msgstr "Wartość (rezerwacja)"
803
 
804
  #: app/features/events.php:944 app/features/mec/regform.php:117
805
+ #: app/libraries/main.php:1856
806
  msgid "Text"
807
  msgstr "Pole tekstowe"
808
 
809
  #: app/features/events.php:946 app/features/mec/regform.php:119
810
  #: app/features/organizers.php:102 app/features/organizers.php:146
811
+ #: app/libraries/main.php:1914
812
  msgid "Tel"
813
  msgstr "Tel"
814
 
815
  #: app/features/events.php:947 app/features/mec/regform.php:120
816
+ #: app/libraries/main.php:1943
817
  msgid "Textarea"
818
  msgstr "Obszar tekstowy"
819
 
820
  #: app/features/events.php:948 app/features/mec/regform.php:121
821
+ #: app/libraries/main.php:1996
822
  msgid "Checkboxes"
823
  msgstr "Pola wyboru"
824
 
825
  #: app/features/events.php:949 app/features/mec/regform.php:122
826
+ #: app/libraries/main.php:2040
827
  msgid "Radio Buttons"
828
  msgstr "Przyciski radiowe"
829
 
872
  #: app/features/mec/meta_boxes/search_form.php:436
873
  #: app/features/mec/meta_boxes/search_form.php:443
874
  #: app/features/mec/meta_boxes/search_form.php:450
875
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
876
  msgid "Dropdown"
877
  msgstr "Lista rozwijalna"
878
 
879
  #: app/features/events.php:951 app/features/mec/regform.php:124
880
+ #: app/libraries/main.php:2131
881
  msgid "Agreement"
882
  msgstr ""
883
 
884
  #: app/features/events.php:952 app/features/mec/regform.php:125
885
+ #: app/libraries/main.php:1972
886
  msgid "Paragraph"
887
  msgstr "Paragraf"
888
 
908
  #: app/features/events.php:1675 app/features/ix.php:2328
909
  #: app/features/ix.php:2369 app/features/locations.php:58
910
  #: app/features/locations.php:229 app/features/locations.php:281
911
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
912
  #: app/features/mec/meta_boxes/display_options.php:641
913
  #: app/features/mec/meta_boxes/search_form.php:38
914
  #: app/features/mec/meta_boxes/search_form.php:85
918
  #: app/features/mec/meta_boxes/search_form.php:292
919
  #: app/features/mec/meta_boxes/search_form.php:332
920
  #: app/features/mec/meta_boxes/search_form.php:379
921
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
922
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
923
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
924
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
925
  #: app/skins/single/modern.php:77
928
 
929
  #: app/features/events.php:1451 app/features/events.php:1631
930
  #: app/features/events.php:1675 app/features/ix.php:2328
931
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
932
  #: app/features/mec/meta_boxes/display_options.php:642
933
  #: app/features/mec/meta_boxes/search_form.php:45
934
  #: app/features/mec/meta_boxes/search_form.php:92
941
  #: app/features/mec/meta_boxes/search_form.php:433
942
  #: app/features/organizers.php:58 app/features/organizers.php:199
943
  #: app/features/organizers.php:255 app/features/organizers.php:257
944
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
945
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
946
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
947
  #: app/skins/single/modern.php:21
960
  msgid "iCal Export"
961
  msgstr "iCal eksport"
962
 
963
+ #: app/features/events.php:1569 app/features/events.php:1570
964
+ msgid "CSV Export"
965
+ msgstr "Eksport CSV"
966
+
967
+ #: app/features/events.php:1572 app/features/events.php:1573
968
+ msgid "MS Excel Export"
969
+ msgstr "MS Excel Export"
970
+
971
  #: app/features/events.php:1575 app/features/events.php:1576
972
  msgid "XML Export"
973
  msgstr "Eksportuj XML"
980
  msgid "Duplicate"
981
  msgstr "Duplikuj"
982
 
983
+ #: app/features/events.php:1631 app/features/events.php:1675
984
+ #: app/features/ix.php:2328 app/features/ix.php:2369
985
+ #: app/features/labels.php:150 app/features/locations.php:228
986
+ #: app/features/organizers.php:198
987
+ msgid "ID"
988
+ msgstr "ID"
989
+
990
  #: app/features/events.php:1631 app/features/events.php:1675
991
  #: app/features/ix.php:2328 app/features/ix.php:2369
992
  msgid "Start Time"
1071
  msgstr "Uwaga dla administratora"
1072
 
1073
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1074
  msgid "Submit"
1075
  msgstr "Wyślij"
1076
 
1086
  msgid "eg. John Smith"
1087
  msgstr "np. Jan Nowak"
1088
 
1089
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1090
  msgid "Featured Image"
1091
  msgstr "Obraz wyróżniający"
1092
 
1095
  msgstr "Usuń obraz"
1096
 
1097
  #: app/features/fes/form.php:543 app/features/labels.php:61
1098
+ #: app/features/labels.php:194 app/features/mec.php:191
1099
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1100
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1101
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1102
  msgid "Labels"
1103
  msgstr "Etykiety"
1104
 
1105
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1106
  #: app/features/mec/meta_boxes/filter.php:138
1107
  msgid "Tags"
1108
  msgstr "Tagi"
1128
  msgid "No events found! %s"
1129
  msgstr "Nie znaleziono wydarzeń! %s"
1130
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1131
  #: app/features/ix.php:95
1132
  msgid "MEC - Import / Export"
1133
  msgstr "MEC - Importowanie / eksportowanie"
1160
  msgid "Third Party plugin is invalid!"
1161
  msgstr ""
1162
 
1163
+ #: app/features/ix.php:1908 app/features/ix.php:1966
1164
+ msgid "Both of API key and Calendar ID are required!"
1165
+ msgstr "Oba klucze API oraz ID kalendarza są wymagane!"
1166
+
1167
  #: app/features/ix.php:1961 app/features/ix.php:2791
1168
  msgid "Please select some events to import!"
1169
  msgstr "Proszę wybrać dane do zaimportowania!"
1187
  "Wszystko wydaje się być w porządku! Kliknij %s w celu uwierzytelnienia "
1188
  "swojej aplikacji."
1189
 
1190
+ #: app/features/ix.php:2527
1191
+ msgid "All of Client App, Client Secret and Calendar ID are required!"
1192
+ msgstr "Wszystkie Client APP, Client Secret oraz Calendar ID są wymagane!"
1193
+
1194
+ #: app/features/ix.php:2722
1195
+ #, php-format
1196
+ msgid "%s events added to Google Calendar successfully."
1197
+ msgstr "%s wydarzenia dodane do Kalendarza Google pomyślnie."
1198
+
1199
+ #: app/features/ix.php:2723
1200
+ #, php-format
1201
+ msgid "%s previously added events get updated."
1202
+ msgstr "%s wcześniej dodane wydarzenia zaktualizowane."
1203
+
1204
+ #: app/features/ix.php:2724
1205
+ #, php-format
1206
+ msgid "%s events failed to add for following reasons: %s"
1207
+ msgstr "%s wydarzenia nie udało się dodać z następujących powodów:%s"
1208
+
1209
+ #: app/features/ix.php:2754 app/features/ix.php:2794
1210
+ msgid "Please insert your facebook page's link."
1211
+ msgstr "Wstaw własny odnośnik Facebook."
1212
+
1213
+ #: app/features/ix.php:2762 app/features/ix.php:2799
1214
+ msgid ""
1215
+ "We couldn't recognize your Facebook page. Please check it and provide us a "
1216
+ "valid facebook page link."
1217
+ msgstr ""
1218
+ "Nie mogliśmy rozpoznać odnośnika Facebook. Sprawdź link i spróbuj ponownie."
1219
+
1220
  #: app/features/ix/export.php:8 app/features/ix/export_g_calendar.php:12
1221
  #: app/features/ix/import.php:8 app/features/ix/import_f_calendar.php:8
1222
  #: app/features/ix/import_g_calendar.php:8 app/features/ix/thirdparty.php:8
1264
  "To działanie wyeksportuje wszystkie wydarzenia zapisane w systemie do "
1265
  "wybranego przez ciebie formatu."
1266
 
1267
+ #: app/features/ix/export.php:24 app/features/mec/settings.php:630
1268
  msgid "iCal"
1269
  msgstr "iCal"
1270
 
1306
  "W celu eksportu przefiltrowanych wydarzeń, można użyć narzędzia działań "
1307
  "masowych na stronie %s."
1308
 
1309
+ #: app/features/ix/export.php:37
1310
+ msgid "Bookings"
1311
+ msgstr "Rezerwacje"
1312
+
1313
  #: app/features/ix/export_g_calendar.php:25
1314
  msgid "Add events to Google Calendar"
1315
  msgstr "Dodaj do Kalendarza Google"
1366
  msgid "Add to Google Calendar"
1367
  msgstr "Dodaj do Kalendarza Google"
1368
 
1369
+ #: app/features/ix/export_g_calendar.php:89 app/features/mec/settings.php:1246
1370
  msgid "Checking ..."
1371
  msgstr "Sprawdzanie ..."
1372
 
1408
  msgid "ICS Feed"
1409
  msgstr ""
1410
 
1411
+ #: app/features/ix/import.php:45 app/features/mec/settings.php:511
1412
+ #: app/features/mec/settings.php:661 app/features/mec/settings.php:679
1413
+ #: app/features/mec/settings.php:932 app/features/mec/settings.php:1022
1414
+ #: app/features/mec/settings.php:1039
1415
  #, php-format
1416
  msgid "%s is required to use this feature."
1417
  msgstr ""
1423
  #: app/features/mec/meta_boxes/display_options.php:558
1424
  #: app/features/mec/meta_boxes/display_options.php:608
1425
  #: app/features/mec/meta_boxes/display_options.php:734
1426
+ #: app/features/mec/settings.php:511 app/features/mec/settings.php:661
1427
+ #: app/features/mec/settings.php:679 app/features/mec/settings.php:932
1428
+ #: app/features/mec/settings.php:1022 app/features/mec/settings.php:1039
1429
+ #: app/features/mec/settings.php:1170 app/libraries/skins.php:247
1430
  msgid "Pro version of Modern Events Calendar"
1431
  msgstr ""
1432
 
1654
  msgid "Select label color"
1655
  msgstr "Wybierz kolor etykiety"
1656
 
1657
+ #: app/features/labels.php:153 app/features/locations.php:231
1658
+ #: app/features/organizers.php:201 app/modules/booking/steps/tickets.php:36
1659
+ msgid "Count"
1660
+ msgstr "Liczba"
1661
+
1662
  #: app/features/labels.php:154 app/features/locations.php:232
1663
  #: app/features/organizers.php:202
1664
  msgid "Slug"
1669
  msgid "Event %s"
1670
  msgstr "Wydarzenie %s"
1671
 
1672
+ #: app/features/locations.php:59 app/features/mec.php:192
1673
+ #: app/features/mec/meta_boxes/filter.php:87 app/libraries/main.php:3971
1674
  msgid "Locations"
1675
  msgstr "Lokalizacje"
1676
 
1738
  msgid "eg. City Hall"
1739
  msgstr "np. Ratusz"
1740
 
1741
+ #: app/features/locations.php:298 app/features/mec/settings.php:859
1742
  msgid "Event Location"
1743
  msgstr "Miejsce wydarzenia"
1744
 
1762
  msgid "Don't show map in single event page"
1763
  msgstr "Nie pokazuj mapy na stronie wydarzenia"
1764
 
1765
+ #: app/features/mec.php:193 app/features/mec/meta_boxes/filter.php:104
1766
+ #: app/features/organizers.php:59 app/libraries/main.php:3973
1767
  msgid "Organizers"
1768
  msgstr "Organizatorzy"
1769
 
1770
+ #: app/features/mec.php:194 app/features/mec.php:208
1771
+ #: app/features/mec/dashboard.php:96
1772
  msgid "Shortcodes"
1773
  msgstr "Shortcodes"
1774
 
1775
+ #: app/features/mec.php:195
1776
  msgid "MEC - Settings"
1777
  msgstr "MEC - Ustawienia"
1778
 
1779
+ #: app/features/mec.php:210
1780
  msgid "Add Shortcode"
1781
  msgstr "Dodaj shortcode"
1782
 
1783
+ #: app/features/mec.php:211
1784
  msgid "Add New Shortcode"
1785
  msgstr "Dodaj nowy shortcode"
1786
 
1787
+ #: app/features/mec.php:212
1788
  msgid "No shortcodes found!"
1789
  msgstr "Nie znaleziono shortcodes!"
1790
 
1791
+ #: app/features/mec.php:213
1792
  msgid "All Shortcodes"
1793
  msgstr "Wszystkie shortcodes"
1794
 
1795
+ #: app/features/mec.php:214
1796
  msgid "Edit shortcodes"
1797
  msgstr "Edytuj shortcodes"
1798
 
1799
+ #: app/features/mec.php:215
1800
  msgid "No shortcodes found in Trash!"
1801
  msgstr "Brak shortcodes w koszu!"
1802
 
1803
+ #: app/features/mec.php:262
1804
  msgid "Display Options"
1805
  msgstr "Opcje wyświetlania"
1806
 
1807
+ #: app/features/mec.php:263
1808
  msgid "Filter Options"
1809
  msgstr "Opcje filtrów"
1810
 
1811
+ #: app/features/mec.php:265
1812
  msgid "Search Form"
1813
  msgstr "Formularz wyszukiwania"
1814
 
1815
+ #: app/features/mec.php:553
1816
  msgid "Single Event Display Method"
1817
  msgstr "Sposób wyświetlania wydarzenia"
1818
 
1819
+ #: app/features/mec.php:558
1820
  msgid "Separate Window"
1821
  msgstr "Osobna karta"
1822
 
1823
+ #: app/features/mec.php:559
1824
  msgid "Modal 1"
1825
  msgstr "Okno modalne"
1826
 
1827
+ #: app/features/mec/dashboard.php:58
1828
  #, php-format
1829
  msgid "Welcome %s"
1830
  msgstr "Witaj %s"
1831
 
1832
+ #: app/features/mec/dashboard.php:61
1833
  #, php-format
1834
  msgid "%s - Most Powerful & Easy to Use Events Management System"
1835
  msgstr ""
1836
 
1837
+ #: app/features/mec/dashboard.php:61
1838
  msgid "Modern Event Calendar"
1839
  msgstr ""
1840
 
1841
+ #: app/features/mec/dashboard.php:61
1842
  msgid "Modern Event Calendar (Lite)"
1843
  msgstr ""
1844
 
1845
+ #: app/features/mec/dashboard.php:70
1846
  msgid "Version"
1847
  msgstr "Wersja"
1848
 
1849
+ #: app/features/mec/dashboard.php:79
1850
  #, php-format
1851
  msgid ""
1852
  "You're using %s version of Modern Events Calendar. To use advanced booking "
1854
  "Spots, etc you should %s to the Pro version."
1855
  msgstr ""
1856
 
1857
+ #: app/features/mec/dashboard.php:79
1858
  msgid "lite"
1859
  msgstr ""
1860
 
1861
+ #: app/features/mec/dashboard.php:79
1862
  msgid "upgrade"
1863
  msgstr ""
1864
 
1865
+ #: app/features/mec/dashboard.php:118 app/features/mec/support.php:91
1866
  msgid "Documentation"
1867
  msgstr "Dokumentacja"
1868
 
1869
+ #: app/features/mec/dashboard.php:121 app/features/mec/support.php:95
1870
  msgid ""
1871
  "Our documentation is simple and functional with full details and cover all "
1872
  "essential aspects from beginning to the most advanced parts."
1875
  "funkcjonowania MEC i jest odpowiednia zarówno dla początkujących jak i "
1876
  "zaawansowanych użytkowników."
1877
 
1878
+ #: app/features/mec/dashboard.php:123 app/features/mec/support.php:98
1879
  msgid "DOCUMENTATION"
1880
  msgstr "DOKUMENTACJA"
1881
 
1882
+ #: app/features/mec/dashboard.php:132 app/features/mec/support.php:107
1883
  msgid "Support Forum"
1884
  msgstr "Forum wsparcia"
1885
 
1886
+ #: app/features/mec/dashboard.php:136 app/features/mec/support.php:111
1887
  msgid ""
1888
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1889
  "If you want to use this service you need to upgrade your plugin to Pro "
1890
  "version. Click on the following button."
1891
  msgstr ""
1892
 
1893
+ #: app/features/mec/dashboard.php:138 app/features/mec/support.php:113
1894
  msgid ""
1895
  "Webnus is elite and trusted author with high percentage of satisfied user. "
1896
  "If you have any issues please don't hesitate to contact us, we will reply as "
1901
  "funkcjonowaniem kalendarza, niezwłocznie skontaktuj się z nami - pomożemy Ci "
1902
  "najszybciej jak tylko będzie to możliwe."
1903
 
1904
+ #: app/features/mec/dashboard.php:142 app/features/mec/support.php:117
1905
  msgid "GO PREMIUM"
1906
  msgstr ""
1907
 
1908
+ #: app/features/mec/dashboard.php:144 app/features/mec/support.php:119
1909
  msgid "OPEN A TICKET"
1910
  msgstr "Wyślij zgłoszenie"
1911
 
1912
+ #: app/features/mec/dashboard.php:157 app/features/mec/settings.php:382
1913
  msgid "Upcoming Events"
1914
  msgstr "Nadchodzące wydarzenia"
1915
 
1916
+ #: app/features/mec/dashboard.php:181
1917
  msgid "Popular Gateways"
1918
  msgstr "Popularne bramki płatności"
1919
 
1920
+ #: app/features/mec/dashboard.php:232
1921
  msgid "Total Bookings"
1922
  msgstr "Rezerwacje"
1923
 
1924
+ #: app/features/mec/dashboard.php:259
1925
  msgid "This Month"
1926
  msgstr "Ten miesiąc"
1927
 
1928
+ #: app/features/mec/dashboard.php:260
1929
  msgid "Last Month"
1930
  msgstr "Ostatni miesiąc"
1931
 
1932
+ #: app/features/mec/dashboard.php:261
1933
  msgid "This Year"
1934
  msgstr "W tym roku"
1935
 
1936
+ #: app/features/mec/dashboard.php:262
1937
  msgid "Last Year"
1938
  msgstr "W poprzednim roku"
1939
 
1940
+ #: app/features/mec/dashboard.php:274
1941
  msgid "Bar"
1942
  msgstr "Pasek"
1943
 
1944
+ #: app/features/mec/dashboard.php:275
1945
  msgid "Line"
1946
  msgstr "Linia"
1947
 
1948
+ #: app/features/mec/dashboard.php:277
1949
  msgid "Filter"
1950
  msgstr "Filtr"
1951
 
1952
+ #: app/features/mec/dashboard.php:293
1953
  #, php-format
1954
  msgid "Total Sells (%s)"
1955
  msgstr "Sprzedaż w sumie (%s)"
1956
 
1957
+ #: app/features/mec/dashboard.php:314
1958
  msgid "Change Log"
1959
  msgstr "Dziennik Zmian"
1960
 
1961
  #: app/features/mec/gateways.php:52 app/features/mec/messages.php:52
1962
  #: app/features/mec/notifications.php:51 app/features/mec/regform.php:50
1963
+ #: app/features/mec/settings.php:209 app/features/mec/styles.php:52
1964
  #: app/features/mec/styling.php:78 app/features/mec/support.php:50
1965
  msgid "Styling Options"
1966
  msgstr "Opcje stylów"
1967
 
1968
  #: app/features/mec/gateways.php:59 app/features/mec/messages.php:59
1969
  #: app/features/mec/notifications.php:58 app/features/mec/regform.php:57
1970
+ #: app/features/mec/settings.php:216 app/features/mec/styles.php:59
1971
  #: app/features/mec/styling.php:85 app/features/mec/support.php:57
1972
  msgid "Custom CSS"
1973
  msgstr "Własny kod CSS"
1974
 
1975
  #: app/features/mec/gateways.php:66 app/features/mec/messages.php:66
1976
  #: app/features/mec/messages.php:90 app/features/mec/notifications.php:65
1977
+ #: app/features/mec/regform.php:64 app/features/mec/settings.php:223
1978
  #: app/features/mec/styles.php:66 app/features/mec/styling.php:92
1979
  #: app/features/mec/support.php:64
1980
  msgid "Messages"
1982
 
1983
  #: app/features/mec/gateways.php:73 app/features/mec/messages.php:73
1984
  #: app/features/mec/notifications.php:72 app/features/mec/regform.php:71
1985
+ #: app/features/mec/settings.php:230 app/features/mec/styles.php:73
1986
  #: app/features/mec/styling.php:99 app/features/mec/support.php:71
1987
  #: app/features/mec/support.php:84
1988
  msgid "Support"
1995
  #: app/features/mec/notifications.php:409
1996
  #: app/features/mec/notifications.php:417 app/features/mec/regform.php:130
1997
  #: app/features/mec/regform.php:203 app/features/mec/regform.php:211
1998
+ #: app/features/mec/settings.php:238 app/features/mec/settings.php:1208
1999
+ #: app/features/mec/settings.php:1216 app/features/mec/settings.php:1260
2000
+ #: app/features/mec/settings.php:1273 app/features/mec/styles.php:96
2001
+ #: app/features/mec/styles.php:136 app/features/mec/styles.php:144
2002
+ #: app/features/mec/styling.php:262 app/features/mec/styling.php:327
2003
+ #: app/features/mec/styling.php:335
2004
  msgid "Save Changes"
2005
  msgstr "Zapisz zmiany"
2006
 
2007
  #: app/features/mec/gateways.php:130 app/features/mec/messages.php:137
2008
  #: app/features/mec/notifications.php:397 app/features/mec/regform.php:190
2009
+ #: app/features/mec/settings.php:1241 app/features/mec/styles.php:123
2010
  #: app/features/mec/styling.php:313
2011
  msgid "Saved"
2012
  msgstr "Zapisane"
2013
 
2014
  #: app/features/mec/gateways.php:131 app/features/mec/messages.php:138
2015
  #: app/features/mec/notifications.php:398 app/features/mec/regform.php:191
2016
+ #: app/features/mec/settings.php:1242 app/features/mec/styles.php:124
2017
  #: app/features/mec/styling.php:314
2018
  msgid "Settings Saved!"
2019
  msgstr ""
2223
  msgid "Default values are d and F"
2224
  msgstr "Wartości domyślne to d i F"
2225
 
2226
+ #: app/features/mec/meta_boxes/display_options.php:85
2227
+ #: app/features/mec/meta_boxes/display_options.php:194
2228
+ #: app/features/mec/meta_boxes/display_options.php:244
2229
+ #: app/features/mec/meta_boxes/display_options.php:632
2230
+ #: app/features/mec/meta_boxes/display_options.php:806
2231
+ #: app/features/mec/meta_boxes/display_options.php:877
2232
+ msgid "Limit"
2233
+ msgstr "Limit"
2234
+
2235
  #: app/features/mec/meta_boxes/display_options.php:86
2236
  #: app/features/mec/meta_boxes/display_options.php:195
2237
  #: app/features/mec/meta_boxes/display_options.php:245
2311
 
2312
  #: app/features/mec/meta_boxes/display_options.php:287
2313
  #: app/features/mec/meta_boxes/display_options.php:296
2314
+ #: app/libraries/main.php:323 app/libraries/main.php:1133
2315
  msgid "List View"
2316
  msgstr "Widok Listy"
2317
 
2318
  #: app/features/mec/meta_boxes/display_options.php:288
2319
  #: app/features/mec/meta_boxes/display_options.php:306
2320
+ #: app/libraries/main.php:327 app/libraries/main.php:1127
2321
  msgid "Yearly View"
2322
  msgstr ""
2323
 
2328
 
2329
  #: app/features/mec/meta_boxes/display_options.php:290
2330
  #: app/features/mec/meta_boxes/display_options.php:326
2331
+ #: app/libraries/main.php:330 app/libraries/main.php:1129
2332
  msgid "Weekly View"
2333
  msgstr "Widok tygodniowy"
2334
 
2335
  #: app/features/mec/meta_boxes/display_options.php:291
2336
  #: app/features/mec/meta_boxes/display_options.php:336
2337
+ #: app/libraries/main.php:329 app/libraries/main.php:1130
2338
  msgid "Daily View"
2339
  msgstr "Widok dzienny"
2340
 
2570
  msgid "Show Search Form"
2571
  msgstr "Pokaż formularz wyszukiwania"
2572
 
2573
+ #: app/features/mec/meta_boxes/search_form.php:33
2574
+ #: app/features/mec/meta_boxes/search_form.php:40
2575
+ #: app/features/mec/meta_boxes/search_form.php:47
2576
+ #: app/features/mec/meta_boxes/search_form.php:54
2577
+ #: app/features/mec/meta_boxes/search_form.php:61
2578
+ #: app/features/mec/meta_boxes/search_form.php:68
2579
+ #: app/features/mec/meta_boxes/search_form.php:80
2580
+ #: app/features/mec/meta_boxes/search_form.php:87
2581
+ #: app/features/mec/meta_boxes/search_form.php:94
2582
+ #: app/features/mec/meta_boxes/search_form.php:101
2583
+ #: app/features/mec/meta_boxes/search_form.php:108
2584
+ #: app/features/mec/meta_boxes/search_form.php:115
2585
+ #: app/features/mec/meta_boxes/search_form.php:127
2586
+ #: app/features/mec/meta_boxes/search_form.php:134
2587
+ #: app/features/mec/meta_boxes/search_form.php:141
2588
+ #: app/features/mec/meta_boxes/search_form.php:148
2589
+ #: app/features/mec/meta_boxes/search_form.php:155
2590
+ #: app/features/mec/meta_boxes/search_form.php:162
2591
+ #: app/features/mec/meta_boxes/search_form.php:174
2592
+ #: app/features/mec/meta_boxes/search_form.php:181
2593
+ #: app/features/mec/meta_boxes/search_form.php:193
2594
+ #: app/features/mec/meta_boxes/search_form.php:200
2595
+ #: app/features/mec/meta_boxes/search_form.php:207
2596
+ #: app/features/mec/meta_boxes/search_form.php:214
2597
+ #: app/features/mec/meta_boxes/search_form.php:221
2598
+ #: app/features/mec/meta_boxes/search_form.php:228
2599
+ #: app/features/mec/meta_boxes/search_form.php:240
2600
+ #: app/features/mec/meta_boxes/search_form.php:247
2601
+ #: app/features/mec/meta_boxes/search_form.php:254
2602
+ #: app/features/mec/meta_boxes/search_form.php:261
2603
+ #: app/features/mec/meta_boxes/search_form.php:268
2604
+ #: app/features/mec/meta_boxes/search_form.php:275
2605
+ #: app/features/mec/meta_boxes/search_form.php:287
2606
+ #: app/features/mec/meta_boxes/search_form.php:294
2607
+ #: app/features/mec/meta_boxes/search_form.php:301
2608
+ #: app/features/mec/meta_boxes/search_form.php:308
2609
+ #: app/features/mec/meta_boxes/search_form.php:315
2610
+ #: app/features/mec/meta_boxes/search_form.php:327
2611
+ #: app/features/mec/meta_boxes/search_form.php:334
2612
+ #: app/features/mec/meta_boxes/search_form.php:341
2613
+ #: app/features/mec/meta_boxes/search_form.php:348
2614
+ #: app/features/mec/meta_boxes/search_form.php:355
2615
+ #: app/features/mec/meta_boxes/search_form.php:362
2616
+ #: app/features/mec/meta_boxes/search_form.php:374
2617
+ #: app/features/mec/meta_boxes/search_form.php:381
2618
+ #: app/features/mec/meta_boxes/search_form.php:388
2619
+ #: app/features/mec/meta_boxes/search_form.php:395
2620
+ #: app/features/mec/meta_boxes/search_form.php:402
2621
+ #: app/features/mec/meta_boxes/search_form.php:409
2622
+ #: app/features/mec/meta_boxes/search_form.php:421
2623
+ #: app/features/mec/meta_boxes/search_form.php:428
2624
+ #: app/features/mec/meta_boxes/search_form.php:435
2625
+ #: app/features/mec/meta_boxes/search_form.php:442
2626
+ #: app/features/mec/meta_boxes/search_form.php:449
2627
+ #: app/features/mec/meta_boxes/search_form.php:456
2628
+ #: app/features/mec/settings.php:296 app/features/mec/settings.php:394
2629
+ #: app/features/mec/settings.php:554
2630
+ msgid "Disabled"
2631
+ msgstr "Wyłączone"
2632
+
2633
  #: app/features/mec/meta_boxes/search_form.php:59
2634
  #: app/features/mec/meta_boxes/search_form.php:106
2635
  #: app/features/mec/meta_boxes/search_form.php:153
2867
  msgid "Invoice Link"
2868
  msgstr ""
2869
 
2870
+ #: app/features/mec/notifications.php:140
2871
+ #: app/features/mec/notifications.php:177
2872
+ #: app/features/mec/notifications.php:214
2873
+ #: app/features/mec/notifications.php:255
2874
+ #: app/features/mec/notifications.php:307
2875
+ msgid "Total Attendees"
2876
+ msgstr ""
2877
+
2878
  #: app/features/mec/notifications.php:145
2879
  msgid "Booking Verification"
2880
  msgstr "Potwierdzenie rezerwacji"
2893
  msgid "Email/Booking verification link."
2894
  msgstr "Link potwierdzający rezerwację."
2895
 
2896
+ #: app/features/mec/notifications.php:181 app/features/mec/settings.php:995
2897
  msgid "Booking Confirmation"
2898
  msgstr "Potwierdzenie rezerwacji"
2899
 
2971
  msgid "Status of event"
2972
  msgstr "Status wydarzenia"
2973
 
2974
+ #: app/features/mec/notifications.php:339 app/features/mec/settings.php:889
2975
  msgid "Event Note"
2976
  msgstr "Uwaga"
2977
 
2979
  msgid "Admin events management link."
2980
  msgstr "Link do zarzadzania wydarzeniami."
2981
 
2982
+ #: app/features/mec/settings.php:47
2983
  msgid "Archive Page Options"
2984
  msgstr ""
2985
 
2986
+ #: app/features/mec/settings.php:83 app/features/mec/settings.php:619
2987
  msgid "Export Module Options"
2988
  msgstr "Opcje modułu eksportu"
2989
 
2990
+ #: app/features/mec/settings.php:89 app/features/mec/settings.php:646
2991
  msgid "Local Time Module"
2992
  msgstr "Moduł czasu lokalnego"
2993
 
2994
+ #: app/features/mec/settings.php:95 app/features/mec/settings.php:658
2995
  msgid "QR Code Module"
2996
  msgstr ""
2997
 
2998
+ #: app/features/mec/settings.php:101 app/features/mec/settings.php:676
2999
  msgid "Weather Module"
3000
  msgstr ""
3001
 
3002
+ #: app/features/mec/settings.php:137 app/features/mec/settings.php:919
3003
  #, fuzzy
3004
  msgid "Additional Organizers"
3005
  msgstr "Wszyscy organizatorzy"
3006
 
3007
+ #: app/features/mec/settings.php:155 app/features/mec/settings.php:1036
3008
  msgid "Taxes / Fees"
3009
  msgstr "Podatki / Opłaty"
3010
 
3011
+ #: app/features/mec/settings.php:255
3012
  msgid "Time Format"
3013
  msgstr "Format czasu"
3014
 
3015
+ #: app/features/mec/settings.php:258
3016
  msgid "12 hours format with AM/PM"
3017
  msgstr "12 godzin z AM/PM"
3018
 
3019
+ #: app/features/mec/settings.php:259
3020
  msgid "24 hours format"
3021
  msgstr "24 godziny"
3022
 
3023
+ #: app/features/mec/settings.php:261 app/features/mec/settings.php:274
3024
  msgid ""
3025
  "This option is for showing start/end time of events on frontend of website."
3026
  msgstr ""
3027
  "Opcja odpowiada za wyświetlanie początku / końca wydarzenia na stronie "
3028
  "głównej."
3029
 
3030
+ #: app/features/mec/settings.php:266
3031
  msgid "Hide Events"
3032
  msgstr "Ukryj wydarzenia"
3033
 
3034
+ #: app/features/mec/settings.php:269
3035
  msgid "On Event Start"
3036
  msgstr "Po rozpoczęciu wydarzenia"
3037
 
3038
+ #: app/features/mec/settings.php:270
3039
  msgid "+1 Hour after start"
3040
  msgstr "+1 godzinę po starcie wydarzenia"
3041
 
3042
+ #: app/features/mec/settings.php:271
3043
  msgid "+2 Hours after start"
3044
  msgstr "+2 godziny po starcie wydarzenia"
3045
 
3046
+ #: app/features/mec/settings.php:272
3047
  msgid "On Event End"
3048
  msgstr "Podczas zakończenia wydarzenia"
3049
 
3050
+ #: app/features/mec/settings.php:280
3051
  msgid "Multiple Day Events"
3052
  msgstr "Wydarzenia trwające wiele dni"
3053
 
3054
+ #: app/features/mec/settings.php:283
3055
  msgid "Show only first day on List/Grid/Slider skins"
3056
  msgstr "Pokaż tylko pierwszy dzień w widokach listy / siatki / slidera"
3057
 
3058
+ #: app/features/mec/settings.php:284
3059
  msgid "Show only first day on all skins"
3060
  msgstr "Pokaż tylko pierwszy dzień wydarzenia na wszystkich skórkach"
3061
 
3062
+ #: app/features/mec/settings.php:285
3063
  msgid "Show all days"
3064
  msgstr "Pokaż wszystkie dni"
3065
 
3066
+ #: app/features/mec/settings.php:287
3067
  msgid ""
3068
  "For showing all days of multiple day events on frontend or only show the "
3069
  "first day."
3071
  "W celu pokazywania wszystkich dni wydarzenia trwającego wiele dni, lub w "
3072
  "celu pokazywania tylko pierwszego dnia takiego wydarzenia."
3073
 
3074
+ #: app/features/mec/settings.php:293
3075
  msgid "Remove MEC Data on Plugin Uninstall"
3076
  msgstr "Usuń wszystkie dane podczas odinstalowania"
3077
 
3078
+ #: app/features/mec/settings.php:297
3079
+ msgid "Enabled"
3080
+ msgstr "Włączone"
3081
+
3082
+ #: app/features/mec/settings.php:303
3083
  msgid "Exclude Date Suffix"
3084
  msgstr "Wykluczenie sufiksu daty"
3085
 
3086
+ #: app/features/mec/settings.php:306
3087
  msgid "Remove suffix from calendars"
3088
  msgstr "Usuń przyrostek z kalendarzy"
3089
 
3090
+ #: app/features/mec/settings.php:313 app/libraries/main.php:3978
3091
  msgid "Weekdays"
3092
  msgstr "Dni powszednie"
3093
 
3094
+ #: app/features/mec/settings.php:321
3095
  msgid ""
3096
  "Proceed with caution. Default is set to Monday, Tuesday, Wednesday, Thursday "
3097
  "and Friday."
3099
  "Należy postępować ostrożnie. Domyślna wartość to poniedziałek, wtorek, "
3100
  "środa, czwartek i piątek."
3101
 
3102
+ #: app/features/mec/settings.php:328
3103
  msgid "Weekends"
3104
  msgstr "Weekendy"
3105
 
3106
+ #: app/features/mec/settings.php:336
3107
  msgid "Proceed with caution. Default is set to Saturday and Sunday."
3108
  msgstr "Należy postępować ostrożnie. Domyślna wartość to sobota i niedziela."
3109
 
3110
+ #: app/features/mec/settings.php:344
3111
  msgid "Archive Pages"
3112
  msgstr ""
3113
 
3114
+ #: app/features/mec/settings.php:347
3115
  msgid "Archive Page Title"
3116
  msgstr "Tytuł strony archiwum"
3117
 
3118
+ #: app/features/mec/settings.php:350
3119
  msgid "Default value is Events"
3120
  msgstr "Wartość domyślna to Wydarzenia"
3121
 
3122
+ #: app/features/mec/settings.php:355
3123
  msgid "Archive Page Skin"
3124
  msgstr "Skórka strony archiwum"
3125
 
3126
+ #: app/features/mec/settings.php:362
3127
  msgid "Default value is Calendar/Monthly View"
3128
  msgstr "Wartość domyślna to Kalendarz / widok miesięczny"
3129
 
3130
+ #: app/features/mec/settings.php:367
3131
  msgid "Category Page Skin"
3132
  msgstr "Skórka strony kategorii"
3133
 
3134
+ #: app/features/mec/settings.php:374
3135
  msgid "Default value is List View"
3136
  msgstr "Wartość domyślna to widok listy"
3137
 
3138
+ #: app/features/mec/settings.php:379
3139
  msgid "Category Events Method"
3140
  msgstr ""
3141
 
3142
+ #: app/features/mec/settings.php:383
3143
  msgid "Expired Events"
3144
  msgstr ""
3145
 
3146
+ #: app/features/mec/settings.php:385
3147
  msgid "Default value is Upcoming Events"
3148
  msgstr ""
3149
 
3150
+ #: app/features/mec/settings.php:390
3151
  msgid "Events Archive Status"
3152
  msgstr "Status archiwum wydarzeń"
3153
 
3154
+ #: app/features/mec/settings.php:393
3155
  msgid "Enabled (Recommended)"
3156
  msgstr "Włączone (zalecane)"
3157
 
3158
+ #: app/features/mec/settings.php:396
3159
  msgid ""
3160
  "If you disable it, then you should create a page as archive page of MEC. "
3161
  "Page's slug must equals to \"Main Slug\" of MEC. Also it will disable all of "
3166
  "kalendarza. Ponadto, takie działanie wyłączy wszystkie reguły przepisywania "
3167
  "adresów kalendarza."
3168
 
3169
+ #: app/features/mec/settings.php:406
3170
  msgid "Main Slug"
3171
  msgstr "Główna upr. nazwa"
3172
 
3173
+ #: app/features/mec/settings.php:409
3174
  msgid ""
3175
  "Default value is events. Valid characters are lowercase a-z, - character and "
3176
  "numbers."
3177
  msgstr ""
3178
  "Domyślna wartość to events. Dopuszczalne znaki to a-z, minus oraz cyfry."
3179
 
3180
+ #: app/features/mec/settings.php:413
3181
  msgid "Category Slug"
3182
  msgstr "Upr. nazwa kategorii"
3183
 
3184
+ #: app/features/mec/settings.php:416
3185
  msgid ""
3186
  "It's slug of MEC categories, you can change it to events-cat or something "
3187
  "else. Default value is mec-category. Valid characters are lowercase a-z, - "
3191
  "cat lub coś innego. Domyślna wartość to mec-category. Dopuszczalne znaki to "
3192
  "a-z, minus oraz cyfry."
3193
 
3194
+ #: app/features/mec/settings.php:426
3195
  msgid "Single Event Date Format"
3196
  msgstr "Format daty dla strony szczegółów wydarzenia"
3197
 
3198
+ #: app/features/mec/settings.php:429 app/features/mec/settings.php:767
3199
  msgid "Default is M d Y"
3200
  msgstr "Domyślna wartość to M d Y"
3201
 
3202
+ #: app/features/mec/settings.php:433
3203
  msgid "Date Method"
3204
  msgstr "Sposób wyświetlania dat"
3205
 
3206
+ #: app/features/mec/settings.php:436
3207
  msgid "Next occurrence date"
3208
  msgstr "Data następnego wystąpienia"
3209
 
3210
+ #: app/features/mec/settings.php:437
3211
  msgid "Referred date"
3212
  msgstr "Określona data"
3213
 
3214
+ #: app/features/mec/settings.php:439
3215
  msgid ""
3216
  "\"Referred date\" shows the event date based on referred date in event list."
3217
  msgstr ""
3218
  "\"Określona data\" pokazuje datę wydarzenia w oparciu o datę określoną w "
3219
  "parametrach wydarzenia."
3220
 
3221
+ #: app/features/mec/settings.php:443
3222
  msgid "Single Event Style"
3223
  msgstr "Styl dla strony wydarzenia"
3224
 
3225
+ #: app/features/mec/settings.php:446
3226
  msgid "Default Style"
3227
  msgstr "Domyślny styl"
3228
 
3229
+ #: app/features/mec/settings.php:447
3230
  msgid "Modern Style"
3231
  msgstr "Nowoczesny styl"
3232
 
3233
+ #: app/features/mec/settings.php:449
3234
  msgid "Choose your single event style."
3235
  msgstr "Wybierz swój styl pojedynczego wydarzenia."
3236
 
3237
+ #: app/features/mec/settings.php:458
3238
  msgid "Currency"
3239
  msgstr "Waluta"
3240
 
3241
+ #: app/features/mec/settings.php:468
3242
  msgid "Currency Sign"
3243
  msgstr "Symbol waluty"
3244
 
3245
+ #: app/features/mec/settings.php:471
3246
  msgid "Default value will be \"currency\" if you leave it empty."
3247
  msgstr "Jeżeli pozostawisz pole puste, wartością domyślną będzie \"currency\"."
3248
 
3249
+ #: app/features/mec/settings.php:475
3250
  msgid "Currency Position"
3251
  msgstr "Pozycja symbolu waluty"
3252
 
3253
+ #: app/features/mec/settings.php:478
3254
  msgid "Before $10"
3255
  msgstr "Przed - $10"
3256
 
3257
+ #: app/features/mec/settings.php:479
3258
  msgid "After 10$"
3259
  msgstr "Po - 10$"
3260
 
3261
+ #: app/features/mec/settings.php:484
3262
  msgid "Thousand Separator"
3263
  msgstr "Seperator tysięcy"
3264
 
3265
+ #: app/features/mec/settings.php:490
3266
  msgid "Decimal Separator"
3267
  msgstr "Separator miejsc dziesiętnych"
3268
 
3269
+ #: app/features/mec/settings.php:500
3270
  msgid "No decimal"
3271
  msgstr "Brak przecinka"
3272
 
3273
+ #: app/features/mec/settings.php:516
3274
  msgid "Show Google Maps on event page"
3275
  msgstr "Pokaż Mapy Google na stronie wydarzenia"
3276
 
3277
+ #: app/features/mec/settings.php:521 app/features/mec/settings.php:689
3278
+ #: app/features/mec/settings.php:1140
3279
  msgid "API Key"
3280
  msgstr "Klucz API"
3281
 
3282
+ #: app/features/mec/settings.php:524 app/features/mec/settings.php:1143
3283
+ #: app/features/mec/settings.php:1150
3284
  msgid "Required!"
3285
  msgstr "Wymagane!"
3286
 
3287
+ #: app/features/mec/settings.php:528
3288
  msgid "Zoom level"
3289
  msgstr "Poziom powiększenia"
3290
 
3291
+ #: app/features/mec/settings.php:535
3292
  msgid ""
3293
  "For Google Maps module in single event page. In Google Maps skin, it will "
3294
  "caculate the zoom level automatically based on event boundaries."
3296
  "Dla map Google na stronach wydarzenia. Ustawienie spowoduje, że przybliżenie "
3297
  "będzie dostosowane automatycznie na podstawie zasięgu wydarzenia."
3298
 
3299
+ #: app/features/mec/settings.php:539
3300
  msgid "Google Maps Style"
3301
  msgstr "Skórka Map Google"
3302
 
3303
+ #: app/features/mec/settings.php:543
3304
  msgid "Default"
3305
  msgstr "Domyślnie"
3306
 
3307
+ #: app/features/mec/settings.php:551
3308
  msgid "Direction on single event"
3309
  msgstr "Droga dojazdu na stronie wydarzenia"
3310
 
3311
+ #: app/features/mec/settings.php:555
3312
  msgid "Simple Method"
3313
  msgstr "Prosta metoda"
3314
 
3315
+ #: app/features/mec/settings.php:556
3316
  msgid "Advanced Method"
3317
  msgstr "Zaawansowana metoda"
3318
 
3319
+ #: app/features/mec/settings.php:561
3320
  msgid "Lightbox Date Format"
3321
  msgstr "Format daty w oknie"
3322
 
3323
+ #: app/features/mec/settings.php:564
3324
  msgid "Default value is M d Y"
3325
  msgstr "Domyślną wartością jest M d Y"
3326
 
3327
+ #: app/features/mec/settings.php:568
3328
  msgid "Google Maps API"
3329
  msgstr "Klucz API Google Maps"
3330
 
3331
+ #: app/features/mec/settings.php:572
3332
  msgid "Don't load Google Maps API library"
3333
  msgstr "Nie ładuj bibliotek Google Maps"
3334
 
3335
+ #: app/features/mec/settings.php:574
3336
  msgid "Check it only if another plugin/theme is loading the Google Maps API"
3337
  msgstr ""
3338
  "Zaznacz tylko w przypadku gdy inna wtyczka lub szablon ładują biblioteki "
3339
  "Google Maps"
3340
 
3341
+ #: app/features/mec/settings.php:586
3342
  msgid "Enable Google Recaptcha"
3343
  msgstr "Włącz Google Recaptcha"
3344
 
3345
+ #: app/features/mec/settings.php:593
3346
  msgid "Enable on booking form"
3347
  msgstr "Włącz na formularzu rezerwacji"
3348
 
3349
+ #: app/features/mec/settings.php:599
3350
  msgid "Enable on \"Frontend Event Submittion\" form"
3351
  msgstr "Włącz na stronie przesyłania nowego wydarzenia"
3352
 
3353
+ #: app/features/mec/settings.php:603
3354
  msgid "Site Key"
3355
  msgstr "Site Key"
3356
 
3357
+ #: app/features/mec/settings.php:609
3358
+ msgid "Secret Key"
3359
+ msgstr "Sekretny klucz"
3360
+
3361
+ #: app/features/mec/settings.php:623
3362
  msgid ""
3363
  "Show export module (iCal export and add to Google calendars) on event page"
3364
  msgstr ""
3365
  "Pokaż modułu eksportu (eksport iCal i dodaj do kalendarzy Google) na stronie "
3366
  "wydarzenia"
3367
 
3368
+ #: app/features/mec/settings.php:630
3369
  msgid "Google Calendar"
3370
  msgstr "Kalendarz Google"
3371
 
3372
+ #: app/features/mec/settings.php:650
3373
  msgid "Show event time based on local time of visitor on event page"
3374
  msgstr ""
3375
  "Wyświetl czas wydarzenia na podstawie czasu lokalnego osoby odwiedzającej "
3376
  "stronę wydarzenia"
3377
 
3378
+ #: app/features/mec/settings.php:666
3379
  msgid "Show QR code of event in details page and booking invoice"
3380
  msgstr ""
3381
 
3382
+ #: app/features/mec/settings.php:684
3383
  msgid "Show weather module on event page"
3384
  msgstr ""
3385
 
3386
+ #: app/features/mec/settings.php:692
3387
  #, php-format
3388
  msgid "You can get a free API Key from %s"
3389
  msgstr ""
3390
 
3391
+ #: app/features/mec/settings.php:704
3392
  msgid "Show countdown module on event page"
3393
  msgstr "Pokaż moduł odliczania na stronie wydarzenia"
3394
 
3395
+ #: app/features/mec/settings.php:709
3396
  msgid "Countdown Style"
3397
  msgstr "Style licznika"
3398
 
3399
+ #: app/features/mec/settings.php:712
3400
  msgid "Plain Style"
3401
  msgstr "Zwykły Styl"
3402
 
3403
+ #: app/features/mec/settings.php:713
3404
  msgid "Flip Style"
3405
  msgstr "Styl przerzucanych kart"
3406
 
3407
+ #: app/features/mec/settings.php:725
3408
  msgid "Show social network module"
3409
  msgstr "Pokaż moduł sieci społecznej"
3410
 
3411
+ #: app/features/mec/settings.php:750
3412
  msgid "Show next event module on event page"
3413
  msgstr "Wyświetl moduł następnego wydarzenia na stronie szczegółów wydarzenia"
3414
 
3415
+ #: app/features/mec/settings.php:755
3416
  msgid "Method"
3417
  msgstr "Metoda"
3418
 
3419
+ #: app/features/mec/settings.php:758
3420
  msgid "Next Occurrence of Current Event"
3421
  msgstr "Kolejne wystąpienie bieżącego wydarzenia"
3422
 
3423
+ #: app/features/mec/settings.php:759
3424
  msgid "Next Occurrence of Other Events"
3425
  msgstr "Kolejne wystąpienie innych wydarzeń"
3426
 
3427
+ #: app/features/mec/settings.php:764 app/features/mec/settings.php:942
3428
  msgid "Date Format"
3429
  msgstr "Format daty"
3430
 
3431
+ #: app/features/mec/settings.php:776
3432
  msgid "Events List Page"
3433
  msgstr "Strona listy wydarzeń"
3434
 
3435
+ #: app/features/mec/settings.php:785 app/features/mec/settings.php:797
3436
  #, php-format
3437
  msgid "Put %s shortcode into the page."
3438
  msgstr "Dodaj %s shortcode na stronie."
3439
 
3440
+ #: app/features/mec/settings.php:788
3441
  msgid "Add/Edit Events Page"
3442
  msgstr "Strona dodawania / edycji wydarzenia"
3443
 
3444
+ #: app/features/mec/settings.php:802
3445
  msgid "Enable event submission by guest (Not logged-in) users"
3446
  msgstr "Pozwól na dodawanie wydarzeń przez niezalogowanych użytkowników"
3447
 
3448
+ #: app/features/mec/settings.php:809
3449
  msgid "Enable mandatory email and name for guest user"
3450
  msgstr "Włącz obowiązkowy email oraz nazwę dla użytkowników gościnnych"
3451
 
3452
+ #: app/features/mec/settings.php:813
3453
  msgid "Frontend Event Submission Sections"
3454
  msgstr "Sekcje widoczne na stronie frontalnej dodawania wydarzenia"
3455
 
3456
+ #: app/features/mec/settings.php:835
3457
  msgid "Event Categories"
3458
  msgstr "Kategorie wydarzeń"
3459
 
3460
+ #: app/features/mec/settings.php:841
3461
  msgid "Event Labels"
3462
  msgstr "Etykiety wydarzeń"
3463
 
3464
+ #: app/features/mec/settings.php:853
3465
  msgid "Event Tags"
3466
  msgstr "Tagi wydarzeń"
3467
 
3468
+ #: app/features/mec/settings.php:865
3469
  msgid "Event Organizer"
3470
  msgstr "Organizator wydarzenia"
3471
 
3472
+ #: app/features/mec/settings.php:877
3473
  msgid "Booking Options"
3474
  msgstr "Opcje rezerwacji"
3475
 
3476
+ #: app/features/mec/settings.php:883
3477
  msgid "Fees/Taxes Options"
3478
  msgstr "Podatki / Opłaty"
3479
 
3480
+ #: app/features/mec/settings.php:891
3481
  #, php-format
3482
  msgid ""
3483
  "Users can put a note for editors while they're submitting the event. Also "
3487
  "Użytkownicy mogą skorzystać z tego pola aby napisać w nim wiadomość do "
3488
  "administratora, który będzie rozpatrywał zgłoszenie."
3489
 
3490
+ #: app/features/mec/settings.php:895
3491
  msgid "Visibility of Note"
3492
  msgstr "Widoczność uwagi"
3493
 
3494
+ #: app/features/mec/settings.php:898
3495
  msgid "Always"
3496
  msgstr "Zawsze"
3497
 
3498
+ #: app/features/mec/settings.php:899
3499
  msgid "While event is not published"
3500
  msgstr "Podczas gdy wydarzenie nie jest opublikowane"
3501
 
3502
+ #: app/features/mec/settings.php:902
3503
  msgid "Event Note shows on Frontend Submission Form and Edit Event in backend."
3504
  msgstr ""
3505
  "Notatka jest wyświetlana w formularzu na stronie frontalnej oraz na zapleczu."
3506
 
3507
+ #: app/features/mec/settings.php:908
3508
  msgid "Exceptional days"
3509
  msgstr "Wykluczone dni"
3510
 
3511
+ #: app/features/mec/settings.php:912
3512
  msgid "Show exceptional days option on Add/Edit events page"
3513
  msgstr "Pokaż wykluczone dni na stronie dodawania / usuwania wydarzenia"
3514
 
3515
+ #: app/features/mec/settings.php:913
3516
  msgid ""
3517
  "Using this option you can include/exclude certain days to/from event "
3518
  "occurrence dates."
3520
  "Za pomocą tej opcji można włączyć / wyłączyć niektóre dni z puli dni do "
3521
  "wyboru przy tworzeniu wydarzeń."
3522
 
3523
+ #: app/features/mec/settings.php:923
3524
  #, fuzzy
3525
  msgid ""
3526
  "Show additional organizers option on Add/Edit events page and single event "
3527
  "page."
3528
  msgstr "Pokaż wykluczone dni na stronie dodawania / usuwania wydarzenia"
3529
 
3530
+ #: app/features/mec/settings.php:937
3531
  msgid "Enable booking module"
3532
  msgstr "Włącz moduł rezerwacji"
3533
 
3534
+ #: app/features/mec/settings.php:945
3535
  msgid "Default is Y-m-d"
3536
  msgstr "Domyślna wartość to Y-m-d"
3537
 
3538
+ #: app/features/mec/settings.php:949
3539
  msgid "Maximum Dates"
3540
  msgstr "Maksymalna ilość dat"
3541
 
3542
+ #: app/features/mec/settings.php:951
3543
  msgid "Default is 6"
3544
  msgstr "Domyślnie 6"
3545
 
3546
+ #: app/features/mec/settings.php:955
3547
  msgid "Thank You Page"
3548
  msgstr "Strona podziękowania"
3549
 
3550
+ #: app/features/mec/settings.php:963
3551
  msgid ""
3552
  "User redirects to this page after booking. Leave it empty if you want to "
3553
  "disable it."
3555
  "Użytkownik jest przekierowywany na tą stronę po złożeniu rezerwacji. "
3556
  "Pozostaw pole puste jeśli chcesz wyłączyć tą stronę."
3557
 
3558
+ #: app/features/mec/settings.php:971
3559
  msgid "Enable Express Attendees Form"
3560
  msgstr ""
3561
 
3562
+ #: app/features/mec/settings.php:973
3563
  msgid ""
3564
  "Users are able to apply first attendee information for other attendees in "
3565
  "the booking form."
3566
  msgstr ""
3567
 
3568
+ #: app/features/mec/settings.php:976
3569
  msgid "Email verification"
3570
  msgstr "Weryfikacja przez email"
3571
 
3572
+ #: app/features/mec/settings.php:982
3573
  msgid "Auto verification for free bookings"
3574
  msgstr "Automatyczna weryfikacja dla bezpłatnych rezerwacji"
3575
 
3576
+ #: app/features/mec/settings.php:991
3577
  msgid "Auto verification for paid bookings"
3578
  msgstr "Automatyczna rezerwacja dla płatnych rezerwacji"
3579
 
3580
+ #: app/features/mec/settings.php:1001
3581
  msgid "Auto confirmation for free bookings"
3582
  msgstr "Automatyczne potwierdzenie dla bezpłatnych rezerwacji"
3583
 
3584
+ #: app/features/mec/settings.php:1010
3585
  msgid "Auto confirmation for paid bookings"
3586
  msgstr "Automatyczne potwierdzenie dla płatnych rezerwacji"
3587
 
3588
+ #: app/features/mec/settings.php:1027
3589
  msgid "Enable coupons module"
3590
  msgstr "Włącz moduł kupony"
3591
 
3592
+ #: app/features/mec/settings.php:1044
3593
  msgid "Enable taxes / fees module"
3594
  msgstr "Włącz moduł podatki / opłaty"
3595
 
3596
+ #: app/features/mec/settings.php:1049
3597
  msgid "Add Fee"
3598
  msgstr "Dodaj rodzaj opłaty"
3599
 
3600
+ #: app/features/mec/settings.php:1105
3601
  msgid "Enable BuddyPress Integration"
3602
  msgstr "Włącz integrację BuddyPressa"
3603
 
3604
+ #: app/features/mec/settings.php:1112
3605
  msgid "Show \"Attendees Module\" in event details page"
3606
  msgstr "Pokaż moduł uczestników na stronie wydarzenia"
3607
 
3608
+ #: app/features/mec/settings.php:1116
3609
  msgid "Attendees Limit"
3610
  msgstr "Limit uczestników"
3611
 
3612
+ #: app/features/mec/settings.php:1124
3613
  msgid "Add booking activity to user profile"
3614
  msgstr "Dodaj aktywności związane z rezerwacją do profilu użytkownika"
3615
 
3616
+ #: app/features/mec/settings.php:1135
3617
  msgid "Enable Mailchimp Integration"
3618
  msgstr "Włącz integrację z MailChimp"
3619
 
3620
+ #: app/features/mec/settings.php:1147
3621
  msgid "List ID"
3622
  msgstr "ID listy"
3623
 
3624
+ #: app/features/mec/settings.php:1154
3625
  msgid "Subscription Status"
3626
  msgstr "Status subskrypcji"
3627
 
3628
+ #: app/features/mec/settings.php:1157
3629
  msgid "Subscribe automatically"
3630
  msgstr "Zapisz się automatycznie"
3631
 
3632
+ #: app/features/mec/settings.php:1158
3633
  msgid "Subscribe by verification"
3634
  msgstr "Subskrybuj przez weryfikację"
3635
 
3636
+ #: app/features/mec/settings.php:1160
3637
  msgid ""
3638
  "If you choose \"Subscribe by verification\" then an email will send to user "
3639
  "by mailchimp for subscription verification."
3642
  "będzie musiał potwierdzić zapisanie do newslettera za pomocą linku "
3643
  "umieszczonego w wiadomości email."
3644
 
3645
+ #: app/features/mec/settings.php:1170
3646
  #, php-format
3647
  msgid "%s is required to use this section."
3648
  msgstr ""
3649
 
3650
+ #: app/features/mec/settings.php:1173
3651
  msgid "Purchase Code"
3652
  msgstr "Kod zakupu"
3653
 
3654
+ #: app/features/mec/settings.php:1178 app/features/mec/settings.php:1244
3655
+ #: app/features/mec/settings.php:1262
3656
+ msgid "Verified"
3657
+ msgstr "Zweryfikowane"
3658
+
3659
+ #: app/features/mec/settings.php:1180
3660
  msgid "UnVerified"
3661
  msgstr "Niesprawdzony"
3662
 
3663
+ #: app/features/mec/settings.php:1182
3664
  msgid ""
3665
  "Please insert your purchase code validation. read documentation for more "
3666
  "information."
3668
  "Proszę podać kod zakupu w celu weryfikacji. Więcej informacji na ten temat "
3669
  "znajdziesz w dokumentacji."
3670
 
3671
+ #: app/features/mec/settings.php:1185
3672
  msgid "Product Name"
3673
  msgstr ""
3674
 
3675
+ #: app/features/mec/settings.php:1188
3676
  msgid "1 License for MEC Plugin"
3677
  msgstr ""
3678
 
3679
+ #: app/features/mec/settings.php:1189
3680
  msgid "5 License for MEC Plugin"
3681
  msgstr ""
3682
 
3683
+ #: app/features/mec/settings.php:1190
3684
  msgid "10 License for MEC Plugin"
3685
  msgstr ""
3686
 
3687
+ #: app/features/mec/settings.php:1197
3688
  msgid "MEC Deactivation"
3689
  msgstr "MEC Dezaktywacja"
3690
 
3691
+ #: app/features/mec/settings.php:1199
3692
  msgid "Deactivate"
3693
  msgstr "Dezaktywuj"
3694
 
3695
+ #: app/features/mec/settings.php:1201
3696
  msgid ""
3697
  "For deactivation first delete your purchase from above field then press save "
3698
  "after that click on deactivate for deactivate this purchase code from this "
3702
  "naciśnij przycisk Zapis. Po dezaktywacji tej domeny, będziesz mógł "
3703
  "wykorzystać ten sam kod zakupu do aktywacji kalendarza na innej domenie."
3704
 
3705
+ #: app/features/mec/settings.php:1264
3706
  msgid "Please Refresh Page"
3707
  msgstr "Proszę odświeżyć stronę"
3708
 
3857
  msgid "eg. https://webnus.net"
3858
  msgstr "np. https://webnus.net"
3859
 
3860
+ #: app/features/organizers.php:300 app/libraries/main.php:4002
3861
  #: app/skins/single.php:194
3862
  msgid "Other Organizers"
3863
  msgstr ""
3872
  msgid "%s Price"
3873
  msgstr ""
3874
 
3875
+ #: app/libraries/book.php:516
3876
+ msgid "Discount"
3877
+ msgstr "Zniżka"
3878
+
3879
+ #: app/libraries/book.php:604 app/modules/booking/default.php:274
3880
+ #: app/modules/booking/default.php:369
3881
+ msgid "Download Invoice"
3882
+ msgstr ""
3883
+
3884
  #: app/libraries/factory.php:148
3885
  msgid "M.E. Calendar"
3886
  msgstr "Kalendarz"
3953
  msgid "There is no excerpt because this is a protected post."
3954
  msgstr "Nie ma zajawki ponieważ ten wpis jest chroniony."
3955
 
3956
+ #: app/libraries/main.php:324 app/libraries/main.php:1134
3957
  msgid "Grid View"
3958
  msgstr "Widok siatki"
3959
 
3960
+ #: app/libraries/main.php:325 app/libraries/main.php:1135
3961
  msgid "Agenda View"
3962
  msgstr ""
3963
 
3964
+ #: app/libraries/main.php:326 app/libraries/main.php:1126
3965
  msgid "Full Calendar"
3966
  msgstr "Pełny kalendarz"
3967
 
3968
+ #: app/libraries/main.php:328 app/libraries/main.php:1128
3969
  msgid "Calendar/Monthly View"
3970
  msgstr "Kalendarz / Miesiąc"
3971
 
3972
+ #: app/libraries/main.php:331 app/libraries/main.php:1131
3973
  msgid "Timetable View"
3974
  msgstr ""
3975
 
3976
+ #: app/libraries/main.php:332 app/libraries/main.php:1132
3977
  msgid "Masonry View"
3978
  msgstr ""
3979
 
3980
+ #: app/libraries/main.php:333 app/libraries/main.php:1136
3981
  msgid "Map View"
3982
  msgstr "Widok mapy"
3983
 
4001
  msgid "Slider View"
4002
  msgstr "Widok suwaka"
4003
 
4004
+ #: app/libraries/main.php:375 app/libraries/main.php:3980
4005
  msgid "SU"
4006
  msgstr "NIE"
4007
 
4008
+ #: app/libraries/main.php:376 app/libraries/main.php:3981
4009
  msgid "MO"
4010
  msgstr "PN"
4011
 
4012
+ #: app/libraries/main.php:377 app/libraries/main.php:3982
4013
  msgid "TU"
4014
  msgstr "WT"
4015
 
4016
+ #: app/libraries/main.php:378 app/libraries/main.php:3983
4017
  msgid "WE"
4018
  msgstr "ŚR"
4019
 
4020
+ #: app/libraries/main.php:379 app/libraries/main.php:3984
4021
  msgid "TH"
4022
  msgstr "CZW"
4023
 
4024
+ #: app/libraries/main.php:380 app/libraries/main.php:3985
4025
  msgid "FR"
4026
  msgstr "PT"
4027
 
4028
+ #: app/libraries/main.php:381 app/libraries/main.php:3986
4029
  msgid "SA"
4030
  msgstr "SOB"
4031
 
4049
  msgid "Twitter"
4050
  msgstr "Twitter"
4051
 
4052
+ #: app/libraries/main.php:1036 app/libraries/main.php:1089
4053
  msgid "Linkedin"
4054
  msgstr "Linkedin"
4055
 
4056
+ #: app/libraries/main.php:1037 app/libraries/main.php:1115
4057
+ msgid "VK"
4058
+ msgstr ""
4059
+
4060
+ #: app/libraries/main.php:1053
4061
  msgid "Share on Facebook"
4062
  msgstr "Udostępnij na Facebooku"
4063
 
4064
+ #: app/libraries/main.php:1065
4065
  msgid "Google Plus"
4066
  msgstr "Google Plus"
4067
 
4068
+ #: app/libraries/main.php:1077
4069
  msgid "Tweet"
4070
  msgstr "Tweetuj"
4071
 
4072
+ #: app/libraries/main.php:1471
4073
  msgid "Your booking successfully verified."
4074
  msgstr "Twoja rezerwacja została pomyślnie zweryfikowana."
4075
 
4076
+ #: app/libraries/main.php:1472
4077
  msgid "Your booking cannot verify!"
4078
  msgstr "Twoja rezerwacja nie może zostać zweryfikowana!"
4079
 
4080
+ #: app/libraries/main.php:1484
4081
  msgid "Your booking successfully canceled."
4082
  msgstr "Twoja rezerwacja została pomyślnie anulowana."
4083
 
4084
+ #: app/libraries/main.php:1485
4085
  msgid "Your booking cannot be canceled."
4086
  msgstr "Twoja rezerwacja nie może zostać anulowana."
4087
 
4088
+ #: app/libraries/main.php:1489
4089
  msgid "You canceled the payment successfully."
4090
  msgstr "Anulowałeś płatności pomyślnie."
4091
 
4092
+ #: app/libraries/main.php:1493
4093
  msgid "You returned from payment gateway successfully."
4094
  msgstr "Wróciłeś z bramki płatności pomyślnie."
4095
 
4096
+ #: app/libraries/main.php:1517
4097
  msgid "Cannot find the booking!"
4098
  msgstr ""
4099
 
4100
+ #: app/libraries/main.php:1517
4101
  msgid "Booking is invalid."
4102
  msgstr ""
4103
 
4104
+ #: app/libraries/main.php:1538
4105
  #, php-format
4106
  msgid "%s Invoice"
4107
  msgstr ""
4108
 
4109
+ #: app/libraries/main.php:1559
4110
+ msgid "Transaction ID"
4111
+ msgstr "ID transakcji"
4112
+
4113
+ #: app/libraries/main.php:1568
4114
+ msgid "Attendees"
4115
+ msgstr ""
4116
+
4117
+ #: app/libraries/main.php:1574 app/libraries/main.php:4000
4118
+ msgid "Ticket"
4119
+ msgstr "Zgłoszenie"
4120
+
4121
+ #: app/libraries/main.php:1590
4122
  msgid "Billing"
4123
  msgstr ""
4124
 
4125
+ #: app/libraries/main.php:1601
4126
  msgid "Total"
4127
  msgstr ""
4128
 
4129
+ #: app/libraries/main.php:1634
4130
  msgid "Security nonce is not valid."
4131
  msgstr "Kod bezpieczeństwa nie jest poprawny."
4132
 
4133
+ #: app/libraries/main.php:1634
4134
  msgid "iCal export stopped!"
4135
  msgstr "iCal eksport zatrzymany!"
4136
 
4137
+ #: app/libraries/main.php:1855 app/libraries/main.php:1884
4138
+ #: app/libraries/main.php:1913 app/libraries/main.php:1942
4139
+ #: app/libraries/main.php:1971 app/libraries/main.php:1995
4140
+ #: app/libraries/main.php:2039 app/libraries/main.php:2083
4141
+ #: app/libraries/main.php:2130 app/libraries/main.php:2176
4142
  msgid "Sort"
4143
  msgstr "Sortowanie"
4144
 
4145
+ #: app/libraries/main.php:1861 app/libraries/main.php:1890
4146
+ #: app/libraries/main.php:1919 app/libraries/main.php:1948
4147
+ #: app/libraries/main.php:2001 app/libraries/main.php:2045
4148
+ #: app/libraries/main.php:2089 app/libraries/main.php:2136
4149
  msgid "Required Field"
4150
  msgstr "Wymagane pole"
4151
 
4152
+ #: app/libraries/main.php:1867 app/libraries/main.php:1896
4153
+ #: app/libraries/main.php:1925 app/libraries/main.php:1954
4154
+ #: app/libraries/main.php:2007 app/libraries/main.php:2051
4155
+ #: app/libraries/main.php:2095 app/libraries/main.php:2142
4156
  msgid "Insert a label for this field"
4157
  msgstr "Wpisz etykietę dla tego pola"
4158
 
4159
+ #: app/libraries/main.php:1977
4160
  msgid "HTML and shortcode are allowed."
4161
  msgstr "HTML i shortcode są dozwolone."
4162
 
4163
+ #: app/libraries/main.php:2020 app/libraries/main.php:2064
4164
+ #: app/libraries/main.php:2108
4165
  msgid "Option"
4166
  msgstr "Opcja"
4167
 
4168
+ #: app/libraries/main.php:2142
4169
  #, php-format
4170
  msgid "Instead of %s, the page title with a link will be show."
4171
  msgstr ""
4172
 
4173
+ #: app/libraries/main.php:2144
4174
  msgid "Agreement Page"
4175
  msgstr ""
4176
 
4177
+ #: app/libraries/main.php:2153
4178
  msgid "Status"
4179
  msgstr ""
4180
 
4181
+ #: app/libraries/main.php:2155
4182
  msgid "Checked by default"
4183
  msgstr ""
4184
 
4185
+ #: app/libraries/main.php:2156
4186
  msgid "Unchecked by default"
4187
  msgstr ""
4188
 
4189
+ #: app/libraries/main.php:2178
4190
  msgid "Insert a label for this option"
4191
  msgstr "Podaj etykietę dla tej opcji"
4192
 
4193
+ #: app/libraries/main.php:2193
4194
+ msgid "Free"
4195
+ msgstr "Darmowy"
4196
+
4197
+ #: app/libraries/main.php:2845
4198
  #, php-format
4199
  msgid "Copy of %s"
4200
  msgstr "Kopia %s"
4201
 
4202
+ #: app/libraries/main.php:3482
4203
  msgid "Booked an event."
4204
  msgstr "Zarezerwowano wydarzenie."
4205
 
4206
+ #: app/libraries/main.php:3523
4207
  #, php-format
4208
  msgid "%s booked %s event."
4209
  msgstr "%s zarezerwował %s wydarzenie."
4210
 
4211
+ #: app/libraries/main.php:3965
4212
  msgid "Taxonomies"
4213
  msgstr "Taksonomie"
4214
 
4215
+ #: app/libraries/main.php:3967
4216
  msgid "Category Plural Label"
4217
  msgstr "Etykieta dla kategorii - liczba mnoga"
4218
 
4219
+ #: app/libraries/main.php:3968
4220
  msgid "Category Singular Label"
4221
  msgstr "Etykieta dla kategorii - liczba pojedyncza"
4222
 
4223
+ #: app/libraries/main.php:3969
4224
  msgid "Label Plural Label"
4225
  msgstr "Etykieta - liczba mnoga"
4226
 
4227
+ #: app/libraries/main.php:3970
4228
  msgid "Label Singular Label"
4229
  msgstr "Etykieta - liczba pojedyncza"
4230
 
4231
+ #: app/libraries/main.php:3970
4232
  msgid "label"
4233
  msgstr "etykieta"
4234
 
4235
+ #: app/libraries/main.php:3971
4236
  msgid "Location Plural Label"
4237
  msgstr "Etykieta dla lokalizacji - wersja mnoga"
4238
 
4239
+ #: app/libraries/main.php:3972
4240
  msgid "Location Singular Label"
4241
  msgstr "Etykieta dla lokalizacji - wersja pojedyncza"
4242
 
4243
+ #: app/libraries/main.php:3973
4244
  msgid "Organizer Plural Label"
4245
  msgstr "Etykieta dla organizatora - wersja mnoga"
4246
 
4247
+ #: app/libraries/main.php:3974
4248
  msgid "Organizer Singular Label"
4249
  msgstr "Etykieta dla organizatora - wersja pojedyncza"
4250
 
4251
+ #: app/libraries/main.php:3980
4252
  msgid "Sunday abbreviation"
4253
  msgstr "Niedziela"
4254
 
4255
+ #: app/libraries/main.php:3981
4256
  msgid "Monday abbreviation"
4257
  msgstr "Poniedziałek"
4258
 
4259
+ #: app/libraries/main.php:3982
4260
  msgid "Tuesday abbreviation"
4261
  msgstr "Wtorek"
4262
 
4263
+ #: app/libraries/main.php:3983
4264
  msgid "Wednesday abbreviation"
4265
  msgstr "Środa"
4266
 
4267
+ #: app/libraries/main.php:3984
4268
  msgid "Thursday abbreviation"
4269
  msgstr "Czwartek"
4270
 
4271
+ #: app/libraries/main.php:3985
4272
  msgid "Friday abbreviation"
4273
  msgstr "Piątek"
4274
 
4275
+ #: app/libraries/main.php:3986
4276
  msgid "Saturday abbreviation"
4277
  msgstr "Sobota"
4278
 
4279
+ #: app/libraries/main.php:3990
4280
  msgid "Others"
4281
  msgstr "Inne"
4282
 
4283
+ #: app/libraries/main.php:3992
4284
  msgid "Booking Success Message"
4285
  msgstr "Wiadomość zakończenia rezerwacji"
4286
 
4287
+ #: app/libraries/main.php:3992
4288
+ msgid ""
4289
+ "Thanks for your booking. Your tickets booked, booking verification might be "
4290
+ "needed, please check your email."
4291
+ msgstr ""
4292
+ "Dziękujemy za rezerwację. Twoje bilety zostały zarezerwowane. Weryfikacja "
4293
+ "rezerwacji może być konieczna, sprawdź swoją pocztę email."
4294
+
4295
+ #: app/libraries/main.php:3993
4296
  msgid "Register Button"
4297
  msgstr "Przycisk rejestracji"
4298
 
4299
+ #: app/libraries/main.php:3993 app/skins/available_spot/tpl.php:149
4300
  #: app/skins/carousel/render.php:64 app/skins/carousel/render.php:89
4301
  #: app/skins/grid/render.php:60 app/skins/grid/render.php:90
4302
  #: app/skins/grid/render.php:122 app/skins/grid/render.php:150
4310
  msgid "REGISTER"
4311
  msgstr "REJESTRACJA"
4312
 
4313
+ #: app/libraries/main.php:3994
4314
  msgid "View Detail Button"
4315
  msgstr "Pokaż szczegóły"
4316
 
4317
+ #: app/libraries/main.php:3994 app/skins/carousel/render.php:64
4318
  #: app/skins/carousel/render.php:89 app/skins/grid/render.php:60
4319
  #: app/skins/grid/render.php:90 app/skins/grid/render.php:122
4320
  #: app/skins/grid/render.php:150 app/skins/list/render.php:43
4325
  msgid "View Detail"
4326
  msgstr "Pokaż szczegóły"
4327
 
4328
+ #: app/libraries/main.php:3995
4329
  msgid "Event Detail Button"
4330
  msgstr "Szczegóły wydarzenia"
4331
 
4332
+ #: app/libraries/main.php:3995 app/skins/countdown/tpl.php:163
4333
  msgid "Event Detail"
4334
  msgstr "Szczegóły wydarzenia"
4335
 
4336
+ #: app/libraries/main.php:3997
4337
  msgid "More Info Link"
4338
  msgstr "Więcej informacji"
4339
 
4340
+ #: app/libraries/main.php:4000
4341
  msgid "Ticket (Singular)"
4342
  msgstr ""
4343
 
4344
+ #: app/libraries/main.php:4001
4345
  msgid "Tickets (Plural)"
4346
  msgstr ""
4347
 
4348
+ #: app/libraries/main.php:4067
4349
  msgid "EventON"
4350
  msgstr ""
4351
 
4352
+ #: app/libraries/main.php:4068
4353
  msgid "The Events Calendar"
4354
  msgstr ""
4355
 
4356
+ #: app/libraries/main.php:4069
4357
  msgid "Events Schedule WP Plugin"
4358
  msgstr ""
4359
 
4360
+ #: app/libraries/main.php:4070
4361
  msgid "Calendarize It"
4362
  msgstr ""
4363
 
4381
  msgid "A new event is added."
4382
  msgstr "Nowe wydarzenie zostało dodane."
4383
 
4384
+ #: app/libraries/notifications.php:516
4385
+ msgid "Yes"
4386
+ msgstr ""
4387
+
4388
+ #: app/libraries/notifications.php:516
4389
+ msgid "No"
4390
+ msgstr ""
4391
+
4392
  #: app/libraries/render.php:337
4393
  msgid "Skin controller does not exist."
4394
  msgstr "Kontroler skórki nie iestnieje."
4417
  msgid "%s tickets"
4418
  msgstr "%s biletów"
4419
 
4420
+ #: app/modules/booking/steps/checkout.php:16
4421
+ msgid "Checkout"
4422
+ msgstr "Zamówienie"
4423
+
4424
  #: app/modules/booking/steps/checkout.php:33
4425
  msgid "Discount Coupon"
4426
  msgstr "Kupon rabatowy"
4447
  msgid "Next"
4448
  msgstr "Następny"
4449
 
4450
+ #: app/modules/booking/steps/message.php:7
4451
+ msgid "Thanks for your booking."
4452
+ msgstr "Dziękujemy za rezerwację."
4453
+
4454
  #: app/modules/booking/steps/tickets.php:18
4455
  msgid "Book Event"
4456
  msgstr "Rezerwuj wydarzenie"
4741
  msgid "QR Code : "
4742
  msgstr ""
4743
 
4744
+ #. Plugin Name of the plugin/theme
4745
+ #, fuzzy
4746
+ #| msgid "Modern Events Calendar"
4747
+ msgid "Modern Events Calendar Lite"
4748
+ msgstr "Nowoczesny Kalendarz Wydarzeń"
4749
+
4750
  #. Plugin URI of the plugin/theme
4751
  msgid "http://webnus.net/plugins/modern-events-calendar/"
4752
  msgstr ""
4763
  msgid "http://webnus.net"
4764
  msgstr ""
4765
 
4766
+ #~ msgid "Auto Facebook import is disabled!"
4767
+ #~ msgstr "Automatyczny import z Facebook jest wyłączony!"
4768
+
4769
+ #~ msgid "%s facebook events imported/updated."
4770
+ #~ msgstr "%s wydarzeń z Facebook zaimportowano/zaktualizowano."
4771
+
4772
+ #~ msgid "Auto Google Calendar import is disabled!"
4773
+ #~ msgstr "Automatyczny import do kalendarza Google jest wyłączony!"
4774
+
4775
+ #~ msgid "%s google events imported/updated."
4776
+ #~ msgstr "%s wydarzeń google zaimportowano/zaktualizowano."
4777
+
4778
+ #~ msgid "Add Booking"
4779
+ #~ msgstr "Dodaj Rezerwację"
4780
+
4781
+ #~ msgid "No bookings found!"
4782
+ #~ msgstr "Nie znaleziono rezerwacji!"
4783
+
4784
+ #~ msgid "Edit Bookings"
4785
+ #~ msgstr "Edytuj rezerwacje"
4786
+
4787
+ #~ msgid "No bookings found in Trash!"
4788
+ #~ msgstr "Nie znaleziono rezerwacji w koszu!"
4789
+
4790
+ #~ msgid "Book Details"
4791
+ #~ msgstr "Szczegóły rezerwacji"
4792
+
4793
+ #~ msgid "Confirmation"
4794
+ #~ msgstr "Potwierdzenie"
4795
+
4796
+ #~ msgid "Pending"
4797
+ #~ msgstr "Oczekuje"
4798
+
4799
+ #~ msgid "Confirmed"
4800
+ #~ msgstr "Potwierdzone"
4801
+
4802
+ #~ msgid "Rejected"
4803
+ #~ msgstr "Odrzucone"
4804
+
4805
+ #~ msgid "Verification"
4806
+ #~ msgstr "Potwierdzenie"
4807
+
4808
+ #~ msgid "Waiting"
4809
+ #~ msgstr "Oczekuje"
4810
+
4811
+ #~ msgid "Canceled"
4812
+ #~ msgstr "Anulowane"
4813
+
4814
+ #~ msgid "Payment"
4815
+ #~ msgstr "Płatność"
4816
+
4817
+ #~ msgid "Gateway"
4818
+ #~ msgstr "Bramka"
4819
+
4820
+ #~ msgid "Unknown"
4821
+ #~ msgstr "Nieznane"
4822
+
4823
+ #~ msgid "%s to %s"
4824
+ #~ msgstr "%s do%s"
4825
+
4826
+ #~ msgid "Book Date"
4827
+ #~ msgstr "Data rezerwacji"
4828
+
4829
+ #~ msgid "Confirm"
4830
+ #~ msgstr "Potwierdź"
4831
+
4832
+ #~ msgid "Reject"
4833
+ #~ msgstr "Odrzuć"
4834
+
4835
+ #~ msgid "Security nonce is missing."
4836
+ #~ msgstr "Kod bezpieczeństwa nie został wprowadzony."
4837
+
4838
+ #~ msgid "Security nonce is invalid."
4839
+ #~ msgstr "Kod bezpieczeństwa nie jest poprawny."
4840
+
4841
+ #~ msgid "Invalid request."
4842
+ #~ msgstr "Nieprawidłowe żądanie."
4843
+
4844
+ #~ msgid "Please select some tickets!"
4845
+ #~ msgstr "Proszę wybrać bilety!"
4846
+
4847
+ #~ msgid "Captcha is invalid. Please try again."
4848
+ #~ msgstr "Nieprawidłowy kod. Spróbuj ponownie."
4849
+
4850
+ #~ msgid "Coupon"
4851
+ #~ msgstr "Kupon"
4852
+
4853
+ #~ msgid "All Coupons"
4854
+ #~ msgstr "Wszystkie kupony"
4855
+
4856
+ #~ msgid "Edit Coupon"
4857
+ #~ msgstr "Edytuj kupon"
4858
+
4859
+ #~ msgid "View Coupon"
4860
+ #~ msgstr "Zobacz kupon"
4861
+
4862
+ #~ msgid "Update Coupon"
4863
+ #~ msgstr "Aktualizuj kupon"
4864
+
4865
+ #~ msgid "Add New Coupon"
4866
+ #~ msgstr "Dodaj nowy kupon"
4867
+
4868
+ #~ msgid "New Coupon Name"
4869
+ #~ msgstr "Nazwa nowego kuponu"
4870
+
4871
+ #~ msgid "Popular Coupons"
4872
+ #~ msgstr "Popularne kupony"
4873
+
4874
+ #~ msgid "Search Coupons"
4875
+ #~ msgstr "Szukaj kuponu"
4876
+
4877
+ #~ msgid "Discount Type"
4878
+ #~ msgstr "Rodzaj rabatu"
4879
+
4880
+ #~ msgid ""
4881
+ #~ "Discount percent, considered as amount if you set the discount type to "
4882
+ #~ "amount"
4883
+ #~ msgstr ""
4884
+ #~ "Procent zniżki interpretowany jako ilość jeżeli wybierzesz rodzaj zniżki "
4885
+ #~ "jako ilość"
4886
+
4887
+ #~ msgid "Usage Limit"
4888
+ #~ msgstr "Wykorzystanie limitu"
4889
+
4890
+ #~ msgid "Insert -1 for unlimited usage"
4891
+ #~ msgstr "Wstaw -1 dla braku limitu"
4892
+
4893
+ #~ msgid "Expiration Date"
4894
+ #~ msgstr "Termin ważności"
4895
+
4896
+ #~ msgid "Name/Code"
4897
+ #~ msgstr "Nazwa / Kod"
4898
+
4899
+ #~ msgid "Discount coupon is invalid!"
4900
+ #~ msgstr "Wprowadzony kupon rabatowy jest nieprawidłowy!"
4901
+
4902
+ #~ msgid "Discount coupon usage limit reached!"
4903
+ #~ msgstr "Przekroczono limit użycia kuponu!"
4904
+
4905
+ #~ msgid "Coupon is valid and you get %s discount."
4906
+ #~ msgstr "Kupon jest ważny i otrzymujesz % s zniżki."
4907
+
4908
+ #~ msgid "Request is invalid!"
4909
+ #~ msgstr "Nieprawidłowe żądanie!"
4910
+
4911
+ #~ msgid "Stripe"
4912
+ #~ msgstr "Stripe"
4913
+
4914
+ #~ msgid "There is no attendee for booking!"
4915
+ #~ msgstr "Nie ma uczestnika do rezerwacji!"
4916
+
4917
+ #~ msgid "MEC Transaction ID: %s"
4918
+ #~ msgstr "ID transakcji: %s"
4919
+
4920
+ #~ msgid "Card Number"
4921
+ #~ msgstr "Numer karty"
4922
+
4923
+ #~ msgid "CVC"
4924
+ #~ msgstr "CVC"
4925
+
4926
+ #~ msgid "Expiration (MM/YYYY)"
4927
+ #~ msgstr "Data wygaśnięcia (MM/RRRR)"
4928
+
4929
+ #~ msgid "Month"
4930
+ #~ msgstr "Miesiąc"
4931
+
4932
+ #~ msgid "Year"
4933
+ #~ msgstr "Rok"
4934
+
4935
+ #~ msgid "Pay"
4936
+ #~ msgstr "Zapłać"
4937
+
4938
+ #~ msgid "Comment"
4939
+ #~ msgstr "Komentarz"
4940
+
4941
+ #~ msgid "HTML allowed."
4942
+ #~ msgstr "HTML dozwolony."
4943
+
4944
+ #~ msgid "Publishable Key"
4945
+ #~ msgstr "Klucz do publikacji"
4946
+
4947
+ #~ msgid "Pay Locally"
4948
+ #~ msgstr "Zapłać lokalnie"
4949
+
4950
+ #~ msgid "PayPal Express"
4951
+ #~ msgstr "PayPal Express"
4952
+
4953
+ #~ msgid "Business Account"
4954
+ #~ msgstr "Konto biznesowe"
4955
+
4956
+ #~ msgid "Normally PayPal Email."
4957
+ #~ msgstr "PayPal Email."
4958
+
4959
+ #~ msgid "Mode"
4960
+ #~ msgstr "Tryb"
4961
+
4962
+ #~ msgid "Live"
4963
+ #~ msgstr "Na żywo"
4964
+
4965
+ #~ msgid "Sandbox"
4966
+ #~ msgstr "Środowisko testowe"
4967
+
4968
+ #~ msgid "Waiting for getting response from gateway."
4969
+ #~ msgstr "Oczekiwanie na uzyskanie odpowiedzi od bramy."
4970
+
4971
+ #~ msgid "Payment was invalid! Booking failed."
4972
+ #~ msgstr "Płatność jest nieprawidłowa! Rezerwacja nie powiodła się."
4973
+
4974
+ #~ msgid "PayPal Credit Card"
4975
+ #~ msgstr "Płatności kartą kredytową PayPal"
4976
+
4977
+ #~ msgid "API Username"
4978
+ #~ msgstr "Nazwa użytkownika API"
4979
+
4980
+ #~ msgid "API Password"
4981
+ #~ msgstr "Hasło API"
4982
+
4983
+ #~ msgid "API Signature"
4984
+ #~ msgstr "Podpis API"
4985
+
4986
+ #~ msgid "First name"
4987
+ #~ msgstr "Imię"
4988
+
4989
+ #~ msgid "Last name"
4990
+ #~ msgstr "Nazwisko"
4991
+
4992
+ #~ msgid "Card Type"
4993
+ #~ msgstr "Typ karty"
4994
+
4995
+ #~ msgid "Visa"
4996
+ #~ msgstr "Visa"
4997
+
4998
+ #~ msgid "MasterCard"
4999
+ #~ msgstr "MasterCard"
5000
+
5001
+ #~ msgid "Discover"
5002
+ #~ msgstr "Discover"
5003
+
5004
+ #~ msgid "American Express"
5005
+ #~ msgstr "American Express"
5006
+
5007
+ #~ msgid "CC Number"
5008
+ #~ msgstr "Numer CC"
5009
+
5010
+ #~ msgid "CVV2"
5011
+ #~ msgstr "CVV2"
5012
+
5013
+ #~ msgid "Payment is invalid."
5014
+ #~ msgstr "Płatność jest nieprawidłowa."
5015
+
5016
+ #~ msgid "Pay by WooCommerce"
5017
+ #~ msgstr "Zapłacić z WooCommerce"
5018
+
5019
+ #~ msgid "Booking fee for %s"
5020
+ #~ msgstr "Opłata za rezerwację dla %s"
5021
+
5022
+ #~ msgid "Your order is created. Please proceed with checkout."
5023
+ #~ msgstr "Zamówienie jest tworzone. Przejdź do kasy."
5024
+
5025
+ #~ msgid "WooCommerce must be installed and activated first."
5026
+ #~ msgstr "WooCommerce musi być zainstalowany i aktywowany."
5027
+
5028
+ #~ msgid "Automatically complete WC orders"
5029
+ #~ msgstr "Automatycznie realizuj zamówienia WooCommerce"
5030
+
5031
+ #~ msgid "It applies only to the orders that are related to MEC."
5032
+ #~ msgstr "Stosuje się tylko do zamówień, które są związane z MEC."
5033
+
5034
  #~ msgid "Attendee"
5035
  #~ msgstr "Uczestnik"
5036
 
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: 2018-07-24 11:59+0430\n"
6
- "PO-Revision-Date: 2018-08-21 16:25+0430\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
@@ -21,7 +21,6 @@ msgstr ""
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
24
- #. Plugin Name of the plugin/theme
25
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
26
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
27
  #: app/widgets/MEC.php:23
@@ -32,8 +31,8 @@ msgstr "Calendário de Eventos Moderno"
32
  msgid "Content"
33
  msgstr "Conteúdo"
34
 
35
- #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/modern-events-calendar-lite.php:209
36
- #: app/features/modern-events-calendar-lite.php:238 app/features/modern-events-calendar-lite.php:264
37
  msgid "Shortcode"
38
  msgstr "Código Curto"
39
 
@@ -41,369 +40,29 @@ msgstr "Código Curto"
41
  msgid "Select from predefined shortcodes"
42
  msgstr "Selecione a partir de códigos curtos pré-definidos"
43
 
44
- #: app/crons/booking-reminder.php:33
45
- msgid "Booking reminder notification is not enabled!"
46
- msgstr ""
47
-
48
- #: app/crons/booking-reminder.php:43
49
- msgid "Booking module is not enabled!"
50
- msgstr ""
51
-
52
- #: app/crons/booking-reminder.php:52
53
- msgid "Inserted days are not valid. Please try 1,3 as a valid value!"
54
- msgstr ""
55
-
56
- #: app/crons/booking-reminder.php:104
57
- #, php-format
58
- msgid "%s reminders sent."
59
- msgstr ""
60
-
61
- #: app/crons/f-import.php:32
62
- msgid "Auto Facebook import is disabled!"
63
- msgstr ""
64
-
65
- #: app/crons/f-import.php:35 app/features/ix.php:2754 app/features/ix.php:2794
66
- msgid "Please insert your facebook page's link."
67
- msgstr "Insira o link da sua página do facebook."
68
-
69
- #: app/crons/f-import.php:43 app/features/ix.php:2762 app/features/ix.php:2799
70
- msgid ""
71
- "We couldn't recognize your Facebook page. Please check it and provide us a "
72
- "valid facebook page link."
73
- msgstr ""
74
- "Não foi possível reconhecer sua página do Facebook. Confira e forneça um "
75
- "link válido para a página do facebook."
76
-
77
- #: app/crons/f-import.php:198
78
- #, php-format
79
- msgid "%s facebook events imported/updated."
80
- msgstr ""
81
-
82
- #: app/crons/g-export.php:37 app/features/ix.php:2527
83
- msgid "All of Client App, Client Secret and Calendar ID are required!"
84
- msgstr ""
85
- "Todos os aplicativos, segredo e IDs do calendário do cliente são necessários!"
86
-
87
- #: app/crons/g-export.php:234 app/features/ix.php:2722
88
- #, php-format
89
- msgid "%s events added to Google Calendar successfully."
90
- msgstr "Eventos %s adicionados ao Google Calendário com sucesso."
91
-
92
- #: app/crons/g-export.php:235 app/features/ix.php:2723
93
- #, php-format
94
- msgid "%s previously added events get updated."
95
- msgstr "Os eventos %s adicionados anteriormente foram atualizados."
96
-
97
- #: app/crons/g-export.php:236 app/features/ix.php:2724
98
- #, php-format
99
- msgid "%s events failed to add for following reasons: %s"
100
- msgstr "Os eventos %s não foram adicionados pelas seguintes razões: %s"
101
-
102
- #: app/crons/g-import.php:32
103
- #, fuzzy
104
- msgid "Auto Google Calendar import is disabled!"
105
- msgstr "Adicionar ao Calendário do Google"
106
-
107
- #: app/crons/g-import.php:37 app/features/ix.php:1908 app/features/ix.php:1966
108
- msgid "Both of API key and Calendar ID are required!"
109
- msgstr "Tanto a chave API como o ID do Calendário são obrigatórios!"
110
-
111
- #: app/crons/g-import.php:370
112
- #, fuzzy, php-format
113
- msgid "%s google events imported/updated."
114
- msgstr "Os eventos %s adicionados anteriormente foram atualizados."
115
-
116
- #: app/features/books.php:105 app/features/books.php:110
117
- #: app/features/ix/export.php:37
118
- msgid "Bookings"
119
- msgstr "Reservas"
120
-
121
- #: app/features/books.php:106 app/features/books.php:328
122
- #: app/features/contextual.php:308 app/features/events.php:253
123
- #: app/features/mec/settings.php:138 app/features/mec/settings.php:924
124
- msgid "Booking"
125
- msgstr "Reserva"
126
-
127
- #: app/features/books.php:107 app/features/books.php:108
128
- msgid "Add Booking"
129
- msgstr "Adicionar Reserva"
130
-
131
- #: app/features/books.php:109
132
- msgid "No bookings found!"
133
- msgstr "Nenhuma reserva encontrada!"
134
-
135
- #: app/features/books.php:111
136
- msgid "Edit Bookings"
137
- msgstr "Editar Reservas"
138
-
139
- #: app/features/books.php:112
140
- msgid "No bookings found in Trash!"
141
- msgstr "Nenhuma reserva encontrada na Lixeira!"
142
-
143
- #: app/features/books.php:149
144
- msgid "Book Details"
145
- msgstr "Detalhes da Reserva"
146
-
147
- #: app/features/books.php:150
148
- msgid "Status & Invoice"
149
- msgstr ""
150
-
151
- #: app/features/books.php:176 app/features/books.php:387
152
- #: app/features/books.php:576 app/features/books.php:651
153
- #: app/features/books.php:709
154
- msgid "Confirmation"
155
- msgstr "Confirmação"
156
-
157
- #: app/features/books.php:178 app/features/books.php:578
158
- #: app/features/books.php:602 app/features/books.php:894
159
- msgid "Pending"
160
- msgstr "Pendente"
161
-
162
- #: app/features/books.php:179 app/features/books.php:577
163
- #: app/features/books.php:892
164
- msgid "Confirmed"
165
- msgstr "Confirmado"
166
-
167
- #: app/features/books.php:180 app/features/books.php:579
168
- #: app/features/books.php:893
169
- msgid "Rejected"
170
- msgstr "Recusado"
171
-
172
- #: app/features/books.php:184 app/features/books.php:388
173
- #: app/features/books.php:585 app/features/books.php:651
174
- #: app/features/books.php:709
175
- msgid "Verification"
176
- msgstr "Verificação"
177
-
178
- #: app/features/books.php:186 app/features/books.php:587
179
- #: app/features/books.php:909
180
- msgid "Waiting"
181
- msgstr "Aguardando"
182
-
183
- #: app/features/books.php:187 app/features/books.php:586
184
- #: app/features/books.php:907 app/features/mec/settings.php:1173
185
- #: app/features/mec/settings.php:1238 app/features/mec/settings.php:1255
186
- msgid "Verified"
187
- msgstr "Verificado"
188
-
189
- #: app/features/books.php:188 app/features/books.php:588
190
- #: app/features/books.php:908
191
- msgid "Canceled"
192
- msgstr "Cancelado"
193
-
194
- #: app/features/books.php:203
195
- #, php-format
196
- msgid "Here, you can %s invoice of %s transaction."
197
- msgstr ""
198
-
199
- #: app/features/books.php:203
200
- msgid "download"
201
- msgstr ""
202
-
203
- #: app/features/books.php:246
204
- msgid "It will create a new booking under \"Pay Locally\" gateway."
205
- msgstr ""
206
-
207
- #: app/features/books.php:248 app/features/contextual.php:62
208
- #: app/features/events.php:910 app/features/mec/gateways.php:29
209
- #: app/features/mec/messages.php:29 app/features/mec/notifications.php:28
210
- #: app/features/mec/regform.php:28 app/features/mec/regform.php:88
211
- #: app/features/mec/settings.php:180 app/features/mec/styles.php:29
212
- #: app/features/mec/styling.php:55 app/features/mec/support.php:27
213
- msgid "Booking Form"
214
- msgstr "Formulário de Reserva"
215
-
216
- #: app/features/books.php:251 app/features/books.php:330
217
- #: app/features/books.php:385 app/features/books.php:569
218
- #: app/features/books.php:651 app/features/books.php:709
219
- #: app/features/events.php:123
220
- #: app/features/mec/meta_boxes/display_options.php:678
221
- #: app/features/mec/meta_boxes/display_options.php:716
222
- #: app/features/mec/meta_boxes/display_options.php:745
223
- #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
224
- #: app/skins/yearly_view/tpl.php:69
225
- msgid "Event"
226
- msgstr "Evento"
227
-
228
- #: app/features/books.php:315
229
- msgid "Payment"
230
- msgstr "Pagamento"
231
-
232
- #: app/features/books.php:317 app/features/books.php:386
233
- #: app/features/events.php:756 app/features/events.php:788
234
- msgid "Price"
235
- msgstr "Preço"
236
-
237
- #: app/features/books.php:321 app/features/gateways.php:148
238
- msgid "Gateway"
239
- msgstr "Meio de Pagamento"
240
-
241
- #: app/features/books.php:322 app/features/books.php:326
242
- #: app/features/books.php:331 app/features/books.php:335
243
- #: app/features/books.php:352 app/features/books.php:690
244
- #: app/features/books.php:748
245
- msgid "Unknown"
246
- msgstr "Desconhecido"
247
-
248
- #: app/features/books.php:325 app/features/books.php:389
249
- #: app/features/books.php:651 app/features/books.php:709
250
- #: app/libraries/main.php:1544
251
- msgid "Transaction ID"
252
- msgstr "ID da Transação"
253
-
254
- #: app/features/books.php:334 app/features/books.php:651
255
- #: app/features/books.php:709 app/features/books.php:1099
256
- #: app/features/events.php:508 app/features/events.php:580
257
- #: app/features/fes/form.php:354 app/libraries/main.php:1538
258
- #: app/modules/booking/steps/tickets.php:20
259
- #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
260
- #: app/skins/single/default.php:268 app/skins/single/m1.php:16
261
- #: app/skins/single/modern.php:146
262
- msgid "Date"
263
- msgstr "Data"
264
-
265
- #: app/features/books.php:335
266
- #, php-format
267
- msgid "%s to %s"
268
- msgstr "%s para %s"
269
-
270
- #: app/features/books.php:338 app/features/mec/notifications.php:140
271
- #: app/features/mec/notifications.php:177
272
- #: app/features/mec/notifications.php:214
273
- #: app/features/mec/notifications.php:255
274
- #: app/features/mec/notifications.php:307
275
- msgid "Total Attendees"
276
- msgstr ""
277
-
278
- #: app/features/books.php:341 app/features/books.php:384
279
- #: app/libraries/main.php:1553
280
- msgid "Attendees"
281
- msgstr ""
282
-
283
- #: app/features/books.php:347 app/features/books.php:651
284
- #: app/features/books.php:709 app/features/books.php:1114
285
- #: app/features/events.php:371 app/features/events.php:945
286
- #: app/features/fes/form.php:437 app/features/mec/regform.php:118
287
- #: app/features/organizers.php:110 app/features/organizers.php:150
288
- #: app/libraries/main.php:1037 app/libraries/main.php:1100
289
- #: app/libraries/main.php:1558 app/libraries/main.php:1870
290
- #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
291
- #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
292
- #: app/skins/single/default.php:210 app/skins/single/default.php:412
293
- #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
294
- #: app/skins/single/modern.php:38
295
- msgid "Email"
296
- msgstr "E-mail"
297
-
298
- #: app/features/books.php:351 app/features/books.php:431
299
- #: app/features/books.php:651 app/features/books.php:709
300
- #: app/features/books.php:1106 app/libraries/main.php:1559
301
- #: app/libraries/main.php:3985
302
- msgid "Ticket"
303
- msgstr "Bilhete"
304
-
305
- #: app/features/books.php:358 app/libraries/notifications.php:516
306
- msgid "Yes"
307
- msgstr ""
308
-
309
- #: app/features/books.php:358 app/libraries/notifications.php:516
310
- msgid "No"
311
- msgstr ""
312
-
313
- #: app/features/books.php:390
314
- msgid "Book Date"
315
- msgstr "Data da Reserva"
316
-
317
- #: app/features/books.php:602
318
- msgid "Confirm"
319
- msgstr "Confirmar"
320
-
321
- #: app/features/books.php:602
322
- msgid "Reject"
323
- msgstr "Recusar"
324
-
325
- #: app/features/books.php:602 app/features/events.php:1569
326
- #: app/features/events.php:1570
327
- msgid "CSV Export"
328
- msgstr "Exportar CSV"
329
-
330
- #: app/features/books.php:602 app/features/events.php:1572
331
- #: app/features/events.php:1573
332
- msgid "MS Excel Export"
333
- msgstr "Exportar para MS Excel"
334
-
335
- #: app/features/books.php:651 app/features/books.php:709
336
- #: app/features/events.php:1631 app/features/events.php:1675
337
- #: app/features/ix.php:2328 app/features/ix.php:2369
338
- #: app/features/labels.php:150 app/features/locations.php:228
339
- #: app/features/organizers.php:198
340
- msgid "ID"
341
- msgstr "ID"
342
-
343
- #: app/features/books.php:651 app/features/books.php:709
344
- msgid "Total Price"
345
- msgstr ""
346
-
347
- #: app/features/books.php:651 app/features/books.php:709
348
- #: app/features/books.php:1113 app/features/events.php:370
349
- #: app/features/fes/form.php:441 app/features/gateways.php:503
350
- #: app/features/labels.php:151 app/features/organizers.php:268
351
- #: app/libraries/main.php:1557 app/libraries/notifications.php:505
352
- #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
353
- msgid "Name"
354
- msgstr "Nome"
355
-
356
- #: app/features/books.php:923
357
- msgid "Security nonce is missing."
358
- msgstr "O nonce de segurança está faltando."
359
-
360
- #: app/features/books.php:926
361
- msgid "Security nonce is invalid."
362
- msgstr "O nonce de segurança é inválido."
363
-
364
- #: app/features/books.php:935
365
- msgid "Invalid request."
366
- msgstr "Solicitação inválida."
367
-
368
- #: app/features/books.php:963
369
- msgid "Please select some tickets!"
370
- msgstr "Por favor, selecione alguns bilhetes!"
371
-
372
- #: app/features/books.php:969
373
- msgid "Captcha is invalid. Please try again."
374
- msgstr "O captcha é inválido. Por favor, tente novamente."
375
-
376
- #: app/features/books.php:1015
377
- msgid "Please fill the form correctly. Email and Name fields are required!"
378
- msgstr ""
379
-
380
- #: app/features/books.php:1085
381
- msgid "Event is invalid. Please select an event."
382
- msgstr ""
383
-
384
- #: app/features/books.php:1093
385
- msgid ""
386
- "No ticket ro future dates found for this event! Please try another event."
387
- msgstr ""
388
-
389
- #: app/features/books.php:1175
390
- msgid "Attendee Information"
391
- msgstr ""
392
-
393
  #: app/features/colors.php:50 app/features/fes/form.php:566
394
- #: app/features/mec/settings.php:842
395
  msgid "Event Color"
396
  msgstr "Cor do Evento"
397
 
398
- #: app/features/contextual.php:55 app/features/modern-events-calendar-lite.php:195
399
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
400
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
401
- #: app/features/mec/settings.php:29 app/features/mec/settings.php:245
402
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
403
  #: app/features/mec/support.php:18
404
  msgid "Settings"
405
  msgstr "Configurações"
406
 
 
 
 
 
 
 
 
 
 
407
  #: app/features/contextual.php:63
408
  msgid ""
409
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
@@ -416,7 +75,7 @@ msgstr ""
416
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
417
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
418
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
419
- #: app/features/mec/settings.php:187 app/features/mec/styles.php:36
420
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
421
  msgid "Payment Gateways"
422
  msgstr "Gateways de Pagamento"
@@ -431,7 +90,7 @@ msgstr ""
431
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
432
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
433
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
434
- #: app/features/mec/settings.php:197 app/features/mec/styles.php:45
435
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
436
  msgid "Notifications"
437
  msgstr "Notificações"
@@ -492,234 +151,102 @@ msgid ""
492
  "\"0\" allowfullscreen></iframe>"
493
  msgstr ""
494
 
495
- #: app/features/contextual.php:117 app/features/mec/settings.php:36
496
- #: app/features/mec/settings.php:247
497
  msgid "General Options"
498
  msgstr "Opções Gerais"
499
 
500
- #: app/features/contextual.php:139 app/features/mec/settings.php:48
501
- #: app/features/mec/settings.php:399
502
  msgid "Slugs/Permalinks"
503
  msgstr "Slugs/Links Permanentes"
504
 
505
- #: app/features/contextual.php:152 app/features/mec/settings.php:54
506
- #: app/features/mec/settings.php:419
507
  msgid "Event Details/Single Event Page"
508
  msgstr "Detalhes do Evento / Página Individual"
509
 
510
- #: app/features/contextual.php:166 app/features/mec/settings.php:60
511
- #: app/features/mec/settings.php:451
512
  msgid "Currency Options"
513
  msgstr "Opções de Moeda"
514
 
515
- #: app/features/contextual.php:182 app/features/mec/settings.php:66
516
- #: app/features/mec/settings.php:503
517
  msgid "Google Maps Options"
518
  msgstr "Opções do Google Mapas"
519
 
520
- #: app/features/contextual.php:244 app/features/mec/settings.php:72
521
- #: app/features/mec/settings.php:577
522
  msgid "Google Recaptcha Options"
523
  msgstr "Opções do Google Recaptcha"
524
 
525
- #: app/features/contextual.php:258 app/features/mec/settings.php:102
526
- #: app/features/mec/settings.php:695
527
  msgid "Countdown Options"
528
  msgstr "Opções de Contagem Regressiva"
529
 
530
- #: app/features/contextual.php:268 app/features/mec/settings.php:108
531
- #: app/features/mec/settings.php:716
532
  msgid "Social Networks"
533
  msgstr "Redes Sociais"
534
 
535
- #: app/features/contextual.php:278 app/features/mec/settings.php:114
536
- #: app/features/mec/settings.php:741
537
  msgid "Next Event Module"
538
  msgstr "Módulo Próximo Evento"
539
 
540
- #: app/features/contextual.php:286 app/features/mec/settings.php:120
541
- #: app/features/mec/settings.php:769
542
  msgid "Frontend Event Submission"
543
  msgstr "Envio de Evento do Site (parte da frente)"
544
 
545
  #: app/features/contextual.php:298 app/features/events.php:570
546
- #: app/features/mec/settings.php:126
547
  msgid "Exceptional Days"
548
  msgstr "Dias Excepcionais"
549
 
550
- #: app/features/contextual.php:318 app/features/coupons.php:76
551
- #: app/features/coupons.php:78 app/features/mec/settings.php:144
552
- #: app/features/mec/settings.php:1014
 
 
 
 
553
  msgid "Coupons"
554
  msgstr "Cupons"
555
 
556
- #: app/features/contextual.php:326 app/features/mec/settings.php:156
557
- #: app/features/mec/settings.php:1096
558
  msgid "BuddyPress Integration"
559
  msgstr "Integração com BuddyPress"
560
 
561
- #: app/features/contextual.php:334 app/features/mec/settings.php:162
562
- #: app/features/mec/settings.php:1126
563
  msgid "Mailchimp Integration"
564
  msgstr "Integração com Mailchimp"
565
 
566
- #: app/features/contextual.php:346 app/features/mec/settings.php:168
567
- #: app/features/mec/settings.php:1162
568
  msgid "MEC Activation"
569
  msgstr "Ativação CEM"
570
 
571
- #: app/features/coupons.php:79
572
- msgid "Coupon"
573
- msgstr "Cupom"
574
-
575
- #: app/features/coupons.php:80
576
- msgid "All Coupons"
577
- msgstr "Todos os Cupons"
578
-
579
- #: app/features/coupons.php:81
580
- msgid "Edit Coupon"
581
- msgstr "Editar Cupom"
582
-
583
- #: app/features/coupons.php:82
584
- msgid "View Coupon"
585
- msgstr "Ver Cupom"
586
-
587
- #: app/features/coupons.php:83
588
- msgid "Update Coupon"
589
- msgstr "Atualizar Cupom"
590
-
591
- #: app/features/coupons.php:84
592
- msgid "Add New Coupon"
593
- msgstr "Adicionar Novo Cupom"
594
-
595
- #: app/features/coupons.php:85
596
- msgid "New Coupon Name"
597
- msgstr "Nome do Novo Cupom"
598
-
599
- #: app/features/coupons.php:86
600
- msgid "Popular Coupons"
601
- msgstr "Cupons Populares"
602
-
603
- #: app/features/coupons.php:87
604
- msgid "Search Coupons"
605
- msgstr "Pesquisar Cupons"
606
-
607
- #: app/features/coupons.php:116 app/features/coupons.php:177
608
- msgid "Discount Type"
609
- msgstr "Tipo de Desconto"
610
-
611
- #: app/features/coupons.php:120 app/features/coupons.php:179
612
- #: app/features/events.php:854 app/features/events.php:879
613
- #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
614
- msgid "Percent"
615
- msgstr "Porcentagem"
616
-
617
- #: app/features/coupons.php:121 app/features/coupons.php:180
618
- #: app/features/events.php:849 app/features/events.php:874
619
- #: app/features/mec/settings.php:1054 app/features/mec/settings.php:1077
620
- msgid "Amount"
621
- msgstr "Quantidade"
622
-
623
- #: app/features/coupons.php:127 app/features/coupons.php:184
624
- #: app/features/coupons.php:248 app/features/coupons.php:322
625
- #: app/libraries/book.php:505
626
- msgid "Discount"
627
- msgstr "Desconto"
628
-
629
- #: app/features/coupons.php:131 app/features/coupons.php:186
630
- msgid ""
631
- "Discount percent, considered as amount if you set the discount type to amount"
632
- msgstr ""
633
- "Percentual de desconto, considerada como quantidade se você definir o tipo "
634
- "de desconto para quantidade"
635
-
636
- #: app/features/coupons.php:136 app/features/coupons.php:189
637
- msgid "Usage Limit"
638
- msgstr "Limite de Uso"
639
-
640
- #: app/features/coupons.php:140 app/features/coupons.php:191
641
- msgid "Insert -1 for unlimited usage"
642
- msgstr "Digite -1 para uso ilimitado"
643
-
644
- #: app/features/coupons.php:145 app/features/coupons.php:194
645
- #: app/features/gateways.php:1202
646
- msgid "Expiration Date"
647
- msgstr "Data da Expiração"
648
-
649
- #: app/features/coupons.php:149 app/features/coupons.php:196
650
- msgid "Leave it empty for no expiration!"
651
- msgstr ""
652
-
653
- #: app/features/coupons.php:154 app/features/coupons.php:199
654
- msgid "Target Event"
655
- msgstr ""
656
-
657
- #: app/features/coupons.php:158 app/features/coupons.php:201
658
- #: app/features/events.php:127
659
- msgid "All Events"
660
- msgstr "Todos os Eventos"
661
-
662
- #: app/features/coupons.php:246
663
- msgid "Name/Code"
664
- msgstr "Nome/Código"
665
-
666
- #: app/features/coupons.php:247 app/features/events.php:632
667
- #: app/features/events.php:644 app/features/events.php:752
668
- #: app/features/events.php:784
669
- msgid "Description"
670
- msgstr "Descrição"
671
-
672
- #: app/features/coupons.php:249
673
- #: app/features/mec/meta_boxes/display_options.php:85
674
- #: app/features/mec/meta_boxes/display_options.php:194
675
- #: app/features/mec/meta_boxes/display_options.php:244
676
- #: app/features/mec/meta_boxes/display_options.php:632
677
- #: app/features/mec/meta_boxes/display_options.php:806
678
- #: app/features/mec/meta_boxes/display_options.php:877
679
- msgid "Limit"
680
- msgstr "Limite"
681
-
682
- #: app/features/coupons.php:250 app/features/labels.php:153
683
- #: app/features/locations.php:231 app/features/organizers.php:201
684
- #: app/modules/booking/steps/tickets.php:36
685
- msgid "Count"
686
- msgstr "Contagem"
687
-
688
- #: app/features/coupons.php:280 app/features/events.php:715
689
- #: app/features/events.php:769 app/features/events.php:801
690
- #: app/modules/booking/default.php:81 app/modules/booking/steps/tickets.php:38
691
- #: app/skins/available_spot/tpl.php:84
692
- msgid "Unlimited"
693
- msgstr "Ilimitado"
694
-
695
- #: app/features/coupons.php:309
696
- msgid "Discount coupon is invalid!"
697
- msgstr "Cupom de desconto é inválido!"
698
-
699
- #: app/features/coupons.php:311
700
- msgid "Discount coupon usage limit reached!"
701
- msgstr "O limite de uso do cupom de desconto foi alcançado!"
702
-
703
- #: app/features/coupons.php:313
704
- msgid "Discount coupon is expired!"
705
- msgstr ""
706
-
707
- #: app/features/coupons.php:315
708
- msgid "Discount is not valid for this event!"
709
- msgstr ""
710
-
711
- #: app/features/coupons.php:326
712
- #, php-format
713
- msgid "Coupon is valid and you get %s discount."
714
- msgstr "O cupom é válido e você recebe %s de desconto."
715
-
716
  #: app/features/events.php:122 app/features/ix/export.php:33
717
- #: app/features/mec/dashboard.php:85 app/skins/daily_view/tpl.php:79
718
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
719
  msgid "Events"
720
  msgstr "Eventos"
721
 
722
- #: app/features/events.php:124 app/features/modern-events-calendar-lite.php:188
 
 
 
 
 
 
 
 
 
723
  msgid "Add Event"
724
  msgstr "Adicionar Evento"
725
 
@@ -732,6 +259,10 @@ msgstr "Adicionar Novo Evento"
732
  msgid "No events found!"
733
  msgstr "Nenhum evento encontrado!"
734
 
 
 
 
 
735
  #: app/features/events.php:128
736
  msgid "Edit Event"
737
  msgstr ""
@@ -754,7 +285,7 @@ msgstr "Nenhum evento encontrado na Lixeira!"
754
  #: app/features/mec/meta_boxes/search_form.php:285
755
  #: app/features/mec/meta_boxes/search_form.php:325
756
  #: app/features/mec/meta_boxes/search_form.php:372
757
- #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3953
758
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
759
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
760
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
@@ -762,8 +293,8 @@ msgid "Category"
762
  msgstr "Categoria"
763
 
764
  #: app/features/events.php:143 app/features/fes/form.php:518
765
- #: app/features/modern-events-calendar-lite.php:190 app/features/mec/meta_boxes/filter.php:70
766
- #: app/libraries/main.php:3952
767
  msgid "Categories"
768
  msgstr "Categorias"
769
 
@@ -830,12 +361,12 @@ msgstr "Detalhes do Evento"
830
  #: app/features/events.php:286 app/features/events.php:1631
831
  #: app/features/events.php:1675 app/features/fes/form.php:479
832
  #: app/features/ix.php:2328 app/features/ix.php:2369
833
- #: app/features/mec/settings.php:818 app/libraries/main.php:3983
834
  msgid "Event Cost"
835
  msgstr "Custo do Evento"
836
 
837
  #: app/features/events.php:289 app/features/fes/form.php:482
838
- #: app/libraries/main.php:3984 app/skins/single/default.php:102
839
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
840
  #: app/skins/single/modern.php:179
841
  msgid "Cost"
@@ -849,6 +380,26 @@ msgstr "Nota para o revisor"
849
  msgid "Guest Data"
850
  msgstr ""
851
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
852
  #: app/features/events.php:375 app/features/fes/form.php:221
853
  msgid "Date and Time"
854
  msgstr "Data e Hora"
@@ -858,7 +409,7 @@ msgstr "Data e Hora"
858
  #: app/features/events.php:1675 app/features/fes/form.php:225
859
  #: app/features/fes/form.php:229 app/features/ix.php:2328
860
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
861
- #: app/features/mec/dashboard.php:262
862
  #: app/features/mec/meta_boxes/display_options.php:42
863
  #: app/features/mec/meta_boxes/display_options.php:129
864
  #: app/features/mec/meta_boxes/display_options.php:225
@@ -890,7 +441,7 @@ msgstr "PM"
890
  #: app/features/events.php:1675 app/features/fes/form.php:265
891
  #: app/features/fes/form.php:269 app/features/ix.php:2328
892
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
893
- #: app/features/mec/dashboard.php:263
894
  msgid "End Date"
895
  msgstr "Data de Término"
896
 
@@ -927,7 +478,7 @@ msgid "Repeats"
927
  msgstr "Repetições"
928
 
929
  #: app/features/events.php:481 app/features/fes/form.php:327
930
- #: app/features/mec/dashboard.php:265 app/skins/full_calendar/tpl.php:48
931
  msgid "Daily"
932
  msgstr "Diariamente"
933
 
@@ -949,12 +500,12 @@ msgid "Weekly"
949
  msgstr "Semanalmente"
950
 
951
  #: app/features/events.php:486 app/features/fes/form.php:332
952
- #: app/features/mec/dashboard.php:266 app/skins/full_calendar/tpl.php:46
953
  msgid "Monthly"
954
  msgstr "Mensalmente"
955
 
956
  #: app/features/events.php:487 app/features/fes/form.php:333
957
- #: app/features/mec/dashboard.php:267 app/skins/full_calendar/tpl.php:45
958
  msgid "Yearly"
959
  msgstr "Anualmente"
960
 
@@ -1009,6 +560,15 @@ msgstr "Sábado"
1009
  msgid "Sunday"
1010
  msgstr "Domingo"
1011
 
 
 
 
 
 
 
 
 
 
1012
  #: app/features/events.php:509 app/features/events.php:581
1013
  #: app/features/events.php:623 app/features/events.php:743
1014
  #: app/features/events.php:839 app/features/fes/form.php:355
@@ -1055,7 +615,7 @@ msgstr "Excluir determinados dias"
1055
  msgid "Exclude certain days from event occurrence dates."
1056
  msgstr "Excluir determinados dias das datas de ocorrência do evento."
1057
 
1058
- #: app/features/events.php:620 app/features/mec/settings.php:866
1059
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
1060
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
1061
  msgid "Hourly Schedule"
@@ -1076,33 +636,35 @@ msgstr "Para, exemplo, 8:45"
1076
  #: app/features/events.php:631 app/features/events.php:643
1077
  #: app/features/events.php:1449 app/features/events.php:1631
1078
  #: app/features/events.php:1675 app/features/fes/form.php:214
1079
- #: app/features/gateways.php:550 app/features/gateways.php:617
1080
- #: app/features/gateways.php:785 app/features/gateways.php:1076
1081
- #: app/features/gateways.php:1615 app/features/ix.php:2328
1082
- #: app/features/ix.php:2369
1083
  msgid "Title"
1084
  msgstr "Título"
1085
 
 
 
 
 
 
1086
  #: app/features/events.php:633 app/features/events.php:645
1087
  #: app/features/events.php:771 app/features/events.php:803
1088
  #: app/features/events.php:859 app/features/events.php:884
1089
- #: app/features/fes/list.php:72 app/features/mec/settings.php:1064
1090
- #: app/features/mec/settings.php:1087 app/libraries/main.php:1849
1091
- #: app/libraries/main.php:1878 app/libraries/main.php:1907
1092
- #: app/libraries/main.php:1936 app/libraries/main.php:1958
1093
- #: app/libraries/main.php:1989 app/libraries/main.php:2033
1094
- #: app/libraries/main.php:2077 app/libraries/main.php:2124
1095
- #: app/libraries/main.php:2162
1096
  msgid "Remove"
1097
  msgstr "Remover"
1098
 
1099
  #: app/features/events.php:665 app/features/fes/form.php:456
1100
- #: app/features/mec/settings.php:812
1101
  msgid "Event Links"
1102
  msgstr "Links do Evento"
1103
 
1104
  #: app/features/events.php:667 app/features/fes/form.php:458
1105
- #: app/libraries/main.php:3981
1106
  msgid "Event Link"
1107
  msgstr "Link do Evento"
1108
 
@@ -1120,7 +682,7 @@ msgstr ""
1120
  "padrão. Inserir link completo, incluindo http(s)://"
1121
 
1122
  #: app/features/events.php:672 app/features/fes/form.php:463
1123
- #: app/libraries/main.php:3982 app/skins/single/default.php:116
1124
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
1125
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
1126
  msgid "More Info"
@@ -1150,12 +712,18 @@ msgstr ""
1150
  msgid "Total booking limits"
1151
  msgstr "Total de limites de reserva"
1152
 
 
 
 
 
 
 
1153
  #: app/features/events.php:717
1154
  msgid "100"
1155
  msgstr "100"
1156
 
1157
  #: app/features/events.php:735 app/libraries/book.php:59
1158
- #: app/libraries/main.php:3986 app/modules/booking/steps/tickets.php:38
1159
  msgid "Tickets"
1160
  msgstr "Bilhetes"
1161
 
@@ -1170,6 +738,10 @@ msgstr ""
1170
  msgid "Ticket Name"
1171
  msgstr "Nome do Bilhete"
1172
 
 
 
 
 
1173
  #: app/features/events.php:757 app/features/events.php:789
1174
  msgid "Insert 0 for free ticket. Only numbers please."
1175
  msgstr "Insira 0 para ingresso gratuito. Apenas números, por favor."
@@ -1195,12 +767,17 @@ msgid "Inherit from global options"
1195
  msgstr "Herdar de opções globais"
1196
 
1197
  #: app/features/events.php:845 app/features/events.php:870
1198
- #: app/features/mec/settings.php:1050 app/features/mec/settings.php:1073
1199
  msgid "Fee Title"
1200
  msgstr "Título da Taxa"
1201
 
 
 
 
 
 
1202
  #: app/features/events.php:850 app/features/events.php:875
1203
- #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
1204
  msgid ""
1205
  "Fee amount, considered as fixed amount if you set the type to amount "
1206
  "otherwise considered as percentage"
@@ -1208,39 +785,44 @@ msgstr ""
1208
  "Valor da taxa, considerado como valor fixo se você definir o tipo como valor "
1209
  "considerado como porcentagem"
1210
 
 
 
 
 
 
1211
  #: app/features/events.php:855 app/features/events.php:880
1212
- #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
1213
  msgid "Amount (Per Ticket)"
1214
  msgstr ""
1215
 
1216
  #: app/features/events.php:856 app/features/events.php:881
1217
- #: app/features/mec/settings.php:1061 app/features/mec/settings.php:1084
1218
  msgid "Amount (Per Booking)"
1219
  msgstr ""
1220
 
1221
  #: app/features/events.php:944 app/features/mec/regform.php:117
1222
- #: app/libraries/main.php:1841
1223
  msgid "Text"
1224
  msgstr "Texto"
1225
 
1226
  #: app/features/events.php:946 app/features/mec/regform.php:119
1227
  #: app/features/organizers.php:102 app/features/organizers.php:146
1228
- #: app/libraries/main.php:1899
1229
  msgid "Tel"
1230
  msgstr "Telefone"
1231
 
1232
  #: app/features/events.php:947 app/features/mec/regform.php:120
1233
- #: app/libraries/main.php:1928
1234
  msgid "Textarea"
1235
  msgstr "Área de texto"
1236
 
1237
  #: app/features/events.php:948 app/features/mec/regform.php:121
1238
- #: app/libraries/main.php:1981
1239
  msgid "Checkboxes"
1240
  msgstr "Caixas de seleção"
1241
 
1242
  #: app/features/events.php:949 app/features/mec/regform.php:122
1243
- #: app/libraries/main.php:2025
1244
  msgid "Radio Buttons"
1245
  msgstr "Botões Rádio"
1246
 
@@ -1289,17 +871,17 @@ msgstr "Botões Rádio"
1289
  #: app/features/mec/meta_boxes/search_form.php:436
1290
  #: app/features/mec/meta_boxes/search_form.php:443
1291
  #: app/features/mec/meta_boxes/search_form.php:450
1292
- #: app/features/mec/regform.php:123 app/libraries/main.php:2069
1293
  msgid "Dropdown"
1294
  msgstr "Suspenso"
1295
 
1296
  #: app/features/events.php:951 app/features/mec/regform.php:124
1297
- #: app/libraries/main.php:2116
1298
  msgid "Agreement"
1299
  msgstr ""
1300
 
1301
  #: app/features/events.php:952 app/features/mec/regform.php:125
1302
- #: app/libraries/main.php:1957
1303
  msgid "Paragraph"
1304
  msgstr "Parágrafo"
1305
 
@@ -1325,7 +907,7 @@ msgstr ""
1325
  #: app/features/events.php:1675 app/features/ix.php:2328
1326
  #: app/features/ix.php:2369 app/features/locations.php:58
1327
  #: app/features/locations.php:229 app/features/locations.php:281
1328
- #: app/features/locations.php:283 app/features/mec/dashboard.php:99
1329
  #: app/features/mec/meta_boxes/display_options.php:641
1330
  #: app/features/mec/meta_boxes/search_form.php:38
1331
  #: app/features/mec/meta_boxes/search_form.php:85
@@ -1335,8 +917,8 @@ msgstr ""
1335
  #: app/features/mec/meta_boxes/search_form.php:292
1336
  #: app/features/mec/meta_boxes/search_form.php:332
1337
  #: app/features/mec/meta_boxes/search_form.php:379
1338
- #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1532
1339
- #: app/libraries/main.php:3957 app/libraries/skins.php:715
1340
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
1341
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
1342
  #: app/skins/single/modern.php:77
@@ -1345,7 +927,7 @@ msgstr "Localização"
1345
 
1346
  #: app/features/events.php:1451 app/features/events.php:1631
1347
  #: app/features/events.php:1675 app/features/ix.php:2328
1348
- #: app/features/ix.php:2369 app/features/mec/dashboard.php:106
1349
  #: app/features/mec/meta_boxes/display_options.php:642
1350
  #: app/features/mec/meta_boxes/search_form.php:45
1351
  #: app/features/mec/meta_boxes/search_form.php:92
@@ -1358,7 +940,7 @@ msgstr "Localização"
1358
  #: app/features/mec/meta_boxes/search_form.php:433
1359
  #: app/features/organizers.php:58 app/features/organizers.php:199
1360
  #: app/features/organizers.php:255 app/features/organizers.php:257
1361
- #: app/libraries/main.php:3959 app/libraries/skins.php:741
1362
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
1363
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
1364
  #: app/skins/single/modern.php:21
@@ -1377,6 +959,14 @@ msgstr "Autor"
1377
  msgid "iCal Export"
1378
  msgstr "Exportar iCal"
1379
 
 
 
 
 
 
 
 
 
1380
  #: app/features/events.php:1575 app/features/events.php:1576
1381
  msgid "XML Export"
1382
  msgstr "Exportar XML"
@@ -1389,6 +979,13 @@ msgstr "Exportar JSON"
1389
  msgid "Duplicate"
1390
  msgstr "Duplicar"
1391
 
 
 
 
 
 
 
 
1392
  #: app/features/events.php:1631 app/features/events.php:1675
1393
  #: app/features/ix.php:2328 app/features/ix.php:2369
1394
  msgid "Start Time"
@@ -1473,7 +1070,6 @@ msgid "Note to reviewer"
1473
  msgstr "Nota para o revisor"
1474
 
1475
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
1476
- #: app/features/gateways.php:695
1477
  msgid "Submit"
1478
  msgstr "Enviar"
1479
 
@@ -1489,7 +1085,7 @@ msgstr ""
1489
  msgid "eg. John Smith"
1490
  msgstr "ex. John Smith"
1491
 
1492
- #: app/features/fes/form.php:496 app/features/mec/settings.php:824
1493
  msgid "Featured Image"
1494
  msgstr "Imagem Destacada"
1495
 
@@ -1498,14 +1094,14 @@ msgid "Remove Image"
1498
  msgstr "Remover Imagem"
1499
 
1500
  #: app/features/fes/form.php:543 app/features/labels.php:61
1501
- #: app/features/labels.php:194 app/features/modern-events-calendar-lite.php:191
1502
- #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3954
1503
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1504
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1505
  msgid "Labels"
1506
  msgstr "Etiquetas"
1507
 
1508
- #: app/features/fes/form.php:588 app/features/modern-events-calendar-lite.php:189
1509
  #: app/features/mec/meta_boxes/filter.php:138
1510
  msgid "Tags"
1511
  msgstr "Tags"
@@ -1531,292 +1127,6 @@ msgstr "Ver"
1531
  msgid "No events found! %s"
1532
  msgstr "Nenhum evento encontrado! %s"
1533
 
1534
- #: app/features/gateways.php:70 app/features/gateways.php:327
1535
- #: app/features/gateways.php:706 app/features/gateways.php:1235
1536
- #: app/features/gateways.php:1396
1537
- msgid "Request is invalid!"
1538
- msgstr "O pedido é inválido!"
1539
-
1540
- #: app/features/gateways.php:75 app/modules/booking/steps/message.php:7
1541
- msgid "Thanks for your booking."
1542
- msgstr "Obrigado por sua reserva."
1543
-
1544
- #: app/features/gateways.php:307 app/features/gateways.php:545
1545
- msgid "Stripe"
1546
- msgstr "Listra"
1547
-
1548
- #: app/features/gateways.php:342 app/features/gateways.php:716
1549
- #: app/features/gateways.php:935 app/features/gateways.php:1245
1550
- #: app/features/gateways.php:1438 app/features/gateways.php:1751
1551
- msgid "There is no attendee for booking!"
1552
- msgstr "Não há participante para reserva!"
1553
-
1554
- #: app/features/gateways.php:373 app/features/gateways.php:743
1555
- #: app/features/gateways.php:1010 app/features/gateways.php:1275
1556
- #: app/features/gateways.php:1482 app/features/gateways.php:1655
1557
- #: app/features/gateways.php:1778 app/libraries/main.php:3977
1558
- msgid ""
1559
- "Thanks for your booking. Your tickets booked, booking verification might be "
1560
- "needed, please check your email."
1561
- msgstr ""
1562
- "Obrigado pela sua reserva, seus bilhetes foram reservados. A verificação de "
1563
- "reserva é necessária, por favor verifique seu e-mail."
1564
-
1565
- #: app/features/gateways.php:390
1566
- #, fuzzy, php-format
1567
- msgid "MEC Transaction ID: %s"
1568
- msgstr "ID da Transação"
1569
-
1570
- #: app/features/gateways.php:473 app/features/gateways.php:668
1571
- #: app/features/gateways.php:878 app/features/gateways.php:1154
1572
- #: app/features/gateways.php:1560 app/libraries/book.php:593
1573
- #: app/modules/booking/default.php:273 app/modules/booking/default.php:368
1574
- msgid "Download Invoice"
1575
- msgstr ""
1576
-
1577
- #: app/features/gateways.php:509
1578
- msgid "Card Number"
1579
- msgstr "Número do Cartão"
1580
-
1581
- #: app/features/gateways.php:515
1582
- msgid "CVC"
1583
- msgstr "CVC"
1584
-
1585
- #: app/features/gateways.php:521
1586
- msgid "Expiration (MM/YYYY)"
1587
- msgstr "Validade (MM/AAAA)"
1588
-
1589
- #: app/features/gateways.php:522
1590
- msgid "Month"
1591
- msgstr "Mês"
1592
-
1593
- #: app/features/gateways.php:524
1594
- msgid "Year"
1595
- msgstr "Ano"
1596
-
1597
- #: app/features/gateways.php:532 app/features/gateways.php:919
1598
- #: app/features/gateways.php:1223
1599
- msgid "Pay"
1600
- msgstr "Pagar"
1601
-
1602
- #: app/features/gateways.php:556 app/features/gateways.php:623
1603
- #: app/features/gateways.php:791 app/features/gateways.php:1082
1604
- #: app/features/gateways.php:1621
1605
- msgid "Comment"
1606
- msgstr "Comentário"
1607
-
1608
- #: app/features/gateways.php:559 app/features/gateways.php:626
1609
- #: app/features/gateways.php:794 app/features/gateways.php:1085
1610
- #: app/features/gateways.php:1624
1611
- msgid "HTML allowed."
1612
- msgstr "HTML é permitido."
1613
-
1614
- #: app/features/gateways.php:563 app/features/mec/settings.php:604
1615
- msgid "Secret Key"
1616
- msgstr "Chave Secreta"
1617
-
1618
- #: app/features/gateways.php:569
1619
- msgid "Publishable Key"
1620
- msgstr "Chave Publicável"
1621
-
1622
- #: app/features/gateways.php:598 app/features/gateways.php:612
1623
- msgid "Pay Locally"
1624
- msgstr "Pagar Localmente"
1625
-
1626
- #: app/features/gateways.php:766 app/features/gateways.php:780
1627
- msgid "PayPal Express"
1628
- msgstr "PayPal Expresso"
1629
-
1630
- #: app/features/gateways.php:798
1631
- msgid "Business Account"
1632
- msgstr "Conta de Negócios"
1633
-
1634
- #: app/features/gateways.php:801
1635
- msgid "Normally PayPal Email."
1636
- msgstr "Normalmente E-mail do PayPal."
1637
-
1638
- #: app/features/gateways.php:805 app/features/gateways.php:1107
1639
- msgid "Mode"
1640
- msgstr "Modo"
1641
-
1642
- #: app/features/gateways.php:808 app/features/gateways.php:1110
1643
- msgid "Live"
1644
- msgstr "Ao Vivo"
1645
-
1646
- #: app/features/gateways.php:809 app/features/gateways.php:1111
1647
- msgid "Sandbox"
1648
- msgstr "Caixa de areia"
1649
-
1650
- #: app/features/gateways.php:1004 app/features/gateways.php:1649
1651
- msgid "Waiting for getting response from gateway."
1652
- msgstr "Esperando para obter resposta do gateway."
1653
-
1654
- #: app/features/gateways.php:1020 app/features/gateways.php:1663
1655
- msgid "Payment was invalid! Booking failed."
1656
- msgstr "Pagamento foi inválido! Falha na reserva."
1657
-
1658
- #: app/features/gateways.php:1046 app/features/gateways.php:1071
1659
- msgid "PayPal Credit Card"
1660
- msgstr "Cartão de Crédito PayPal"
1661
-
1662
- #: app/features/gateways.php:1089
1663
- msgid "API Username"
1664
- msgstr "API de Nome de Usuário"
1665
-
1666
- #: app/features/gateways.php:1095
1667
- msgid "API Password"
1668
- msgstr "API de Senha"
1669
-
1670
- #: app/features/gateways.php:1101
1671
- msgid "API Signature"
1672
- msgstr "API de Assinatura"
1673
-
1674
- #: app/features/gateways.php:1181
1675
- msgid "First name"
1676
- msgstr "Primeiro nome"
1677
-
1678
- #: app/features/gateways.php:1185
1679
- msgid "Last name"
1680
- msgstr "Último nome"
1681
-
1682
- #: app/features/gateways.php:1189
1683
- msgid "Card Type"
1684
- msgstr "Tipo de cartão"
1685
-
1686
- #: app/features/gateways.php:1191
1687
- msgid "Visa"
1688
- msgstr "Visa"
1689
-
1690
- #: app/features/gateways.php:1192
1691
- msgid "MasterCard"
1692
- msgstr "MasterCard"
1693
-
1694
- #: app/features/gateways.php:1193
1695
- msgid "Discover"
1696
- msgstr "Discover"
1697
-
1698
- #: app/features/gateways.php:1194
1699
- msgid "American Express"
1700
- msgstr "American Express"
1701
-
1702
- #: app/features/gateways.php:1198
1703
- msgid "CC Number"
1704
- msgstr "Número do Cartão de Crédito"
1705
-
1706
- #: app/features/gateways.php:1215
1707
- msgid "CVV2"
1708
- msgstr "Código Verificador"
1709
-
1710
- #: app/features/gateways.php:1248
1711
- msgid "Payment is invalid."
1712
- msgstr "Pagamento é inválido."
1713
-
1714
- #: app/features/gateways.php:1378 app/features/gateways.php:1607
1715
- msgid "Pay by WooCommerce"
1716
- msgstr "Pagar pelo Woocommerce"
1717
-
1718
- #: app/features/gateways.php:1418
1719
- #, php-format
1720
- msgid "Booking fee for %s"
1721
- msgstr "Taxa de reserva para %s"
1722
-
1723
- #: app/features/gateways.php:1429
1724
- msgid "Your order is created. Please proceed with checkout."
1725
- msgstr "Seu pedido foi criado. Por favor, continue com a finalização."
1726
-
1727
- #: app/features/gateways.php:1591
1728
- msgid "Add to Cart"
1729
- msgstr ""
1730
-
1731
- #: app/features/gateways.php:1596 app/modules/booking/steps/checkout.php:16
1732
- msgid "Checkout"
1733
- msgstr "Finalizar"
1734
-
1735
- #: app/features/gateways.php:1612
1736
- msgid "WooCommerce must be installed and activated first."
1737
- msgstr "WooCommerce deve ser instalado e ativado primeiro."
1738
-
1739
- #: app/features/gateways.php:1628
1740
- msgid "Automatically complete WC orders"
1741
- msgstr "Completar automaticamente os pedidos do WC"
1742
-
1743
- #: app/features/gateways.php:1631 app/features/mec/settings.php:292
1744
- msgid "Enabled"
1745
- msgstr "Ativado"
1746
-
1747
- #: app/features/gateways.php:1632
1748
- #: app/features/mec/meta_boxes/search_form.php:33
1749
- #: app/features/mec/meta_boxes/search_form.php:40
1750
- #: app/features/mec/meta_boxes/search_form.php:47
1751
- #: app/features/mec/meta_boxes/search_form.php:54
1752
- #: app/features/mec/meta_boxes/search_form.php:61
1753
- #: app/features/mec/meta_boxes/search_form.php:68
1754
- #: app/features/mec/meta_boxes/search_form.php:80
1755
- #: app/features/mec/meta_boxes/search_form.php:87
1756
- #: app/features/mec/meta_boxes/search_form.php:94
1757
- #: app/features/mec/meta_boxes/search_form.php:101
1758
- #: app/features/mec/meta_boxes/search_form.php:108
1759
- #: app/features/mec/meta_boxes/search_form.php:115
1760
- #: app/features/mec/meta_boxes/search_form.php:127
1761
- #: app/features/mec/meta_boxes/search_form.php:134
1762
- #: app/features/mec/meta_boxes/search_form.php:141
1763
- #: app/features/mec/meta_boxes/search_form.php:148
1764
- #: app/features/mec/meta_boxes/search_form.php:155
1765
- #: app/features/mec/meta_boxes/search_form.php:162
1766
- #: app/features/mec/meta_boxes/search_form.php:174
1767
- #: app/features/mec/meta_boxes/search_form.php:181
1768
- #: app/features/mec/meta_boxes/search_form.php:193
1769
- #: app/features/mec/meta_boxes/search_form.php:200
1770
- #: app/features/mec/meta_boxes/search_form.php:207
1771
- #: app/features/mec/meta_boxes/search_form.php:214
1772
- #: app/features/mec/meta_boxes/search_form.php:221
1773
- #: app/features/mec/meta_boxes/search_form.php:228
1774
- #: app/features/mec/m
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2018-09-09 16:07+0430\n"
6
+ "PO-Revision-Date: 2018-09-09 16:07+0430\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
21
  "X-Poedit-SearchPath-0: .\n"
22
  "X-Poedit-SearchPathExcluded-0: *.js\n"
23
 
 
24
  #: app/addons/KC.php:68 app/addons/VC.php:59 app/features/ix/import.php:23
25
  #: app/features/ix/import.php:36 app/features/ix/thirdparty.php:23
26
  #: app/widgets/MEC.php:23
31
  msgid "Content"
32
  msgstr "Conteúdo"
33
 
34
+ #: app/addons/KC.php:75 app/addons/VC.php:70 app/features/mec.php:209
35
+ #: app/features/mec.php:238 app/features/mec.php:264
36
  msgid "Shortcode"
37
  msgstr "Código Curto"
38
 
40
  msgid "Select from predefined shortcodes"
41
  msgstr "Selecione a partir de códigos curtos pré-definidos"
42
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
43
  #: app/features/colors.php:50 app/features/fes/form.php:566
44
+ #: app/features/mec/settings.php:847
45
  msgid "Event Color"
46
  msgstr "Cor do Evento"
47
 
48
+ #: app/features/contextual.php:55 app/features/mec.php:195
49
  #: app/features/mec/gateways.php:20 app/features/mec/messages.php:20
50
  #: app/features/mec/notifications.php:19 app/features/mec/regform.php:19
51
+ #: app/features/mec/settings.php:34 app/features/mec/settings.php:250
52
  #: app/features/mec/styles.php:20 app/features/mec/styling.php:46
53
  #: app/features/mec/support.php:18
54
  msgid "Settings"
55
  msgstr "Configurações"
56
 
57
+ #: app/features/contextual.php:62 app/features/events.php:910
58
+ #: app/features/mec/gateways.php:29 app/features/mec/messages.php:29
59
+ #: app/features/mec/notifications.php:28 app/features/mec/regform.php:28
60
+ #: app/features/mec/regform.php:88 app/features/mec/settings.php:185
61
+ #: app/features/mec/styles.php:29 app/features/mec/styling.php:55
62
+ #: app/features/mec/support.php:27
63
+ msgid "Booking Form"
64
+ msgstr "Formulário de Reserva"
65
+
66
  #: app/features/contextual.php:63
67
  msgid ""
68
  "<h2 class=\"dark-text\">Booking Form<hr></h2>\n"
75
  #: app/features/contextual.php:70 app/features/mec/gateways.php:36
76
  #: app/features/mec/gateways.php:90 app/features/mec/messages.php:36
77
  #: app/features/mec/notifications.php:35 app/features/mec/regform.php:35
78
+ #: app/features/mec/settings.php:192 app/features/mec/styles.php:36
79
  #: app/features/mec/styling.php:62 app/features/mec/support.php:34
80
  msgid "Payment Gateways"
81
  msgstr "Gateways de Pagamento"
90
  #: app/features/contextual.php:77 app/features/mec/gateways.php:45
91
  #: app/features/mec/messages.php:45 app/features/mec/notifications.php:44
92
  #: app/features/mec/notifications.php:89 app/features/mec/regform.php:43
93
+ #: app/features/mec/settings.php:202 app/features/mec/styles.php:45
94
  #: app/features/mec/styling.php:71 app/features/mec/support.php:43
95
  msgid "Notifications"
96
  msgstr "Notificações"
151
  "\"0\" allowfullscreen></iframe>"
152
  msgstr ""
153
 
154
+ #: app/features/contextual.php:117 app/features/mec/settings.php:41
155
+ #: app/features/mec/settings.php:252
156
  msgid "General Options"
157
  msgstr "Opções Gerais"
158
 
159
+ #: app/features/contextual.php:139 app/features/mec/settings.php:53
160
+ #: app/features/mec/settings.php:404
161
  msgid "Slugs/Permalinks"
162
  msgstr "Slugs/Links Permanentes"
163
 
164
+ #: app/features/contextual.php:152 app/features/mec/settings.php:59
165
+ #: app/features/mec/settings.php:424
166
  msgid "Event Details/Single Event Page"
167
  msgstr "Detalhes do Evento / Página Individual"
168
 
169
+ #: app/features/contextual.php:166 app/features/mec/settings.php:65
170
+ #: app/features/mec/settings.php:456
171
  msgid "Currency Options"
172
  msgstr "Opções de Moeda"
173
 
174
+ #: app/features/contextual.php:182 app/features/mec/settings.php:71
175
+ #: app/features/mec/settings.php:508
176
  msgid "Google Maps Options"
177
  msgstr "Opções do Google Mapas"
178
 
179
+ #: app/features/contextual.php:244 app/features/mec/settings.php:77
180
+ #: app/features/mec/settings.php:582
181
  msgid "Google Recaptcha Options"
182
  msgstr "Opções do Google Recaptcha"
183
 
184
+ #: app/features/contextual.php:258 app/features/mec/settings.php:107
185
+ #: app/features/mec/settings.php:700
186
  msgid "Countdown Options"
187
  msgstr "Opções de Contagem Regressiva"
188
 
189
+ #: app/features/contextual.php:268 app/features/mec/settings.php:113
190
+ #: app/features/mec/settings.php:721
191
  msgid "Social Networks"
192
  msgstr "Redes Sociais"
193
 
194
+ #: app/features/contextual.php:278 app/features/mec/settings.php:119
195
+ #: app/features/mec/settings.php:746
196
  msgid "Next Event Module"
197
  msgstr "Módulo Próximo Evento"
198
 
199
+ #: app/features/contextual.php:286 app/features/mec/settings.php:125
200
+ #: app/features/mec/settings.php:774
201
  msgid "Frontend Event Submission"
202
  msgstr "Envio de Evento do Site (parte da frente)"
203
 
204
  #: app/features/contextual.php:298 app/features/events.php:570
205
+ #: app/features/mec/settings.php:131
206
  msgid "Exceptional Days"
207
  msgstr "Dias Excepcionais"
208
 
209
+ #: app/features/contextual.php:308 app/features/events.php:253
210
+ #: app/features/mec/settings.php:143 app/features/mec/settings.php:929
211
+ msgid "Booking"
212
+ msgstr "Reserva"
213
+
214
+ #: app/features/contextual.php:318 app/features/mec/settings.php:149
215
+ #: app/features/mec/settings.php:1019
216
  msgid "Coupons"
217
  msgstr "Cupons"
218
 
219
+ #: app/features/contextual.php:326 app/features/mec/settings.php:161
220
+ #: app/features/mec/settings.php:1101
221
  msgid "BuddyPress Integration"
222
  msgstr "Integração com BuddyPress"
223
 
224
+ #: app/features/contextual.php:334 app/features/mec/settings.php:167
225
+ #: app/features/mec/settings.php:1131
226
  msgid "Mailchimp Integration"
227
  msgstr "Integração com Mailchimp"
228
 
229
+ #: app/features/contextual.php:346 app/features/mec/settings.php:173
230
+ #: app/features/mec/settings.php:1167
231
  msgid "MEC Activation"
232
  msgstr "Ativação CEM"
233
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234
  #: app/features/events.php:122 app/features/ix/export.php:33
235
+ #: app/features/mec/dashboard.php:89 app/skins/daily_view/tpl.php:79
236
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
237
  msgid "Events"
238
  msgstr "Eventos"
239
 
240
+ #: app/features/events.php:123
241
+ #: app/features/mec/meta_boxes/display_options.php:678
242
+ #: app/features/mec/meta_boxes/display_options.php:716
243
+ #: app/features/mec/meta_boxes/display_options.php:745
244
+ #: app/skins/daily_view/tpl.php:80 app/skins/monthly_view/tpl.php:71
245
+ #: app/skins/yearly_view/tpl.php:69
246
+ msgid "Event"
247
+ msgstr "Evento"
248
+
249
+ #: app/features/events.php:124 app/features/mec.php:188
250
  msgid "Add Event"
251
  msgstr "Adicionar Evento"
252
 
259
  msgid "No events found!"
260
  msgstr "Nenhum evento encontrado!"
261
 
262
+ #: app/features/events.php:127
263
+ msgid "All Events"
264
+ msgstr "Todos os Eventos"
265
+
266
  #: app/features/events.php:128
267
  msgid "Edit Event"
268
  msgstr ""
285
  #: app/features/mec/meta_boxes/search_form.php:285
286
  #: app/features/mec/meta_boxes/search_form.php:325
287
  #: app/features/mec/meta_boxes/search_form.php:372
288
+ #: app/features/mec/meta_boxes/search_form.php:419 app/libraries/main.php:3968
289
  #: app/libraries/skins.php:689 app/skins/single/default.php:167
290
  #: app/skins/single/default.php:369 app/skins/single/m1.php:167
291
  #: app/skins/single/m2.php:99 app/skins/single/modern.php:92
293
  msgstr "Categoria"
294
 
295
  #: app/features/events.php:143 app/features/fes/form.php:518
296
+ #: app/features/mec.php:190 app/features/mec/meta_boxes/filter.php:70
297
+ #: app/libraries/main.php:3967
298
  msgid "Categories"
299
  msgstr "Categorias"
300
 
361
  #: app/features/events.php:286 app/features/events.php:1631
362
  #: app/features/events.php:1675 app/features/fes/form.php:479
363
  #: app/features/ix.php:2328 app/features/ix.php:2369
364
+ #: app/features/mec/settings.php:823 app/libraries/main.php:3998
365
  msgid "Event Cost"
366
  msgstr "Custo do Evento"
367
 
368
  #: app/features/events.php:289 app/features/fes/form.php:482
369
+ #: app/libraries/main.php:3999 app/skins/single/default.php:102
370
  #: app/skins/single/default.php:304 app/skins/single/m1.php:49
371
  #: app/skins/single/modern.php:179
372
  msgid "Cost"
380
  msgid "Guest Data"
381
  msgstr ""
382
 
383
+ #: app/features/events.php:370 app/features/fes/form.php:441
384
+ #: app/features/labels.php:151 app/features/organizers.php:268
385
+ #: app/libraries/main.php:1572 app/libraries/notifications.php:505
386
+ #: app/modules/booking/steps/form.php:24 app/modules/booking/steps/form.php:25
387
+ msgid "Name"
388
+ msgstr "Nome"
389
+
390
+ #: app/features/events.php:371 app/features/events.php:945
391
+ #: app/features/fes/form.php:437 app/features/mec/regform.php:118
392
+ #: app/features/organizers.php:110 app/features/organizers.php:150
393
+ #: app/libraries/main.php:1038 app/libraries/main.php:1103
394
+ #: app/libraries/main.php:1573 app/libraries/main.php:1885
395
+ #: app/libraries/notifications.php:506 app/modules/booking/steps/form.php:28
396
+ #: app/modules/booking/steps/form.php:29 app/skins/single.php:216
397
+ #: app/skins/single/default.php:210 app/skins/single/default.php:412
398
+ #: app/skins/single/m1.php:107 app/skins/single/m2.php:39
399
+ #: app/skins/single/modern.php:38
400
+ msgid "Email"
401
+ msgstr "E-mail"
402
+
403
  #: app/features/events.php:375 app/features/fes/form.php:221
404
  msgid "Date and Time"
405
  msgstr "Data e Hora"
409
  #: app/features/events.php:1675 app/features/fes/form.php:225
410
  #: app/features/fes/form.php:229 app/features/ix.php:2328
411
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:37
412
+ #: app/features/mec/dashboard.php:266
413
  #: app/features/mec/meta_boxes/display_options.php:42
414
  #: app/features/mec/meta_boxes/display_options.php:129
415
  #: app/features/mec/meta_boxes/display_options.php:225
441
  #: app/features/events.php:1675 app/features/fes/form.php:265
442
  #: app/features/fes/form.php:269 app/features/ix.php:2328
443
  #: app/features/ix.php:2369 app/features/ix/import_g_calendar.php:43
444
+ #: app/features/mec/dashboard.php:267
445
  msgid "End Date"
446
  msgstr "Data de Término"
447
 
478
  msgstr "Repetições"
479
 
480
  #: app/features/events.php:481 app/features/fes/form.php:327
481
+ #: app/features/mec/dashboard.php:269 app/skins/full_calendar/tpl.php:48
482
  msgid "Daily"
483
  msgstr "Diariamente"
484
 
500
  msgstr "Semanalmente"
501
 
502
  #: app/features/events.php:486 app/features/fes/form.php:332
503
+ #: app/features/mec/dashboard.php:270 app/skins/full_calendar/tpl.php:46
504
  msgid "Monthly"
505
  msgstr "Mensalmente"
506
 
507
  #: app/features/events.php:487 app/features/fes/form.php:333
508
+ #: app/features/mec/dashboard.php:271 app/skins/full_calendar/tpl.php:45
509
  msgid "Yearly"
510
  msgstr "Anualmente"
511
 
560
  msgid "Sunday"
561
  msgstr "Domingo"
562
 
563
+ #: app/features/events.php:508 app/features/events.php:580
564
+ #: app/features/fes/form.php:354 app/libraries/main.php:1553
565
+ #: app/modules/booking/steps/tickets.php:20
566
+ #: app/modules/next-event/details.php:60 app/skins/single/default.php:66
567
+ #: app/skins/single/default.php:268 app/skins/single/m1.php:16
568
+ #: app/skins/single/modern.php:146
569
+ msgid "Date"
570
+ msgstr "Data"
571
+
572
  #: app/features/events.php:509 app/features/events.php:581
573
  #: app/features/events.php:623 app/features/events.php:743
574
  #: app/features/events.php:839 app/features/fes/form.php:355
615
  msgid "Exclude certain days from event occurrence dates."
616
  msgstr "Excluir determinados dias das datas de ocorrência do evento."
617
 
618
+ #: app/features/events.php:620 app/features/mec/settings.php:871
619
  #: app/skins/single/default.php:27 app/skins/single/m1.php:232
620
  #: app/skins/single/m2.php:157 app/skins/single/modern.php:231
621
  msgid "Hourly Schedule"
636
  #: app/features/events.php:631 app/features/events.php:643
637
  #: app/features/events.php:1449 app/features/events.php:1631
638
  #: app/features/events.php:1675 app/features/fes/form.php:214
639
+ #: app/features/ix.php:2328 app/features/ix.php:2369
 
 
 
640
  msgid "Title"
641
  msgstr "Título"
642
 
643
+ #: app/features/events.php:632 app/features/events.php:644
644
+ #: app/features/events.php:752 app/features/events.php:784
645
+ msgid "Description"
646
+ msgstr "Descrição"
647
+
648
  #: app/features/events.php:633 app/features/events.php:645
649
  #: app/features/events.php:771 app/features/events.php:803
650
  #: app/features/events.php:859 app/features/events.php:884
651
+ #: app/features/fes/list.php:72 app/features/mec/settings.php:1069
652
+ #: app/features/mec/settings.php:1092 app/libraries/main.php:1864
653
+ #: app/libraries/main.php:1893 app/libraries/main.php:1922
654
+ #: app/libraries/main.php:1951 app/libraries/main.php:1973
655
+ #: app/libraries/main.php:2004 app/libraries/main.php:2048
656
+ #: app/libraries/main.php:2092 app/libraries/main.php:2139
657
+ #: app/libraries/main.php:2177
658
  msgid "Remove"
659
  msgstr "Remover"
660
 
661
  #: app/features/events.php:665 app/features/fes/form.php:456
662
+ #: app/features/mec/settings.php:817
663
  msgid "Event Links"
664
  msgstr "Links do Evento"
665
 
666
  #: app/features/events.php:667 app/features/fes/form.php:458
667
+ #: app/libraries/main.php:3996
668
  msgid "Event Link"
669
  msgstr "Link do Evento"
670
 
682
  "padrão. Inserir link completo, incluindo http(s)://"
683
 
684
  #: app/features/events.php:672 app/features/fes/form.php:463
685
+ #: app/libraries/main.php:3997 app/skins/single/default.php:116
686
  #: app/skins/single/default.php:318 app/skins/single/m1.php:189
687
  #: app/skins/single/m2.php:121 app/skins/single/modern.php:115
688
  msgid "More Info"
712
  msgid "Total booking limits"
713
  msgstr "Total de limites de reserva"
714
 
715
+ #: app/features/events.php:715 app/features/events.php:769
716
+ #: app/features/events.php:801 app/modules/booking/default.php:82
717
+ #: app/modules/booking/steps/tickets.php:38 app/skins/available_spot/tpl.php:84
718
+ msgid "Unlimited"
719
+ msgstr "Ilimitado"
720
+
721
  #: app/features/events.php:717
722
  msgid "100"
723
  msgstr "100"
724
 
725
  #: app/features/events.php:735 app/libraries/book.php:59
726
+ #: app/libraries/main.php:4001 app/modules/booking/steps/tickets.php:38
727
  msgid "Tickets"
728
  msgstr "Bilhetes"
729
 
738
  msgid "Ticket Name"
739
  msgstr "Nome do Bilhete"
740
 
741
+ #: app/features/events.php:756 app/features/events.php:788
742
+ msgid "Price"
743
+ msgstr "Preço"
744
+
745
  #: app/features/events.php:757 app/features/events.php:789
746
  msgid "Insert 0 for free ticket. Only numbers please."
747
  msgstr "Insira 0 para ingresso gratuito. Apenas números, por favor."
767
  msgstr "Herdar de opções globais"
768
 
769
  #: app/features/events.php:845 app/features/events.php:870
770
+ #: app/features/mec/settings.php:1055 app/features/mec/settings.php:1078
771
  msgid "Fee Title"
772
  msgstr "Título da Taxa"
773
 
774
+ #: app/features/events.php:849 app/features/events.php:874
775
+ #: app/features/mec/settings.php:1059 app/features/mec/settings.php:1082
776
+ msgid "Amount"
777
+ msgstr "Quantidade"
778
+
779
  #: app/features/events.php:850 app/features/events.php:875
780
+ #: app/features/mec/settings.php:1060 app/features/mec/settings.php:1083
781
  msgid ""
782
  "Fee amount, considered as fixed amount if you set the type to amount "
783
  "otherwise considered as percentage"
785
  "Valor da taxa, considerado como valor fixo se você definir o tipo como valor "
786
  "considerado como porcentagem"
787
 
788
+ #: app/features/events.php:854 app/features/events.php:879
789
+ #: app/features/mec/settings.php:1064 app/features/mec/settings.php:1087
790
+ msgid "Percent"
791
+ msgstr "Porcentagem"
792
+
793
  #: app/features/events.php:855 app/features/events.php:880
794
+ #: app/features/mec/settings.php:1065 app/features/mec/settings.php:1088
795
  msgid "Amount (Per Ticket)"
796
  msgstr ""
797
 
798
  #: app/features/events.php:856 app/features/events.php:881
799
+ #: app/features/mec/settings.php:1066 app/features/mec/settings.php:1089
800
  msgid "Amount (Per Booking)"
801
  msgstr ""
802
 
803
  #: app/features/events.php:944 app/features/mec/regform.php:117
804
+ #: app/libraries/main.php:1856
805
  msgid "Text"
806
  msgstr "Texto"
807
 
808
  #: app/features/events.php:946 app/features/mec/regform.php:119
809
  #: app/features/organizers.php:102 app/features/organizers.php:146
810
+ #: app/libraries/main.php:1914
811
  msgid "Tel"
812
  msgstr "Telefone"
813
 
814
  #: app/features/events.php:947 app/features/mec/regform.php:120
815
+ #: app/libraries/main.php:1943
816
  msgid "Textarea"
817
  msgstr "Área de texto"
818
 
819
  #: app/features/events.php:948 app/features/mec/regform.php:121
820
+ #: app/libraries/main.php:1996
821
  msgid "Checkboxes"
822
  msgstr "Caixas de seleção"
823
 
824
  #: app/features/events.php:949 app/features/mec/regform.php:122
825
+ #: app/libraries/main.php:2040
826
  msgid "Radio Buttons"
827
  msgstr "Botões Rádio"
828
 
871
  #: app/features/mec/meta_boxes/search_form.php:436
872
  #: app/features/mec/meta_boxes/search_form.php:443
873
  #: app/features/mec/meta_boxes/search_form.php:450
874
+ #: app/features/mec/regform.php:123 app/libraries/main.php:2084
875
  msgid "Dropdown"
876
  msgstr "Suspenso"
877
 
878
  #: app/features/events.php:951 app/features/mec/regform.php:124
879
+ #: app/libraries/main.php:2131
880
  msgid "Agreement"
881
  msgstr ""
882
 
883
  #: app/features/events.php:952 app/features/mec/regform.php:125
884
+ #: app/libraries/main.php:1972
885
  msgid "Paragraph"
886
  msgstr "Parágrafo"
887
 
907
  #: app/features/events.php:1675 app/features/ix.php:2328
908
  #: app/features/ix.php:2369 app/features/locations.php:58
909
  #: app/features/locations.php:229 app/features/locations.php:281
910
+ #: app/features/locations.php:283 app/features/mec/dashboard.php:103
911
  #: app/features/mec/meta_boxes/display_options.php:641
912
  #: app/features/mec/meta_boxes/search_form.php:38
913
  #: app/features/mec/meta_boxes/search_form.php:85
917
  #: app/features/mec/meta_boxes/search_form.php:292
918
  #: app/features/mec/meta_boxes/search_form.php:332
919
  #: app/features/mec/meta_boxes/search_form.php:379
920
+ #: app/features/mec/meta_boxes/search_form.php:426 app/libraries/main.php:1547
921
+ #: app/libraries/main.php:3972 app/libraries/skins.php:715
922
  #: app/skins/single/default.php:152 app/skins/single/default.php:354
923
  #: app/skins/single/m1.php:152 app/skins/single/m2.php:84
924
  #: app/skins/single/modern.php:77
927
 
928
  #: app/features/events.php:1451 app/features/events.php:1631
929
  #: app/features/events.php:1675 app/features/ix.php:2328
930
+ #: app/features/ix.php:2369 app/features/mec/dashboard.php:110
931
  #: app/features/mec/meta_boxes/display_options.php:642
932
  #: app/features/mec/meta_boxes/search_form.php:45
933
  #: app/features/mec/meta_boxes/search_form.php:92
940
  #: app/features/mec/meta_boxes/search_form.php:433
941
  #: app/features/organizers.php:58 app/features/organizers.php:199
942
  #: app/features/organizers.php:255 app/features/organizers.php:257
943
+ #: app/libraries/main.php:3974 app/libraries/skins.php:741
944
  #: app/skins/single/default.php:193 app/skins/single/default.php:395
945
  #: app/skins/single/m1.php:90 app/skins/single/m2.php:22
946
  #: app/skins/single/modern.php:21
959
  msgid "iCal Export"
960
  msgstr "Exportar iCal"
961
 
962
+ #: app/features/events.php:1569 app/features/events.php:1570
963
+ msgid "CSV Export"
964
+ msgstr "Exportar CSV"
965
+
966
+ #: app/features/events.php:1572 app/features/events.php:1573
967
+ msgid "MS Excel Export"
968
+ msgstr "Exportar para MS Excel"
969
+
970
  #: app/features/events.php:1575 app/features/events.php:1576
971
  msgid "XML Export"
972
  msgstr "Exportar XML"
979
  msgid "Duplicate"
980
  msgstr "Duplicar"
981
 
982
+ #: app/features/events.php:1631 app/features/events.php:1675
983
+ #: app/features/ix.php:2328 app/features/ix.php:2369
984
+ #: app/features/labels.php:150 app/features/locations.php:228
985
+ #: app/features/organizers.php:198
986
+ msgid "ID"
987
+ msgstr "ID"
988
+
989
  #: app/features/events.php:1631 app/features/events.php:1675
990
  #: app/features/ix.php:2328 app/features/ix.php:2369
991
  msgid "Start Time"
1070
  msgstr "Nota para o revisor"
1071
 
1072
  #: app/features/fes/form.php:416 app/features/fes/form.php:596
 
1073
  msgid "Submit"
1074
  msgstr "Enviar"
1075
 
1085
  msgid "eg. John Smith"
1086
  msgstr "ex. John Smith"
1087
 
1088
+ #: app/features/fes/form.php:496 app/features/mec/settings.php:829
1089
  msgid "Featured Image"
1090
  msgstr "Imagem Destacada"
1091
 
1094
  msgstr "Remover Imagem"
1095
 
1096
  #: app/features/fes/form.php:543 app/features/labels.php:61
1097
+ #: app/features/labels.php:194 app/features/mec.php:191
1098
+ #: app/features/mec/meta_boxes/filter.php:121 app/libraries/main.php:3969
1099
  #: app/skins/single/default.php:131 app/skins/single/default.php:333
1100
  #: app/skins/single/m1.php:64 app/skins/single/modern.php:194
1101
  msgid "Labels"
1102
  msgstr "Etiquetas"
1103
 
1104
+ #: app/features/fes/form.php:588 app/features/mec.php:189
1105
  #: app/features/mec/meta_boxes/filter.php:138
1106
  msgid "Tags"
1107
  msgstr "Tags"
1127
  msgid "No events found! %s"
1128
  msgstr "Nenhum evento encontrado! %s"
1129