Modern Events Calendar Lite - Version 4.5.1

Version Description

  • 11 September 2019
  • Compatibility: WordPress 5.2.3
  • Fixed: Showing multiple names and emails in backend booking form (pro)
  • Fixed: Date field in backend of booking form (pro)
  • Fixed: Local time module regarding hour
  • Fixed: Maximum year number in date fields in frontend and backend forms (pro)
  • Fixed: Location, saving latitude and longitude
  • Fixed: Send emails to all attendees instead of main attendees (pro)
  • Fixed: Displaying Google Recaptcha in modals
  • Fixed: Showing registration form data in backend (pro)
  • Fixed: Ticket filter in booking management menu (pro)
Download this release

Release Info

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

Code changes from version 4.5.0 to 4.5.1

Files changed (42) hide show
  1. app/features/events.php +6 -12
  2. app/features/locations.php +1 -1
  3. app/features/login/login.php +0 -1
  4. app/libraries/factory.php +1 -1
  5. app/libraries/notifications.php +160 -91
  6. app/modules/booking/steps/form.php +1 -1
  7. app/modules/local-time/details.php +1 -1
  8. app/skins/grid/render.php +2 -1
  9. assets/css/backend.css +9 -3
  10. assets/css/backend.min.css +1 -1
  11. assets/js/frontend.js +11 -9
  12. assets/js/jquery.nice-select.min.js +3 -3
  13. changelog.txt +13 -1
  14. languages/modern-events-calendar-lite-de_DE.mo +0 -0
  15. languages/modern-events-calendar-lite-de_DE.po +124 -106
  16. languages/modern-events-calendar-lite-en_US.mo +0 -0
  17. languages/modern-events-calendar-lite-en_US.po +117 -106
  18. languages/modern-events-calendar-lite-es_ES.mo +0 -0
  19. languages/modern-events-calendar-lite-es_ES.po +133 -108
  20. languages/modern-events-calendar-lite-fr_FR.mo +0 -0
  21. languages/modern-events-calendar-lite-fr_FR.po +124 -106
  22. languages/modern-events-calendar-lite-hu_HU.mo +0 -0
  23. languages/modern-events-calendar-lite-hu_HU.po +122 -106
  24. languages/modern-events-calendar-lite-it_IT.mo +0 -0
  25. languages/modern-events-calendar-lite-it_IT.po +124 -106
  26. languages/modern-events-calendar-lite-nb_NO.mo +0 -0
  27. languages/modern-events-calendar-lite-nb_NO.po +133 -108
  28. languages/modern-events-calendar-lite-nl_NL.mo +0 -0
  29. languages/modern-events-calendar-lite-nl_NL.po +124 -106
  30. languages/modern-events-calendar-lite-pl_PL.mo +0 -0
  31. languages/modern-events-calendar-lite-pl_PL.po +124 -106
  32. languages/modern-events-calendar-lite-pt_BR.mo +0 -0
  33. languages/modern-events-calendar-lite-pt_BR.po +124 -106
  34. languages/modern-events-calendar-lite-ru_RU.mo +0 -0
  35. languages/modern-events-calendar-lite-ru_RU.po +124 -106
  36. languages/modern-events-calendar-lite-sv_SE.mo +0 -0
  37. languages/modern-events-calendar-lite-sv_SE.po +124 -106
  38. languages/modern-events-calendar-lite-tr_TR.mo +0 -0
  39. languages/modern-events-calendar-lite-tr_TR.po +124 -106
  40. languages/modern-events-calendar-lite.pot +117 -106
  41. modern-events-calendar-lite.php +2 -2
  42. readme.txt +16 -4
app/features/events.php CHANGED
@@ -2342,24 +2342,18 @@ class MEC_feature_events extends MEC_base
2342
  ?>
2343
  </ul>
2344
  <div id="mec_reg_form_field_types">
2345
- <button type="button" class="button red"
2346
- data-type="name"><?php _e('MEC Name', 'modern-events-calendar-lite'); ?></button>
2347
- <button type="button" class="button red"
2348
- data-type="mec_email"><?php _e('MEC Email', 'modern-events-calendar-lite'); ?></button>
2349
  <button type="button" class="button" data-type="text"><?php _e('Text', 'modern-events-calendar-lite'); ?></button>
2350
  <button type="button" class="button" data-type="email"><?php _e('Email', 'modern-events-calendar-lite'); ?></button>
2351
  <button type="button" class="button" data-type="date"><?php _e('Date', 'modern-events-calendar-lite'); ?></button>
2352
  <button type="button" class="button" data-type="tel"><?php _e('Tel', 'modern-events-calendar-lite'); ?></button>
2353
  <button type="button" class="button" data-type="file"><?php _e('File', 'modern-events-calendar-lite'); ?></button>
2354
- <button type="button" class="button"
2355
- data-type="textarea"><?php _e('Textarea', 'modern-events-calendar-lite'); ?></button>
2356
- <button type="button" class="button"
2357
- data-type="checkbox"><?php _e('Checkboxes', 'modern-events-calendar-lite'); ?></button>
2358
- <button type="button" class="button"
2359
- data-type="radio"><?php _e('Radio Buttons', 'modern-events-calendar-lite'); ?></button>
2360
  <button type="button" class="button" data-type="select"><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></button>
2361
- <button type="button" class="button"
2362
- data-type="agreement"><?php _e('Agreement', 'modern-events-calendar-lite'); ?></button>
2363
  <button type="button" class="button" data-type="p"><?php _e('Paragraph', 'modern-events-calendar-lite'); ?></button>
2364
  </div>
2365
  <input type="hidden" id="mec_new_reg_field_key" value="<?php echo $i + 1; ?>"/>
2342
  ?>
2343
  </ul>
2344
  <div id="mec_reg_form_field_types">
2345
+ <button type="button" class="button red" data-type="name"><?php _e('MEC Name', 'modern-events-calendar-lite'); ?></button>
2346
+ <button type="button" class="button red" data-type="mec_email"><?php _e('MEC Email', 'modern-events-calendar-lite'); ?></button>
 
 
2347
  <button type="button" class="button" data-type="text"><?php _e('Text', 'modern-events-calendar-lite'); ?></button>
2348
  <button type="button" class="button" data-type="email"><?php _e('Email', 'modern-events-calendar-lite'); ?></button>
2349
  <button type="button" class="button" data-type="date"><?php _e('Date', 'modern-events-calendar-lite'); ?></button>
2350
  <button type="button" class="button" data-type="tel"><?php _e('Tel', 'modern-events-calendar-lite'); ?></button>
2351
  <button type="button" class="button" data-type="file"><?php _e('File', 'modern-events-calendar-lite'); ?></button>
2352
+ <button type="button" class="button" data-type="textarea"><?php _e('Textarea', 'modern-events-calendar-lite'); ?></button>
2353
+ <button type="button" class="button" data-type="checkbox"><?php _e('Checkboxes', 'modern-events-calendar-lite'); ?></button>
2354
+ <button type="button" class="button" data-type="radio"><?php _e('Radio Buttons', 'modern-events-calendar-lite'); ?></button>
 
 
 
2355
  <button type="button" class="button" data-type="select"><?php _e('Dropdown', 'modern-events-calendar-lite'); ?></button>
2356
+ <button type="button" class="button" data-type="agreement"><?php _e('Agreement', 'modern-events-calendar-lite'); ?></button>
 
2357
  <button type="button" class="button" data-type="p"><?php _e('Paragraph', 'modern-events-calendar-lite'); ?></button>
2358
  </div>
2359
  <input type="hidden" id="mec_new_reg_field_key" value="<?php echo $i + 1; ?>"/>
app/features/locations.php CHANGED
@@ -199,7 +199,7 @@ class MEC_feature_locations extends MEC_base
199
  $thumbnail = isset($_POST['thumbnail']) ? sanitize_text_field($_POST['thumbnail']) : '';
200
 
201
  // Geo Point is Empty or Address Changed
202
- if(!trim($latitude) or !trim($longitude) or ($address != get_term_meta($term_id, 'address', true)))
203
  {
204
  $geo_point = $this->main->get_lat_lng($address);
205
 
199
  $thumbnail = isset($_POST['thumbnail']) ? sanitize_text_field($_POST['thumbnail']) : '';
200
 
201
  // Geo Point is Empty or Address Changed
202
+ if(!floatval($latitude) or !floatval($longitude) or (trim($address) and ($address != get_term_meta($term_id, 'address', true))))
203
  {
204
  $geo_point = $this->main->get_lat_lng($address);
205
 
app/features/login/login.php CHANGED
@@ -20,7 +20,6 @@
20
  </div>
21
  </div>
22
  <?php wp_nonce_field( 'mec-ajax-login-nonce', 'mec_login_nonce' ); ?>
23
-
24
  </div>
25
 
26
  <script type="text/javascript">
20
  </div>
21
  </div>
22
  <?php wp_nonce_field( 'mec-ajax-login-nonce', 'mec_login_nonce' ); ?>
 
23
  </div>
24
 
25
  <script type="text/javascript">
app/libraries/factory.php CHANGED
@@ -853,7 +853,7 @@ class MEC_factory extends MEC_base
853
  foreach($calendars as $calendar)
854
  {
855
  // Calendar exists
856
- if(post_exists($calendar['title'], 'MEC')) continue;
857
 
858
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
859
  $post_id = wp_insert_post($post);
853
  foreach($calendars as $calendar)
854
  {
855
  // Calendar exists
856
+ if(post_exists($calendar['title'], 'modern-events-calendar-lite')) continue;
857
 
858
  $post = array('post_title'=>$calendar['title'], 'post_content'=>'MEC', 'post_type'=>'mec_calendars', 'post_status'=>'publish');
859
  $post_id = wp_insert_post($post);
app/libraries/notifications.php CHANGED
@@ -57,7 +57,6 @@ class MEC_notifications extends MEC_base
57
  // Auto verification for paid bookings is enabled so don't send the verification email
58
  if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
59
 
60
- $to = $booker->user_email;
61
  $subject = isset($this->notif_settings['email_verification']['subject']) ? $this->content(__($this->notif_settings['email_verification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Please verify your email.', 'modern-events-calendar-lite');
62
  $headers = array();
63
 
@@ -72,32 +71,48 @@ class MEC_notifications extends MEC_base
72
  $headers[] = 'BCC: '.$recipient;
73
  }
74
 
75
- $message = isset($this->notif_settings['email_verification']['content']) ? $this->content($this->notif_settings['email_verification']['content'], $book_id) : '';
76
-
 
 
 
 
 
77
  // Book Data
78
  $key = get_post_meta($book_id, 'mec_verification_key', true);
79
-
80
  $event_id = get_post_meta($book_id, 'mec_event_id', true);
81
  $link = trim(get_permalink($event_id), '/').'/verify/'.$key.'/';
82
-
83
- $message = str_replace('%%verification_link%%', $link, $message);
84
- $message = str_replace('%%link%%', $link, $message);
85
-
86
  // Set Email Type to HTML
87
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
88
-
89
- // Filter the email
90
- $mail_arg = array(
91
- 'to' => $to,
92
- 'subject' => $subject,
93
- 'message' => $message,
94
- 'headers' => $headers,
95
- 'attachments' => array(),
96
- );
97
- $mail_arg = apply_filters( 'mec_before_send_email_verification', $mail_arg, $book_id, 'email_verification');
98
 
99
- // Send the mail
100
- wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
101
 
102
  // Remove the HTML Email filter
103
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
@@ -120,11 +135,10 @@ class MEC_notifications extends MEC_base
120
 
121
  // Booking Notification is disabled
122
  if(isset($this->notif_settings['booking_notification']['status']) and !$this->notif_settings['booking_notification']['status']) return false;
123
-
124
- $to = $booker->user_email;
125
  $subject = isset($this->notif_settings['booking_notification']['subject']) ? $this->content(__($this->notif_settings['booking_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is received.', 'modern-events-calendar-lite');
126
  $headers = array();
127
-
128
  $recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
129
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
130
 
@@ -135,7 +149,7 @@ class MEC_notifications extends MEC_base
135
 
136
  $headers[] = 'BCC: '.$recipient;
137
  }
138
-
139
  // Send the notification to event organizer
140
  if(isset($this->notif_settings['booking_notification']['send_to_organizer']) and $this->notif_settings['booking_notification']['send_to_organizer'] == 1)
141
  {
@@ -143,36 +157,54 @@ class MEC_notifications extends MEC_base
143
  if($organizer_email !== false) $headers[] = 'BCC: '.trim($organizer_email);
144
  }
145
 
146
- $message = isset($this->notif_settings['booking_notification']['content']) ? $this->content($this->notif_settings['booking_notification']['content'], $book_id) : '';
 
 
147
 
148
- // Attendee Full Information
149
- if(strpos($message, '%%attendee_full_info%%') !== false or strpos($message, '%%attendees_full_info%%') !== false)
150
- {
151
- $attendees_full_info = $this->get_full_attendees_info($book_id);
152
 
153
- $message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
154
- $message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
155
- }
156
-
157
  // Set Email Type to HTML
158
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
 
 
 
 
 
 
159
 
160
- // Filter the email
161
- $mail_arg = array(
162
- 'to' => $to,
163
- 'subject' => $subject,
164
- 'message' => $message,
165
- 'headers' => $headers,
166
- 'attachments' => array(),
167
- );
168
- $mail_arg = apply_filters( 'mec_before_send_booking_notification', $mail_arg, $book_id, 'booking_notification');
169
 
170
- // Send the mail
171
- wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
172
 
173
  // Remove the HTML Email filter
174
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
175
-
176
  return true;
177
  }
178
 
@@ -189,7 +221,6 @@ class MEC_notifications extends MEC_base
189
 
190
  if(!isset($booker->user_email)) return false;
191
 
192
- $to = $booker->user_email;
193
  $subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
194
  $headers = array();
195
 
@@ -204,23 +235,41 @@ class MEC_notifications extends MEC_base
204
  $headers[] = 'BCC: '.$recipient;
205
  }
206
 
207
- $message = isset($this->notif_settings['booking_confirmation']['content']) ? $this->content($this->notif_settings['booking_confirmation']['content'], $book_id) : '';
208
-
 
 
 
 
 
209
  // Set Email Type to HTML
210
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
211
 
212
- // Filter the email
213
- $mail_arg = array(
214
- 'to' => $to,
215
- 'subject' => $subject,
216
- 'message' => $message,
217
- 'headers' => $headers,
218
- 'attachments' => array(),
219
- );
220
- $mail_arg = apply_filters( 'mec_before_send_booking_confirmation', $mail_arg, $book_id, 'booking_confirmation');
221
 
222
- // Send the mail
223
- wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
224
 
225
  // Remove the HTML Email filter
226
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
@@ -237,7 +286,7 @@ class MEC_notifications extends MEC_base
237
  public function booking_cancellation($book_id)
238
  {
239
  $booker_id = get_post_field('post_author', $book_id);
240
- $booker = get_userdata($booker_id);
241
 
242
  // Cancelling Notification is disabled
243
  if(!isset($this->notif_settings['cancellation_notification']['status']) or isset($this->notif_settings['cancellation_notification']['status']) and !$this->notif_settings['cancellation_notification']['status']) return;
@@ -260,7 +309,25 @@ class MEC_notifications extends MEC_base
260
  // Send the notification to event user
261
  if(isset($this->notif_settings['cancellation_notification']['send_to_user']) and $this->notif_settings['cancellation_notification']['send_to_user'] == 1)
262
  {
263
- if(isset($booker->user_email) and $booker->user_email) $tos[] = trim($booker->user_email);
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
264
  }
265
 
266
  // No Recipient
@@ -280,19 +347,6 @@ class MEC_notifications extends MEC_base
280
  }
281
 
282
  $subject = isset($this->notif_settings['cancellation_notification']['subject']) ? $this->content(__($this->notif_settings['cancellation_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('booking canceled.', 'modern-events-calendar-lite');
283
- $message = isset($this->notif_settings['cancellation_notification']['content']) ? $this->content($this->notif_settings['cancellation_notification']['content'], $book_id) : '';
284
-
285
- // Book Data
286
- $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$this->main->get_book_post_type()), $this->main->URL('admin').'edit.php'), $message);
287
-
288
- // Attendee Full Information
289
- if(strpos($message, '%%attendee_full_info%%') !== false or strpos($message, '%%attendees_full_info%%') !== false)
290
- {
291
- $attendees_full_info = $this->get_full_attendees_info($book_id);
292
-
293
- $message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
294
- $message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
295
- }
296
 
297
  // Set Email Type to HTML
298
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
@@ -301,23 +355,42 @@ class MEC_notifications extends MEC_base
301
  $i = 1;
302
  foreach($tos as $to)
303
  {
 
 
 
304
  if($i > 1) $headers = array();
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
305
  // Filter the email
306
  $mail_arg = array(
307
- 'to' => $to,
308
  'subject' => $subject,
309
  'message' => $message,
310
  'headers' => $headers,
311
  'attachments' => array(),
312
  );
313
- $mail_arg = apply_filters( 'mec_before_send_booking_cancellation', $mail_arg, $book_id, 'booking_cancellation');
314
 
 
 
315
  // Send the mail
316
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
317
 
318
  $i++;
319
  }
320
-
321
  // Remove the HTML Email filter
322
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
323
  }
@@ -426,9 +499,8 @@ class MEC_notifications extends MEC_base
426
  // Send the emails
427
  foreach($attendees as $attendee)
428
  {
429
- if (isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
430
- continue;
431
- }
432
  $to = $attendee['email'];
433
  $message = isset($this->notif_settings['booking_reminder']['content']) ? $this->content($this->notif_settings['booking_reminder']['content'], $book_id, $attendee) : '';
434
 
@@ -442,7 +514,8 @@ class MEC_notifications extends MEC_base
442
  'headers' => $headers,
443
  'attachments' => array(),
444
  );
445
- $mail_arg = apply_filters( 'mec_before_send_booking_reminder', $mail_arg, $book_id, 'booking_reminder');
 
446
 
447
  // Send the mail
448
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
@@ -619,7 +692,6 @@ class MEC_notifications extends MEC_base
619
  $speaker_id = wp_get_post_terms( $event_id, 'mec_speaker', '');
620
 
621
  $organizer = get_term($organizer_id, 'mec_organizer');
622
- $speaker = get_term($speaker_id, 'mec_speaker');
623
  $location = get_term($location_id, 'mec_location');
624
 
625
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
@@ -628,10 +700,10 @@ class MEC_notifications extends MEC_base
628
  $message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
629
  $message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
630
  $message = str_replace('%%event_organizer_email%%', get_term_meta($organizer_id, 'email', true), $message);
 
631
  $speaker_name = array();
632
- foreach ($speaker_id as $speaker) {
633
- $speaker_name[] = isset($speaker->name) ? $speaker->name : null;
634
- }
635
  $message = str_replace('%%event_speaker_name%%', (isset($speaker_name) ? implode(', ', $speaker_name): ''), $message);
636
  $message = str_replace('%%event_location_name%%', (isset($location->name) ? $location->name : ''), $message);
637
  $message = str_replace('%%event_location_address%%', get_term_meta($location_id, 'address', true), $message);
@@ -725,12 +797,9 @@ class MEC_notifications extends MEC_base
725
  $reg_fields = $this->main->get_reg_fields($event_id);
726
  foreach($attendees as $key => $attendee)
727
  {
728
- if (isset($attendee[0]['MEC_TYPE_OF_DATA'])) {
729
- continue;
730
- }
731
- if ( $key === 'attachments' ) {
732
- continue;
733
- }
734
  $reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
735
 
736
  $attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
57
  // Auto verification for paid bookings is enabled so don't send the verification email
58
  if($price > 0 and isset($this->settings['booking_auto_verify_paid']) and $this->settings['booking_auto_verify_paid'] == 1) return false;
59
 
 
60
  $subject = isset($this->notif_settings['email_verification']['subject']) ? $this->content(__($this->notif_settings['email_verification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Please verify your email.', 'modern-events-calendar-lite');
61
  $headers = array();
62
 
71
  $headers[] = 'BCC: '.$recipient;
72
  }
73
 
74
+ // Attendees
75
+ $attendees = get_post_meta($book_id, 'mec_attendees', true);
76
+ if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
77
+
78
+ // Do not send email twice!
79
+ $done_emails = array();
80
+
81
  // Book Data
82
  $key = get_post_meta($book_id, 'mec_verification_key', true);
 
83
  $event_id = get_post_meta($book_id, 'mec_event_id', true);
84
  $link = trim(get_permalink($event_id), '/').'/verify/'.$key.'/';
85
+
 
 
 
86
  // Set Email Type to HTML
87
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
88
+
89
+ // Send the emails
90
+ foreach($attendees as $attendee)
91
+ {
92
+ $to = isset($attendee['email']) ? $attendee['email'] : '';
93
+ if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
 
 
 
 
94
 
95
+ $message = isset($this->notif_settings['email_verification']['content']) ? $this->content($this->notif_settings['email_verification']['content'], $book_id, $attendee) : '';
96
+ $message = str_replace('%%verification_link%%', $link, $message);
97
+ $message = str_replace('%%link%%', $link, $message);
98
+
99
+ // Filter the email
100
+ $mail_arg = array(
101
+ 'to' => $to,
102
+ 'subject' => $subject,
103
+ 'message' => $message,
104
+ 'headers' => $headers,
105
+ 'attachments' => array(),
106
+ );
107
+
108
+ $mail_arg = apply_filters('mec_before_send_email_verification', $mail_arg, $book_id, 'email_verification');
109
+
110
+ // Send the mail
111
+ wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
112
+
113
+ // For prevention of email repeat send
114
+ $done_emails[] = $to;
115
+ }
116
 
117
  // Remove the HTML Email filter
118
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
135
 
136
  // Booking Notification is disabled
137
  if(isset($this->notif_settings['booking_notification']['status']) and !$this->notif_settings['booking_notification']['status']) return false;
138
+
 
139
  $subject = isset($this->notif_settings['booking_notification']['subject']) ? $this->content(__($this->notif_settings['booking_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is received.', 'modern-events-calendar-lite');
140
  $headers = array();
141
+
142
  $recipients_str = isset($this->notif_settings['booking_notification']['recipients']) ? $this->notif_settings['booking_notification']['recipients'] : '';
143
  $recipients = trim($recipients_str) ? explode(',', $recipients_str) : array();
144
 
149
 
150
  $headers[] = 'BCC: '.$recipient;
151
  }
152
+
153
  // Send the notification to event organizer
154
  if(isset($this->notif_settings['booking_notification']['send_to_organizer']) and $this->notif_settings['booking_notification']['send_to_organizer'] == 1)
155
  {
157
  if($organizer_email !== false) $headers[] = 'BCC: '.trim($organizer_email);
158
  }
159
 
160
+ // Attendees
161
+ $attendees = get_post_meta($book_id, 'mec_attendees', true);
162
+ if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
163
 
164
+ // Do not send email twice!
165
+ $done_emails = array();
 
 
166
 
 
 
 
 
167
  // Set Email Type to HTML
168
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
169
+
170
+ // Send the emails
171
+ foreach($attendees as $attendee)
172
+ {
173
+ $to = isset($attendee['email']) ? $attendee['email'] : '';
174
+ if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
175
 
176
+ $message = isset($this->notif_settings['booking_notification']['content']) ? $this->content($this->notif_settings['booking_notification']['content'], $book_id, $attendee) : '';
177
+
178
+ // Attendee Full Information
179
+ if(strpos($message, '%%attendee_full_info%%') !== false or strpos($message, '%%attendees_full_info%%') !== false)
180
+ {
181
+ $attendees_full_info = $this->get_full_attendees_info($book_id);
 
 
 
182
 
183
+ $message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
184
+ $message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
185
+ }
186
+
187
+ // Filter the email
188
+ $mail_arg = array(
189
+ 'to' => $to,
190
+ 'subject' => $subject,
191
+ 'message' => $message,
192
+ 'headers' => $headers,
193
+ 'attachments' => array(),
194
+ );
195
+
196
+ $mail_arg = apply_filters( 'mec_before_send_booking_notification', $mail_arg, $book_id, 'booking_notification');
197
+
198
+ // Send the mail
199
+ wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
200
+
201
+ // For prevention of email repeat send
202
+ $done_emails[] = $to;
203
+ }
204
 
205
  // Remove the HTML Email filter
206
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
207
+
208
  return true;
209
  }
210
 
221
 
222
  if(!isset($booker->user_email)) return false;
223
 
 
224
  $subject = isset($this->notif_settings['booking_confirmation']['subject']) ? $this->content(__($this->notif_settings['booking_confirmation']['subject'], 'modern-events-calendar-lite'), $book_id) : __('Your booking is confirmed.', 'modern-events-calendar-lite');
225
  $headers = array();
226
 
235
  $headers[] = 'BCC: '.$recipient;
236
  }
237
 
238
+ // Attendees
239
+ $attendees = get_post_meta($book_id, 'mec_attendees', true);
240
+ if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
241
+
242
+ // Do not send email twice!
243
+ $done_emails = array();
244
+
245
  // Set Email Type to HTML
246
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
247
 
248
+ // Send the emails
249
+ foreach($attendees as $attendee)
250
+ {
251
+ $to = isset($attendee['email']) ? $attendee['email'] : '';
252
+ if(!trim($to) or in_array($to, $done_emails) or !filter_var($to, FILTER_VALIDATE_EMAIL)) continue;
 
 
 
 
253
 
254
+ $message = isset($this->notif_settings['booking_confirmation']['content']) ? $this->content($this->notif_settings['booking_confirmation']['content'], $book_id, $attendee) : '';
255
+
256
+ // Filter the email
257
+ $mail_arg = array(
258
+ 'to' => $to,
259
+ 'subject' => $subject,
260
+ 'message' => $message,
261
+ 'headers' => $headers,
262
+ 'attachments' => array(),
263
+ );
264
+
265
+ $mail_arg = apply_filters( 'mec_before_send_booking_confirmation', $mail_arg, $book_id, 'booking_confirmation');
266
+
267
+ // Send the mail
268
+ wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
269
+
270
+ // For prevention of email repeat send
271
+ $done_emails[] = $to;
272
+ }
273
 
274
  // Remove the HTML Email filter
275
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
286
  public function booking_cancellation($book_id)
287
  {
288
  $booker_id = get_post_field('post_author', $book_id);
289
+ $booker = get_userdata($booker_id);
290
 
291
  // Cancelling Notification is disabled
292
  if(!isset($this->notif_settings['cancellation_notification']['status']) or isset($this->notif_settings['cancellation_notification']['status']) and !$this->notif_settings['cancellation_notification']['status']) return;
309
  // Send the notification to event user
310
  if(isset($this->notif_settings['cancellation_notification']['send_to_user']) and $this->notif_settings['cancellation_notification']['send_to_user'] == 1)
311
  {
312
+ if(isset($booker->user_email) and $booker->user_email)
313
+ {
314
+ // Attendees
315
+ $attendees = get_post_meta($book_id, 'mec_attendees', true);
316
+ if(!is_array($attendees) or (is_array($attendees) and !count($attendees))) $attendees = array(get_post_meta($book_id, 'mec_attendee', true));
317
+
318
+ // For When sended email time, And prevention of email repeat send
319
+ $done_emails = array();
320
+
321
+ // Send the emails
322
+ foreach($attendees as $attendee)
323
+ {
324
+ if(isset($attendee['email']) and !in_array($attendee['email'], $done_emails))
325
+ {
326
+ $tos[] = $attendee;
327
+ $done_emails[] = $attendee['email'];
328
+ }
329
+ }
330
+ }
331
  }
332
 
333
  // No Recipient
347
  }
348
 
349
  $subject = isset($this->notif_settings['cancellation_notification']['subject']) ? $this->content(__($this->notif_settings['cancellation_notification']['subject'], 'modern-events-calendar-lite'), $book_id) : __('booking canceled.', 'modern-events-calendar-lite');
 
 
 
 
 
 
 
 
 
 
 
 
 
350
 
351
  // Set Email Type to HTML
352
  add_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
355
  $i = 1;
356
  foreach($tos as $to)
357
  {
358
+ $mailto = (is_array($to) and isset($to['email'])) ? $to['email'] : $to;
359
+
360
+ if(!trim($mailto) or !filter_var($mailto, FILTER_VALIDATE_EMAIL)) continue;
361
  if($i > 1) $headers = array();
362
+
363
+ $message = isset($this->notif_settings['cancellation_notification']['content']) ? $this->content($this->notif_settings['cancellation_notification']['content'], $book_id, (is_array($to) ? $to : NULL)) : '';
364
+
365
+ // Book Data
366
+ $message = str_replace('%%admin_link%%', $this->link(array('post_type'=>$this->main->get_book_post_type()), $this->main->URL('admin').'edit.php'), $message);
367
+
368
+ // Attendee Full Information
369
+ if(strpos($message, '%%attendee_full_info%%') !== false or strpos($message, '%%attendees_full_info%%') !== false)
370
+ {
371
+ $attendees_full_info = $this->get_full_attendees_info($book_id);
372
+
373
+ $message = str_replace('%%attendee_full_info%%', $attendees_full_info, $message);
374
+ $message = str_replace('%%attendees_full_info%%', $attendees_full_info, $message);
375
+ }
376
+
377
  // Filter the email
378
  $mail_arg = array(
379
+ 'to' => $mailto,
380
  'subject' => $subject,
381
  'message' => $message,
382
  'headers' => $headers,
383
  'attachments' => array(),
384
  );
 
385
 
386
+ $mail_arg = apply_filters( 'mec_before_send_booking_cancellation', $mail_arg, $book_id, 'booking_cancellation');
387
+
388
  // Send the mail
389
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
390
 
391
  $i++;
392
  }
393
+
394
  // Remove the HTML Email filter
395
  remove_filter('wp_mail_content_type', array($this->main, 'html_email_type'));
396
  }
499
  // Send the emails
500
  foreach($attendees as $attendee)
501
  {
502
+ if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
503
+
 
504
  $to = $attendee['email'];
505
  $message = isset($this->notif_settings['booking_reminder']['content']) ? $this->content($this->notif_settings['booking_reminder']['content'], $book_id, $attendee) : '';
506
 
514
  'headers' => $headers,
515
  'attachments' => array(),
516
  );
517
+
518
+ $mail_arg = apply_filters('mec_before_send_booking_reminder', $mail_arg, $book_id, 'booking_reminder');
519
 
520
  // Send the mail
521
  wp_mail($mail_arg['to'], html_entity_decode(stripslashes($mail_arg['subject']), ENT_HTML5), wpautop(stripslashes($mail_arg['message'])), $mail_arg['headers'], $mail_arg['attachments']);
692
  $speaker_id = wp_get_post_terms( $event_id, 'mec_speaker', '');
693
 
694
  $organizer = get_term($organizer_id, 'mec_organizer');
 
695
  $location = get_term($location_id, 'mec_location');
696
 
697
  $message = str_replace('%%event_title%%', get_the_title($event_id), $message);
700
  $message = str_replace('%%event_organizer_name%%', (isset($organizer->name) ? $organizer->name : ''), $message);
701
  $message = str_replace('%%event_organizer_tel%%', get_term_meta($organizer_id, 'tel', true), $message);
702
  $message = str_replace('%%event_organizer_email%%', get_term_meta($organizer_id, 'email', true), $message);
703
+
704
  $speaker_name = array();
705
+ foreach($speaker_id as $speaker) $speaker_name[] = isset($speaker->name) ? $speaker->name : null;
706
+
 
707
  $message = str_replace('%%event_speaker_name%%', (isset($speaker_name) ? implode(', ', $speaker_name): ''), $message);
708
  $message = str_replace('%%event_location_name%%', (isset($location->name) ? $location->name : ''), $message);
709
  $message = str_replace('%%event_location_address%%', get_term_meta($location_id, 'address', true), $message);
797
  $reg_fields = $this->main->get_reg_fields($event_id);
798
  foreach($attendees as $key => $attendee)
799
  {
800
+ if(isset($attendee[0]['MEC_TYPE_OF_DATA'])) continue;
801
+ if($key === 'attachments') continue;
802
+
 
 
 
803
  $reg_form = isset($attendee['reg']) ? $attendee['reg'] : array();
804
 
805
  $attendees_full_info .= __('Name', 'modern-events-calendar-lite').': '.((isset($attendee['name']) and trim($attendee['name'])) ? $attendee['name'] : '---')."\r\n";
app/modules/booking/steps/form.php CHANGED
@@ -87,7 +87,7 @@ if(!$mec_email)
87
  <input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="text" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
88
 
89
  <?php /** Date **/ elseif($reg_field['type'] == 'date'): ?>
90
- <input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="date" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
91
 
92
  <?php /** File **/ elseif($reg_field['type'] == 'file'): ?>
93
  <input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="file" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
87
  <input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="text" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
88
 
89
  <?php /** Date **/ elseif($reg_field['type'] == 'date'): ?>
90
+ <input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="date" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> min="1970-01-01" max="2099-12-31" />
91
 
92
  <?php /** File **/ elseif($reg_field['type'] == 'file'): ?>
93
  <input id="mec_book_reg_field_reg<?php echo $j.'_'.$reg_field_id; ?>" type="file" name="book[tickets][<?php echo $j; ?>][reg][<?php echo $reg_field_id; ?>]" value="" placeholder="<?php _e($reg_field['label'], 'modern-events-calendar-lite'); ?>" <?php if(isset($reg_field['mandatory']) and $reg_field['mandatory']) echo 'required'; ?> />
app/modules/local-time/details.php CHANGED
@@ -23,7 +23,7 @@ $occurrence_end_date = trim($occurrence) ? $this->get_end_date_by_occurrence($ev
23
  $gmt_offset_seconds = $this->get_gmt_offset_seconds((trim($occurrence) ? $occurrence : $event->date['start']['date']));
24
 
25
  $gmt_start_time = strtotime((trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm']) - $gmt_offset_seconds;
26
- $gmt_end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $event->date['end']['date']).' '.sprintf("%02d", $event->date['end']['hour']).':'.sprintf("%02d", $event->date['end']['minutes']).' '.$event->date['end']['ampm']) - $gmt_offset_seconds;
27
 
28
  $user_timezone = new DateTimeZone($timezone);
29
  $gmt_timezone = new DateTimeZone('GMT');
23
  $gmt_offset_seconds = $this->get_gmt_offset_seconds((trim($occurrence) ? $occurrence : $event->date['start']['date']));
24
 
25
  $gmt_start_time = strtotime((trim($occurrence) ? $occurrence : $event->date['start']['date']).' '.sprintf("%02d", $event->date['start']['hour']).':'.sprintf("%02d", $event->date['start']['minutes']).' '.$event->date['start']['ampm']) - $gmt_offset_seconds;
26
+ $gmt_end_time = strtotime((trim($occurrence_end_date) ? $occurrence_end_date : $event->date['end']['date']).' '.sprintf("%02d", ($event->date['end']['hour'] == '0') ? '12' : $event->date['end']['hour']).':'.sprintf("%02d", $event->date['end']['minutes']).' '.$event->date['end']['ampm']) - $gmt_offset_seconds;
27
 
28
  $user_timezone = new DateTimeZone($timezone);
29
  $gmt_timezone = new DateTimeZone('GMT');
app/skins/grid/render.php CHANGED
@@ -184,7 +184,8 @@ if($this->style == 'colorful')
184
  <div class="mec-event-image"><?php do_action('display_mec_clean_image' , $event ); ?><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
185
  <div class="mec-event-content">
186
  <?php do_action('display_mec_tai' , $event ); ?>
187
- <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?><?php do_action('mec_clean_custom_head' , $event ); ?></h4>
 
188
  <p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
189
  </div>
190
  <div class="mec-event-footer mec-color">
184
  <div class="mec-event-image"><?php do_action('display_mec_clean_image' , $event ); ?><a data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->thumbnails['medium']; ?></a></div>
185
  <div class="mec-event-content">
186
  <?php do_action('display_mec_tai' , $event ); ?>
187
+ <?php do_action('mec_clean_custom_head' , $event , $event_color ); ?>
188
+ <h4 class="mec-event-title"><a class="mec-color-hover" data-event-id="<?php echo $event->data->ID; ?>" href="<?php echo $this->main->get_event_date_permalink($event->data->permalink, $event->date['start']['date']); ?>"><?php echo $event->data->title; ?></a><?php echo $event_color; ?></h4>
189
  <p><?php echo (isset($location['address']) ? $location['address'] : ''); ?></p>
190
  </div>
191
  <div class="mec-event-footer mec-color">
assets/css/backend.css CHANGED
@@ -5205,7 +5205,7 @@ li.wns-be-group-menu-li.mec-settings-menu:hover > .mec-settings-submenu {
5205
  }
5206
 
5207
  .mec-custom-nice-select .wn-img-sh img {
5208
- margin: 6px 0 15px;
5209
  line-height: 1;
5210
  max-width: 68px;
5211
  max-height: 56px;
@@ -5297,12 +5297,18 @@ li.wns-be-group-menu-li.mec-settings-menu:hover > .mec-settings-submenu {
5297
 
5298
  .mec-custom-nice-select ul.list li .wn-mec-text {
5299
  position: relative;
5300
- padding-top: 14px;
 
5301
  }
5302
 
5303
  .mec-custom-nice-select ul.list li .wn-mec-text:after {
5304
  left: calc(50% - 7px);
5305
- top: -6px;
 
 
 
 
 
5306
  }
5307
 
5308
  .mec-sed-methods li:before {
5205
  }
5206
 
5207
  .mec-custom-nice-select .wn-img-sh img {
5208
+ margin: 4px 0 1px;
5209
  line-height: 1;
5210
  max-width: 68px;
5211
  max-height: 56px;
5297
 
5298
  .mec-custom-nice-select ul.list li .wn-mec-text {
5299
  position: relative;
5300
+ padding-top: 0;
5301
+ padding-bottom: 28px;
5302
  }
5303
 
5304
  .mec-custom-nice-select ul.list li .wn-mec-text:after {
5305
  left: calc(50% - 7px);
5306
+ top: auto;
5307
+ bottom: 1px;
5308
+ }
5309
+
5310
+ .mec-custom-nice-select ul.list li .wn-img-sh {
5311
+ line-height: 1;
5312
  }
5313
 
5314
  .mec-sed-methods li:before {
assets/css/backend.min.css CHANGED
@@ -2,4 +2,4 @@
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
- */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}div#plugin-information-content .section{margin-top:-600px}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:0;left:140px;box-shadow:0 3px 42px -8px rgba(0,0,0,.3);visibility:hidden;opacity:0;border:1px solid #dbdbdb;z-index:999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;margin-left:-132px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #008aff;box-shadow:0 1px 8px -3px #008aff inset;color:#008aff;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:6px 0 15px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:14px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:-6px}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}
2
  * Bootstrap v3.3.7 (http://getbootstrap.com)
3
  * Copyright 2011-2016 Twitter, Inc.
4
  * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
5
+ */#webnus-dashboard button,#webnus-dashboard input,#webnus-dashboard select,#webnus-dashboard textarea{font-family:inherit;font-size:inherit;line-height:inherit}#webnus-dashboard a{color:#337ab7;text-decoration:none}#webnus-dashboard a:focus,#webnus-dashboard a:hover{color:#23527c}#webnus-dashboard a:focus{outline:-webkit-focus-ring-color auto 5px;outline-offset:-2px}#webnus-dashboard figure{margin:0}#webnus-dashboard img{vertical-align:middle}.w-img-responsive{display:block;max-width:100%;height:auto}.w-img-rounded{border-radius:6px}.w-img-thumbnail{padding:4px;line-height:1w-42857143;background-color:#fff;border:1px solid #ddd;border-radius:4px;-webkit-transition:all 0w-2s ease-in-out;-o-transition:all 0w-2s ease-in-out;transition:all 0w-2s ease-in-out;display:inline-block;max-width:100%;height:auto}.w-img-circle{border-radius:50%}hr{margin-top:20px;margin-bottom:20px;border:0;border-top:1px solid #eee}.w-sr-only{position:absolute;width:1px;height:1px;margin:-1px;padding:0;overflow:hidden;clip:rect(0,0,0,0);border:0}.w-sr-only-focusable:active,.w-sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}.w-container,.w-container-fluid{margin-right:auto;margin-left:auto;padding-left:15px;padding-right:15px}[role=button]{cursor:pointer}@media (min-width:768px){.w-container{width:750px}}@media (min-width:992px){.w-container{width:970px}}@media (min-width:1200px){.w-container{width:1170px}}.w-row{margin-left:-15px;margin-right:-15px}.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9,.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9,.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9,.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{position:relative;min-height:1px;padding-left:15px;padding-right:15px}.w-col-xs-1,.w-col-xs-10,.w-col-xs-11,.w-col-xs-12,.w-col-xs-2,.w-col-xs-3,.w-col-xs-4,.w-col-xs-5,.w-col-xs-6,.w-col-xs-7,.w-col-xs-8,.w-col-xs-9{float:left}.w-col-xs-12{width:100%}.w-col-xs-11{width:91.66666667%}.w-col-xs-10{width:83.33333333%}.w-col-xs-9{width:75%}.w-col-xs-8{width:66.66666667%}.w-col-xs-7{width:58.33333333%}.w-col-xs-6{width:50%}.w-col-xs-5{width:41.66666667%}.w-col-xs-4{width:33.33333333%}.w-col-xs-3{width:25%}.w-col-xs-2{width:16.66666667%}.w-col-xs-1{width:8w-33333333%}.w-col-xs-pull-12{right:100%}.w-col-xs-pull-11{right:91.66666667%}.w-col-xs-pull-10{right:83.33333333%}.w-col-xs-pull-9{right:75%}.w-col-xs-pull-8{right:66.66666667%}.w-col-xs-pull-7{right:58.33333333%}.w-col-xs-pull-6{right:50%}.w-col-xs-pull-5{right:41.66666667%}.w-col-xs-pull-4{right:33.33333333%}.w-col-xs-pull-3{right:25%}.w-col-xs-pull-2{right:16.66666667%}.w-col-xs-pull-1{right:8w-33333333%}.w-col-xs-pull-0{right:auto}.w-col-xs-push-12{left:100%}.w-col-xs-push-11{left:91.66666667%}.w-col-xs-push-10{left:83.33333333%}.w-col-xs-push-9{left:75%}.w-col-xs-push-8{left:66.66666667%}.w-col-xs-push-7{left:58.33333333%}.w-col-xs-push-6{left:50%}.w-col-xs-push-5{left:41.66666667%}.w-col-xs-push-4{left:33.33333333%}.w-col-xs-push-3{left:25%}.w-col-xs-push-2{left:16.66666667%}.w-col-xs-push-1{left:8w-33333333%}.w-col-xs-push-0{left:auto}.w-col-xs-offset-12{margin-left:100%}.w-col-xs-offset-11{margin-left:91.66666667%}.w-col-xs-offset-10{margin-left:83.33333333%}.w-col-xs-offset-9{margin-left:75%}.w-col-xs-offset-8{margin-left:66.66666667%}.w-col-xs-offset-7{margin-left:58.33333333%}.w-col-xs-offset-6{margin-left:50%}.w-col-xs-offset-5{margin-left:41.66666667%}.w-col-xs-offset-4{margin-left:33.33333333%}.w-col-xs-offset-3{margin-left:25%}.w-col-xs-offset-2{margin-left:16.66666667%}.w-col-xs-offset-1{margin-left:8w-33333333%}.w-col-xs-offset-0{margin-left:0}@media (min-width:768px){.w-col-sm-1,.w-col-sm-10,.w-col-sm-11,.w-col-sm-12,.w-col-sm-2,.w-col-sm-3,.w-col-sm-4,.w-col-sm-5,.w-col-sm-6,.w-col-sm-7,.w-col-sm-8,.w-col-sm-9{float:left}.w-col-sm-12{width:100%}.w-col-sm-11{width:91.66666667%}.w-col-sm-10{width:83.33333333%}.w-col-sm-9{width:75%}.w-col-sm-8{width:66.66666667%}.w-col-sm-7{width:58.33333333%}.w-col-sm-6{width:50%}.w-col-sm-5{width:41.66666667%}.w-col-sm-4{width:33.33333333%}.w-col-sm-3{width:25%}.w-col-sm-2{width:16.66666667%}.w-col-sm-1{width:8w-33333333%}.w-col-sm-pull-12{right:100%}.w-col-sm-pull-11{right:91.66666667%}.w-col-sm-pull-10{right:83.33333333%}.w-col-sm-pull-9{right:75%}.w-col-sm-pull-8{right:66.66666667%}.w-col-sm-pull-7{right:58.33333333%}.w-col-sm-pull-6{right:50%}.w-col-sm-pull-5{right:41.66666667%}.w-col-sm-pull-4{right:33.33333333%}.w-col-sm-pull-3{right:25%}.w-col-sm-pull-2{right:16.66666667%}.w-col-sm-pull-1{right:8w-33333333%}.w-col-sm-pull-0{right:auto}.w-col-sm-push-12{left:100%}.w-col-sm-push-11{left:91.66666667%}.w-col-sm-push-10{left:83.33333333%}.w-col-sm-push-9{left:75%}.w-col-sm-push-8{left:66.66666667%}.w-col-sm-push-7{left:58.33333333%}.w-col-sm-push-6{left:50%}.w-col-sm-push-5{left:41.66666667%}.w-col-sm-push-4{left:33.33333333%}.w-col-sm-push-3{left:25%}.w-col-sm-push-2{left:16.66666667%}.w-col-sm-push-1{left:8w-33333333%}.w-col-sm-push-0{left:auto}.w-col-sm-offset-12{margin-left:100%}.w-col-sm-offset-11{margin-left:91.66666667%}.w-col-sm-offset-10{margin-left:83.33333333%}.w-col-sm-offset-9{margin-left:75%}.w-col-sm-offset-8{margin-left:66.66666667%}.w-col-sm-offset-7{margin-left:58.33333333%}.w-col-sm-offset-6{margin-left:50%}.w-col-sm-offset-5{margin-left:41.66666667%}.w-col-sm-offset-4{margin-left:33.33333333%}.w-col-sm-offset-3{margin-left:25%}.w-col-sm-offset-2{margin-left:16.66666667%}.w-col-sm-offset-1{margin-left:8w-33333333%}.w-col-sm-offset-0{margin-left:0}}@media (min-width:992px){.w-col-md-1,.w-col-md-10,.w-col-md-11,.w-col-md-12,.w-col-md-2,.w-col-md-3,.w-col-md-4,.w-col-md-5,.w-col-md-6,.w-col-md-7,.w-col-md-8,.w-col-md-9{float:left}.w-col-md-12{width:100%}.w-col-md-11{width:91.66666667%}.w-col-md-10{width:83.33333333%}.w-col-md-9{width:75%}.w-col-md-8{width:66.66666667%}.w-col-md-7{width:58.33333333%}.w-col-md-6{width:50%}.w-col-md-5{width:41.66666667%}.w-col-md-4{width:33.33333333%}.w-col-md-3{width:25%}.w-col-md-2{width:16.66666667%}.w-col-md-1{width:8w-33333333%}.w-col-md-pull-12{right:100%}.w-col-md-pull-11{right:91.66666667%}.w-col-md-pull-10{right:83.33333333%}.w-col-md-pull-9{right:75%}.w-col-md-pull-8{right:66.66666667%}.w-col-md-pull-7{right:58.33333333%}.w-col-md-pull-6{right:50%}.w-col-md-pull-5{right:41.66666667%}.w-col-md-pull-4{right:33.33333333%}.w-col-md-pull-3{right:25%}.w-col-md-pull-2{right:16.66666667%}.w-col-md-pull-1{right:8w-33333333%}.w-col-md-pull-0{right:auto}.w-col-md-push-12{left:100%}.w-col-md-push-11{left:91.66666667%}.w-col-md-push-10{left:83.33333333%}.w-col-md-push-9{left:75%}.w-col-md-push-8{left:66.66666667%}.w-col-md-push-7{left:58.33333333%}.w-col-md-push-6{left:50%}.w-col-md-push-5{left:41.66666667%}.w-col-md-push-4{left:33.33333333%}.w-col-md-push-3{left:25%}.w-col-md-push-2{left:16.66666667%}.w-col-md-push-1{left:8w-33333333%}.w-col-md-push-0{left:auto}.w-col-md-offset-12{margin-left:100%}.w-col-md-offset-11{margin-left:91.66666667%}.w-col-md-offset-10{margin-left:83.33333333%}.w-col-md-offset-9{margin-left:75%}.w-col-md-offset-8{margin-left:66.66666667%}.w-col-md-offset-7{margin-left:58.33333333%}.w-col-md-offset-6{margin-left:50%}.w-col-md-offset-5{margin-left:41.66666667%}.w-col-md-offset-4{margin-left:33.33333333%}.w-col-md-offset-3{margin-left:25%}.w-col-md-offset-2{margin-left:16.66666667%}.w-col-md-offset-1{margin-left:8w-33333333%}.w-col-md-offset-0{margin-left:0}}@media (min-width:1200px){.w-col-lg-1,.w-col-lg-10,.w-col-lg-11,.w-col-lg-12,.w-col-lg-2,.w-col-lg-3,.w-col-lg-4,.w-col-lg-5,.w-col-lg-6,.w-col-lg-7,.w-col-lg-8,.w-col-lg-9{float:left}.w-col-lg-12{width:100%}.w-col-lg-11{width:91.66666667%}.w-col-lg-10{width:83.33333333%}.w-col-lg-9{width:75%}.w-col-lg-8{width:66.66666667%}.w-col-lg-7{width:58.33333333%}.w-col-lg-6{width:50%}.w-col-lg-5{width:41.66666667%}.w-col-lg-4{width:33.33333333%}.w-col-lg-3{width:25%}.w-col-lg-2{width:16.66666667%}.w-col-lg-1{width:8w-33333333%}.w-col-lg-pull-12{right:100%}.w-col-lg-pull-11{right:91.66666667%}.w-col-lg-pull-10{right:83.33333333%}.w-col-lg-pull-9{right:75%}.w-col-lg-pull-8{right:66.66666667%}.w-col-lg-pull-7{right:58.33333333%}.w-col-lg-pull-6{right:50%}.w-col-lg-pull-5{right:41.66666667%}.w-col-lg-pull-4{right:33.33333333%}.w-col-lg-pull-3{right:25%}.w-col-lg-pull-2{right:16.66666667%}.w-col-lg-pull-1{right:8w-33333333%}.w-col-lg-pull-0{right:auto}.w-col-lg-push-12{left:100%}.w-col-lg-push-11{left:91.66666667%}.w-col-lg-push-10{left:83.33333333%}.w-col-lg-push-9{left:75%}.w-col-lg-push-8{left:66.66666667%}.w-col-lg-push-7{left:58.33333333%}.w-col-lg-push-6{left:50%}.w-col-lg-push-5{left:41.66666667%}.w-col-lg-push-4{left:33.33333333%}.w-col-lg-push-3{left:25%}.w-col-lg-push-2{left:16.66666667%}.w-col-lg-push-1{left:8w-33333333%}.w-col-lg-push-0{left:auto}.w-col-lg-offset-12{margin-left:100%}.w-col-lg-offset-11{margin-left:91.66666667%}.w-col-lg-offset-10{margin-left:83.33333333%}.w-col-lg-offset-9{margin-left:75%}.w-col-lg-offset-8{margin-left:66.66666667%}.w-col-lg-offset-7{margin-left:58.33333333%}.w-col-lg-offset-6{margin-left:50%}.w-col-lg-offset-5{margin-left:41.66666667%}.w-col-lg-offset-4{margin-left:33.33333333%}.w-col-lg-offset-3{margin-left:25%}.w-col-lg-offset-2{margin-left:16.66666667%}.w-col-lg-offset-1{margin-left:8w-33333333%}.w-col-lg-offset-0{margin-left:0}}.w-clearfix:after,.w-clearfix:before,.w-container-fluid:after,.w-container-fluid:before,.w-container:after,.w-container:before,.w-row:after,.w-row:before{content:" ";display:table}.w-clearfix:after,.w-container-fluid:after,.w-container:after,.w-row:after{clear:both}.w-center-block{display:block;margin-left:auto;margin-right:auto}.w-pull-right{float:right!important}.w-pull-left{float:left!important}.w-hide{display:none!important}.w-show{display:block!important}.w-invisible{visibility:hidden}.w-text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}.w-hidden{display:none!important}.w-affix{position:fixed}.mec-image-popup-wrap{display:none}#wns-be-infobar.sticky{position:fixed;top:32px;background:#fff;z-index:9999;width:82%}.wns-be-main .wns-saved-settings.sticky{position:fixed;width:62.5%;top:111px;z-index:999999999999999999}#mec-search-settings{border-radius:2px;min-height:32px;box-shadow:0 3px 14px -5px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);padding:9px 10px 11px;margin-right:6px;color:#7c7772;font-size:12px;width:200px}#mec-search-settings::-webkit-input-placeholder{color:#7c7772}#mec-search-settings::-moz-placeholder{color:#7c7772}#mec-search-settings:-ms-input-placeholder{color:#7c7772}#mec-search-settings:-moz-placeholder{color:#7c7772}.mec-export-settings,.mec-import-settings{font-weight:700;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:8px 32px;height:36px;letter-spacing:.2px;line-height:36px;font-size:13px;color:#fff;text-decoration:none;display:inline-block}.mec-export-settings:hover,.mec-import-settings:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5);color:#fff}textarea.mec-import-settings-content{display:block;width:100%;min-height:120px;margin-bottom:25px;padding:10px 15px}.mec-import-options-notification{display:inline-block}.mec-import-options-notification .mec-message-import-error,.mec-import-options-notification .mec-message-import-success{display:inline-block;padding:15px 12px;margin-left:12px;opacity:0;visibility:hidden;font-weight:700}.mec-import-options-notification .mec-message-import-success{opacity:1;visibility:visible;border:2px solid green}.mec-import-options-notification .mec-message-import-error{opacity:1;visibility:visible;border:2px solid #e62117}.mec-export-settings:focus,.mec-import-settings:focus{color:#fff}.mec-import-settings-wrap{position:relative}.mec-loarder-wrap{position:absolute;top:0;bottom:0;left:0;right:0;background:rgba(202,202,202,.7);z-index:9999}.mec-loarder-wrap.mec-settings-loader{top:34px}.mec-loarder{position:absolute;width:64px;height:64px;top:calc(50% - 32px);left:calc(50% - 36px)}.mec-loarder div{display:inline-block;position:absolute;left:6px;width:4px;background:#fff;animation:mec-loarder 1.2s cubic-bezier(0,.5,.5,1) infinite}.mec-loarder div:nth-child(1){left:27px;animation-delay:-.24s;background:#0075ff}.mec-loarder div:nth-child(2){left:36px;animation-delay:-.12s;background:#028bff}.mec-loarder div:nth-child(3){left:45px;animation-delay:0;background:#32a0ff}@keyframes mec-loarder{0%{top:6px;height:51px}100%,50%{top:19px;height:26px}}.w-box.support-page.searchbox{background:#008aff;background:linear-gradient(180deg,#36a2ff 0,#008aff 50%,#0072ff 100%);color:#fff;min-height:260px;text-align:center;border-radius:2px}#webnus-dashboard .search-form input{background:rgba(255,255,255,.2);border:none;width:50%;outline:0;color:rgba(255,255,255,.7);font-size:18px;border-radius:4px 0 0 4px;box-shadow:0 1px 2px 0 rgba(0,0,0,.03);-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s;padding:20px 32px;margin:0}#webnus-dashboard .search-form button{background:rgba(255,255,255,.2);border:none;padding:20px 32px;margin-left:-2px;color:#fff;border-radius:0 4px 4px 0;font-size:18px;cursor:pointer;-webkit-transition:background .4s,box-shadow .2s;transition:background .4s,box-shadow .2s}#webnus-dashboard .search-form button:hover{background:#fff;color:#3a3c4c}.w-box.support-page.searchbox p{font-size:30px}.search-form input::-webkit-input-placeholder{color:rgba(255,255,255,.7)}.search-form input::-moz-placeholder{color:rgba(255,255,255,.7)}.search-form input:-ms-input-placeholder{color:rgba(255,255,255,.7)}.search-form input:-moz-placeholder{color:rgba(255,255,255,.7)}#webnus-dashboard .search-form input:active,#webnus-dashboard .search-form input:focus{box-shadow:0 10px 20px rgba(0,0,0,.14);background:#fff;color:#3a3c4c}#webnus-dashboard .search-form input:active::-webkit-input-placeholder,#webnus-dashboard .search-form input:focus::-webkit-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active::-moz-placeholder,#webnus-dashboard .search-form input:focus::-moz-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-ms-input-placeholder,#webnus-dashboard .search-form input:focus:-ms-input-placeholder{color:#3a3c4c}#webnus-dashboard .search-form input:active:-moz-placeholder,#webnus-dashboard .search-form input:focus:-moz-placeholder{color:#3a3c4c}#webnus-dashboard .w-box.support-page.mec-ticksy{text-align:center;min-height:260px}#webnus-dashboard .w-box.support-page.mec-ticksy p{font-size:20px;width:70%;margin:0 auto;margin-bottom:40px;margin-top:40px}#webnus-dashboard .w-box.support-page.mec-ticksy a{color:#fff;font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:12px 20px;cursor:pointer;margin-bottom:40px;display:inline-block}#webnus-dashboard .w-box.support-page.mec-ticksy a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}.mec-faq-accordion>.mec-faq-accordion-content{display:none}#webnus-dashboard .mec-faq-accordion-trigger a{font-size:16px;padding:12px;background:#f1f1f1;display:block;color:#222;line-height:17px;outline:0}.mec-faq-accordion-trigger{margin-bottom:5px;position:relative}#webnus-dashboard .mec-faq-accordion-trigger a:after{font-family:simple-line-icons;content:"\e095";position:absolute;right:12px;font-weight:700}.mec-faq-accordion-content{padding:5px 14px 25px}#webnus-dashboard .mec-faq-accordion-trigger a.active:after{content:"\e082"}#webnus-dashboard .support-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}#webnus-dashboard .support-page-links a:hover,#webnus-dashboard .w-box.support-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .support-page-links{display:inline-block;margin:12px 4px 16px 0}.support-page-links.link-to-doc a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.support-page-links.link-to-videos a{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}.support-page-links.link-to-articles a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}.w-box.support-page.articles-box .w-box-content a{display:block;padding:6px 0}#webnus-dashboard .w-box.support-page.videobox .w-button a{color:#fff;font-size:10px;padding:5px 15px;min-height:10px;font-weight:500;border-radius:22px;box-shadow:0 3px 10px -4px #ff5a35;text-shadow:none;background:#ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);border:none;transition:.24s}.w-box.support-page.articles-box,.w-box.support-page.faq-box{min-height:500px}.w-box.support-page.videobox{border-radius:2px;min-height:282px;box-shadow:0 1px 6px rgba(0,0,0,.039)!important}#webnus-dashboard .w-box.support-page.videobox .w-button a i{margin-right:6px}.support-page .w-box-content ul{margin-top:5px;padding-left:5px}.support-page .w-box-content ul li{font-size:13px}.support-page .w-box-content ul li i{font-size:17px;vertical-align:text-bottom;margin-right:7px;color:#999}.w-box.mec-activation{background:#fff url(../img/dp-dsb-support.jpg) no-repeat top right}.w-box.mec-activation .w-box-head{color:#40d8f0;width:75%}.w-box.mec-activation .w-box-content{padding:10px 30px}.w-box.mec-activation input[type=radio]{display:none}.w-box.mec-activation input[type=radio]+label{color:#000;font-size:13px;line-height:14px!important;color:#7b7b7b}.w-box.mec-activation input[type=radio].checked+label{color:#40d8f0}.w-box.mec-activation input[type=radio]+label span{display:inline-block;margin:-2px 6px 0 0;vertical-align:middle;cursor:pointer;height:14px;width:14px;text-align:center;background-color:#fff;border:1px solid #d4d4d4;border-radius:100%;box-shadow:0 2px 16px -2px rgba(0,0,0,.2);-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;position:relative}.w-box.mec-activation input[type=radio].checked+label span{background-color:#40d8f0;border-color:#40d8f0;box-shadow:0 2px 14px -3px #40d8f0}.w-box.mec-activation input[type=radio].checked+label span:after{content:'';display:block;position:absolute;top:4px;left:4px;width:4px;height:4px;background:#fff;border-radius:100%}.w-box.mec-activation .LicenseType label{padding-right:20px;font-weight:500}.w-box.mec-activation .LicenseField{display:inline-block;position:relative;margin-top:20px}.w-box.mec-activation input[name=MECPurchaseCode]{box-shadow:inset 0 1px 2px rgba(0,0,0,.07);min-width:220px;background:#f4f4f4;border:none;border-radius:33px;width:500px;min-height:50px;margin:0;padding-left:20px;text-align:left}#webnus-dashboard .w-box.mec-activation input[type=submit]{height:40px;line-height:40px;font-weight:600;border:none;cursor:pointer;padding:0 30px;border-radius:33px;color:#fff;letter-spacing:1px;text-transform:uppercase;font-size:12px;background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67;transition:all .28s ease;position:absolute;right:5px;top:4px;font-size:12px}#webnus-dashboard .w-box.mec-activation input[type=submit]:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 23px -7px rgba(0,0,0,.5)}#MECActivation .MECPurchaseStatus,.addon-activation-form .MECPurchaseStatus{display:inline-block;width:40px;height:40px;text-align:center;padding-top:9px;color:#fff;font-weight:700;font-size:18px;border-radius:50%;padding-top:8px;position:absolute;right:-51px;top:calc(50% - 20px)}.MECPurchaseStatus:after,.MECPurchaseStatus:before{position:absolute;border-radius:50px;background:#fff;content:'';transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:before{width:22px;height:4px;right:9px;top:18px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseError:after{width:22px;height:4px;right:9px;top:18px;transform:rotate(-45deg)}.MECPurchaseStatus.PurchaseSuccess:before{width:13px;height:4px;right:19px;top:21px;transform:rotate(45deg)}.MECPurchaseStatus.PurchaseSuccess:after{width:22px;height:4px;right:5px;top:18px;transform:rotate(-45deg)}#MECActivation .MECPurchaseStatus.PurchaseError,.addon-activation-form .MECPurchaseStatus.PurchaseError{background:#ff876c;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%);box-shadow:0 5px 10px -5px #ff876c}#MECActivation .MECPurchaseStatus.PurchaseSuccess,.addon-activation-form .MECPurchaseStatus.PurchaseSuccess{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.wna-spinner-wrap{position:absolute;background:#000;width:509px;height:64px;top:-8px;border-radius:50px;z-index:999;background-color:#fff;opacity:.9}.wna-spinner{width:40px;height:40px;position:relative;margin:6px auto}.wna-spinner .double-bounce1,.wna-spinner .double-bounce2{width:100%;height:100%;border-radius:50%;background-color:#40d8f0;opacity:.6;position:absolute;top:0;left:0;-webkit-animation:sk-bounce 2s infinite ease-in-out;animation:sk-bounce 2s infinite ease-in-out}.wna-spinner .double-bounce2{-webkit-animation-delay:-1s;animation-delay:-1s}#MECActivation .MECLicenseMessage,.addon-activation-form .MECLicenseMessage{margin-top:24px;color:#f64;max-width:570px}.box-addon-activation-toggle-content,.box-addon-activation-toggle-head{display:none}.addon-activation-form h3{font-size:15px;font-weight:400;margin:34px 0 -7px}.box-addon-activation-toggle-head{line-height:1.5;font-size:16px;margin-top:20px;cursor:pointer}.box-addon-activation-toggle-head i{margin-right:7px;cursor:pointer;font-weight:700}#mec-advanced-wraper div:first-child>ul{display:block;margin:5px 0;padding:5px 0;width:390px;border:1px solid #e1e2e3;border-radius:2px;box-shadow:0 1px 3px rgba(0,0,0,.05)}#mec-advanced-wraper div:first-child>ul span{display:none}#mec-advanced-wraper div:first-child>ul *{display:inline-block;background:#fff;font-size:12px;color:#717273;text-align:center}#mec-advanced-wraper div:first-child>ul>li{width:60px;font-weight:700;margin:0 10px 0 0;padding:4px 0;border-right:1px solid #e1e2e3}#mec-advanced-wraper div:first-child>ul>ul>li{margin:0;padding:2px 10px;cursor:pointer;border-radius:2px;transition:all .18s ease}#mec-advanced-wraper div:first-child>ul>ul>li:hover,.mec-active{background:#008aff!important;color:#fff!important}@-webkit-keyframes sk-bounce{0%,100%{-webkit-transform:scale(0)}50%{-webkit-transform:scale(1)}}@keyframes sk-bounce{0%,100%{transform:scale(0);-webkit-transform:scale(0)}50%{transform:scale(1);-webkit-transform:scale(1)}}.w-col-sm-3 .w-box.addon{min-height:auto;box-shadow:0 3px 16px -5px rgba(0,0,0,.1);border-radius:2px}.w-box-child.mec-addon-box{padding:20px 20px}.mec-addon-box-head{border-bottom:1px solid #e8e8e8;padding-bottom:5px;margin-bottom:14px;position:relative}.mec-addon-box-version{position:relative;background:#eaeaea;border-radius:1px;padding:0 8px;color:#5a5a5a;font-size:11px;letter-spacing:.2px;line-height:21px;display:inline-block;margin:3px 0}.mec-addon-box-title{font-weight:700;font-size:18px;line-height:25px}.mec-addon-box-title a span{color:#444;font-size:15px}.mec-addon-box-content p{color:#777;font-size:13px}.mec-addon-box-mec-version{background:#f3f3f3;padding:10px;font-size:13px}#webnus-dashboard .addons-page-links{display:inline-block;margin:12px 4px 16px 0}#webnus-dashboard .addons-page-links a{background-color:#fff;color:#fff;border-radius:2px;padding:13px 24px;font-size:12px;letter-spacing:1px;font-weight:600;text-transform:uppercase}.addons-page-links.link-to-purchase a{background:#4cbf67;background:linear-gradient(95deg,#6fe08a 0,#58cf74 50%,#36cb58 100%);box-shadow:0 5px 10px -5px #4cbf67}.addons-page-links.link-to-install-addons a{background:#b092e6;background:linear-gradient(95deg,#b092e6 0,#9b70e8 50%,#8e5cea 100%);box-shadow:0 5px 10px -5px #b092e6}#webnus-dashboard .addons-page-links a:hover,#webnus-dashboard .w-box.addons-page.videobox .w-button a:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}.mec-addon-box-footer{margin-top:25px}#webnus-dashboard .mec-addon-box-footer a{font-weight:500;border-radius:2px;box-shadow:0 3px 10px -4px #008aff;text-shadow:none;background:#008aff;background:linear-gradient(95deg,#36a2ff 0,#008aff 50%,#0072ff 100%);border:none;transition:.24s;padding:7px 19px;margin-top:10px;display:inline-block;letter-spacing:.2px;color:#fff;width:100%;text-align:center}#webnus-dashboard .mec-addon-box-footer a.mec-addon-box-intro{box-shadow:0 3px 10px -4px #ff5a35;background:linear-gradient(95deg,#ff876c 0,#ff7455 50%,#ff5a35 100%)}#webnus-dashboard .mec-addon-box-footer a:hover{background:#222!important;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%)!important;box-shadow:0 5px 23px -7px rgba(0,0,0,.5)!important;cursor:pointer!important}#webnus-dashboard .mec-addon-box-footer a i{margin-right:6px;color:#fff}@media(max-width:1366px){.wns-be-container #wns-be-content{padding:5px 15px 0}.mec-form-row .mec-col-8 label{font-size:10px}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{font-size:10px}}@media (max-width:780px){.wns-be-container #wns-be-content{padding:10px 0}.wns-be-container .mec-form-row .mec-col-8 label{width:50%;display:block}.wns-be-container .mec-form-row input[type=checkbox]{width:14px;height:14px}.wns-be-container .wns-be-sidebar li .subsection a{padding-left:30px}.wns-be-container .wns-be-sidebar{width:200px}.wns-be-container .wns-be-main{margin-left:200px}.wns-be-container .mec-tooltip .box{min-width:235px!important}.wns-be-container .mec-tooltip .box p{font-size:12px!important}#wns-be-infobar.sticky{position:unset}}@media (max-width:480px){.wns-be-container .wns-be-sidebar{width:100%;position:unset;float:none}.wns-be-container .wns-be-main{margin-left:0;width:100%;position:unset}.wns-be-container{margin-top:50px}.wns-be-container #wns-be-infobar:before{width:100%}.wns-be-container #wns-be-infobar{height:150px}#mec-search-settings{margin-top:80px;width:181px}}.addons-page-error,.addons-page-notice{display:block;margin-top:15px;margin-bottom:0;background:#fff;border-left:4px solid #00a0d2;box-shadow:0 1px 1px 0 rgba(0,0,0,.1);padding:1px 12px}.addons-page-error p,.addons-page-notice p{margin:.5em 0;padding:2px;font-size:13px}.addons-page-error{border-left-color:#dc3232}.mec-addon-box-comingsoon{background:#eaeaea;padding:8px 11px;color:#5a5a5a;font-size:14px;font-weight:500;text-align:center}.mec-addons .w-row .w-col-sm-3:nth-child(4n+1){clear:left}@media (min-width:960px){#webnus-dashboard .mec-addon-box-footer .w-button{text-align:right}}@media (min-width:1401px){.mec-addon-box-title a span{font-size:17px}}.mec-pro-notice{margin-top:24px;line-height:30px}.mec-pro-notice .info-msg{padding:50px 30px;margin-bottom:0}#webnus-dashboard .mec-pro-notice .info-msg{background:#fff;box-shadow:0 1px 16px rgba(0,0,0,.034);text-align:center;color:#000}#webnus-dashboard a.info-msg-link{background:#e66f52;background:linear-gradient(95deg,#ff8162 0,#e66f52 50%,#ff4c20 100%);box-shadow:0 5px 10px -5px #e66f52;border-radius:2px;padding:12px 50px;font-size:16px;line-height:24px;border:none;margin:20px auto 0;color:#fff;transition:all .3s ease;display:inline-block}#webnus-dashboard a.info-msg-link:hover{background:#222;background:linear-gradient(95deg,#555 0,#222 50%,#000 100%);box-shadow:0 5px 21px -5px rgba(0,0,0,.5)}#webnus-dashboard .info-msg p{width:70%;margin:0 auto;line-height:1.8}#webnus-dashboard .info-msg-coupon{font-size:13px;color:#777;max-width:600px;line-height:1.68;margin:25px auto 0}#webnus-dashboard .info-msg-coupon strong{font-weight:700;color:#19ce18}.info-msg .socialfollow{padding-top:20px}.info-msg .socialfollow a{margin:0 2px;display:inline-block}.info-msg .socialfollow a i{background:#96a4b1;color:#fff;padding:6px;border-radius:3px;font-size:18px;box-shadow:0 2px 3px rgba(0,0,0,.1);transition:all .25s}.info-msg .socialfollow a:hover i{background:#008aff}.mec-intro-section .w-box-content{text-align:center}.mec-intro-section .w-box-content.mec-intro-section-welcome{max-width:600px;margin:0 auto}.mec-intro-section .w-box-content.mec-intro-section-welcome h3{font-size:27px}a.mec-intro-section-link-tag.button.button-hero{margin:0 10px 40px}a.mec-intro-section-link-tag.button.button-primary.button-hero{color:#fff!important}a.mec-intro-section-link-tag.button.button-secondary.button-hero{color:#000!important}.mec-intro-section-ifarme iframe{border:1px solid #e7e7e7;border-radius:3px;padding:10px;box-shadow:0 3px 10px -6px rgba(0,0,0,.2)}.w-box-content.mec-intro-section-welcome p{margin-bottom:0}.mec-tooltip a:focus{box-shadow:none}#mec_booking_form .mec-options-fields,#mec_modules_form .mec-options-fields,#mec_settings_form .mec-options-fields,#mec_single_form .mec-options-fields{padding-bottom:150px!important}#mec_taxes_fees_container_toggle{margin-bottom:60px}#mec_taxes_fees_container_toggle{margin-bottom:60px}.wns-be-sidebar li{position:relative}.wns-be-sidebar li .submneu-hover{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}.wns-be-sidebar li:hover{background:#fff}.wns-be-sidebar li:hover .submneu-hover{opacity:1;visibility:visible}.wns-be-sidebar li .submneu-hover a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wns-be-sidebar li .submneu-hover a:hover{background:#f6f6f6;color:#222}.wns-be-sidebar li .submneu-hover:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar li a:focus,.wns-be-sidebar li:focus{outline:-webkit-focus-ring-color auto 0;border:0;box-shadow:none}@media (max-width:480px){.wns-be-sidebar li .submneu-hover{width:175px;right:0}.wns-be-sidebar li .submneu-hover a{font-size:11px;padding:5px 5px 5px 20px}}.mec-tooltip:hover:after,.mec-tooltip:hover:before{display:none}.mec-tooltip{display:inline-flex;bottom:7px}.mec-tooltip .box{min-width:300px;max-width:600px;display:inline-block;left:26px;top:50%;transform:translateY(-50%);padding:0;margin-top:8px;background-color:#535a61;color:#fff;font-weight:300;font-size:14px;letter-spacing:.5px;line-height:1.3;position:absolute;z-index:9999999;box-sizing:border-box;border-radius:6px;box-shadow:0 4px 45px -8px #444b50;visibility:hidden;opacity:0;transition:opacity .23s}#webnus-dashboard .mec-tooltip .box p,.mec-tooltip .box p{color:#fff;font-size:14px;line-height:1.3;margin:0}.mec-tooltip:hover .box{visibility:visible;opacity:1}.mec-tooltip:hover .box{padding:20px;border-radius:8px}.mec-tooltip .box h5{color:#fff;font-size:17px;font-weight:600;margin:-30px -20px;padding:20px 0;text-align:center;margin-bottom:10px;background:#3a3f44;border-bottom:1px solid #32363a;border-radius:6px 6px 0 0;z-index:9999}#webnus-dashboard .mec-tooltip .box p a,.mec-tooltip .box p a{color:#40d9f1;margin-top:10px;margin-left:0;font-weight:400;position:relative;text-decoration:none;display:block;width:max-content}.mec-tooltip .box a:hover{color:#f90}.mec-tooltip .box:after{display:block;position:absolute!important;top:100%!important;right:50%!important;margin-top:-6px!important;margin-right:-6px!important;width:12px!important;height:24px!important;overflow:hidden!important;transform:rotate(-90deg)!important}.mec-tooltip .box:before{display:block;content:''!important;position:absolute!important;width:12px;height:12px;left:-10px!important;top:50%!important;transform:translate(50%,-50%) rotate(-45deg)!important;background-color:#535a61!important;box-shadow:0 8px 9px -4px #535a61!important;z-index:0!important}.mec-tooltip .box.top{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.top:after{top:50%!important;right:100%!important}.mec-tooltip .box.top:before{left:50%!important;top:100%!important}.mec-tooltip .box.bottom{left:50%;top:auto;bottom:0;transform:translate(-50%,100%);margin-bottom:-20px;margin-left:-10px}.mec-tooltip .box.bottom:after{top:0!important;right:50%!important;background-color:#3a3f44!important}.mec-tooltip .box.bottom:before{left:50%!important;top:-7px!important;transform:translateX(-50%);background-color:#3a3f44!important}.mec-tooltip .box.left{left:auto;right:26px;top:50%;transform:translateY(-50%)}.mec-tooltip .box.left:before{right:0!important;left:auto!important;top:50%!important}form#mec_reg_fields_form input[type=radio]:before{content:"";display:inline-block;background:#fff;border-radius:18px;width:14px;height:14px;margin:-1px 0 0 -2px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32)}form#mec_reg_fields_form input[type=radio]:checked:before{border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff;width:4px;height:4px}form#mec_reg_fields_form input[type=radio]{min-height:0;margin-right:6px}form#mec_reg_fields_form label{margin-right:20px}@media(min-width:1200px) and (max-width:1366px){.mec-tooltip .box.left{left:50%;top:0;transform:translate(-50%,-100%);margin-top:0;margin-left:-10px}.mec-tooltip .box.left:after{top:50%!important;right:100%!important}.mec-tooltip .box.left:before{left:50%!important;top:100%!important}.mec-tooltip .box{min-width:225px}.mec-tooltip .box h5{font-size:15px}.mec-tooltip .box .content{font-size:12px}}@media(max-width:1366px){.wns-be-container .wns-be-group-tab p{margin-top:0}}.mec-addons-notification-box-wrap .w-col-sm-12{padding:0}.mec-addons-notification-box-wrap img{width:auto}.mec-addons-notification-box-image{width:555px;display:inline-block;vertical-align:top}.mec-addons-notification-box-content{width:calc(100% - 559px);display:inline-block}.mec-addons-notification-box-content p{margin-top:1%;line-height:1.5;font-size:16px}.mec-addons-notification-box-content .w-box-content{padding-top:0;padding-bottom:0}.mec-addons-notification-box-content ol{font-size:16px}.mec-addons-notification-box-content a{background:#38d5ed;color:#fff!important;padding:10px 26px;margin-top:5px;display:inline-block;border-radius:3px;text-transform:capitalize;font-size:16px;letter-spacing:.4px;transition:all .1s ease;font-weight:600;text-decoration:none}.mec-addons-notification-box-content a:hover{background:#000}.w-clearfix.w-box.mec-addons-notification-box-wrap span{right:0;left:unset;cursor:pointer;background:#fff;padding:0 16px}.w-clearfix.w-box.mec-addons-notification-box-wrap span i{font-size:28px;vertical-align:sub;color:#f2113e}.wns-be-container .mec-addons-notification-wrap{padding:0;margin:0}.wns-be-container .mec-addons-notification-wrap .w-col-sm-12{padding:0}.wns-be-container .w-box{margin-top:0}.wns-be-container.mec-addons-notification-set-box{margin-right:15px;margin-top:50px;margin-bottom:27px}@media(max-width:1200px){.mec-addons-notification-box-content,.mec-addons-notification-box-image{width:100%;display:block}.mec-addons-notification-box-image{text-align:center}}@media(max-width:768px){.mec-addons-notification-box-image img{width:100%;height:auto}}body.rtl .wns-be-sidebar{width:260px;float:right;position:relative}body.rtl .wns-be-main{margin-left:0;border-left:0;margin-right:260px;border-right:1px solid #dedede}body.rtl .w-box.mec-activation .LicenseField{direction:rtl}body.rtl .w-box.mec-activation input[name=MECPurchaseCode]{text-align:right;padding-right:20px}body.rtl #MECActivation .MECPurchaseStatus,body.rtl .addon-activation-form .MECPurchaseStatus{right:auto;left:-51px}body.rtl #webnus-dashboard .w-box.mec-activation input[type=submit]{right:auto;left:5px}body.rtl .wns-be-sidebar .wns-be-group-menu li a{padding:13px 20px 13px 4px}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.wns-be-group-menu-title{padding-left:0;padding-right:24px}body.rtl .wns-be-sidebar .has-sub span.extra-icon{float:left}body.rtl .wns-be-sidebar .wns-be-group-tab-link-a span.extra-icon i{right:auto;left:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:after,body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:transparent;border-left-color:#fff;right:auto;left:-1px;top:10px}body.rtl .wns-be-sidebar .wns-be-group-menu li .subsection li.active a:before{border-right-color:transparent;border-left-color:#c5c5c5;right:auto;left:0}body.rtl .mec-col-1,body.rtl .mec-col-10,body.rtl .mec-col-11,body.rtl .mec-col-12,body.rtl .mec-col-2,body.rtl .mec-col-3,body.rtl .mec-col-4,body.rtl .mec-col-5,body.rtl .mec-col-6,body.rtl .mec-col-7,body.rtl .mec-col-8,body.rtl .mec-col-9{float:right;margin:0 1% 0 0}body.rtl .wns-be-sidebar li .submneu-hover{right:auto;left:-222px}body.rtl .wns-be-sidebar li .submneu-hover:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:auto;right:-1px;top:14px}body.rtl #mec_styles_form #mec_styles_CSS{direction:ltr}body.rtl .w-box.mec-activation{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1)}body.rtl .w-box.mec-activation .w-box-content,body.rtl .w-box.mec-activation .w-box-head{-moz-transform:scaleY(-1);-o-transform:scaleY(-1);-webkit-transform:scaleY(-1);transform:scaleX(-1);display:block}body.rtl .w-box.mec-activation .w-box-head{width:100%}body.rtl .wns-be-container #wns-be-infobar:before{left:auto;right:0}body.rtl .wns-be-container .dpr-btn.dpr-save-btn{float:left}body.rtl .wns-be-container .wns-be-group-tab h2:before,body.rtl .wns-be-container .wns-be-group-tab h4:before{left:auto;right:0;margin-right:0;margin-left:5px}body.rtl #mec_gateways_form .mec-tooltip{float:left}div#plugin-information-content .section{margin-top:-600px}.mec-details-addons-container{margin-top:20px}.mec-details-addons-wrap img{float:left;width:19%;margin-right:17px}.mec-details-addons-wrap{clear:both;margin-bottom:80px;display:block;position:relative}.mec-details-addons-wrap a{text-decoration:none}.mec-details-addons-wrap p{float:left;width:340px;margin-top:0;margin-bottom:30px}.mec-details-addons-title{font-weight:700}.mec-details-addons-title a{color:#444}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx{border-radius:10px!important;box-shadow:0 4px 38px rgba(0,0,0,.14)!important}body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl,body .crisp-client .crisp-1rjpbb7 .crisp-13qutdl *,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z,body .crisp-client .crisp-1rjpbb7 .crisp-9dgo7z *{font-family:proxima-nova,-apple-system,BlinkMacSystemFont,"Segoe UI",Catamaran,sans-serif!important}body .crisp-client .crisp-1rjpbb7 .crisp-145mbcr,body .crisp-client .crisp-1rjpbb7 .crisp-1jrqqbm:hover{background-color:#fff!important}body .crisp-client .crisp-1rjpbb7 .crisp-14u434g{border-color:#e7e8e9!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq{font-size:20px!important;width:14px!important;height:19px!important;opacity:.85}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-1bkorcf .crisp-1vzg1qq:hover{opacity:.99}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a{font-size:13px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-1sps3eb .crisp-1vd2grm .crisp-12w4w1a::-webkit-input-placeholder{color:#717273!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf{background-color:#008aff!important;color:#fff!important;box-shadow:none!important;border-radius:5px!important;padding:15px 25px 15px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=visitor] .crisp-z89v5n .crisp-162m9xf .crisp-1o2g4mc{color:#fff!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-z89v5n .crisp-162m9xf{background-color:#f1f2f3!important;border-radius:5px!important;padding:15px 25px 15px!important;box-shadow:none!important;color:#121314!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-type=audio] .crisp-z89v5n .crisp-162m9xf{background-color:#d1d7dc!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv[data-from=operator] .crisp-z89v5n .crisp-1o2g4mc{color:#121314!important;-webkit-text-fill-color:#121314!important;font-size:13px!important;letter-spacing:.3px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-39hskb{opacity:.4;margin-right:5px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-zyxrmn .crisp-1bu0ive .crisp-z7oo2o .crisp-lgu84d .crisp-1ohjrf0 .crisp-dqw9ko .crisp-bhspdv .crisp-mkirz6 .crisp-12qaym5 .crisp-ehr6mw{opacity:.68;font-size:12px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg{background-image:linear-gradient(125deg,#008aff -10%,#0066b1 100%)!important;height:110px!important;padding-top:35px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-1uw6f17,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-85evuk,body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx .crisp-1784wh6 .crisp-1xmtdlg .crisp-rhv8pz .crisp-nu40j6{font-size:17px!important;line-height:28px!important;padding-top:10px!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06{background-color:#008aff!important;background-image:linear-gradient(125deg,#008aff -10%,#008af0 100%)!important;box-shadow:0 5px 34px -6px #008aff!important}body .crisp-client .crisp-1rjpbb7 .crisp-4oo1n4{background-color:transparent!important}body .crisp-client .crisp-1rjpbb7 .crisp-1rf4xdh .crisp-ewasyx[data-chat-status=ongoing] .crisp-1784wh6 .crisp-1xmtdlg .crisp-172kolj{margin-top:-10px!important}body .crisp-client .crisp-1rjpbb7[data-last-operator-face=false] .crisp-1rf4xdh .crisp-kquevr .crisp-x94m06 .crisp-16qgsyi .crisp-101bp3x[data-is-ongoing=false]{background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI1OCIgaGVpZ2h0PSI1NSIgdmlld0JveD0iMCAwIDU4IDU1Ij4NCiAgPGcgaWQ9ImNoYXQtc3ZncmVwby1jb21fMV8iIGRhdGEtbmFtZT0iY2hhdC1zdmdyZXBvLWNvbSAoMSkiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDAgLTEuNSkiPg0KICAgIDxwYXRoIGlkPSJQYXRoXzEiIGRhdGEtbmFtZT0iUGF0aCAxIiBkPSJNMjksMS41YzE2LjAxNiwwLDI5LDExLjY0MSwyOSwyNmEyNC4wMSwyNC4wMSwwLDAsMS00LjgsMTQuMzE4Yy40LDQuNzQ1LDEuNTQyLDExLjQyOCw0LjgsMTQuNjgyLDAsMC05Ljk0My0xLjQtMTYuNjc3LTUuNDYybC0uMDIyLjAwOWMtMi43NjQtMS44LTUuNTMyLTMuNjU2LTYuMS00LjEyNmExLDEsMCwwLDAtMS4zMy0uMjc3LDEuMDE3LDEuMDE3LDAsMCwwLS40ODkuODQ4Yy0uMDEuNjIyLjAwNS43ODQsNS41ODUsNC40MjFBMzEuOTE0LDMxLjkxNCwwLDAsMSwyOSw1My41Yy0xNi4wMTYsMC0yOS0xMS42NDEtMjktMjZTMTIuOTg0LDEuNSwyOSwxLjVaIiBmaWxsPSIjZmZmIi8+DQogICAgPGNpcmNsZSBpZD0iRWxsaXBzZV8xIiBkYXRhLW5hbWU9IkVsbGlwc2UgMSIgY3g9IjMiIGN5PSIzIiByPSIzIiB0cmFuc2Zvcm09InRyYW5zbGF0ZSgxMiAyNC41KSIgZmlsbD0iIzAwOGFmZiIvPg0KICAgIDxjaXJjbGUgaWQ9IkVsbGlwc2VfMiIgZGF0YS1uYW1lPSJFbGxpcHNlIDIiIGN4PSIzIiBjeT0iMyIgcj0iMyIgdHJhbnNmb3JtPSJ0cmFuc2xhdGUoMjYgMjQuNSkiIGZpbGw9IiMwMDhhZmYiLz4NCiAgICA8Y2lyY2xlIGlkPSJFbGxpcHNlXzMiIGRhdGEtbmFtZT0iRWxsaXBzZSAzIiBjeD0iMyIgY3k9IjMiIHI9IjMiIHRyYW5zZm9ybT0idHJhbnNsYXRlKDQwIDI0LjUpIiBmaWxsPSIjMDA4YWZmIi8+DQogIDwvZz4NCjwvc3ZnPg0K)!important;height:31px!important;top:16px!important;left:14px!important}body .csh-category-item a h6{text-align:left}.mec-form-row.mec-syn-schedule{background:#f7f7f7;padding:20px;border:1px solid #eee;box-shadow:0 1px 11px rgba(0,0,0,.034);margin-bottom:20px}.mec-form-row.mec-syn-schedule p{padding-left:26px}.mec-form-row.mec-syn-schedule h2{margin-top:0}.mec-form-row.mec-syn-schedule h4{margin:10px 0}li.wns-be-group-menu-li.mec-settings-menu .mec-settings-submenu{position:absolute;top:-1px;right:-222px;width:220px;z-index:9;background:#fff;border:1px;border-style:solid;border-color:#dedede;margin:0;overflow:visible;opacity:0;visibility:hidden;transition:all .23s ease;padding-top:8px;padding-bottom:12px}li.wns-be-group-menu-li.mec-settings-menu:hover>.mec-settings-submenu{visibility:visible;opacity:1}.mec-settings-menu .mec-settings-submenu:before{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-15px;top:14px;border-right-color:#c5c5c5;right:0}.mec-settings-menu .mec-settings-submenu:after{position:absolute;z-index:999;content:" ";height:0;width:0;border:7px solid transparent;border-right-color:#fff;left:-14px;top:14px}.wns-be-sidebar .mec-settings-menu .mec-settings-submenu a{background:#fff;color:#636363;opacity:1;font-size:12px;padding:6px 4px 6px 26px}.wn-mec-select{width:32.33333333%!important;clear:unset!important}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:3px;border:1px solid #ddd;margin-bottom:8px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;box-shadow:0 3px 13px -5px rgba(0,0,0,.1),inset 0 1px 2px rgba(0,0,0,.07)}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select.open .list{overflow:unset;width:100%;margin:0}.wn-mec-select .list{background-color:#fff;border-radius:2px;box-shadow:0 2px 33px -2px rgba(0,0,0,.2),inset 0 1px 2px rgba(0,0,0,.07);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select{-webkit-tap-highlight-color:transparent;background-color:#fff;border-radius:5px;border:solid 1px #e8e8e8;box-sizing:border-box;clear:both;cursor:pointer;display:block;float:left;font-family:inherit;font-size:14px;font-weight:400;height:42px;line-height:40px;outline:0;padding-left:18px;padding-right:30px;position:relative;text-align:left!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;white-space:nowrap;width:auto}.wn-mec-select:hover{border-color:#dbdbdb}.wn-mec-select:after{border-bottom:2px solid #999;border-right:2px solid #999;content:'';display:block;height:5px;margin-top:-4px;pointer-events:none;position:absolute;right:12px;top:50%;-webkit-transform-origin:66% 66%;-ms-transform-origin:66% 66%;transform-origin:66% 66%;-webkit-transform:rotate(45deg);-ms-transform:rotate(45deg);transform:rotate(45deg);-webkit-transition:all .15s ease-in-out;transition:all .15s ease-in-out;width:5px}.wn-mec-select.open:after{-webkit-transform:rotate(-135deg);-ms-transform:rotate(-135deg);transform:rotate(-135deg)}.wn-mec-select.open .list{opacity:1;pointer-events:auto;-webkit-transform:scale(1) translateY(0);-ms-transform:scale(1) translateY(0);transform:scale(1) translateY(0)}.wn-mec-select.disabled{border-color:#ededed;color:#999;pointer-events:none}.wn-mec-select.disabled:after{border-color:#ccc}.wn-mec-select.wide{width:100%}.wn-mec-select.wide .list{left:0!important;right:0!important}.wn-mec-select.right{float:right}.wn-mec-select.right .list{left:auto;right:0}.wn-mec-select.small{font-size:12px;height:36px;line-height:34px}.wn-mec-select.small:after{height:4px;width:4px}.wn-mec-select .list{background-color:#fff;border-radius:5px;box-shadow:0 0 0 1px rgba(68,68,68,.11);box-sizing:border-box;margin-top:4px;opacity:0;overflow:hidden;padding:0;pointer-events:none;position:absolute;top:100%;left:0;-webkit-transform-origin:50% 0;-ms-transform-origin:50% 0;transform-origin:50% 0;-webkit-transform:scale(.75) translateY(-21px);-ms-transform:scale(.75) translateY(-21px);transform:scale(.75) translateY(-21px);-webkit-transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;transition:all .2s cubic-bezier(.5,0,0,1.25),opacity .15s ease-out;z-index:9}.wn-mec-select .list:hover .option:not(:hover){background-color:transparent!important}.wn-mec-select .option{cursor:pointer;font-weight:400;list-style:none;min-height:40px;outline:0;text-align:left;position:relative;font-size:12px!important;padding:1px 12px!important;margin:0!important;line-height:28px!important;min-height:28px!important;-webkit-transition:all .2s ease-in-out;transition:all .2s ease-in-out}.wn-mec-select .option .wn-hover-img-sh img{position:absolute;padding:3px;top:0;left:140px;box-shadow:0 3px 42px -8px rgba(0,0,0,.3);visibility:hidden;opacity:0;border:1px solid #dbdbdb;z-index:999999;background:#fff}.wn-mec-select .option:hover .wn-hover-img-sh img{visibility:visible;opacity:1}.wn-mec-select .option.focus,.wn-mec-select .option.selected.focus,.wn-mec-select .option:hover{background-color:#f6f6f6}.wn-mec-select .option.selected{font-weight:700}.wn-mec-select .option.disabled{background-color:transparent;color:#999;cursor:default}.no-csspointerevents .wn-mec-select .list{display:none}.no-csspointerevents .wn-mec-select.open .list{display:block}.mec-custom-nice-select ul.list li.option{width:30%!important;float:left!important;min-height:135px!important;height:135px;margin:1.66%!important;box-sizing:border-box;text-align:center;padding:10px!important;border-radius:3px;border:1px solid #eee;box-shadow:0 1px 3px rgba(0,0,0,.025);background:#fff!important}.mec-custom-nice-select ul.list li.option:hover{box-shadow:0 2px 7px rgba(0,0,0,.06);borde-color:#e0e0e0}.mec-custom-nice-select .list:hover .option:not(:hover),.mec-custom-nice-select ul.list:hover li.option{background:#fff!important}.mec-custom-nice-select ul.list{min-width:600px!important;margin-left:-132px!important;padding:20px 10px!important;background:#fcfbfd;border:1px solid #e9e9e9;box-shadow:0 1px 4px rgba(0,0,0,.05)}.mec-custom-nice-select ul.list li.option.selected{border:1px solid #008aff;box-shadow:0 1px 8px -3px #008aff inset;color:#008aff;padding:12px 0 0 0!important}.mec-custom-nice-select .wn-img-sh img{margin:4px 0 1px;line-height:1;max-width:68px;max-height:56px;filter:grayscale(1);-webkit-filter:grayscale(1);transition:all .22s ease;-webkit-transition:all .22s ease;-moz-transition:all .22s ease;-ms-transition:all .22s ease;-o-transition:all .22s ease}.wn-mec-select .option.focus .wn-img-sh img,.wn-mec-select .option.selected.focus .wn-img-sh img,.wn-mec-select .option:hover .wn-img-sh img{background-color:#f6f6f6;filter:grayscale(0);-webkit-filter:grayscale(0)}@media(max-width:768px){.wn-mec-select{width:45%!important}.mec-custom-nice-select ul.list{margin-left:-24px!important;min-width:404px!important}.mec-custom-nice-select ul.list li.option{width:46.6%!important}.wn-hover-img-sh{display:none}}@media(max-width:480px){.wn-mec-select{width:100%!important}.mec-custom-nice-select ul.list{min-width:337px!important}}@media(max-width:320px){.mec-custom-nice-select ul.list li.option{width:100%!important}.mec-custom-nice-select ul.list{min-width:298px!important}}.mec-sed-methods li{line-height:28px;padding-left:38px;position:relative}.mec-sed-methods li:before{margin-right:0}.mec-sed-methods li:before{border-radius:18px}.mec-custom-nice-select ul.list li .wn-mec-text:after,.mec-sed-methods li:before{content:"";position:absolute;display:inline-block;background:#fff;border-radius:2px;width:12px;height:12px;margin:-1px 0 0 -1px;cursor:pointer;border:2px solid #e1e7ed;box-shadow:0 2px 15px -3px rgba(69,77,89,.32);border-radius:50%}.mec-custom-nice-select ul.list li .wn-mec-text{position:relative;padding-top:0;padding-bottom:28px}.mec-custom-nice-select ul.list li .wn-mec-text:after{left:calc(50% - 7px);top:auto;bottom:1px}.mec-custom-nice-select ul.list li .wn-img-sh{line-height:1}.mec-sed-methods li:before{left:9px;top:calc(50% - 7px)}.mec-custom-nice-select ul.list li.option.selected .wn-mec-text:after,.mec-sed-methods li.active:before{width:4px;height:4px;border:7px solid #008aff;background:#fff;box-shadow:0 3px 16px -3px #008aff}
assets/js/frontend.js CHANGED
@@ -15,6 +15,11 @@ var mecSingleEventDisplayer = {
15
  jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
16
  lity(response);
17
 
 
 
 
 
 
18
  if(image_popup != 0)
19
  {
20
  if(jQuery('.lity-content .mec-events-content a img').length > 0)
@@ -2742,10 +2747,6 @@ var mecSingleEventDisplayer = {
2742
  var occurrence = get_parameter_by_name('occurrence', href);
2743
 
2744
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
2745
- setTimeout(function()
2746
- {
2747
- grecaptcha.render("g-recaptcha", {sitekey: mecdata.recapcha_key});
2748
- }, 1000);
2749
  });
2750
  $("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
2751
  {
@@ -3567,11 +3568,11 @@ function mec_focus_week(id)
3567
 
3568
  $($this).prop("disabled", true).css('cursor', 'wait');
3569
  $.post(ajaxurl,
3570
- {
3571
- action: "speaker_adding",
3572
- content: content.val(),
3573
- key: key
3574
- })
3575
  .done(function(data)
3576
  {
3577
  if($(data).hasClass('mec-error'))
@@ -3587,6 +3588,7 @@ function mec_focus_week(id)
3587
  list.html(data);
3588
  content.val('');
3589
  }
 
3590
  $($this).prop("disabled", false).css('cursor', 'pointer');
3591
  });
3592
  });
15
  jQuery('.mec-modal-result').removeClass("mec-modal-preloader");
16
  lity(response);
17
 
18
+ setTimeout(function()
19
+ {
20
+ grecaptcha.render("g-recaptcha", {sitekey: mecdata.recapcha_key});
21
+ }, 1000);
22
+
23
  if(image_popup != 0)
24
  {
25
  if(jQuery('.lity-content .mec-events-content a img').length > 0)
2747
  var occurrence = get_parameter_by_name('occurrence', href);
2748
 
2749
  mecSingleEventDisplayer.getSinglePage(id, occurrence, settings.ajax_url, settings.sed_method, settings.image_popup);
 
 
 
 
2750
  });
2751
  $("#mec_skin_"+settings.id+" .mec-event-image a img").off('click').on('click', function(e)
2752
  {
3568
 
3569
  $($this).prop("disabled", true).css('cursor', 'wait');
3570
  $.post(ajaxurl,
3571
+ {
3572
+ action: "speaker_adding",
3573
+ content: content.val(),
3574
+ key: key
3575
+ })
3576
  .done(function(data)
3577
  {
3578
  if($(data).hasClass('mec-error'))
3588
  list.html(data);
3589
  content.val('');
3590
  }
3591
+
3592
  $($this).prop("disabled", false).css('cursor', 'pointer');
3593
  });
3594
  });
assets/js/jquery.nice-select.min.js CHANGED
@@ -1,4 +1,4 @@
1
- /* jQuery Nice Select - v1.0
2
- https://github.com/hernansartorio/jquery-nice-select
3
- Made by Hernán Sartorio */
4
  !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
1
+ /* jQuery Nice Select - v1.0
2
+ https://github.com/hernansartorio/jquery-nice-select
3
+ Made by Hernán Sartorio */
4
  !function(e){e.fn.niceSelect=function(t){function s(t){t.after(e("<div></div>").addClass("nice-select").addClass(t.attr("class")||"").addClass(t.attr("disabled")?"disabled":"").attr("tabindex",t.attr("disabled")?null:"0").html('<span class="current"></span><ul class="list"></ul>'));var s=t.next(),n=t.find("option"),i=t.find("option:selected");s.find(".current").html(i.data("display")||i.text()),n.each(function(t){var n=e(this),i=n.data("display");s.find("ul").append(e("<li></li>").attr("data-value",n.val()).attr("data-display",i||null).addClass("option"+(n.is(":selected")?" selected":"")+(n.is(":disabled")?" disabled":"")).html(n.text()))})}if("string"==typeof t)return"update"==t?this.each(function(){var t=e(this),n=e(this).next(".nice-select"),i=n.hasClass("open");n.length&&(n.remove(),s(t),i&&t.next().trigger("click"))}):"destroy"==t?(this.each(function(){var t=e(this),s=e(this).next(".nice-select");s.length&&(s.remove(),t.css("display",""))}),0==e(".nice-select").length&&e(document).off(".nice_select")):console.log('Method "'+t+'" does not exist.'),this;this.hide(),this.each(function(){var t=e(this);t.next().hasClass("nice-select")||s(t)}),e(document).off(".nice_select"),e(document).on("click.nice_select",".nice-select",function(t){var s=e(this);e(".nice-select").not(s).removeClass("open"),s.toggleClass("open"),s.hasClass("open")?(s.find(".option"),s.find(".focus").removeClass("focus"),s.find(".selected").addClass("focus")):s.focus()}),e(document).on("click.nice_select",function(t){0===e(t.target).closest(".nice-select").length&&e(".nice-select").removeClass("open").find(".option")}),e(document).on("click.nice_select",".nice-select .option:not(.disabled)",function(t){var s=e(this),n=s.closest(".nice-select");n.find(".selected").removeClass("selected"),s.addClass("selected");var i=s.data("display")||s.text();n.find(".current").text(i),n.prev("select").val(s.data("value")).trigger("change")}),e(document).on("keydown.nice_select",".nice-select",function(t){var s=e(this),n=e(s.find(".focus")||s.find(".list .option.selected"));if(32==t.keyCode||13==t.keyCode)return s.hasClass("open")?n.trigger("click"):s.trigger("click"),!1;if(40==t.keyCode){if(s.hasClass("open")){var i=n.nextAll(".option:not(.disabled)").first();i.length>0&&(s.find(".focus").removeClass("focus"),i.addClass("focus"))}else s.trigger("click");return!1}if(38==t.keyCode){if(s.hasClass("open")){var l=n.prevAll(".option:not(.disabled)").first();l.length>0&&(s.find(".focus").removeClass("focus"),l.addClass("focus"))}else s.trigger("click");return!1}if(27==t.keyCode)s.hasClass("open")&&s.trigger("click");else if(9==t.keyCode&&s.hasClass("open"))return!1});var n=document.createElement("a").style;return n.cssText="pointer-events:auto","auto"!==n.pointerEvents&&e("html").addClass("no-csspointerevents"),this}}(jQuery);
changelog.txt CHANGED
@@ -1,4 +1,16 @@
1
- v 4.5.0 - 4 September 2019
 
 
 
 
 
 
 
 
 
 
 
 
2
  - Added: SCA compatibility for Stripe Payment Gateways (pro)
3
  - Added: Google Maps option in list and Grid skins (pro)
4
  - Added: A feature to update booking dates when event date is updated (pro)
1
+ v 4.5.1 - 11 September 2019
2
+ - Compatibility: WordPress 5.2.3
3
+ - Fixed: Showing multiple names and emails in backend booking form (pro)
4
+ - Fixed: Date field in backend of booking form (pro)
5
+ - Fixed: Local time module regarding hour
6
+ - Fixed: Maximum year number in date fields in frontend and backend forms (pro)
7
+ - Fixed: Location, saving latitude and longitude
8
+ - Fixed: Send emails to all attendees instead of main attendees (pro)
9
+ - Fixed: Displaying Google Recaptcha in modals
10
+ - Fixed: Showing registration form data in backend (pro)
11
+ - Fixed: Ticket filter in booking management menu (pro)
12
+
13
+ v 4.5.0 - 4 September 2019
14
  - Added: SCA compatibility for Stripe Payment Gateways (pro)
15
  - Added: Google Maps option in list and Grid skins (pro)
16
  - Added: A feature to update booking dates when event date is updated (pro)
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: 2019-09-04 15:57+0430\n"
6
- "PO-Revision-Date: 2019-09-04 15:59+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
@@ -73,7 +73,7 @@ msgid "Event Color"
73
  msgstr "Farbe der Veranstaltung"
74
 
75
  #: app/features/contextual.php:55 app/features/mec.php:347
76
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
77
  #: app/features/mec/support.php:20 app/libraries/main.php:587
78
  msgid "Settings"
79
  msgstr "Einstellungen"
@@ -273,7 +273,7 @@ msgid "MEC Activation"
273
  msgstr "MEC Aktivierung"
274
 
275
  #: app/features/events.php:148 app/features/ix/export.php:34
276
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
277
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
278
  msgid "Events"
279
  msgstr "Veranstaltungen"
@@ -291,7 +291,7 @@ msgstr "Veranstaltung"
291
  msgid "Add Event"
292
  msgstr "Veranstaltung hinzufügen"
293
 
294
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
295
  msgid "Add New Event"
296
  msgstr "Neue Veranstaltung hinzufügen"
297
 
@@ -316,7 +316,7 @@ msgstr "Veranstaltung ansehen"
316
  msgid "No events found in Trash!"
317
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
318
 
319
- #: app/features/events.php:173 app/features/events.php:3078
320
  #: app/features/mec/meta_boxes/display_options.php:828
321
  #: app/features/mec/meta_boxes/search_form.php:31
322
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -336,7 +336,7 @@ msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
336
  msgid "Category"
337
  msgstr "Kategorie"
338
 
339
- #: app/features/events.php:174 app/features/events.php:3049
340
  #: app/features/fes/form.php:745 app/features/mec.php:335
341
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
342
  msgid "Categories"
@@ -410,8 +410,8 @@ msgstr "Wählen Sie ein Symbol"
410
  msgid "Event Details"
411
  msgstr "Veranstaltungsdetails"
412
 
413
- #: app/features/events.php:333 app/features/events.php:3271
414
- #: app/features/events.php:3313 app/features/fes/form.php:706
415
  #: app/features/ix.php:2743 app/features/ix.php:2784
416
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
417
  #: app/widgets/single.php:103
@@ -437,19 +437,19 @@ msgstr "Gäste Daten"
437
  #: app/features/events.php:443 app/features/events.php:2261
438
  #: app/features/fes/form.php:668 app/features/labels.php:178
439
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
440
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
441
  #: app/modules/booking/steps/form.php:37
442
  msgid "Name"
443
  msgstr "Name"
444
 
445
  #: app/features/events.php:444 app/features/events.php:2272
446
- #: app/features/events.php:2350 app/features/fes/form.php:664
447
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
448
  #: app/features/organizers.php:111 app/features/organizers.php:152
449
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
450
  #: app/features/speakers.php:184 app/libraries/main.php:1471
451
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
452
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
453
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
454
  #: app/skins/single.php:836 app/skins/single/default.php:212
455
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -462,11 +462,11 @@ msgid "Date and Time"
462
  msgstr "Datum und Uhrzeit"
463
 
464
  #: app/features/events.php:452 app/features/events.php:458
465
- #: app/features/events.php:3081 app/features/events.php:3271
466
- #: app/features/events.php:3313 app/features/fes/form.php:236
467
  #: app/features/fes/form.php:240 app/features/ix.php:2743
468
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
469
- #: app/features/mec/dashboard.php:346
470
  #: app/features/mec/meta_boxes/display_options.php:44
471
  #: app/features/mec/meta_boxes/display_options.php:185
472
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -498,11 +498,11 @@ msgid "PM"
498
  msgstr "PM"
499
 
500
  #: app/features/events.php:544 app/features/events.php:549
501
- #: app/features/events.php:3082 app/features/events.php:3271
502
- #: app/features/events.php:3313 app/features/fes/form.php:276
503
  #: app/features/fes/form.php:280 app/features/ix.php:2743
504
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
505
- #: app/features/mec/dashboard.php:347
506
  msgid "End Date"
507
  msgstr "Ende Datum"
508
 
@@ -619,7 +619,7 @@ msgid "Repeats"
619
  msgstr "Wiederholend"
620
 
621
  #: app/features/events.php:703 app/features/fes/form.php:338
622
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
623
  msgid "Daily"
624
  msgstr "Täglich"
625
 
@@ -641,12 +641,12 @@ msgid "Weekly"
641
  msgstr "Wöchentlich"
642
 
643
  #: app/features/events.php:738 app/features/fes/form.php:343
644
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
645
  msgid "Monthly"
646
  msgstr "Monatlich"
647
 
648
  #: app/features/events.php:745 app/features/fes/form.php:344
649
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
650
  msgid "Yearly"
651
  msgstr "Jährlich"
652
 
@@ -813,7 +813,7 @@ msgstr ""
813
  msgid "Exclude certain days"
814
  msgstr "Ausschluss bestimmter Tage"
815
 
816
- #: app/features/events.php:1141 app/features/events.php:2351
817
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
818
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
819
  #: app/modules/booking/steps/tickets.php:22
@@ -857,8 +857,8 @@ msgstr ""
857
  #: app/features/events.php:1239 app/features/events.php:1278
858
  #: app/features/events.php:1313 app/features/events.php:1345
859
  #: app/features/events.php:1374 app/features/events.php:2130
860
- #: app/features/events.php:2177 app/features/events.php:3077
861
- #: app/features/events.php:3271 app/features/events.php:3313
862
  #: app/features/fes/form.php:225 app/features/ix.php:2743
863
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
864
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1044,13 +1044,13 @@ msgid "Ticket Name"
1044
  msgstr "Ticket Name"
1045
 
1046
  #: app/features/events.php:1584 app/features/events.php:1805
1047
- #: app/features/events.php:3271 app/features/events.php:3313
1048
  #: app/features/ix.php:2743 app/features/ix.php:2784
1049
  msgid "Start Time"
1050
  msgstr "Uhrzeit des Beginns"
1051
 
1052
  #: app/features/events.php:1626 app/features/events.php:1829
1053
- #: app/features/events.php:3271 app/features/events.php:3313
1054
  #: app/features/ix.php:2743 app/features/ix.php:2784
1055
  msgid "End Time"
1056
  msgstr "Uhrzeit Ende"
@@ -1172,53 +1172,53 @@ msgstr "Betrag (pro Ticket)"
1172
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1173
  msgstr ""
1174
 
1175
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1176
  #: app/libraries/main.php:2523
1177
  #, fuzzy
1178
  #| msgid "Name"
1179
  msgid "MEC Name"
1180
  msgstr "Name"
1181
 
1182
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1183
  #: app/libraries/main.php:2552
1184
  #, fuzzy
1185
  #| msgid "Email"
1186
  msgid "MEC Email"
1187
  msgstr "Email"
1188
 
1189
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1190
  #: app/libraries/main.php:2493
1191
  msgid "Text"
1192
  msgstr "Text"
1193
 
1194
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1195
  #: app/features/organizers.php:103 app/features/organizers.php:148
1196
  #: app/features/speakers.php:116 app/features/speakers.php:180
1197
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1198
  msgid "Tel"
1199
  msgstr "Tel"
1200
 
1201
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1202
  #: app/libraries/main.php:2611
1203
  msgid "File"
1204
  msgstr ""
1205
 
1206
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1207
  #: app/libraries/main.php:2698
1208
  msgid "Textarea"
1209
  msgstr "Textbereich"
1210
 
1211
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1212
  #: app/libraries/main.php:2751
1213
  msgid "Checkboxes"
1214
  msgstr "Checkboxes"
1215
 
1216
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1217
  #: app/libraries/main.php:2795
1218
  msgid "Radio Buttons"
1219
  msgstr "Radio Buttons"
1220
 
1221
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1222
  #: app/features/mec/meta_boxes/search_form.php:34
1223
  #: app/features/mec/meta_boxes/search_form.php:41
1224
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1291,36 +1291,36 @@ msgstr "Radio Buttons"
1291
  msgid "Dropdown"
1292
  msgstr "Dropdown"
1293
 
1294
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1295
  #: app/libraries/main.php:2886
1296
  msgid "Agreement"
1297
  msgstr "Zustimmung"
1298
 
1299
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1300
  #: app/libraries/main.php:2727
1301
  msgid "Paragraph"
1302
  msgstr "Absatz"
1303
 
1304
- #: app/features/events.php:2998 app/features/events.php:3015
1305
- #: app/features/events.php:3032 app/features/events.php:3049
1306
  #, php-format
1307
  msgid "Show all %s"
1308
  msgstr "Zeige alle %s"
1309
 
1310
- #: app/features/events.php:2998
1311
  msgid "labels"
1312
  msgstr "Labels + Eventstatus"
1313
 
1314
- #: app/features/events.php:3015
1315
  msgid "locations"
1316
  msgstr "Orte"
1317
 
1318
- #: app/features/events.php:3032
1319
  msgid "organizers"
1320
  msgstr "Veranstalter"
1321
 
1322
- #: app/features/events.php:3079 app/features/events.php:3271
1323
- #: app/features/events.php:3313 app/features/ix.php:2743
1324
  #: app/features/ix.php:2784 app/features/locations.php:58
1325
  #: app/features/locations.php:230 app/features/locations.php:287
1326
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1344,8 +1344,8 @@ msgstr "Veranstalter"
1344
  msgid "Location"
1345
  msgstr "Ort"
1346
 
1347
- #: app/features/events.php:3080 app/features/events.php:3271
1348
- #: app/features/events.php:3313 app/features/ix.php:2743
1349
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1350
  #: app/features/mec/meta_boxes/search_form.php:45
1351
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1368,57 +1368,57 @@ msgstr "Ort"
1368
  msgid "Organizer"
1369
  msgstr "Veranstalter"
1370
 
1371
- #: app/features/events.php:3084
1372
  msgid "Repeat"
1373
  msgstr "Wiederholen"
1374
 
1375
- #: app/features/events.php:3085
1376
  msgid "Author"
1377
  msgstr "Autor"
1378
 
1379
- #: app/features/events.php:3206 app/features/events.php:3207
1380
  msgid "iCal Export"
1381
  msgstr "ical Export"
1382
 
1383
- #: app/features/events.php:3209 app/features/events.php:3210
1384
  msgid "CSV Export"
1385
  msgstr "CSV Export"
1386
 
1387
- #: app/features/events.php:3212 app/features/events.php:3213
1388
  msgid "MS Excel Export"
1389
  msgstr "MS Excel Export"
1390
 
1391
- #: app/features/events.php:3215 app/features/events.php:3216
1392
  msgid "XML Export"
1393
  msgstr "XML Export"
1394
 
1395
- #: app/features/events.php:3218 app/features/events.php:3219
1396
  msgid "JSON Export"
1397
  msgstr "JSON Export"
1398
 
1399
- #: app/features/events.php:3221 app/features/events.php:3222
1400
- #: app/features/events.php:3403
1401
  msgid "Duplicate"
1402
  msgstr "Kopie"
1403
 
1404
- #: app/features/events.php:3271 app/features/events.php:3313
1405
  #: app/features/ix.php:2743 app/features/ix.php:2784
1406
  #: app/features/labels.php:177 app/features/locations.php:229
1407
  #: app/features/organizers.php:203 app/features/speakers.php:246
1408
  msgid "ID"
1409
  msgstr "ID"
1410
 
1411
- #: app/features/events.php:3271 app/features/events.php:3313
1412
  #: app/features/ix.php:2743 app/features/ix.php:2784
1413
  msgid "Link"
1414
  msgstr "Link"
1415
 
1416
- #: app/features/events.php:3271 app/features/events.php:3313
1417
  #, php-format
1418
  msgid "%s Tel"
1419
  msgstr "%s Tel"
1420
 
1421
- #: app/features/events.php:3271 app/features/events.php:3313
1422
  #, php-format
1423
  msgid "%s Email"
1424
  msgstr "%s Email"
@@ -1947,7 +1947,7 @@ msgstr "Vom Facebook Kalender Importieren"
1947
  msgid "Import all of your Facebook events into MEC."
1948
  msgstr "Importiere alle Deine Facebook Events zum MEC"
1949
 
1950
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1951
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1952
  msgid "Documentation"
1953
  msgstr "Dokumentation"
@@ -2358,7 +2358,7 @@ msgid "Event %s"
2358
  msgstr "Event %s"
2359
 
2360
  #: app/features/locations.php:59 app/features/mec.php:337
2361
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2362
  #: app/libraries/main.php:4838
2363
  msgid "Locations"
2364
  msgstr "Orte"
@@ -2534,14 +2534,14 @@ msgstr "Support"
2534
  msgid "Support"
2535
  msgstr "Support"
2536
 
2537
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2538
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2539
  #: app/libraries/main.php:4840
2540
  msgid "Organizers"
2541
  msgstr "Veranstalter"
2542
 
2543
  #: app/features/mec.php:346 app/features/mec.php:366
2544
- #: app/features/mec/dashboard.php:209
2545
  msgid "Shortcodes"
2546
  msgstr "Shortcodes"
2547
 
@@ -2889,102 +2889,119 @@ msgstr ""
2889
  msgid "Update"
2890
  msgstr "Update %s"
2891
 
2892
- #: app/features/mec/dashboard.php:90
2893
  #, php-format
2894
  msgid ""
2895
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2896
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2897
- "Spots, etc you should %s to the Pro version."
2898
  msgstr ""
2899
 
2900
- #: app/features/mec/dashboard.php:90
2901
  msgid "lite"
2902
  msgstr ""
2903
 
2904
- #: app/features/mec/dashboard.php:90
2905
- msgid "upgrade"
 
 
 
 
 
 
 
2906
  msgstr ""
2907
 
2908
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2909
  #, fuzzy
2910
  #| msgid "Modern Events Calendar"
2911
  msgid "Getting started with Modern Events Calendar"
2912
  msgstr "Moderner Event Kalender "
2913
 
2914
- #: app/features/mec/dashboard.php:101
2915
  msgid ""
2916
  "In this short video, you can learn how to make an event and put a calendar "
2917
  "on your website. Please watch this 2 minutes video to the end."
2918
  msgstr ""
2919
 
2920
- #: app/features/mec/dashboard.php:117
2921
  #, fuzzy
2922
  #| msgid "MEC Activation"
2923
  msgid "MEC Activate"
2924
  msgstr "MEC Aktivierung"
2925
 
2926
- #: app/features/mec/dashboard.php:123
2927
  msgid ""
2928
  "In order to use all plugin features and options, please enter your purchase "
2929
  "code."
2930
  msgstr ""
2931
 
2932
- #: app/features/mec/dashboard.php:181
2933
  #, fuzzy
2934
  #| msgid "MEC Activation"
2935
  msgid "Activate Addons"
2936
  msgstr "MEC Aktivierung"
2937
 
2938
- #: app/features/mec/dashboard.php:190
2939
  msgid "You cannot access this section."
2940
  msgstr ""
2941
 
2942
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2943
  msgid "Upcoming Events"
2944
  msgstr "Bevorstehende Events"
2945
 
2946
- #: app/features/mec/dashboard.php:258
2947
  msgid "Popular Gateways"
2948
  msgstr "Beliebte Zahlungsgateways"
2949
 
2950
- #: app/features/mec/dashboard.php:312
2951
  msgid "Total Bookings"
2952
  msgstr "Gesamte Buchungen"
2953
 
2954
- #: app/features/mec/dashboard.php:339
2955
  msgid "This Month"
2956
  msgstr "Diesen Monat"
2957
 
2958
- #: app/features/mec/dashboard.php:340
2959
  msgid "Last Month"
2960
  msgstr "Letzten Monat"
2961
 
2962
- #: app/features/mec/dashboard.php:341
2963
  msgid "This Year"
2964
  msgstr "Diese Jahr"
2965
 
2966
- #: app/features/mec/dashboard.php:342
2967
  msgid "Last Year"
2968
  msgstr "Letztes Jahr"
2969
 
2970
- #: app/features/mec/dashboard.php:354
2971
  msgid "Bar"
2972
  msgstr "Bar"
2973
 
2974
- #: app/features/mec/dashboard.php:355
2975
  msgid "Line"
2976
  msgstr "Linie"
2977
 
2978
- #: app/features/mec/dashboard.php:357
2979
  msgid "Filter"
2980
  msgstr "Filter"
2981
 
2982
- #: app/features/mec/dashboard.php:373
2983
  #, php-format
2984
  msgid "Total Sells (%s)"
2985
  msgstr "Alle Verkäufe (%s)"
2986
 
2987
- #: app/features/mec/dashboard.php:394
2988
  msgid "Change Log"
2989
  msgstr "Änderungsprotokoll"
2990
 
@@ -4410,7 +4427,7 @@ msgstr ""
4410
  "Informieren, dass eine neue Buchung eingegangen ist."
4411
 
4412
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4413
- #: app/libraries/notifications.php:405
4414
  msgid "Booking Reminder"
4415
  msgstr "Buchungs Erinnerung"
4416
 
@@ -5667,10 +5684,6 @@ msgstr ""
5667
  "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
5668
  "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
5669
 
5670
- #: app/features/mec/support.php:126
5671
- msgid "GO PREMIUM"
5672
- msgstr ""
5673
-
5674
  #: app/features/mec/support.php:128
5675
  msgid "OPEN A TICKET"
5676
  msgstr "Ein Ticket eröffnen"
@@ -5846,7 +5859,7 @@ msgid "No search result."
5846
  msgstr ""
5847
 
5848
  #: app/features/search_bar/search_result.php:11
5849
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5850
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5851
  #: app/skins/single.php:160 app/skins/single.php:708
5852
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6446,7 +6459,7 @@ msgstr "Register Button"
6446
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6447
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6448
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6449
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6450
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6451
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6452
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6466,8 +6479,8 @@ msgstr "Ansicht Detail Button"
6466
 
6467
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6468
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6469
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6470
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6471
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6472
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6473
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6531,49 +6544,49 @@ msgstr "in Bearbeitung"
6531
  msgid "Skin controller does not exist."
6532
  msgstr "Skin contoller existiert nicht."
6533
 
6534
- #: app/libraries/notifications.php:61
6535
  msgid "Please verify your email."
6536
  msgstr "Bitte bestätigen Sie Ihre email."
6537
 
6538
- #: app/libraries/notifications.php:125
6539
  msgid "Your booking is received."
6540
  msgstr "Ihre Buchung ist eingegangen"
6541
 
6542
- #: app/libraries/notifications.php:193
6543
  msgid "Your booking is confirmed."
6544
  msgstr "Ihre Buchung wurde bestätigt."
6545
 
6546
- #: app/libraries/notifications.php:282
6547
  #, fuzzy
6548
  #| msgid "Your booking cannot be canceled."
6549
  msgid "booking canceled."
6550
  msgstr "Ihre Buchung kann nicht storniert werden."
6551
 
6552
- #: app/libraries/notifications.php:337
6553
  msgid "A new booking is received."
6554
  msgstr "Eine neue Buchung ist eingegangen."
6555
 
6556
- #: app/libraries/notifications.php:488
6557
  msgid "A new event is added."
6558
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
6559
 
6560
- #: app/libraries/notifications.php:674
6561
  msgid "to"
6562
  msgstr ""
6563
 
6564
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6565
  msgid "+ Add to Google Calendar"
6566
  msgstr "+ zum Google Calendar hinzufügen"
6567
 
6568
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6569
  msgid "+ iCal export"
6570
  msgstr "+ zu iCal exportieren"
6571
 
6572
- #: app/libraries/notifications.php:752
6573
  msgid "Yes"
6574
  msgstr "Ja"
6575
 
6576
- #: app/libraries/notifications.php:752
6577
  msgid "No"
6578
  msgstr "Nein"
6579
 
@@ -7041,6 +7054,11 @@ msgstr "http://webnus.net"
7041
  #~ msgid "Book Date"
7042
  #~ msgstr "Buchungsdatum"
7043
 
 
 
 
 
 
7044
  #~ msgid "Confirm"
7045
  #~ msgstr "Bestätigen"
7046
 
2
  msgstr ""
3
  "Project-Id-Version: ME Calender\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
6
+ "PO-Revision-Date: 2019-09-11 13:22+0430\n"
7
  "Last-Translator: Jogon <koenig@kafinanz.de>\n"
8
  "Language-Team: German\n"
9
  "Language: de_DE\n"
73
  msgstr "Farbe der Veranstaltung"
74
 
75
  #: app/features/contextual.php:55 app/features/mec.php:347
76
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
77
  #: app/features/mec/support.php:20 app/libraries/main.php:587
78
  msgid "Settings"
79
  msgstr "Einstellungen"
273
  msgstr "MEC Aktivierung"
274
 
275
  #: app/features/events.php:148 app/features/ix/export.php:34
276
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
277
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
278
  msgid "Events"
279
  msgstr "Veranstaltungen"
291
  msgid "Add Event"
292
  msgstr "Veranstaltung hinzufügen"
293
 
294
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
295
  msgid "Add New Event"
296
  msgstr "Neue Veranstaltung hinzufügen"
297
 
316
  msgid "No events found in Trash!"
317
  msgstr "Keine Veranstaltungen im Papierkorb gefunden!"
318
 
319
+ #: app/features/events.php:173 app/features/events.php:3072
320
  #: app/features/mec/meta_boxes/display_options.php:828
321
  #: app/features/mec/meta_boxes/search_form.php:31
322
  #: app/features/mec/meta_boxes/search_form.php:93
336
  msgid "Category"
337
  msgstr "Kategorie"
338
 
339
+ #: app/features/events.php:174 app/features/events.php:3043
340
  #: app/features/fes/form.php:745 app/features/mec.php:335
341
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
342
  msgid "Categories"
410
  msgid "Event Details"
411
  msgstr "Veranstaltungsdetails"
412
 
413
+ #: app/features/events.php:333 app/features/events.php:3265
414
+ #: app/features/events.php:3307 app/features/fes/form.php:706
415
  #: app/features/ix.php:2743 app/features/ix.php:2784
416
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
417
  #: app/widgets/single.php:103
437
  #: app/features/events.php:443 app/features/events.php:2261
438
  #: app/features/fes/form.php:668 app/features/labels.php:178
439
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
440
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
441
  #: app/modules/booking/steps/form.php:37
442
  msgid "Name"
443
  msgstr "Name"
444
 
445
  #: app/features/events.php:444 app/features/events.php:2272
446
+ #: app/features/events.php:2348 app/features/fes/form.php:664
447
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
448
  #: app/features/organizers.php:111 app/features/organizers.php:152
449
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
450
  #: app/features/speakers.php:184 app/libraries/main.php:1471
451
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
452
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
453
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
454
  #: app/skins/single.php:836 app/skins/single/default.php:212
455
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
462
  msgstr "Datum und Uhrzeit"
463
 
464
  #: app/features/events.php:452 app/features/events.php:458
465
+ #: app/features/events.php:3075 app/features/events.php:3265
466
+ #: app/features/events.php:3307 app/features/fes/form.php:236
467
  #: app/features/fes/form.php:240 app/features/ix.php:2743
468
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
469
+ #: app/features/mec/dashboard.php:373
470
  #: app/features/mec/meta_boxes/display_options.php:44
471
  #: app/features/mec/meta_boxes/display_options.php:185
472
  #: app/features/mec/meta_boxes/display_options.php:337
498
  msgstr "PM"
499
 
500
  #: app/features/events.php:544 app/features/events.php:549
501
+ #: app/features/events.php:3076 app/features/events.php:3265
502
+ #: app/features/events.php:3307 app/features/fes/form.php:276
503
  #: app/features/fes/form.php:280 app/features/ix.php:2743
504
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
505
+ #: app/features/mec/dashboard.php:374
506
  msgid "End Date"
507
  msgstr "Ende Datum"
508
 
619
  msgstr "Wiederholend"
620
 
621
  #: app/features/events.php:703 app/features/fes/form.php:338
622
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
623
  msgid "Daily"
624
  msgstr "Täglich"
625
 
641
  msgstr "Wöchentlich"
642
 
643
  #: app/features/events.php:738 app/features/fes/form.php:343
644
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
645
  msgid "Monthly"
646
  msgstr "Monatlich"
647
 
648
  #: app/features/events.php:745 app/features/fes/form.php:344
649
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
650
  msgid "Yearly"
651
  msgstr "Jährlich"
652
 
813
  msgid "Exclude certain days"
814
  msgstr "Ausschluss bestimmter Tage"
815
 
816
+ #: app/features/events.php:1141 app/features/events.php:2349
817
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
818
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
819
  #: app/modules/booking/steps/tickets.php:22
857
  #: app/features/events.php:1239 app/features/events.php:1278
858
  #: app/features/events.php:1313 app/features/events.php:1345
859
  #: app/features/events.php:1374 app/features/events.php:2130
860
+ #: app/features/events.php:2177 app/features/events.php:3071
861
+ #: app/features/events.php:3265 app/features/events.php:3307
862
  #: app/features/fes/form.php:225 app/features/ix.php:2743
863
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
864
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1044
  msgstr "Ticket Name"
1045
 
1046
  #: app/features/events.php:1584 app/features/events.php:1805
1047
+ #: app/features/events.php:3265 app/features/events.php:3307
1048
  #: app/features/ix.php:2743 app/features/ix.php:2784
1049
  msgid "Start Time"
1050
  msgstr "Uhrzeit des Beginns"
1051
 
1052
  #: app/features/events.php:1626 app/features/events.php:1829
1053
+ #: app/features/events.php:3265 app/features/events.php:3307
1054
  #: app/features/ix.php:2743 app/features/ix.php:2784
1055
  msgid "End Time"
1056
  msgstr "Uhrzeit Ende"
1172
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1173
  msgstr ""
1174
 
1175
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1176
  #: app/libraries/main.php:2523
1177
  #, fuzzy
1178
  #| msgid "Name"
1179
  msgid "MEC Name"
1180
  msgstr "Name"
1181
 
1182
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1183
  #: app/libraries/main.php:2552
1184
  #, fuzzy
1185
  #| msgid "Email"
1186
  msgid "MEC Email"
1187
  msgstr "Email"
1188
 
1189
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1190
  #: app/libraries/main.php:2493
1191
  msgid "Text"
1192
  msgstr "Text"
1193
 
1194
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1195
  #: app/features/organizers.php:103 app/features/organizers.php:148
1196
  #: app/features/speakers.php:116 app/features/speakers.php:180
1197
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1198
  msgid "Tel"
1199
  msgstr "Tel"
1200
 
1201
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1202
  #: app/libraries/main.php:2611
1203
  msgid "File"
1204
  msgstr ""
1205
 
1206
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1207
  #: app/libraries/main.php:2698
1208
  msgid "Textarea"
1209
  msgstr "Textbereich"
1210
 
1211
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1212
  #: app/libraries/main.php:2751
1213
  msgid "Checkboxes"
1214
  msgstr "Checkboxes"
1215
 
1216
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1217
  #: app/libraries/main.php:2795
1218
  msgid "Radio Buttons"
1219
  msgstr "Radio Buttons"
1220
 
1221
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1222
  #: app/features/mec/meta_boxes/search_form.php:34
1223
  #: app/features/mec/meta_boxes/search_form.php:41
1224
  #: app/features/mec/meta_boxes/search_form.php:48
1291
  msgid "Dropdown"
1292
  msgstr "Dropdown"
1293
 
1294
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1295
  #: app/libraries/main.php:2886
1296
  msgid "Agreement"
1297
  msgstr "Zustimmung"
1298
 
1299
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1300
  #: app/libraries/main.php:2727
1301
  msgid "Paragraph"
1302
  msgstr "Absatz"
1303
 
1304
+ #: app/features/events.php:2992 app/features/events.php:3009
1305
+ #: app/features/events.php:3026 app/features/events.php:3043
1306
  #, php-format
1307
  msgid "Show all %s"
1308
  msgstr "Zeige alle %s"
1309
 
1310
+ #: app/features/events.php:2992
1311
  msgid "labels"
1312
  msgstr "Labels + Eventstatus"
1313
 
1314
+ #: app/features/events.php:3009
1315
  msgid "locations"
1316
  msgstr "Orte"
1317
 
1318
+ #: app/features/events.php:3026
1319
  msgid "organizers"
1320
  msgstr "Veranstalter"
1321
 
1322
+ #: app/features/events.php:3073 app/features/events.php:3265
1323
+ #: app/features/events.php:3307 app/features/ix.php:2743
1324
  #: app/features/ix.php:2784 app/features/locations.php:58
1325
  #: app/features/locations.php:230 app/features/locations.php:287
1326
  #: app/features/locations.php:289 app/features/locations.php:298
1344
  msgid "Location"
1345
  msgstr "Ort"
1346
 
1347
+ #: app/features/events.php:3074 app/features/events.php:3265
1348
+ #: app/features/events.php:3307 app/features/ix.php:2743
1349
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1350
  #: app/features/mec/meta_boxes/search_form.php:45
1351
  #: app/features/mec/meta_boxes/search_form.php:107
1368
  msgid "Organizer"
1369
  msgstr "Veranstalter"
1370
 
1371
+ #: app/features/events.php:3078
1372
  msgid "Repeat"
1373
  msgstr "Wiederholen"
1374
 
1375
+ #: app/features/events.php:3079
1376
  msgid "Author"
1377
  msgstr "Autor"
1378
 
1379
+ #: app/features/events.php:3200 app/features/events.php:3201
1380
  msgid "iCal Export"
1381
  msgstr "ical Export"
1382
 
1383
+ #: app/features/events.php:3203 app/features/events.php:3204
1384
  msgid "CSV Export"
1385
  msgstr "CSV Export"
1386
 
1387
+ #: app/features/events.php:3206 app/features/events.php:3207
1388
  msgid "MS Excel Export"
1389
  msgstr "MS Excel Export"
1390
 
1391
+ #: app/features/events.php:3209 app/features/events.php:3210
1392
  msgid "XML Export"
1393
  msgstr "XML Export"
1394
 
1395
+ #: app/features/events.php:3212 app/features/events.php:3213
1396
  msgid "JSON Export"
1397
  msgstr "JSON Export"
1398
 
1399
+ #: app/features/events.php:3215 app/features/events.php:3216
1400
+ #: app/features/events.php:3397
1401
  msgid "Duplicate"
1402
  msgstr "Kopie"
1403
 
1404
+ #: app/features/events.php:3265 app/features/events.php:3307
1405
  #: app/features/ix.php:2743 app/features/ix.php:2784
1406
  #: app/features/labels.php:177 app/features/locations.php:229
1407
  #: app/features/organizers.php:203 app/features/speakers.php:246
1408
  msgid "ID"
1409
  msgstr "ID"
1410
 
1411
+ #: app/features/events.php:3265 app/features/events.php:3307
1412
  #: app/features/ix.php:2743 app/features/ix.php:2784
1413
  msgid "Link"
1414
  msgstr "Link"
1415
 
1416
+ #: app/features/events.php:3265 app/features/events.php:3307
1417
  #, php-format
1418
  msgid "%s Tel"
1419
  msgstr "%s Tel"
1420
 
1421
+ #: app/features/events.php:3265 app/features/events.php:3307
1422
  #, php-format
1423
  msgid "%s Email"
1424
  msgstr "%s Email"
1947
  msgid "Import all of your Facebook events into MEC."
1948
  msgstr "Importiere alle Deine Facebook Events zum MEC"
1949
 
1950
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1951
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1952
  msgid "Documentation"
1953
  msgstr "Dokumentation"
2358
  msgstr "Event %s"
2359
 
2360
  #: app/features/locations.php:59 app/features/mec.php:337
2361
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2362
  #: app/libraries/main.php:4838
2363
  msgid "Locations"
2364
  msgstr "Orte"
2534
  msgid "Support"
2535
  msgstr "Support"
2536
 
2537
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2538
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2539
  #: app/libraries/main.php:4840
2540
  msgid "Organizers"
2541
  msgstr "Veranstalter"
2542
 
2543
  #: app/features/mec.php:346 app/features/mec.php:366
2544
+ #: app/features/mec/dashboard.php:236
2545
  msgid "Shortcodes"
2546
  msgstr "Shortcodes"
2547
 
2889
  msgid "Update"
2890
  msgstr "Update %s"
2891
 
2892
+ #: app/features/mec/dashboard.php:92
2893
  #, php-format
2894
  msgid ""
2895
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2896
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2897
+ "Spots, etc you should upgrade to the Pro version."
2898
  msgstr ""
2899
 
2900
+ #: app/features/mec/dashboard.php:92
2901
  msgid "lite"
2902
  msgstr ""
2903
 
2904
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2905
+ msgid "GO PREMIUM"
2906
+ msgstr ""
2907
+
2908
+ #: app/features/mec/dashboard.php:98
2909
+ #, php-format
2910
+ msgid ""
2911
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2912
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2913
  msgstr ""
2914
 
2915
+ #: app/features/mec/dashboard.php:98
2916
+ #, fuzzy
2917
+ #| msgid "Address"
2918
+ msgid "WordPress"
2919
+ msgstr "Adresse"
2920
+
2921
+ #: app/features/mec/dashboard.php:98
2922
+ msgid "Copouns!"
2923
+ msgstr ""
2924
+
2925
+ #: app/features/mec/dashboard.php:127
2926
  #, fuzzy
2927
  #| msgid "Modern Events Calendar"
2928
  msgid "Getting started with Modern Events Calendar"
2929
  msgstr "Moderner Event Kalender "
2930
 
2931
+ #: app/features/mec/dashboard.php:128
2932
  msgid ""
2933
  "In this short video, you can learn how to make an event and put a calendar "
2934
  "on your website. Please watch this 2 minutes video to the end."
2935
  msgstr ""
2936
 
2937
+ #: app/features/mec/dashboard.php:144
2938
  #, fuzzy
2939
  #| msgid "MEC Activation"
2940
  msgid "MEC Activate"
2941
  msgstr "MEC Aktivierung"
2942
 
2943
+ #: app/features/mec/dashboard.php:150
2944
  msgid ""
2945
  "In order to use all plugin features and options, please enter your purchase "
2946
  "code."
2947
  msgstr ""
2948
 
2949
+ #: app/features/mec/dashboard.php:208
2950
  #, fuzzy
2951
  #| msgid "MEC Activation"
2952
  msgid "Activate Addons"
2953
  msgstr "MEC Aktivierung"
2954
 
2955
+ #: app/features/mec/dashboard.php:217
2956
  msgid "You cannot access this section."
2957
  msgstr ""
2958
 
2959
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2960
  msgid "Upcoming Events"
2961
  msgstr "Bevorstehende Events"
2962
 
2963
+ #: app/features/mec/dashboard.php:285
2964
  msgid "Popular Gateways"
2965
  msgstr "Beliebte Zahlungsgateways"
2966
 
2967
+ #: app/features/mec/dashboard.php:339
2968
  msgid "Total Bookings"
2969
  msgstr "Gesamte Buchungen"
2970
 
2971
+ #: app/features/mec/dashboard.php:366
2972
  msgid "This Month"
2973
  msgstr "Diesen Monat"
2974
 
2975
+ #: app/features/mec/dashboard.php:367
2976
  msgid "Last Month"
2977
  msgstr "Letzten Monat"
2978
 
2979
+ #: app/features/mec/dashboard.php:368
2980
  msgid "This Year"
2981
  msgstr "Diese Jahr"
2982
 
2983
+ #: app/features/mec/dashboard.php:369
2984
  msgid "Last Year"
2985
  msgstr "Letztes Jahr"
2986
 
2987
+ #: app/features/mec/dashboard.php:381
2988
  msgid "Bar"
2989
  msgstr "Bar"
2990
 
2991
+ #: app/features/mec/dashboard.php:382
2992
  msgid "Line"
2993
  msgstr "Linie"
2994
 
2995
+ #: app/features/mec/dashboard.php:384
2996
  msgid "Filter"
2997
  msgstr "Filter"
2998
 
2999
+ #: app/features/mec/dashboard.php:400
3000
  #, php-format
3001
  msgid "Total Sells (%s)"
3002
  msgstr "Alle Verkäufe (%s)"
3003
 
3004
+ #: app/features/mec/dashboard.php:421
3005
  msgid "Change Log"
3006
  msgstr "Änderungsprotokoll"
3007
 
4427
  "Informieren, dass eine neue Buchung eingegangen ist."
4428
 
4429
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4430
+ #: app/libraries/notifications.php:478
4431
  msgid "Booking Reminder"
4432
  msgstr "Buchungs Erinnerung"
4433
 
5684
  "zufriedenen Nutzern. Wenn Sie irgendwelche Fehlerprobleme haben, zögern Sie "
5685
  "nicht uns zu kontaktieren. Wir werden so schnell wie möglich antworten."
5686
 
 
 
 
 
5687
  #: app/features/mec/support.php:128
5688
  msgid "OPEN A TICKET"
5689
  msgstr "Ein Ticket eröffnen"
5859
  msgstr ""
5860
 
5861
  #: app/features/search_bar/search_result.php:11
5862
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5863
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5864
  #: app/skins/single.php:160 app/skins/single.php:708
5865
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6459
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6460
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6461
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6462
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6463
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6464
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6465
  #: app/skins/single.php:729 app/skins/single/default.php:233
6479
 
6480
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6481
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6482
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6483
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6484
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6485
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6486
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6544
  msgid "Skin controller does not exist."
6545
  msgstr "Skin contoller existiert nicht."
6546
 
6547
+ #: app/libraries/notifications.php:60
6548
  msgid "Please verify your email."
6549
  msgstr "Bitte bestätigen Sie Ihre email."
6550
 
6551
+ #: app/libraries/notifications.php:139
6552
  msgid "Your booking is received."
6553
  msgstr "Ihre Buchung ist eingegangen"
6554
 
6555
+ #: app/libraries/notifications.php:224
6556
  msgid "Your booking is confirmed."
6557
  msgstr "Ihre Buchung wurde bestätigt."
6558
 
6559
+ #: app/libraries/notifications.php:349
6560
  #, fuzzy
6561
  #| msgid "Your booking cannot be canceled."
6562
  msgid "booking canceled."
6563
  msgstr "Ihre Buchung kann nicht storniert werden."
6564
 
6565
+ #: app/libraries/notifications.php:410
6566
  msgid "A new booking is received."
6567
  msgstr "Eine neue Buchung ist eingegangen."
6568
 
6569
+ #: app/libraries/notifications.php:561
6570
  msgid "A new event is added."
6571
  msgstr "Eine neue Veranstaltung wurde hinzugefügt."
6572
 
6573
+ #: app/libraries/notifications.php:746
6574
  msgid "to"
6575
  msgstr ""
6576
 
6577
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6578
  msgid "+ Add to Google Calendar"
6579
  msgstr "+ zum Google Calendar hinzufügen"
6580
 
6581
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6582
  msgid "+ iCal export"
6583
  msgstr "+ zu iCal exportieren"
6584
 
6585
+ #: app/libraries/notifications.php:821
6586
  msgid "Yes"
6587
  msgstr "Ja"
6588
 
6589
+ #: app/libraries/notifications.php:821
6590
  msgid "No"
6591
  msgstr "Nein"
6592
 
7054
  #~ msgid "Book Date"
7055
  #~ msgstr "Buchungsdatum"
7056
 
7057
+ #, fuzzy
7058
+ #~| msgid "Ticket"
7059
+ #~ msgid " - Ticket"
7060
+ #~ msgstr "Ticket"
7061
+
7062
  #~ msgid "Confirm"
7063
  #~ msgstr "Bestätigen"
7064
 
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: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 15:59+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
@@ -61,7 +61,7 @@ msgid "Event Color"
61
  msgstr ""
62
 
63
  #: app/features/contextual.php:55 app/features/mec.php:347
64
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
65
  #: app/features/mec/support.php:20 app/libraries/main.php:587
66
  msgid "Settings"
67
  msgstr ""
@@ -237,7 +237,7 @@ msgid "MEC Activation"
237
  msgstr ""
238
 
239
  #: app/features/events.php:148 app/features/ix/export.php:34
240
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
241
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
242
  msgid "Events"
243
  msgstr ""
@@ -255,7 +255,7 @@ msgstr ""
255
  msgid "Add Event"
256
  msgstr ""
257
 
258
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
259
  msgid "Add New Event"
260
  msgstr ""
261
 
@@ -280,7 +280,7 @@ msgstr ""
280
  msgid "No events found in Trash!"
281
  msgstr ""
282
 
283
- #: app/features/events.php:173 app/features/events.php:3078
284
  #: app/features/mec/meta_boxes/display_options.php:828
285
  #: app/features/mec/meta_boxes/search_form.php:31
286
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -300,7 +300,7 @@ msgstr ""
300
  msgid "Category"
301
  msgstr ""
302
 
303
- #: app/features/events.php:174 app/features/events.php:3049
304
  #: app/features/fes/form.php:745 app/features/mec.php:335
305
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
306
  msgid "Categories"
@@ -374,8 +374,8 @@ msgstr ""
374
  msgid "Event Details"
375
  msgstr ""
376
 
377
- #: app/features/events.php:333 app/features/events.php:3271
378
- #: app/features/events.php:3313 app/features/fes/form.php:706
379
  #: app/features/ix.php:2743 app/features/ix.php:2784
380
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
381
  #: app/widgets/single.php:103
@@ -400,19 +400,19 @@ msgstr ""
400
  #: app/features/events.php:443 app/features/events.php:2261
401
  #: app/features/fes/form.php:668 app/features/labels.php:178
402
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
403
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
404
  #: app/modules/booking/steps/form.php:37
405
  msgid "Name"
406
  msgstr ""
407
 
408
  #: app/features/events.php:444 app/features/events.php:2272
409
- #: app/features/events.php:2350 app/features/fes/form.php:664
410
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
411
  #: app/features/organizers.php:111 app/features/organizers.php:152
412
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
413
  #: app/features/speakers.php:184 app/libraries/main.php:1471
414
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
415
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
416
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
417
  #: app/skins/single.php:836 app/skins/single/default.php:212
418
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -425,11 +425,11 @@ msgid "Date and Time"
425
  msgstr ""
426
 
427
  #: app/features/events.php:452 app/features/events.php:458
428
- #: app/features/events.php:3081 app/features/events.php:3271
429
- #: app/features/events.php:3313 app/features/fes/form.php:236
430
  #: app/features/fes/form.php:240 app/features/ix.php:2743
431
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
432
- #: app/features/mec/dashboard.php:346
433
  #: app/features/mec/meta_boxes/display_options.php:44
434
  #: app/features/mec/meta_boxes/display_options.php:185
435
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -461,11 +461,11 @@ msgid "PM"
461
  msgstr ""
462
 
463
  #: app/features/events.php:544 app/features/events.php:549
464
- #: app/features/events.php:3082 app/features/events.php:3271
465
- #: app/features/events.php:3313 app/features/fes/form.php:276
466
  #: app/features/fes/form.php:280 app/features/ix.php:2743
467
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
468
- #: app/features/mec/dashboard.php:347
469
  msgid "End Date"
470
  msgstr ""
471
 
@@ -576,7 +576,7 @@ msgid "Repeats"
576
  msgstr ""
577
 
578
  #: app/features/events.php:703 app/features/fes/form.php:338
579
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
580
  msgid "Daily"
581
  msgstr ""
582
 
@@ -598,12 +598,12 @@ msgid "Weekly"
598
  msgstr ""
599
 
600
  #: app/features/events.php:738 app/features/fes/form.php:343
601
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
602
  msgid "Monthly"
603
  msgstr ""
604
 
605
  #: app/features/events.php:745 app/features/fes/form.php:344
606
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
607
  msgid "Yearly"
608
  msgstr ""
609
 
@@ -754,7 +754,7 @@ msgstr ""
754
  msgid "Exclude certain days"
755
  msgstr ""
756
 
757
- #: app/features/events.php:1141 app/features/events.php:2351
758
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
759
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
760
  #: app/modules/booking/steps/tickets.php:22
@@ -798,8 +798,8 @@ msgstr ""
798
  #: app/features/events.php:1239 app/features/events.php:1278
799
  #: app/features/events.php:1313 app/features/events.php:1345
800
  #: app/features/events.php:1374 app/features/events.php:2130
801
- #: app/features/events.php:2177 app/features/events.php:3077
802
- #: app/features/events.php:3271 app/features/events.php:3313
803
  #: app/features/fes/form.php:225 app/features/ix.php:2743
804
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
805
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -967,13 +967,13 @@ msgid "Ticket Name"
967
  msgstr ""
968
 
969
  #: app/features/events.php:1584 app/features/events.php:1805
970
- #: app/features/events.php:3271 app/features/events.php:3313
971
  #: app/features/ix.php:2743 app/features/ix.php:2784
972
  msgid "Start Time"
973
  msgstr ""
974
 
975
  #: app/features/events.php:1626 app/features/events.php:1829
976
- #: app/features/events.php:3271 app/features/events.php:3313
977
  #: app/features/ix.php:2743 app/features/ix.php:2784
978
  msgid "End Time"
979
  msgstr ""
@@ -1087,49 +1087,49 @@ msgstr ""
1087
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1088
  msgstr ""
1089
 
1090
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1091
  #: app/libraries/main.php:2523
1092
  msgid "MEC Name"
1093
  msgstr ""
1094
 
1095
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1096
  #: app/libraries/main.php:2552
1097
  msgid "MEC Email"
1098
  msgstr ""
1099
 
1100
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1101
  #: app/libraries/main.php:2493
1102
  msgid "Text"
1103
  msgstr ""
1104
 
1105
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1106
  #: app/features/organizers.php:103 app/features/organizers.php:148
1107
  #: app/features/speakers.php:116 app/features/speakers.php:180
1108
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1109
  msgid "Tel"
1110
  msgstr ""
1111
 
1112
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1113
  #: app/libraries/main.php:2611
1114
  msgid "File"
1115
  msgstr ""
1116
 
1117
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1118
  #: app/libraries/main.php:2698
1119
  msgid "Textarea"
1120
  msgstr ""
1121
 
1122
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1123
  #: app/libraries/main.php:2751
1124
  msgid "Checkboxes"
1125
  msgstr ""
1126
 
1127
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1128
  #: app/libraries/main.php:2795
1129
  msgid "Radio Buttons"
1130
  msgstr ""
1131
 
1132
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1133
  #: app/features/mec/meta_boxes/search_form.php:34
1134
  #: app/features/mec/meta_boxes/search_form.php:41
1135
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1202,36 +1202,36 @@ msgstr ""
1202
  msgid "Dropdown"
1203
  msgstr ""
1204
 
1205
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1206
  #: app/libraries/main.php:2886
1207
  msgid "Agreement"
1208
  msgstr ""
1209
 
1210
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1211
  #: app/libraries/main.php:2727
1212
  msgid "Paragraph"
1213
  msgstr ""
1214
 
1215
- #: app/features/events.php:2998 app/features/events.php:3015
1216
- #: app/features/events.php:3032 app/features/events.php:3049
1217
  #, php-format
1218
  msgid "Show all %s"
1219
  msgstr ""
1220
 
1221
- #: app/features/events.php:2998
1222
  msgid "labels"
1223
  msgstr ""
1224
 
1225
- #: app/features/events.php:3015
1226
  msgid "locations"
1227
  msgstr ""
1228
 
1229
- #: app/features/events.php:3032
1230
  msgid "organizers"
1231
  msgstr ""
1232
 
1233
- #: app/features/events.php:3079 app/features/events.php:3271
1234
- #: app/features/events.php:3313 app/features/ix.php:2743
1235
  #: app/features/ix.php:2784 app/features/locations.php:58
1236
  #: app/features/locations.php:230 app/features/locations.php:287
1237
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1255,8 +1255,8 @@ msgstr ""
1255
  msgid "Location"
1256
  msgstr ""
1257
 
1258
- #: app/features/events.php:3080 app/features/events.php:3271
1259
- #: app/features/events.php:3313 app/features/ix.php:2743
1260
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1261
  #: app/features/mec/meta_boxes/search_form.php:45
1262
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1279,57 +1279,57 @@ msgstr ""
1279
  msgid "Organizer"
1280
  msgstr ""
1281
 
1282
- #: app/features/events.php:3084
1283
  msgid "Repeat"
1284
  msgstr ""
1285
 
1286
- #: app/features/events.php:3085
1287
  msgid "Author"
1288
  msgstr ""
1289
 
1290
- #: app/features/events.php:3206 app/features/events.php:3207
1291
  msgid "iCal Export"
1292
  msgstr ""
1293
 
1294
- #: app/features/events.php:3209 app/features/events.php:3210
1295
  msgid "CSV Export"
1296
  msgstr ""
1297
 
1298
- #: app/features/events.php:3212 app/features/events.php:3213
1299
  msgid "MS Excel Export"
1300
  msgstr ""
1301
 
1302
- #: app/features/events.php:3215 app/features/events.php:3216
1303
  msgid "XML Export"
1304
  msgstr ""
1305
 
1306
- #: app/features/events.php:3218 app/features/events.php:3219
1307
  msgid "JSON Export"
1308
  msgstr ""
1309
 
1310
- #: app/features/events.php:3221 app/features/events.php:3222
1311
- #: app/features/events.php:3403
1312
  msgid "Duplicate"
1313
  msgstr ""
1314
 
1315
- #: app/features/events.php:3271 app/features/events.php:3313
1316
  #: app/features/ix.php:2743 app/features/ix.php:2784
1317
  #: app/features/labels.php:177 app/features/locations.php:229
1318
  #: app/features/organizers.php:203 app/features/speakers.php:246
1319
  msgid "ID"
1320
  msgstr ""
1321
 
1322
- #: app/features/events.php:3271 app/features/events.php:3313
1323
  #: app/features/ix.php:2743 app/features/ix.php:2784
1324
  msgid "Link"
1325
  msgstr ""
1326
 
1327
- #: app/features/events.php:3271 app/features/events.php:3313
1328
  #, php-format
1329
  msgid "%s Tel"
1330
  msgstr ""
1331
 
1332
- #: app/features/events.php:3271 app/features/events.php:3313
1333
  #, php-format
1334
  msgid "%s Email"
1335
  msgstr ""
@@ -1821,7 +1821,7 @@ msgstr ""
1821
  msgid "Import all of your Facebook events into MEC."
1822
  msgstr ""
1823
 
1824
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1825
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1826
  msgid "Documentation"
1827
  msgstr ""
@@ -2170,7 +2170,7 @@ msgid "Event %s"
2170
  msgstr ""
2171
 
2172
  #: app/features/locations.php:59 app/features/mec.php:337
2173
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2174
  #: app/libraries/main.php:4838
2175
  msgid "Locations"
2176
  msgstr ""
@@ -2326,14 +2326,14 @@ msgstr ""
2326
  msgid "Support"
2327
  msgstr ""
2328
 
2329
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2330
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2331
  #: app/libraries/main.php:4840
2332
  msgid "Organizers"
2333
  msgstr ""
2334
 
2335
  #: app/features/mec.php:346 app/features/mec.php:366
2336
- #: app/features/mec/dashboard.php:209
2337
  msgid "Shortcodes"
2338
  msgstr ""
2339
 
@@ -2661,96 +2661,111 @@ msgstr ""
2661
  msgid "Update"
2662
  msgstr ""
2663
 
2664
- #: app/features/mec/dashboard.php:90
2665
  #, php-format
2666
  msgid ""
2667
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2668
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2669
- "Spots, etc you should %s to the Pro version."
2670
  msgstr ""
2671
 
2672
- #: app/features/mec/dashboard.php:90
2673
  msgid "lite"
2674
  msgstr ""
2675
 
2676
- #: app/features/mec/dashboard.php:90
2677
- msgid "upgrade"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2678
  msgstr ""
2679
 
2680
- #: app/features/mec/dashboard.php:100
2681
  msgid "Getting started with Modern Events Calendar"
2682
  msgstr ""
2683
 
2684
- #: app/features/mec/dashboard.php:101
2685
  msgid ""
2686
  "In this short video, you can learn how to make an event and put a calendar "
2687
  "on your website. Please watch this 2 minutes video to the end."
2688
  msgstr ""
2689
 
2690
- #: app/features/mec/dashboard.php:117
2691
  msgid "MEC Activate"
2692
  msgstr ""
2693
 
2694
- #: app/features/mec/dashboard.php:123
2695
  msgid ""
2696
  "In order to use all plugin features and options, please enter your purchase "
2697
  "code."
2698
  msgstr ""
2699
 
2700
- #: app/features/mec/dashboard.php:181
2701
  msgid "Activate Addons"
2702
  msgstr ""
2703
 
2704
- #: app/features/mec/dashboard.php:190
2705
  msgid "You cannot access this section."
2706
  msgstr ""
2707
 
2708
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2709
  msgid "Upcoming Events"
2710
  msgstr ""
2711
 
2712
- #: app/features/mec/dashboard.php:258
2713
  msgid "Popular Gateways"
2714
  msgstr ""
2715
 
2716
- #: app/features/mec/dashboard.php:312
2717
  msgid "Total Bookings"
2718
  msgstr ""
2719
 
2720
- #: app/features/mec/dashboard.php:339
2721
  msgid "This Month"
2722
  msgstr ""
2723
 
2724
- #: app/features/mec/dashboard.php:340
2725
  msgid "Last Month"
2726
  msgstr ""
2727
 
2728
- #: app/features/mec/dashboard.php:341
2729
  msgid "This Year"
2730
  msgstr ""
2731
 
2732
- #: app/features/mec/dashboard.php:342
2733
  msgid "Last Year"
2734
  msgstr ""
2735
 
2736
- #: app/features/mec/dashboard.php:354
2737
  msgid "Bar"
2738
  msgstr ""
2739
 
2740
- #: app/features/mec/dashboard.php:355
2741
  msgid "Line"
2742
  msgstr ""
2743
 
2744
- #: app/features/mec/dashboard.php:357
2745
  msgid "Filter"
2746
  msgstr ""
2747
 
2748
- #: app/features/mec/dashboard.php:373
2749
  #, php-format
2750
  msgid "Total Sells (%s)"
2751
  msgstr ""
2752
 
2753
- #: app/features/mec/dashboard.php:394
2754
  msgid "Change Log"
2755
  msgstr ""
2756
 
@@ -4084,7 +4099,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4084
  msgstr ""
4085
 
4086
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4087
- #: app/libraries/notifications.php:405
4088
  msgid "Booking Reminder"
4089
  msgstr ""
4090
 
@@ -5152,10 +5167,6 @@ msgid ""
5152
  "soon as possible."
5153
  msgstr ""
5154
 
5155
- #: app/features/mec/support.php:126
5156
- msgid "GO PREMIUM"
5157
- msgstr ""
5158
-
5159
  #: app/features/mec/support.php:128
5160
  msgid "OPEN A TICKET"
5161
  msgstr ""
@@ -5314,7 +5325,7 @@ msgid "No search result."
5314
  msgstr ""
5315
 
5316
  #: app/features/search_bar/search_result.php:11
5317
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5318
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5319
  #: app/skins/single.php:160 app/skins/single.php:708
5320
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -5870,7 +5881,7 @@ msgstr ""
5870
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
5871
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5872
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5873
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
5874
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5875
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
5876
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -5890,8 +5901,8 @@ msgstr ""
5890
 
5891
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
5892
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5893
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
5894
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
5895
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
5896
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
5897
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -5955,47 +5966,47 @@ msgstr ""
5955
  msgid "Skin controller does not exist."
5956
  msgstr ""
5957
 
5958
- #: app/libraries/notifications.php:61
5959
  msgid "Please verify your email."
5960
  msgstr ""
5961
 
5962
- #: app/libraries/notifications.php:125
5963
  msgid "Your booking is received."
5964
  msgstr ""
5965
 
5966
- #: app/libraries/notifications.php:193
5967
  msgid "Your booking is confirmed."
5968
  msgstr ""
5969
 
5970
- #: app/libraries/notifications.php:282
5971
  msgid "booking canceled."
5972
  msgstr ""
5973
 
5974
- #: app/libraries/notifications.php:337
5975
  msgid "A new booking is received."
5976
  msgstr ""
5977
 
5978
- #: app/libraries/notifications.php:488
5979
  msgid "A new event is added."
5980
  msgstr ""
5981
 
5982
- #: app/libraries/notifications.php:674
5983
  msgid "to"
5984
  msgstr ""
5985
 
5986
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
5987
  msgid "+ Add to Google Calendar"
5988
  msgstr ""
5989
 
5990
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
5991
  msgid "+ iCal export"
5992
  msgstr ""
5993
 
5994
- #: app/libraries/notifications.php:752
5995
  msgid "Yes"
5996
  msgstr ""
5997
 
5998
- #: app/libraries/notifications.php:752
5999
  msgid "No"
6000
  msgstr ""
6001
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: modern-events-calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:22+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: en_US\n"
61
  msgstr ""
62
 
63
  #: app/features/contextual.php:55 app/features/mec.php:347
64
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
65
  #: app/features/mec/support.php:20 app/libraries/main.php:587
66
  msgid "Settings"
67
  msgstr ""
237
  msgstr ""
238
 
239
  #: app/features/events.php:148 app/features/ix/export.php:34
240
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
241
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
242
  msgid "Events"
243
  msgstr ""
255
  msgid "Add Event"
256
  msgstr ""
257
 
258
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
259
  msgid "Add New Event"
260
  msgstr ""
261
 
280
  msgid "No events found in Trash!"
281
  msgstr ""
282
 
283
+ #: app/features/events.php:173 app/features/events.php:3072
284
  #: app/features/mec/meta_boxes/display_options.php:828
285
  #: app/features/mec/meta_boxes/search_form.php:31
286
  #: app/features/mec/meta_boxes/search_form.php:93
300
  msgid "Category"
301
  msgstr ""
302
 
303
+ #: app/features/events.php:174 app/features/events.php:3043
304
  #: app/features/fes/form.php:745 app/features/mec.php:335
305
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
306
  msgid "Categories"
374
  msgid "Event Details"
375
  msgstr ""
376
 
377
+ #: app/features/events.php:333 app/features/events.php:3265
378
+ #: app/features/events.php:3307 app/features/fes/form.php:706
379
  #: app/features/ix.php:2743 app/features/ix.php:2784
380
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
381
  #: app/widgets/single.php:103
400
  #: app/features/events.php:443 app/features/events.php:2261
401
  #: app/features/fes/form.php:668 app/features/labels.php:178
402
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
403
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
404
  #: app/modules/booking/steps/form.php:37
405
  msgid "Name"
406
  msgstr ""
407
 
408
  #: app/features/events.php:444 app/features/events.php:2272
409
+ #: app/features/events.php:2348 app/features/fes/form.php:664
410
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
411
  #: app/features/organizers.php:111 app/features/organizers.php:152
412
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
413
  #: app/features/speakers.php:184 app/libraries/main.php:1471
414
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
415
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
416
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
417
  #: app/skins/single.php:836 app/skins/single/default.php:212
418
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
425
  msgstr ""
426
 
427
  #: app/features/events.php:452 app/features/events.php:458
428
+ #: app/features/events.php:3075 app/features/events.php:3265
429
+ #: app/features/events.php:3307 app/features/fes/form.php:236
430
  #: app/features/fes/form.php:240 app/features/ix.php:2743
431
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
432
+ #: app/features/mec/dashboard.php:373
433
  #: app/features/mec/meta_boxes/display_options.php:44
434
  #: app/features/mec/meta_boxes/display_options.php:185
435
  #: app/features/mec/meta_boxes/display_options.php:337
461
  msgstr ""
462
 
463
  #: app/features/events.php:544 app/features/events.php:549
464
+ #: app/features/events.php:3076 app/features/events.php:3265
465
+ #: app/features/events.php:3307 app/features/fes/form.php:276
466
  #: app/features/fes/form.php:280 app/features/ix.php:2743
467
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
468
+ #: app/features/mec/dashboard.php:374
469
  msgid "End Date"
470
  msgstr ""
471
 
576
  msgstr ""
577
 
578
  #: app/features/events.php:703 app/features/fes/form.php:338
579
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
580
  msgid "Daily"
581
  msgstr ""
582
 
598
  msgstr ""
599
 
600
  #: app/features/events.php:738 app/features/fes/form.php:343
601
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
602
  msgid "Monthly"
603
  msgstr ""
604
 
605
  #: app/features/events.php:745 app/features/fes/form.php:344
606
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
607
  msgid "Yearly"
608
  msgstr ""
609
 
754
  msgid "Exclude certain days"
755
  msgstr ""
756
 
757
+ #: app/features/events.php:1141 app/features/events.php:2349
758
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
759
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
760
  #: app/modules/booking/steps/tickets.php:22
798
  #: app/features/events.php:1239 app/features/events.php:1278
799
  #: app/features/events.php:1313 app/features/events.php:1345
800
  #: app/features/events.php:1374 app/features/events.php:2130
801
+ #: app/features/events.php:2177 app/features/events.php:3071
802
+ #: app/features/events.php:3265 app/features/events.php:3307
803
  #: app/features/fes/form.php:225 app/features/ix.php:2743
804
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
805
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
967
  msgstr ""
968
 
969
  #: app/features/events.php:1584 app/features/events.php:1805
970
+ #: app/features/events.php:3265 app/features/events.php:3307
971
  #: app/features/ix.php:2743 app/features/ix.php:2784
972
  msgid "Start Time"
973
  msgstr ""
974
 
975
  #: app/features/events.php:1626 app/features/events.php:1829
976
+ #: app/features/events.php:3265 app/features/events.php:3307
977
  #: app/features/ix.php:2743 app/features/ix.php:2784
978
  msgid "End Time"
979
  msgstr ""
1087
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1088
  msgstr ""
1089
 
1090
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1091
  #: app/libraries/main.php:2523
1092
  msgid "MEC Name"
1093
  msgstr ""
1094
 
1095
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1096
  #: app/libraries/main.php:2552
1097
  msgid "MEC Email"
1098
  msgstr ""
1099
 
1100
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1101
  #: app/libraries/main.php:2493
1102
  msgid "Text"
1103
  msgstr ""
1104
 
1105
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1106
  #: app/features/organizers.php:103 app/features/organizers.php:148
1107
  #: app/features/speakers.php:116 app/features/speakers.php:180
1108
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1109
  msgid "Tel"
1110
  msgstr ""
1111
 
1112
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1113
  #: app/libraries/main.php:2611
1114
  msgid "File"
1115
  msgstr ""
1116
 
1117
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1118
  #: app/libraries/main.php:2698
1119
  msgid "Textarea"
1120
  msgstr ""
1121
 
1122
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1123
  #: app/libraries/main.php:2751
1124
  msgid "Checkboxes"
1125
  msgstr ""
1126
 
1127
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1128
  #: app/libraries/main.php:2795
1129
  msgid "Radio Buttons"
1130
  msgstr ""
1131
 
1132
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1133
  #: app/features/mec/meta_boxes/search_form.php:34
1134
  #: app/features/mec/meta_boxes/search_form.php:41
1135
  #: app/features/mec/meta_boxes/search_form.php:48
1202
  msgid "Dropdown"
1203
  msgstr ""
1204
 
1205
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1206
  #: app/libraries/main.php:2886
1207
  msgid "Agreement"
1208
  msgstr ""
1209
 
1210
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1211
  #: app/libraries/main.php:2727
1212
  msgid "Paragraph"
1213
  msgstr ""
1214
 
1215
+ #: app/features/events.php:2992 app/features/events.php:3009
1216
+ #: app/features/events.php:3026 app/features/events.php:3043
1217
  #, php-format
1218
  msgid "Show all %s"
1219
  msgstr ""
1220
 
1221
+ #: app/features/events.php:2992
1222
  msgid "labels"
1223
  msgstr ""
1224
 
1225
+ #: app/features/events.php:3009
1226
  msgid "locations"
1227
  msgstr ""
1228
 
1229
+ #: app/features/events.php:3026
1230
  msgid "organizers"
1231
  msgstr ""
1232
 
1233
+ #: app/features/events.php:3073 app/features/events.php:3265
1234
+ #: app/features/events.php:3307 app/features/ix.php:2743
1235
  #: app/features/ix.php:2784 app/features/locations.php:58
1236
  #: app/features/locations.php:230 app/features/locations.php:287
1237
  #: app/features/locations.php:289 app/features/locations.php:298
1255
  msgid "Location"
1256
  msgstr ""
1257
 
1258
+ #: app/features/events.php:3074 app/features/events.php:3265
1259
+ #: app/features/events.php:3307 app/features/ix.php:2743
1260
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1261
  #: app/features/mec/meta_boxes/search_form.php:45
1262
  #: app/features/mec/meta_boxes/search_form.php:107
1279
  msgid "Organizer"
1280
  msgstr ""
1281
 
1282
+ #: app/features/events.php:3078
1283
  msgid "Repeat"
1284
  msgstr ""
1285
 
1286
+ #: app/features/events.php:3079
1287
  msgid "Author"
1288
  msgstr ""
1289
 
1290
+ #: app/features/events.php:3200 app/features/events.php:3201
1291
  msgid "iCal Export"
1292
  msgstr ""
1293
 
1294
+ #: app/features/events.php:3203 app/features/events.php:3204
1295
  msgid "CSV Export"
1296
  msgstr ""
1297
 
1298
+ #: app/features/events.php:3206 app/features/events.php:3207
1299
  msgid "MS Excel Export"
1300
  msgstr ""
1301
 
1302
+ #: app/features/events.php:3209 app/features/events.php:3210
1303
  msgid "XML Export"
1304
  msgstr ""
1305
 
1306
+ #: app/features/events.php:3212 app/features/events.php:3213
1307
  msgid "JSON Export"
1308
  msgstr ""
1309
 
1310
+ #: app/features/events.php:3215 app/features/events.php:3216
1311
+ #: app/features/events.php:3397
1312
  msgid "Duplicate"
1313
  msgstr ""
1314
 
1315
+ #: app/features/events.php:3265 app/features/events.php:3307
1316
  #: app/features/ix.php:2743 app/features/ix.php:2784
1317
  #: app/features/labels.php:177 app/features/locations.php:229
1318
  #: app/features/organizers.php:203 app/features/speakers.php:246
1319
  msgid "ID"
1320
  msgstr ""
1321
 
1322
+ #: app/features/events.php:3265 app/features/events.php:3307
1323
  #: app/features/ix.php:2743 app/features/ix.php:2784
1324
  msgid "Link"
1325
  msgstr ""
1326
 
1327
+ #: app/features/events.php:3265 app/features/events.php:3307
1328
  #, php-format
1329
  msgid "%s Tel"
1330
  msgstr ""
1331
 
1332
+ #: app/features/events.php:3265 app/features/events.php:3307
1333
  #, php-format
1334
  msgid "%s Email"
1335
  msgstr ""
1821
  msgid "Import all of your Facebook events into MEC."
1822
  msgstr ""
1823
 
1824
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1825
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1826
  msgid "Documentation"
1827
  msgstr ""
2170
  msgstr ""
2171
 
2172
  #: app/features/locations.php:59 app/features/mec.php:337
2173
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2174
  #: app/libraries/main.php:4838
2175
  msgid "Locations"
2176
  msgstr ""
2326
  msgid "Support"
2327
  msgstr ""
2328
 
2329
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2330
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2331
  #: app/libraries/main.php:4840
2332
  msgid "Organizers"
2333
  msgstr ""
2334
 
2335
  #: app/features/mec.php:346 app/features/mec.php:366
2336
+ #: app/features/mec/dashboard.php:236
2337
  msgid "Shortcodes"
2338
  msgstr ""
2339
 
2661
  msgid "Update"
2662
  msgstr ""
2663
 
2664
+ #: app/features/mec/dashboard.php:92
2665
  #, php-format
2666
  msgid ""
2667
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2668
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2669
+ "Spots, etc you should upgrade to the Pro version."
2670
  msgstr ""
2671
 
2672
+ #: app/features/mec/dashboard.php:92
2673
  msgid "lite"
2674
  msgstr ""
2675
 
2676
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2677
+ msgid "GO PREMIUM"
2678
+ msgstr ""
2679
+
2680
+ #: app/features/mec/dashboard.php:98
2681
+ #, php-format
2682
+ msgid ""
2683
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2684
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2685
+ msgstr ""
2686
+
2687
+ #: app/features/mec/dashboard.php:98
2688
+ msgid "WordPress"
2689
+ msgstr ""
2690
+
2691
+ #: app/features/mec/dashboard.php:98
2692
+ msgid "Copouns!"
2693
  msgstr ""
2694
 
2695
+ #: app/features/mec/dashboard.php:127
2696
  msgid "Getting started with Modern Events Calendar"
2697
  msgstr ""
2698
 
2699
+ #: app/features/mec/dashboard.php:128
2700
  msgid ""
2701
  "In this short video, you can learn how to make an event and put a calendar "
2702
  "on your website. Please watch this 2 minutes video to the end."
2703
  msgstr ""
2704
 
2705
+ #: app/features/mec/dashboard.php:144
2706
  msgid "MEC Activate"
2707
  msgstr ""
2708
 
2709
+ #: app/features/mec/dashboard.php:150
2710
  msgid ""
2711
  "In order to use all plugin features and options, please enter your purchase "
2712
  "code."
2713
  msgstr ""
2714
 
2715
+ #: app/features/mec/dashboard.php:208
2716
  msgid "Activate Addons"
2717
  msgstr ""
2718
 
2719
+ #: app/features/mec/dashboard.php:217
2720
  msgid "You cannot access this section."
2721
  msgstr ""
2722
 
2723
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2724
  msgid "Upcoming Events"
2725
  msgstr ""
2726
 
2727
+ #: app/features/mec/dashboard.php:285
2728
  msgid "Popular Gateways"
2729
  msgstr ""
2730
 
2731
+ #: app/features/mec/dashboard.php:339
2732
  msgid "Total Bookings"
2733
  msgstr ""
2734
 
2735
+ #: app/features/mec/dashboard.php:366
2736
  msgid "This Month"
2737
  msgstr ""
2738
 
2739
+ #: app/features/mec/dashboard.php:367
2740
  msgid "Last Month"
2741
  msgstr ""
2742
 
2743
+ #: app/features/mec/dashboard.php:368
2744
  msgid "This Year"
2745
  msgstr ""
2746
 
2747
+ #: app/features/mec/dashboard.php:369
2748
  msgid "Last Year"
2749
  msgstr ""
2750
 
2751
+ #: app/features/mec/dashboard.php:381
2752
  msgid "Bar"
2753
  msgstr ""
2754
 
2755
+ #: app/features/mec/dashboard.php:382
2756
  msgid "Line"
2757
  msgstr ""
2758
 
2759
+ #: app/features/mec/dashboard.php:384
2760
  msgid "Filter"
2761
  msgstr ""
2762
 
2763
+ #: app/features/mec/dashboard.php:400
2764
  #, php-format
2765
  msgid "Total Sells (%s)"
2766
  msgstr ""
2767
 
2768
+ #: app/features/mec/dashboard.php:421
2769
  msgid "Change Log"
2770
  msgstr ""
2771
 
4099
  msgstr ""
4100
 
4101
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4102
+ #: app/libraries/notifications.php:478
4103
  msgid "Booking Reminder"
4104
  msgstr ""
4105
 
5167
  "soon as possible."
5168
  msgstr ""
5169
 
 
 
 
 
5170
  #: app/features/mec/support.php:128
5171
  msgid "OPEN A TICKET"
5172
  msgstr ""
5325
  msgstr ""
5326
 
5327
  #: app/features/search_bar/search_result.php:11
5328
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5329
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5330
  #: app/skins/single.php:160 app/skins/single.php:708
5331
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5881
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
5882
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5883
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5884
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
5885
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5886
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
5887
  #: app/skins/single.php:729 app/skins/single/default.php:233
5901
 
5902
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
5903
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5904
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
5905
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
5906
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
5907
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
5908
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
5966
  msgid "Skin controller does not exist."
5967
  msgstr ""
5968
 
5969
+ #: app/libraries/notifications.php:60
5970
  msgid "Please verify your email."
5971
  msgstr ""
5972
 
5973
+ #: app/libraries/notifications.php:139
5974
  msgid "Your booking is received."
5975
  msgstr ""
5976
 
5977
+ #: app/libraries/notifications.php:224
5978
  msgid "Your booking is confirmed."
5979
  msgstr ""
5980
 
5981
+ #: app/libraries/notifications.php:349
5982
  msgid "booking canceled."
5983
  msgstr ""
5984
 
5985
+ #: app/libraries/notifications.php:410
5986
  msgid "A new booking is received."
5987
  msgstr ""
5988
 
5989
+ #: app/libraries/notifications.php:561
5990
  msgid "A new event is added."
5991
  msgstr ""
5992
 
5993
+ #: app/libraries/notifications.php:746
5994
  msgid "to"
5995
  msgstr ""
5996
 
5997
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
5998
  msgid "+ Add to Google Calendar"
5999
  msgstr ""
6000
 
6001
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6002
  msgid "+ iCal export"
6003
  msgstr ""
6004
 
6005
+ #: app/libraries/notifications.php:821
6006
  msgid "Yes"
6007
  msgstr ""
6008
 
6009
+ #: app/libraries/notifications.php:821
6010
  msgid "No"
6011
  msgstr ""
6012
 
languages/modern-events-calendar-lite-es_ES.mo CHANGED
Binary file
languages/modern-events-calendar-lite-es_ES.po CHANGED
@@ -4,8 +4,8 @@ msgid ""
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
- "POT-Creation-Date: 2019-09-04 15:57+0430\n"
8
- "PO-Revision-Date: 2019-09-04 15:59+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
@@ -65,7 +65,7 @@ msgid "Event Color"
65
  msgstr "Color del evento"
66
 
67
  #: app/features/contextual.php:55 app/features/mec.php:347
68
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
69
  #: app/features/mec/support.php:20 app/libraries/main.php:587
70
  msgid "Settings"
71
  msgstr "Ajustes"
@@ -266,7 +266,7 @@ msgid "MEC Activation"
266
  msgstr "Activación MEC"
267
 
268
  #: app/features/events.php:148 app/features/ix/export.php:34
269
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
270
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
271
  msgid "Events"
272
  msgstr "Eventos"
@@ -284,7 +284,7 @@ msgstr "Evento"
284
  msgid "Add Event"
285
  msgstr "Nuevo evento"
286
 
287
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
288
  msgid "Add New Event"
289
  msgstr "Añadir nuevo evento"
290
 
@@ -309,7 +309,7 @@ msgstr "Ver evento"
309
  msgid "No events found in Trash!"
310
  msgstr "No hay eventos en la papelera"
311
 
312
- #: app/features/events.php:173 app/features/events.php:3078
313
  #: app/features/mec/meta_boxes/display_options.php:828
314
  #: app/features/mec/meta_boxes/search_form.php:31
315
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -329,7 +329,7 @@ msgstr "No hay eventos en la papelera"
329
  msgid "Category"
330
  msgstr "Categoría"
331
 
332
- #: app/features/events.php:174 app/features/events.php:3049
333
  #: app/features/fes/form.php:745 app/features/mec.php:335
334
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
335
  msgid "Categories"
@@ -403,8 +403,8 @@ msgstr "Seleccionar icono"
403
  msgid "Event Details"
404
  msgstr "Detalle de evento"
405
 
406
- #: app/features/events.php:333 app/features/events.php:3271
407
- #: app/features/events.php:3313 app/features/fes/form.php:706
408
  #: app/features/ix.php:2743 app/features/ix.php:2784
409
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
410
  #: app/widgets/single.php:103
@@ -429,19 +429,19 @@ msgstr "Datos del invitado"
429
  #: app/features/events.php:443 app/features/events.php:2261
430
  #: app/features/fes/form.php:668 app/features/labels.php:178
431
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
432
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
433
  #: app/modules/booking/steps/form.php:37
434
  msgid "Name"
435
  msgstr "Nombre"
436
 
437
  #: app/features/events.php:444 app/features/events.php:2272
438
- #: app/features/events.php:2350 app/features/fes/form.php:664
439
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
440
  #: app/features/organizers.php:111 app/features/organizers.php:152
441
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
442
  #: app/features/speakers.php:184 app/libraries/main.php:1471
443
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
444
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
445
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
446
  #: app/skins/single.php:836 app/skins/single/default.php:212
447
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -454,11 +454,11 @@ msgid "Date and Time"
454
  msgstr "Día y hora"
455
 
456
  #: app/features/events.php:452 app/features/events.php:458
457
- #: app/features/events.php:3081 app/features/events.php:3271
458
- #: app/features/events.php:3313 app/features/fes/form.php:236
459
  #: app/features/fes/form.php:240 app/features/ix.php:2743
460
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
461
- #: app/features/mec/dashboard.php:346
462
  #: app/features/mec/meta_boxes/display_options.php:44
463
  #: app/features/mec/meta_boxes/display_options.php:185
464
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -490,11 +490,11 @@ msgid "PM"
490
  msgstr "PM"
491
 
492
  #: app/features/events.php:544 app/features/events.php:549
493
- #: app/features/events.php:3082 app/features/events.php:3271
494
- #: app/features/events.php:3313 app/features/fes/form.php:276
495
  #: app/features/fes/form.php:280 app/features/ix.php:2743
496
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
497
- #: app/features/mec/dashboard.php:347
498
  msgid "End Date"
499
  msgstr "Día final"
500
 
@@ -611,7 +611,7 @@ msgid "Repeats"
611
  msgstr "Repeticiones"
612
 
613
  #: app/features/events.php:703 app/features/fes/form.php:338
614
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
615
  msgid "Daily"
616
  msgstr "Diariamente"
617
 
@@ -633,12 +633,12 @@ msgid "Weekly"
633
  msgstr "Semanal"
634
 
635
  #: app/features/events.php:738 app/features/fes/form.php:343
636
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
637
  msgid "Monthly"
638
  msgstr "Mensual"
639
 
640
  #: app/features/events.php:745 app/features/fes/form.php:344
641
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
642
  msgid "Yearly"
643
  msgstr "Anual"
644
 
@@ -803,7 +803,7 @@ msgstr ""
803
  msgid "Exclude certain days"
804
  msgstr "Excluir ciertos días"
805
 
806
- #: app/features/events.php:1141 app/features/events.php:2351
807
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
808
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
809
  #: app/modules/booking/steps/tickets.php:22
@@ -847,8 +847,8 @@ msgstr ""
847
  #: app/features/events.php:1239 app/features/events.php:1278
848
  #: app/features/events.php:1313 app/features/events.php:1345
849
  #: app/features/events.php:1374 app/features/events.php:2130
850
- #: app/features/events.php:2177 app/features/events.php:3077
851
- #: app/features/events.php:3271 app/features/events.php:3313
852
  #: app/features/fes/form.php:225 app/features/ix.php:2743
853
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
854
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1032,13 +1032,13 @@ msgid "Ticket Name"
1032
  msgstr "Nombre del ticket"
1033
 
1034
  #: app/features/events.php:1584 app/features/events.php:1805
1035
- #: app/features/events.php:3271 app/features/events.php:3313
1036
  #: app/features/ix.php:2743 app/features/ix.php:2784
1037
  msgid "Start Time"
1038
  msgstr "Hora de Inicio"
1039
 
1040
  #: app/features/events.php:1626 app/features/events.php:1829
1041
- #: app/features/events.php:3271 app/features/events.php:3313
1042
  #: app/features/ix.php:2743 app/features/ix.php:2784
1043
  msgid "End Time"
1044
  msgstr "Hora de finalización"
@@ -1154,53 +1154,53 @@ msgstr ""
1154
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1155
  msgstr ""
1156
 
1157
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1158
  #: app/libraries/main.php:2523
1159
  #, fuzzy
1160
  #| msgid "Name"
1161
  msgid "MEC Name"
1162
  msgstr "Nombre"
1163
 
1164
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1165
  #: app/libraries/main.php:2552
1166
  #, fuzzy
1167
  #| msgid "Email"
1168
  msgid "MEC Email"
1169
  msgstr "Correo electrónico"
1170
 
1171
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1172
  #: app/libraries/main.php:2493
1173
  msgid "Text"
1174
  msgstr "Texto"
1175
 
1176
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1177
  #: app/features/organizers.php:103 app/features/organizers.php:148
1178
  #: app/features/speakers.php:116 app/features/speakers.php:180
1179
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1180
  msgid "Tel"
1181
  msgstr "Tel"
1182
 
1183
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1184
  #: app/libraries/main.php:2611
1185
  msgid "File"
1186
  msgstr ""
1187
 
1188
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1189
  #: app/libraries/main.php:2698
1190
  msgid "Textarea"
1191
  msgstr "Área de texto"
1192
 
1193
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1194
  #: app/libraries/main.php:2751
1195
  msgid "Checkboxes"
1196
  msgstr "Checkboxes"
1197
 
1198
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1199
  #: app/libraries/main.php:2795
1200
  msgid "Radio Buttons"
1201
  msgstr "Botón tipo radio"
1202
 
1203
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1204
  #: app/features/mec/meta_boxes/search_form.php:34
1205
  #: app/features/mec/meta_boxes/search_form.php:41
1206
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1273,36 +1273,36 @@ msgstr "Botón tipo radio"
1273
  msgid "Dropdown"
1274
  msgstr "Desplegable"
1275
 
1276
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1277
  #: app/libraries/main.php:2886
1278
  msgid "Agreement"
1279
  msgstr "Acuerdo"
1280
 
1281
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1282
  #: app/libraries/main.php:2727
1283
  msgid "Paragraph"
1284
  msgstr "Párrafo"
1285
 
1286
- #: app/features/events.php:2998 app/features/events.php:3015
1287
- #: app/features/events.php:3032 app/features/events.php:3049
1288
  #, php-format
1289
  msgid "Show all %s"
1290
  msgstr "Mostrar todos %s"
1291
 
1292
- #: app/features/events.php:2998
1293
  msgid "labels"
1294
  msgstr "etiquetas"
1295
 
1296
- #: app/features/events.php:3015
1297
  msgid "locations"
1298
  msgstr "ubicaciones"
1299
 
1300
- #: app/features/events.php:3032
1301
  msgid "organizers"
1302
  msgstr "organizadores"
1303
 
1304
- #: app/features/events.php:3079 app/features/events.php:3271
1305
- #: app/features/events.php:3313 app/features/ix.php:2743
1306
  #: app/features/ix.php:2784 app/features/locations.php:58
1307
  #: app/features/locations.php:230 app/features/locations.php:287
1308
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1326,8 +1326,8 @@ msgstr "organizadores"
1326
  msgid "Location"
1327
  msgstr "Localización"
1328
 
1329
- #: app/features/events.php:3080 app/features/events.php:3271
1330
- #: app/features/events.php:3313 app/features/ix.php:2743
1331
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1332
  #: app/features/mec/meta_boxes/search_form.php:45
1333
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1350,57 +1350,57 @@ msgstr "Localización"
1350
  msgid "Organizer"
1351
  msgstr "Organizador"
1352
 
1353
- #: app/features/events.php:3084
1354
  msgid "Repeat"
1355
  msgstr "Repetir"
1356
 
1357
- #: app/features/events.php:3085
1358
  msgid "Author"
1359
  msgstr "Autor"
1360
 
1361
- #: app/features/events.php:3206 app/features/events.php:3207
1362
  msgid "iCal Export"
1363
  msgstr "Exportar iCal"
1364
 
1365
- #: app/features/events.php:3209 app/features/events.php:3210
1366
  msgid "CSV Export"
1367
  msgstr "Exportar CSV"
1368
 
1369
- #: app/features/events.php:3212 app/features/events.php:3213
1370
  msgid "MS Excel Export"
1371
  msgstr "Exportar Excel"
1372
 
1373
- #: app/features/events.php:3215 app/features/events.php:3216
1374
  msgid "XML Export"
1375
  msgstr "Exportación XML"
1376
 
1377
- #: app/features/events.php:3218 app/features/events.php:3219
1378
  msgid "JSON Export"
1379
  msgstr "Exportación JSON"
1380
 
1381
- #: app/features/events.php:3221 app/features/events.php:3222
1382
- #: app/features/events.php:3403
1383
  msgid "Duplicate"
1384
  msgstr "Duplicar"
1385
 
1386
- #: app/features/events.php:3271 app/features/events.php:3313
1387
  #: app/features/ix.php:2743 app/features/ix.php:2784
1388
  #: app/features/labels.php:177 app/features/locations.php:229
1389
  #: app/features/organizers.php:203 app/features/speakers.php:246
1390
  msgid "ID"
1391
  msgstr "ID"
1392
 
1393
- #: app/features/events.php:3271 app/features/events.php:3313
1394
  #: app/features/ix.php:2743 app/features/ix.php:2784
1395
  msgid "Link"
1396
  msgstr "Enlace"
1397
 
1398
- #: app/features/events.php:3271 app/features/events.php:3313
1399
  #, php-format
1400
  msgid "%s Tel"
1401
  msgstr "%s Teléfono "
1402
 
1403
- #: app/features/events.php:3271 app/features/events.php:3313
1404
  #, php-format
1405
  msgid "%s Email"
1406
  msgstr "%s Correo electrónico"
@@ -1912,7 +1912,7 @@ msgstr "Importar desde Facebook Calendar"
1912
  msgid "Import all of your Facebook events into MEC."
1913
  msgstr "Importar todos tus eventos de Facebook a MEC."
1914
 
1915
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1916
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1917
  msgid "Documentation"
1918
  msgstr "Documentación"
@@ -2285,7 +2285,7 @@ msgid "Event %s"
2285
  msgstr "Evento %s"
2286
 
2287
  #: app/features/locations.php:59 app/features/mec.php:337
2288
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2289
  #: app/libraries/main.php:4838
2290
  msgid "Locations"
2291
  msgstr "Lugar"
@@ -2452,14 +2452,14 @@ msgstr "Soporte"
2452
  msgid "Support"
2453
  msgstr "Soporte"
2454
 
2455
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2456
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2457
  #: app/libraries/main.php:4840
2458
  msgid "Organizers"
2459
  msgstr "Organizadores"
2460
 
2461
  #: app/features/mec.php:346 app/features/mec.php:366
2462
- #: app/features/mec/dashboard.php:209
2463
  msgid "Shortcodes"
2464
  msgstr "Shortcodes"
2465
 
@@ -2803,105 +2803,126 @@ msgstr ""
2803
  msgid "Update"
2804
  msgstr "Actualizar %s"
2805
 
2806
- #: app/features/mec/dashboard.php:90
2807
- #, php-format
 
 
 
 
2808
  msgid ""
2809
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2810
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2811
- "Spots, etc you should %s to the Pro version."
2812
  msgstr ""
2813
  "Estás utilizando la versión %s de Modern Events Calendar. Para utilizar el "
2814
  "sistema de reserva avanzado, las temas modernos como agenda, horario, "
2815
  "masonry, vista anual, puntos disponibles, etc podrías %s a la versión Pro."
2816
 
2817
- #: app/features/mec/dashboard.php:90
2818
  msgid "lite"
2819
  msgstr "lite"
2820
 
2821
- #: app/features/mec/dashboard.php:90
2822
- msgid "upgrade"
2823
- msgstr "actualización"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2824
 
2825
- #: app/features/mec/dashboard.php:100
2826
  #, fuzzy
2827
  #| msgid "Modern Events Calendar"
2828
  msgid "Getting started with Modern Events Calendar"
2829
  msgstr "Modern Events Calendar"
2830
 
2831
- #: app/features/mec/dashboard.php:101
2832
  msgid ""
2833
  "In this short video, you can learn how to make an event and put a calendar "
2834
  "on your website. Please watch this 2 minutes video to the end."
2835
  msgstr ""
2836
 
2837
- #: app/features/mec/dashboard.php:117
2838
  #, fuzzy
2839
  #| msgid "MEC Activation"
2840
  msgid "MEC Activate"
2841
  msgstr "Activación MEC"
2842
 
2843
- #: app/features/mec/dashboard.php:123
2844
  msgid ""
2845
  "In order to use all plugin features and options, please enter your purchase "
2846
  "code."
2847
  msgstr ""
2848
 
2849
- #: app/features/mec/dashboard.php:181
2850
  #, fuzzy
2851
  #| msgid "MEC Activation"
2852
  msgid "Activate Addons"
2853
  msgstr "Activación MEC"
2854
 
2855
- #: app/features/mec/dashboard.php:190
2856
  msgid "You cannot access this section."
2857
  msgstr ""
2858
 
2859
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2860
  msgid "Upcoming Events"
2861
  msgstr "Próximos Eventos"
2862
 
2863
- #: app/features/mec/dashboard.php:258
2864
  msgid "Popular Gateways"
2865
  msgstr "Pasarelas de pago populares"
2866
 
2867
- #: app/features/mec/dashboard.php:312
2868
  msgid "Total Bookings"
2869
  msgstr "Total reservas"
2870
 
2871
- #: app/features/mec/dashboard.php:339
2872
  msgid "This Month"
2873
  msgstr "Este mes"
2874
 
2875
- #: app/features/mec/dashboard.php:340
2876
  msgid "Last Month"
2877
  msgstr "Último mes"
2878
 
2879
- #: app/features/mec/dashboard.php:341
2880
  msgid "This Year"
2881
  msgstr "Este año"
2882
 
2883
- #: app/features/mec/dashboard.php:342
2884
  msgid "Last Year"
2885
  msgstr "Año pasado"
2886
 
2887
- #: app/features/mec/dashboard.php:354
2888
  msgid "Bar"
2889
  msgstr "Barra"
2890
 
2891
- #: app/features/mec/dashboard.php:355
2892
  msgid "Line"
2893
  msgstr "Línea"
2894
 
2895
- #: app/features/mec/dashboard.php:357
2896
  msgid "Filter"
2897
  msgstr "Filtrar"
2898
 
2899
- #: app/features/mec/dashboard.php:373
2900
  #, php-format
2901
  msgid "Total Sells (%s)"
2902
  msgstr "Ventas Totales (%s)"
2903
 
2904
- #: app/features/mec/dashboard.php:394
2905
  msgid "Change Log"
2906
  msgstr "Historial de cambios"
2907
 
@@ -4298,7 +4319,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4298
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4299
 
4300
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4301
- #: app/libraries/notifications.php:405
4302
  msgid "Booking Reminder"
4303
  msgstr "Recordatorio de reserva"
4304
 
@@ -5537,10 +5558,6 @@ msgstr ""
5537
  "satisfechos. Si tienes algún problema, no dudes en ponerte en contacto con "
5538
  "nosotros, te responderemos lo antes posible."
5539
 
5540
- #: app/features/mec/support.php:126
5541
- msgid "GO PREMIUM"
5542
- msgstr "IR A PREMIUM"
5543
-
5544
  #: app/features/mec/support.php:128
5545
  msgid "OPEN A TICKET"
5546
  msgstr "ABRIR UN TICKET"
@@ -5705,7 +5722,7 @@ msgid "No search result."
5705
  msgstr ""
5706
 
5707
  #: app/features/search_bar/search_result.php:11
5708
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5709
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5710
  #: app/skins/single.php:160 app/skins/single.php:708
5711
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6279,7 +6296,7 @@ msgstr "Botón de registro"
6279
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6280
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6281
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6282
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6283
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6284
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6285
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6299,8 +6316,8 @@ msgstr "Ver detalle del botón"
6299
 
6300
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6301
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6302
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6303
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6304
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6305
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6306
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6364,49 +6381,49 @@ msgstr ""
6364
  msgid "Skin controller does not exist."
6365
  msgstr "No existe skin controller."
6366
 
6367
- #: app/libraries/notifications.php:61
6368
  msgid "Please verify your email."
6369
  msgstr "Por favor comprueba tu email"
6370
 
6371
- #: app/libraries/notifications.php:125
6372
  msgid "Your booking is received."
6373
  msgstr "Se ha recibido tu reserva."
6374
 
6375
- #: app/libraries/notifications.php:193
6376
  msgid "Your booking is confirmed."
6377
  msgstr "Tu reserva ha sido confirmada."
6378
 
6379
- #: app/libraries/notifications.php:282
6380
  #, fuzzy
6381
  #| msgid "Your booking cannot be canceled."
6382
  msgid "booking canceled."
6383
  msgstr "La reserva no puede cancelarse."
6384
 
6385
- #: app/libraries/notifications.php:337
6386
  msgid "A new booking is received."
6387
  msgstr "Nueva reserva recibida."
6388
 
6389
- #: app/libraries/notifications.php:488
6390
  msgid "A new event is added."
6391
  msgstr "Se ha añadido un nuevo evento."
6392
 
6393
- #: app/libraries/notifications.php:674
6394
  msgid "to"
6395
  msgstr "a"
6396
 
6397
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6398
  msgid "+ Add to Google Calendar"
6399
  msgstr "+ Añadir Google Calendar"
6400
 
6401
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6402
  msgid "+ iCal export"
6403
  msgstr "Exportación + iCal"
6404
 
6405
- #: app/libraries/notifications.php:752
6406
  msgid "Yes"
6407
  msgstr "Sí"
6408
 
6409
- #: app/libraries/notifications.php:752
6410
  msgid "No"
6411
  msgstr "No"
6412
 
@@ -6848,6 +6865,11 @@ msgstr "http://webnus.net"
6848
  #~ msgid "Book Date"
6849
  #~ msgstr "Reservar evento"
6850
 
 
 
 
 
 
6851
  #, fuzzy
6852
  #~| msgid "%s Price"
6853
  #~ msgid "Total Price"
@@ -7080,6 +7102,9 @@ msgstr "http://webnus.net"
7080
  #~ msgid "Organizer Payment Credentials"
7081
  #~ msgstr "Nombre del organizador del evento reservado"
7082
 
 
 
 
7083
  #, fuzzy
7084
  #~| msgid "CSV"
7085
  #~ msgid "CVC"
4
  msgstr ""
5
  "Project-Id-Version: Plugins - Modern Events Calendar Lite - Stable (latest "
6
  "release)\n"
7
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
8
+ "PO-Revision-Date: 2019-09-11 13:23+0430\n"
9
  "Last-Translator: \n"
10
  "Language-Team: \n"
11
  "Language: es\n"
65
  msgstr "Color del evento"
66
 
67
  #: app/features/contextual.php:55 app/features/mec.php:347
68
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
69
  #: app/features/mec/support.php:20 app/libraries/main.php:587
70
  msgid "Settings"
71
  msgstr "Ajustes"
266
  msgstr "Activación MEC"
267
 
268
  #: app/features/events.php:148 app/features/ix/export.php:34
269
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
270
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
271
  msgid "Events"
272
  msgstr "Eventos"
284
  msgid "Add Event"
285
  msgstr "Nuevo evento"
286
 
287
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
288
  msgid "Add New Event"
289
  msgstr "Añadir nuevo evento"
290
 
309
  msgid "No events found in Trash!"
310
  msgstr "No hay eventos en la papelera"
311
 
312
+ #: app/features/events.php:173 app/features/events.php:3072
313
  #: app/features/mec/meta_boxes/display_options.php:828
314
  #: app/features/mec/meta_boxes/search_form.php:31
315
  #: app/features/mec/meta_boxes/search_form.php:93
329
  msgid "Category"
330
  msgstr "Categoría"
331
 
332
+ #: app/features/events.php:174 app/features/events.php:3043
333
  #: app/features/fes/form.php:745 app/features/mec.php:335
334
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
335
  msgid "Categories"
403
  msgid "Event Details"
404
  msgstr "Detalle de evento"
405
 
406
+ #: app/features/events.php:333 app/features/events.php:3265
407
+ #: app/features/events.php:3307 app/features/fes/form.php:706
408
  #: app/features/ix.php:2743 app/features/ix.php:2784
409
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
410
  #: app/widgets/single.php:103
429
  #: app/features/events.php:443 app/features/events.php:2261
430
  #: app/features/fes/form.php:668 app/features/labels.php:178
431
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
432
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
433
  #: app/modules/booking/steps/form.php:37
434
  msgid "Name"
435
  msgstr "Nombre"
436
 
437
  #: app/features/events.php:444 app/features/events.php:2272
438
+ #: app/features/events.php:2348 app/features/fes/form.php:664
439
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
440
  #: app/features/organizers.php:111 app/features/organizers.php:152
441
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
442
  #: app/features/speakers.php:184 app/libraries/main.php:1471
443
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
444
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
445
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
446
  #: app/skins/single.php:836 app/skins/single/default.php:212
447
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
454
  msgstr "Día y hora"
455
 
456
  #: app/features/events.php:452 app/features/events.php:458
457
+ #: app/features/events.php:3075 app/features/events.php:3265
458
+ #: app/features/events.php:3307 app/features/fes/form.php:236
459
  #: app/features/fes/form.php:240 app/features/ix.php:2743
460
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
461
+ #: app/features/mec/dashboard.php:373
462
  #: app/features/mec/meta_boxes/display_options.php:44
463
  #: app/features/mec/meta_boxes/display_options.php:185
464
  #: app/features/mec/meta_boxes/display_options.php:337
490
  msgstr "PM"
491
 
492
  #: app/features/events.php:544 app/features/events.php:549
493
+ #: app/features/events.php:3076 app/features/events.php:3265
494
+ #: app/features/events.php:3307 app/features/fes/form.php:276
495
  #: app/features/fes/form.php:280 app/features/ix.php:2743
496
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
497
+ #: app/features/mec/dashboard.php:374
498
  msgid "End Date"
499
  msgstr "Día final"
500
 
611
  msgstr "Repeticiones"
612
 
613
  #: app/features/events.php:703 app/features/fes/form.php:338
614
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
615
  msgid "Daily"
616
  msgstr "Diariamente"
617
 
633
  msgstr "Semanal"
634
 
635
  #: app/features/events.php:738 app/features/fes/form.php:343
636
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
637
  msgid "Monthly"
638
  msgstr "Mensual"
639
 
640
  #: app/features/events.php:745 app/features/fes/form.php:344
641
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
642
  msgid "Yearly"
643
  msgstr "Anual"
644
 
803
  msgid "Exclude certain days"
804
  msgstr "Excluir ciertos días"
805
 
806
+ #: app/features/events.php:1141 app/features/events.php:2349
807
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
808
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
809
  #: app/modules/booking/steps/tickets.php:22
847
  #: app/features/events.php:1239 app/features/events.php:1278
848
  #: app/features/events.php:1313 app/features/events.php:1345
849
  #: app/features/events.php:1374 app/features/events.php:2130
850
+ #: app/features/events.php:2177 app/features/events.php:3071
851
+ #: app/features/events.php:3265 app/features/events.php:3307
852
  #: app/features/fes/form.php:225 app/features/ix.php:2743
853
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
854
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1032
  msgstr "Nombre del ticket"
1033
 
1034
  #: app/features/events.php:1584 app/features/events.php:1805
1035
+ #: app/features/events.php:3265 app/features/events.php:3307
1036
  #: app/features/ix.php:2743 app/features/ix.php:2784
1037
  msgid "Start Time"
1038
  msgstr "Hora de Inicio"
1039
 
1040
  #: app/features/events.php:1626 app/features/events.php:1829
1041
+ #: app/features/events.php:3265 app/features/events.php:3307
1042
  #: app/features/ix.php:2743 app/features/ix.php:2784
1043
  msgid "End Time"
1044
  msgstr "Hora de finalización"
1154
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1155
  msgstr ""
1156
 
1157
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1158
  #: app/libraries/main.php:2523
1159
  #, fuzzy
1160
  #| msgid "Name"
1161
  msgid "MEC Name"
1162
  msgstr "Nombre"
1163
 
1164
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1165
  #: app/libraries/main.php:2552
1166
  #, fuzzy
1167
  #| msgid "Email"
1168
  msgid "MEC Email"
1169
  msgstr "Correo electrónico"
1170
 
1171
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1172
  #: app/libraries/main.php:2493
1173
  msgid "Text"
1174
  msgstr "Texto"
1175
 
1176
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1177
  #: app/features/organizers.php:103 app/features/organizers.php:148
1178
  #: app/features/speakers.php:116 app/features/speakers.php:180
1179
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1180
  msgid "Tel"
1181
  msgstr "Tel"
1182
 
1183
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1184
  #: app/libraries/main.php:2611
1185
  msgid "File"
1186
  msgstr ""
1187
 
1188
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1189
  #: app/libraries/main.php:2698
1190
  msgid "Textarea"
1191
  msgstr "Área de texto"
1192
 
1193
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1194
  #: app/libraries/main.php:2751
1195
  msgid "Checkboxes"
1196
  msgstr "Checkboxes"
1197
 
1198
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1199
  #: app/libraries/main.php:2795
1200
  msgid "Radio Buttons"
1201
  msgstr "Botón tipo radio"
1202
 
1203
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1204
  #: app/features/mec/meta_boxes/search_form.php:34
1205
  #: app/features/mec/meta_boxes/search_form.php:41
1206
  #: app/features/mec/meta_boxes/search_form.php:48
1273
  msgid "Dropdown"
1274
  msgstr "Desplegable"
1275
 
1276
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1277
  #: app/libraries/main.php:2886
1278
  msgid "Agreement"
1279
  msgstr "Acuerdo"
1280
 
1281
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1282
  #: app/libraries/main.php:2727
1283
  msgid "Paragraph"
1284
  msgstr "Párrafo"
1285
 
1286
+ #: app/features/events.php:2992 app/features/events.php:3009
1287
+ #: app/features/events.php:3026 app/features/events.php:3043
1288
  #, php-format
1289
  msgid "Show all %s"
1290
  msgstr "Mostrar todos %s"
1291
 
1292
+ #: app/features/events.php:2992
1293
  msgid "labels"
1294
  msgstr "etiquetas"
1295
 
1296
+ #: app/features/events.php:3009
1297
  msgid "locations"
1298
  msgstr "ubicaciones"
1299
 
1300
+ #: app/features/events.php:3026
1301
  msgid "organizers"
1302
  msgstr "organizadores"
1303
 
1304
+ #: app/features/events.php:3073 app/features/events.php:3265
1305
+ #: app/features/events.php:3307 app/features/ix.php:2743
1306
  #: app/features/ix.php:2784 app/features/locations.php:58
1307
  #: app/features/locations.php:230 app/features/locations.php:287
1308
  #: app/features/locations.php:289 app/features/locations.php:298
1326
  msgid "Location"
1327
  msgstr "Localización"
1328
 
1329
+ #: app/features/events.php:3074 app/features/events.php:3265
1330
+ #: app/features/events.php:3307 app/features/ix.php:2743
1331
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1332
  #: app/features/mec/meta_boxes/search_form.php:45
1333
  #: app/features/mec/meta_boxes/search_form.php:107
1350
  msgid "Organizer"
1351
  msgstr "Organizador"
1352
 
1353
+ #: app/features/events.php:3078
1354
  msgid "Repeat"
1355
  msgstr "Repetir"
1356
 
1357
+ #: app/features/events.php:3079
1358
  msgid "Author"
1359
  msgstr "Autor"
1360
 
1361
+ #: app/features/events.php:3200 app/features/events.php:3201
1362
  msgid "iCal Export"
1363
  msgstr "Exportar iCal"
1364
 
1365
+ #: app/features/events.php:3203 app/features/events.php:3204
1366
  msgid "CSV Export"
1367
  msgstr "Exportar CSV"
1368
 
1369
+ #: app/features/events.php:3206 app/features/events.php:3207
1370
  msgid "MS Excel Export"
1371
  msgstr "Exportar Excel"
1372
 
1373
+ #: app/features/events.php:3209 app/features/events.php:3210
1374
  msgid "XML Export"
1375
  msgstr "Exportación XML"
1376
 
1377
+ #: app/features/events.php:3212 app/features/events.php:3213
1378
  msgid "JSON Export"
1379
  msgstr "Exportación JSON"
1380
 
1381
+ #: app/features/events.php:3215 app/features/events.php:3216
1382
+ #: app/features/events.php:3397
1383
  msgid "Duplicate"
1384
  msgstr "Duplicar"
1385
 
1386
+ #: app/features/events.php:3265 app/features/events.php:3307
1387
  #: app/features/ix.php:2743 app/features/ix.php:2784
1388
  #: app/features/labels.php:177 app/features/locations.php:229
1389
  #: app/features/organizers.php:203 app/features/speakers.php:246
1390
  msgid "ID"
1391
  msgstr "ID"
1392
 
1393
+ #: app/features/events.php:3265 app/features/events.php:3307
1394
  #: app/features/ix.php:2743 app/features/ix.php:2784
1395
  msgid "Link"
1396
  msgstr "Enlace"
1397
 
1398
+ #: app/features/events.php:3265 app/features/events.php:3307
1399
  #, php-format
1400
  msgid "%s Tel"
1401
  msgstr "%s Teléfono "
1402
 
1403
+ #: app/features/events.php:3265 app/features/events.php:3307
1404
  #, php-format
1405
  msgid "%s Email"
1406
  msgstr "%s Correo electrónico"
1912
  msgid "Import all of your Facebook events into MEC."
1913
  msgstr "Importar todos tus eventos de Facebook a MEC."
1914
 
1915
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1916
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1917
  msgid "Documentation"
1918
  msgstr "Documentación"
2285
  msgstr "Evento %s"
2286
 
2287
  #: app/features/locations.php:59 app/features/mec.php:337
2288
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2289
  #: app/libraries/main.php:4838
2290
  msgid "Locations"
2291
  msgstr "Lugar"
2452
  msgid "Support"
2453
  msgstr "Soporte"
2454
 
2455
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2456
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2457
  #: app/libraries/main.php:4840
2458
  msgid "Organizers"
2459
  msgstr "Organizadores"
2460
 
2461
  #: app/features/mec.php:346 app/features/mec.php:366
2462
+ #: app/features/mec/dashboard.php:236
2463
  msgid "Shortcodes"
2464
  msgstr "Shortcodes"
2465
 
2803
  msgid "Update"
2804
  msgstr "Actualizar %s"
2805
 
2806
+ #: app/features/mec/dashboard.php:92
2807
+ #, fuzzy, php-format
2808
+ #| msgid ""
2809
+ #| "You're using %s version of Modern Events Calendar. To use advanced "
2810
+ #| "booking system, modern skins like Agenda, Timetable, Masonry, Yearly "
2811
+ #| "View, Available Spots, etc you should %s to the Pro version."
2812
  msgid ""
2813
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2814
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2815
+ "Spots, etc you should upgrade to the Pro version."
2816
  msgstr ""
2817
  "Estás utilizando la versión %s de Modern Events Calendar. Para utilizar el "
2818
  "sistema de reserva avanzado, las temas modernos como agenda, horario, "
2819
  "masonry, vista anual, puntos disponibles, etc podrías %s a la versión Pro."
2820
 
2821
+ #: app/features/mec/dashboard.php:92
2822
  msgid "lite"
2823
  msgstr "lite"
2824
 
2825
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2826
+ msgid "GO PREMIUM"
2827
+ msgstr "IR A PREMIUM"
2828
+
2829
+ #: app/features/mec/dashboard.php:98
2830
+ #, php-format
2831
+ msgid ""
2832
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2833
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2834
+ msgstr ""
2835
+
2836
+ #: app/features/mec/dashboard.php:98
2837
+ #, fuzzy
2838
+ #| msgid "Address"
2839
+ msgid "WordPress"
2840
+ msgstr "Dirección"
2841
+
2842
+ #: app/features/mec/dashboard.php:98
2843
+ msgid "Copouns!"
2844
+ msgstr ""
2845
 
2846
+ #: app/features/mec/dashboard.php:127
2847
  #, fuzzy
2848
  #| msgid "Modern Events Calendar"
2849
  msgid "Getting started with Modern Events Calendar"
2850
  msgstr "Modern Events Calendar"
2851
 
2852
+ #: app/features/mec/dashboard.php:128
2853
  msgid ""
2854
  "In this short video, you can learn how to make an event and put a calendar "
2855
  "on your website. Please watch this 2 minutes video to the end."
2856
  msgstr ""
2857
 
2858
+ #: app/features/mec/dashboard.php:144
2859
  #, fuzzy
2860
  #| msgid "MEC Activation"
2861
  msgid "MEC Activate"
2862
  msgstr "Activación MEC"
2863
 
2864
+ #: app/features/mec/dashboard.php:150
2865
  msgid ""
2866
  "In order to use all plugin features and options, please enter your purchase "
2867
  "code."
2868
  msgstr ""
2869
 
2870
+ #: app/features/mec/dashboard.php:208
2871
  #, fuzzy
2872
  #| msgid "MEC Activation"
2873
  msgid "Activate Addons"
2874
  msgstr "Activación MEC"
2875
 
2876
+ #: app/features/mec/dashboard.php:217
2877
  msgid "You cannot access this section."
2878
  msgstr ""
2879
 
2880
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2881
  msgid "Upcoming Events"
2882
  msgstr "Próximos Eventos"
2883
 
2884
+ #: app/features/mec/dashboard.php:285
2885
  msgid "Popular Gateways"
2886
  msgstr "Pasarelas de pago populares"
2887
 
2888
+ #: app/features/mec/dashboard.php:339
2889
  msgid "Total Bookings"
2890
  msgstr "Total reservas"
2891
 
2892
+ #: app/features/mec/dashboard.php:366
2893
  msgid "This Month"
2894
  msgstr "Este mes"
2895
 
2896
+ #: app/features/mec/dashboard.php:367
2897
  msgid "Last Month"
2898
  msgstr "Último mes"
2899
 
2900
+ #: app/features/mec/dashboard.php:368
2901
  msgid "This Year"
2902
  msgstr "Este año"
2903
 
2904
+ #: app/features/mec/dashboard.php:369
2905
  msgid "Last Year"
2906
  msgstr "Año pasado"
2907
 
2908
+ #: app/features/mec/dashboard.php:381
2909
  msgid "Bar"
2910
  msgstr "Barra"
2911
 
2912
+ #: app/features/mec/dashboard.php:382
2913
  msgid "Line"
2914
  msgstr "Línea"
2915
 
2916
+ #: app/features/mec/dashboard.php:384
2917
  msgid "Filter"
2918
  msgstr "Filtrar"
2919
 
2920
+ #: app/features/mec/dashboard.php:400
2921
  #, php-format
2922
  msgid "Total Sells (%s)"
2923
  msgstr "Ventas Totales (%s)"
2924
 
2925
+ #: app/features/mec/dashboard.php:421
2926
  msgid "Change Log"
2927
  msgstr "Historial de cambios"
2928
 
4319
  msgstr "Se envía al administrador para notificarle una nueva reserva recibida."
4320
 
4321
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4322
+ #: app/libraries/notifications.php:478
4323
  msgid "Booking Reminder"
4324
  msgstr "Recordatorio de reserva"
4325
 
5558
  "satisfechos. Si tienes algún problema, no dudes en ponerte en contacto con "
5559
  "nosotros, te responderemos lo antes posible."
5560
 
 
 
 
 
5561
  #: app/features/mec/support.php:128
5562
  msgid "OPEN A TICKET"
5563
  msgstr "ABRIR UN TICKET"
5722
  msgstr ""
5723
 
5724
  #: app/features/search_bar/search_result.php:11
5725
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5726
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5727
  #: app/skins/single.php:160 app/skins/single.php:708
5728
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6296
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6297
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6298
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6299
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6300
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6301
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6302
  #: app/skins/single.php:729 app/skins/single/default.php:233
6316
 
6317
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6318
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6319
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6320
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6321
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6322
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6323
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6381
  msgid "Skin controller does not exist."
6382
  msgstr "No existe skin controller."
6383
 
6384
+ #: app/libraries/notifications.php:60
6385
  msgid "Please verify your email."
6386
  msgstr "Por favor comprueba tu email"
6387
 
6388
+ #: app/libraries/notifications.php:139
6389
  msgid "Your booking is received."
6390
  msgstr "Se ha recibido tu reserva."
6391
 
6392
+ #: app/libraries/notifications.php:224
6393
  msgid "Your booking is confirmed."
6394
  msgstr "Tu reserva ha sido confirmada."
6395
 
6396
+ #: app/libraries/notifications.php:349
6397
  #, fuzzy
6398
  #| msgid "Your booking cannot be canceled."
6399
  msgid "booking canceled."
6400
  msgstr "La reserva no puede cancelarse."
6401
 
6402
+ #: app/libraries/notifications.php:410
6403
  msgid "A new booking is received."
6404
  msgstr "Nueva reserva recibida."
6405
 
6406
+ #: app/libraries/notifications.php:561
6407
  msgid "A new event is added."
6408
  msgstr "Se ha añadido un nuevo evento."
6409
 
6410
+ #: app/libraries/notifications.php:746
6411
  msgid "to"
6412
  msgstr "a"
6413
 
6414
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6415
  msgid "+ Add to Google Calendar"
6416
  msgstr "+ Añadir Google Calendar"
6417
 
6418
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6419
  msgid "+ iCal export"
6420
  msgstr "Exportación + iCal"
6421
 
6422
+ #: app/libraries/notifications.php:821
6423
  msgid "Yes"
6424
  msgstr "Sí"
6425
 
6426
+ #: app/libraries/notifications.php:821
6427
  msgid "No"
6428
  msgstr "No"
6429
 
6865
  #~ msgid "Book Date"
6866
  #~ msgstr "Reservar evento"
6867
 
6868
+ #, fuzzy
6869
+ #~| msgid "Ticket"
6870
+ #~ msgid " - Ticket"
6871
+ #~ msgstr "Ticket"
6872
+
6873
  #, fuzzy
6874
  #~| msgid "%s Price"
6875
  #~ msgid "Total Price"
7102
  #~ msgid "Organizer Payment Credentials"
7103
  #~ msgstr "Nombre del organizador del evento reservado"
7104
 
7105
+ #~ msgid "upgrade"
7106
+ #~ msgstr "actualización"
7107
+
7108
  #, fuzzy
7109
  #~| msgid "CSV"
7110
  #~ msgid "CVC"
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: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 15:59+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
@@ -76,7 +76,7 @@ msgid "Event Color"
76
  msgstr "Couleur de l'événement"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:347
79
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
80
  #: app/features/mec/support.php:20 app/libraries/main.php:587
81
  msgid "Settings"
82
  msgstr "Paramètres"
@@ -252,7 +252,7 @@ msgid "MEC Activation"
252
  msgstr "Activation de l'extension"
253
 
254
  #: app/features/events.php:148 app/features/ix/export.php:34
255
- #: app/features/mec/dashboard.php:202 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 "Évenements"
@@ -270,7 +270,7 @@ msgstr "Événement"
270
  msgid "Add Event"
271
  msgstr "Ajouter un événement"
272
 
273
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
274
  msgid "Add New Event"
275
  msgstr "Ajouter un nouvel événement"
276
 
@@ -295,7 +295,7 @@ msgstr "Voir l'événement"
295
  msgid "No events found in Trash!"
296
  msgstr "Aucun événement trouvé dans la corbeille !"
297
 
298
- #: app/features/events.php:173 app/features/events.php:3078
299
  #: app/features/mec/meta_boxes/display_options.php:828
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -315,7 +315,7 @@ msgstr "Aucun événement trouvé dans la corbeille !"
315
  msgid "Category"
316
  msgstr "Catégorie"
317
 
318
- #: app/features/events.php:174 app/features/events.php:3049
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
321
  msgid "Categories"
@@ -389,8 +389,8 @@ msgstr ""
389
  msgid "Event Details"
390
  msgstr "Détails"
391
 
392
- #: app/features/events.php:333 app/features/events.php:3271
393
- #: app/features/events.php:3313 app/features/fes/form.php:706
394
  #: app/features/ix.php:2743 app/features/ix.php:2784
395
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
396
  #: app/widgets/single.php:103
@@ -415,19 +415,19 @@ msgstr "Coordonnées de l'Invité"
415
  #: app/features/events.php:443 app/features/events.php:2261
416
  #: app/features/fes/form.php:668 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Nom"
422
 
423
  #: app/features/events.php:444 app/features/events.php:2272
424
- #: app/features/events.php:2350 app/features/fes/form.php:664
425
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
426
  #: app/features/organizers.php:111 app/features/organizers.php:152
427
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
428
  #: app/features/speakers.php:184 app/libraries/main.php:1471
429
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
430
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
431
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
432
  #: app/skins/single.php:836 app/skins/single/default.php:212
433
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -440,11 +440,11 @@ msgid "Date and Time"
440
  msgstr "Date et heure"
441
 
442
  #: app/features/events.php:452 app/features/events.php:458
443
- #: app/features/events.php:3081 app/features/events.php:3271
444
- #: app/features/events.php:3313 app/features/fes/form.php:236
445
  #: app/features/fes/form.php:240 app/features/ix.php:2743
446
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
447
- #: app/features/mec/dashboard.php:346
448
  #: app/features/mec/meta_boxes/display_options.php:44
449
  #: app/features/mec/meta_boxes/display_options.php:185
450
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -476,11 +476,11 @@ msgid "PM"
476
  msgstr "de l'après midi"
477
 
478
  #: app/features/events.php:544 app/features/events.php:549
479
- #: app/features/events.php:3082 app/features/events.php:3271
480
- #: app/features/events.php:3313 app/features/fes/form.php:276
481
  #: app/features/fes/form.php:280 app/features/ix.php:2743
482
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
483
- #: app/features/mec/dashboard.php:347
484
  msgid "End Date"
485
  msgstr "Date de fin"
486
 
@@ -597,7 +597,7 @@ msgid "Repeats"
597
  msgstr "Récurrence"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Quotidienne"
603
 
@@ -619,12 +619,12 @@ msgid "Weekly"
619
  msgstr "Hebdomadaire"
620
 
621
  #: app/features/events.php:738 app/features/fes/form.php:343
622
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
623
  msgid "Monthly"
624
  msgstr "Mensuelle"
625
 
626
  #: app/features/events.php:745 app/features/fes/form.php:344
627
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
628
  msgid "Yearly"
629
  msgstr "Annuelle"
630
 
@@ -790,7 +790,7 @@ msgstr ""
790
  msgid "Exclude certain days"
791
  msgstr "Exclure certains jours"
792
 
793
- #: app/features/events.php:1141 app/features/events.php:2351
794
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
795
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
796
  #: app/modules/booking/steps/tickets.php:22
@@ -834,8 +834,8 @@ msgstr ""
834
  #: app/features/events.php:1239 app/features/events.php:1278
835
  #: app/features/events.php:1313 app/features/events.php:1345
836
  #: app/features/events.php:1374 app/features/events.php:2130
837
- #: app/features/events.php:2177 app/features/events.php:3077
838
- #: app/features/events.php:3271 app/features/events.php:3313
839
  #: app/features/fes/form.php:225 app/features/ix.php:2743
840
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
841
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1013,13 +1013,13 @@ msgid "Ticket Name"
1013
  msgstr "Nom du billet"
1014
 
1015
  #: app/features/events.php:1584 app/features/events.php:1805
1016
- #: app/features/events.php:3271 app/features/events.php:3313
1017
  #: app/features/ix.php:2743 app/features/ix.php:2784
1018
  msgid "Start Time"
1019
  msgstr "Début"
1020
 
1021
  #: app/features/events.php:1626 app/features/events.php:1829
1022
- #: app/features/events.php:3271 app/features/events.php:3313
1023
  #: app/features/ix.php:2743 app/features/ix.php:2784
1024
  msgid "End Time"
1025
  msgstr "Fin"
@@ -1141,53 +1141,53 @@ msgstr "Montant (par Billet)"
1141
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1142
  msgstr ""
1143
 
1144
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1145
  #: app/libraries/main.php:2523
1146
  #, fuzzy
1147
  #| msgid "Name"
1148
  msgid "MEC Name"
1149
  msgstr "Nom"
1150
 
1151
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1152
  #: app/libraries/main.php:2552
1153
  #, fuzzy
1154
  #| msgid "Email"
1155
  msgid "MEC Email"
1156
  msgstr "Email"
1157
 
1158
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1159
  #: app/libraries/main.php:2493
1160
  msgid "Text"
1161
  msgstr "Texte"
1162
 
1163
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1164
  #: app/features/organizers.php:103 app/features/organizers.php:148
1165
  #: app/features/speakers.php:116 app/features/speakers.php:180
1166
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1167
  msgid "Tel"
1168
  msgstr "Téléphone"
1169
 
1170
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1171
  #: app/libraries/main.php:2611
1172
  msgid "File"
1173
  msgstr ""
1174
 
1175
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1176
  #: app/libraries/main.php:2698
1177
  msgid "Textarea"
1178
  msgstr "Zone de texte"
1179
 
1180
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1181
  #: app/libraries/main.php:2751
1182
  msgid "Checkboxes"
1183
  msgstr "Boîtes à cocher"
1184
 
1185
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1186
  #: app/libraries/main.php:2795
1187
  msgid "Radio Buttons"
1188
  msgstr "Boutons Radio"
1189
 
1190
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1191
  #: app/features/mec/meta_boxes/search_form.php:34
1192
  #: app/features/mec/meta_boxes/search_form.php:41
1193
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1260,36 +1260,36 @@ msgstr "Boutons Radio"
1260
  msgid "Dropdown"
1261
  msgstr "Menu déroulant"
1262
 
1263
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1264
  #: app/libraries/main.php:2886
1265
  msgid "Agreement"
1266
  msgstr ""
1267
 
1268
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1269
  #: app/libraries/main.php:2727
1270
  msgid "Paragraph"
1271
  msgstr "Paragraphe"
1272
 
1273
- #: app/features/events.php:2998 app/features/events.php:3015
1274
- #: app/features/events.php:3032 app/features/events.php:3049
1275
  #, php-format
1276
  msgid "Show all %s"
1277
  msgstr "Afficher tous les %s"
1278
 
1279
- #: app/features/events.php:2998
1280
  msgid "labels"
1281
  msgstr "labels"
1282
 
1283
- #: app/features/events.php:3015
1284
  msgid "locations"
1285
  msgstr "lieux"
1286
 
1287
- #: app/features/events.php:3032
1288
  msgid "organizers"
1289
  msgstr "organisateurs"
1290
 
1291
- #: app/features/events.php:3079 app/features/events.php:3271
1292
- #: app/features/events.php:3313 app/features/ix.php:2743
1293
  #: app/features/ix.php:2784 app/features/locations.php:58
1294
  #: app/features/locations.php:230 app/features/locations.php:287
1295
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1313,8 +1313,8 @@ msgstr "organisateurs"
1313
  msgid "Location"
1314
  msgstr "Lieu"
1315
 
1316
- #: app/features/events.php:3080 app/features/events.php:3271
1317
- #: app/features/events.php:3313 app/features/ix.php:2743
1318
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1319
  #: app/features/mec/meta_boxes/search_form.php:45
1320
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1337,57 +1337,57 @@ msgstr "Lieu"
1337
  msgid "Organizer"
1338
  msgstr "Organisateur"
1339
 
1340
- #: app/features/events.php:3084
1341
  msgid "Repeat"
1342
  msgstr "Répetition"
1343
 
1344
- #: app/features/events.php:3085
1345
  msgid "Author"
1346
  msgstr "Auteur"
1347
 
1348
- #: app/features/events.php:3206 app/features/events.php:3207
1349
  msgid "iCal Export"
1350
  msgstr "Exporter vers iCal"
1351
 
1352
- #: app/features/events.php:3209 app/features/events.php:3210
1353
  msgid "CSV Export"
1354
  msgstr "Exporter en CSV"
1355
 
1356
- #: app/features/events.php:3212 app/features/events.php:3213
1357
  msgid "MS Excel Export"
1358
  msgstr "Exporter en Microsoft Excel"
1359
 
1360
- #: app/features/events.php:3215 app/features/events.php:3216
1361
  msgid "XML Export"
1362
  msgstr "Exporter en XML"
1363
 
1364
- #: app/features/events.php:3218 app/features/events.php:3219
1365
  msgid "JSON Export"
1366
  msgstr "Exporter en JSON"
1367
 
1368
- #: app/features/events.php:3221 app/features/events.php:3222
1369
- #: app/features/events.php:3403
1370
  msgid "Duplicate"
1371
  msgstr "Dupliquer"
1372
 
1373
- #: app/features/events.php:3271 app/features/events.php:3313
1374
  #: app/features/ix.php:2743 app/features/ix.php:2784
1375
  #: app/features/labels.php:177 app/features/locations.php:229
1376
  #: app/features/organizers.php:203 app/features/speakers.php:246
1377
  msgid "ID"
1378
  msgstr "ID"
1379
 
1380
- #: app/features/events.php:3271 app/features/events.php:3313
1381
  #: app/features/ix.php:2743 app/features/ix.php:2784
1382
  msgid "Link"
1383
  msgstr "Lien"
1384
 
1385
- #: app/features/events.php:3271 app/features/events.php:3313
1386
  #, php-format
1387
  msgid "%s Tel"
1388
  msgstr "%s Téléphone"
1389
 
1390
- #: app/features/events.php:3271 app/features/events.php:3313
1391
  #, fuzzy, php-format
1392
  msgid "%s Email"
1393
  msgstr "%s mail"
@@ -1909,7 +1909,7 @@ msgstr "Importer depuis Calendrier Facebook"
1909
  msgid "Import all of your Facebook events into MEC."
1910
  msgstr "Importer tous vos évènements Facebook dans l'extansion M.E.C. ."
1911
 
1912
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1913
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1914
  msgid "Documentation"
1915
  msgstr "Documentation"
@@ -2306,7 +2306,7 @@ msgid "Event %s"
2306
  msgstr "%s événement"
2307
 
2308
  #: app/features/locations.php:59 app/features/mec.php:337
2309
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2310
  #: app/libraries/main.php:4838
2311
  msgid "Locations"
2312
  msgstr "Lieux"
@@ -2477,14 +2477,14 @@ msgstr "Aide"
2477
  msgid "Support"
2478
  msgstr "Aide"
2479
 
2480
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2481
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2482
  #: app/libraries/main.php:4840
2483
  msgid "Organizers"
2484
  msgstr "Organisateurs"
2485
 
2486
  #: app/features/mec.php:346 app/features/mec.php:366
2487
- #: app/features/mec/dashboard.php:209
2488
  msgid "Shortcodes"
2489
  msgstr "Shortcodes"
2490
 
@@ -2835,102 +2835,119 @@ msgstr ""
2835
  msgid "Update"
2836
  msgstr "Mettre à jour %s"
2837
 
2838
- #: app/features/mec/dashboard.php:90
2839
  #, php-format
2840
  msgid ""
2841
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2842
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2843
- "Spots, etc you should %s to the Pro version."
2844
  msgstr ""
2845
 
2846
- #: app/features/mec/dashboard.php:90
2847
  msgid "lite"
2848
  msgstr ""
2849
 
2850
- #: app/features/mec/dashboard.php:90
2851
- msgid "upgrade"
 
 
 
 
 
 
 
2852
  msgstr ""
2853
 
2854
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2855
  #, fuzzy
2856
  #| msgid "Modern Events Calendar"
2857
  msgid "Getting started with Modern Events Calendar"
2858
  msgstr "Modern Events Calendar"
2859
 
2860
- #: app/features/mec/dashboard.php:101
2861
  msgid ""
2862
  "In this short video, you can learn how to make an event and put a calendar "
2863
  "on your website. Please watch this 2 minutes video to the end."
2864
  msgstr ""
2865
 
2866
- #: app/features/mec/dashboard.php:117
2867
  #, fuzzy
2868
  #| msgid "MEC Activation"
2869
  msgid "MEC Activate"
2870
  msgstr "Activation de l'extension"
2871
 
2872
- #: app/features/mec/dashboard.php:123
2873
  msgid ""
2874
  "In order to use all plugin features and options, please enter your purchase "
2875
  "code."
2876
  msgstr ""
2877
 
2878
- #: app/features/mec/dashboard.php:181
2879
  #, fuzzy
2880
  #| msgid "MEC Activation"
2881
  msgid "Activate Addons"
2882
  msgstr "Activation de l'extension"
2883
 
2884
- #: app/features/mec/dashboard.php:190
2885
  msgid "You cannot access this section."
2886
  msgstr ""
2887
 
2888
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2889
  msgid "Upcoming Events"
2890
  msgstr "Prochains évenements"
2891
 
2892
- #: app/features/mec/dashboard.php:258
2893
  msgid "Popular Gateways"
2894
  msgstr "Passerelle populaire"
2895
 
2896
- #: app/features/mec/dashboard.php:312
2897
  msgid "Total Bookings"
2898
  msgstr "Total de réservation"
2899
 
2900
- #: app/features/mec/dashboard.php:339
2901
  msgid "This Month"
2902
  msgstr "Ce mois"
2903
 
2904
- #: app/features/mec/dashboard.php:340
2905
  msgid "Last Month"
2906
  msgstr "Le mois dernier"
2907
 
2908
- #: app/features/mec/dashboard.php:341
2909
  msgid "This Year"
2910
  msgstr "Cette année"
2911
 
2912
- #: app/features/mec/dashboard.php:342
2913
  msgid "Last Year"
2914
  msgstr "L'année dernière"
2915
 
2916
- #: app/features/mec/dashboard.php:354
2917
  msgid "Bar"
2918
  msgstr "Barre"
2919
 
2920
- #: app/features/mec/dashboard.php:355
2921
  msgid "Line"
2922
  msgstr "Ligne"
2923
 
2924
- #: app/features/mec/dashboard.php:357
2925
  msgid "Filter"
2926
  msgstr "Filtre"
2927
 
2928
- #: app/features/mec/dashboard.php:373
2929
  #, php-format
2930
  msgid "Total Sells (%s)"
2931
  msgstr "Ventes totales (%s)"
2932
 
2933
- #: app/features/mec/dashboard.php:394
2934
  msgid "Change Log"
2935
  msgstr "Journal des modifications"
2936
 
@@ -4343,7 +4360,7 @@ msgstr ""
4343
  "reçue."
4344
 
4345
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4346
- #: app/libraries/notifications.php:405
4347
  msgid "Booking Reminder"
4348
  msgstr ""
4349
 
@@ -5595,10 +5612,6 @@ msgstr ""
5595
  "n'hésitez pas à nous contacter, nous vous répondrons dans les plus brefs "
5596
  "délais."
5597
 
5598
- #: app/features/mec/support.php:126
5599
- msgid "GO PREMIUM"
5600
- msgstr ""
5601
-
5602
  #: app/features/mec/support.php:128
5603
  msgid "OPEN A TICKET"
5604
  msgstr "Ouvrir un ticket"
@@ -5769,7 +5782,7 @@ msgid "No search result."
5769
  msgstr ""
5770
 
5771
  #: app/features/search_bar/search_result.php:11
5772
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5773
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5774
  #: app/skins/single.php:160 app/skins/single.php:708
5775
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6365,7 +6378,7 @@ msgstr "Boutons d'inscription"
6365
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6366
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6367
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6368
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6369
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6370
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6371
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6385,8 +6398,8 @@ msgstr "Afficher le boutons de détail"
6385
 
6386
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6387
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6388
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6389
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6390
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6391
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6392
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6450,49 +6463,49 @@ msgstr "En attente"
6450
  msgid "Skin controller does not exist."
6451
  msgstr "Le contrôleur de Skin n'existe pas."
6452
 
6453
- #: app/libraries/notifications.php:61
6454
  msgid "Please verify your email."
6455
  msgstr "Merci de vérifier vos e-mails."
6456
 
6457
- #: app/libraries/notifications.php:125
6458
  msgid "Your booking is received."
6459
  msgstr "Votre réservation est reçue."
6460
 
6461
- #: app/libraries/notifications.php:193
6462
  msgid "Your booking is confirmed."
6463
  msgstr "Votre réservation est confirmée."
6464
 
6465
- #: app/libraries/notifications.php:282
6466
  #, fuzzy
6467
  #| msgid "Your booking cannot be canceled."
6468
  msgid "booking canceled."
6469
  msgstr "Votre réservation ne peut être annulée."
6470
 
6471
- #: app/libraries/notifications.php:337
6472
  msgid "A new booking is received."
6473
  msgstr "Une nouvelle réservation est enregistrée."
6474
 
6475
- #: app/libraries/notifications.php:488
6476
  msgid "A new event is added."
6477
  msgstr "Un nouvel événement est ajouté."
6478
 
6479
- #: app/libraries/notifications.php:674
6480
  msgid "to"
6481
  msgstr ""
6482
 
6483
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6484
  msgid "+ Add to Google Calendar"
6485
  msgstr "+ Ajouter à mon Agenda Google"
6486
 
6487
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6488
  msgid "+ iCal export"
6489
  msgstr "+ Exporter vers iCal"
6490
 
6491
- #: app/libraries/notifications.php:752
6492
  msgid "Yes"
6493
  msgstr "Oui"
6494
 
6495
- #: app/libraries/notifications.php:752
6496
  msgid "No"
6497
  msgstr "Non"
6498
 
@@ -6928,6 +6941,11 @@ msgstr ""
6928
  #~ msgid "Book Date"
6929
  #~ msgstr "Date de réservation"
6930
 
 
 
 
 
 
6931
  #~ msgid "Confirm"
6932
  #~ msgstr "Confirmation"
6933
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:23+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: fr_FR\n"
76
  msgstr "Couleur de l'événement"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:347
79
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
80
  #: app/features/mec/support.php:20 app/libraries/main.php:587
81
  msgid "Settings"
82
  msgstr "Paramètres"
252
  msgstr "Activation de l'extension"
253
 
254
  #: app/features/events.php:148 app/features/ix/export.php:34
255
+ #: app/features/mec/dashboard.php:229 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 "Évenements"
270
  msgid "Add Event"
271
  msgstr "Ajouter un événement"
272
 
273
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
274
  msgid "Add New Event"
275
  msgstr "Ajouter un nouvel événement"
276
 
295
  msgid "No events found in Trash!"
296
  msgstr "Aucun événement trouvé dans la corbeille !"
297
 
298
+ #: app/features/events.php:173 app/features/events.php:3072
299
  #: app/features/mec/meta_boxes/display_options.php:828
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
315
  msgid "Category"
316
  msgstr "Catégorie"
317
 
318
+ #: app/features/events.php:174 app/features/events.php:3043
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
321
  msgid "Categories"
389
  msgid "Event Details"
390
  msgstr "Détails"
391
 
392
+ #: app/features/events.php:333 app/features/events.php:3265
393
+ #: app/features/events.php:3307 app/features/fes/form.php:706
394
  #: app/features/ix.php:2743 app/features/ix.php:2784
395
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
396
  #: app/widgets/single.php:103
415
  #: app/features/events.php:443 app/features/events.php:2261
416
  #: app/features/fes/form.php:668 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Nom"
422
 
423
  #: app/features/events.php:444 app/features/events.php:2272
424
+ #: app/features/events.php:2348 app/features/fes/form.php:664
425
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
426
  #: app/features/organizers.php:111 app/features/organizers.php:152
427
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
428
  #: app/features/speakers.php:184 app/libraries/main.php:1471
429
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
430
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
431
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
432
  #: app/skins/single.php:836 app/skins/single/default.php:212
433
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
440
  msgstr "Date et heure"
441
 
442
  #: app/features/events.php:452 app/features/events.php:458
443
+ #: app/features/events.php:3075 app/features/events.php:3265
444
+ #: app/features/events.php:3307 app/features/fes/form.php:236
445
  #: app/features/fes/form.php:240 app/features/ix.php:2743
446
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
447
+ #: app/features/mec/dashboard.php:373
448
  #: app/features/mec/meta_boxes/display_options.php:44
449
  #: app/features/mec/meta_boxes/display_options.php:185
450
  #: app/features/mec/meta_boxes/display_options.php:337
476
  msgstr "de l'après midi"
477
 
478
  #: app/features/events.php:544 app/features/events.php:549
479
+ #: app/features/events.php:3076 app/features/events.php:3265
480
+ #: app/features/events.php:3307 app/features/fes/form.php:276
481
  #: app/features/fes/form.php:280 app/features/ix.php:2743
482
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
483
+ #: app/features/mec/dashboard.php:374
484
  msgid "End Date"
485
  msgstr "Date de fin"
486
 
597
  msgstr "Récurrence"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Quotidienne"
603
 
619
  msgstr "Hebdomadaire"
620
 
621
  #: app/features/events.php:738 app/features/fes/form.php:343
622
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
623
  msgid "Monthly"
624
  msgstr "Mensuelle"
625
 
626
  #: app/features/events.php:745 app/features/fes/form.php:344
627
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
628
  msgid "Yearly"
629
  msgstr "Annuelle"
630
 
790
  msgid "Exclude certain days"
791
  msgstr "Exclure certains jours"
792
 
793
+ #: app/features/events.php:1141 app/features/events.php:2349
794
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
795
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
796
  #: app/modules/booking/steps/tickets.php:22
834
  #: app/features/events.php:1239 app/features/events.php:1278
835
  #: app/features/events.php:1313 app/features/events.php:1345
836
  #: app/features/events.php:1374 app/features/events.php:2130
837
+ #: app/features/events.php:2177 app/features/events.php:3071
838
+ #: app/features/events.php:3265 app/features/events.php:3307
839
  #: app/features/fes/form.php:225 app/features/ix.php:2743
840
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
841
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1013
  msgstr "Nom du billet"
1014
 
1015
  #: app/features/events.php:1584 app/features/events.php:1805
1016
+ #: app/features/events.php:3265 app/features/events.php:3307
1017
  #: app/features/ix.php:2743 app/features/ix.php:2784
1018
  msgid "Start Time"
1019
  msgstr "Début"
1020
 
1021
  #: app/features/events.php:1626 app/features/events.php:1829
1022
+ #: app/features/events.php:3265 app/features/events.php:3307
1023
  #: app/features/ix.php:2743 app/features/ix.php:2784
1024
  msgid "End Time"
1025
  msgstr "Fin"
1141
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1142
  msgstr ""
1143
 
1144
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1145
  #: app/libraries/main.php:2523
1146
  #, fuzzy
1147
  #| msgid "Name"
1148
  msgid "MEC Name"
1149
  msgstr "Nom"
1150
 
1151
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1152
  #: app/libraries/main.php:2552
1153
  #, fuzzy
1154
  #| msgid "Email"
1155
  msgid "MEC Email"
1156
  msgstr "Email"
1157
 
1158
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1159
  #: app/libraries/main.php:2493
1160
  msgid "Text"
1161
  msgstr "Texte"
1162
 
1163
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1164
  #: app/features/organizers.php:103 app/features/organizers.php:148
1165
  #: app/features/speakers.php:116 app/features/speakers.php:180
1166
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1167
  msgid "Tel"
1168
  msgstr "Téléphone"
1169
 
1170
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1171
  #: app/libraries/main.php:2611
1172
  msgid "File"
1173
  msgstr ""
1174
 
1175
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1176
  #: app/libraries/main.php:2698
1177
  msgid "Textarea"
1178
  msgstr "Zone de texte"
1179
 
1180
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1181
  #: app/libraries/main.php:2751
1182
  msgid "Checkboxes"
1183
  msgstr "Boîtes à cocher"
1184
 
1185
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1186
  #: app/libraries/main.php:2795
1187
  msgid "Radio Buttons"
1188
  msgstr "Boutons Radio"
1189
 
1190
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1191
  #: app/features/mec/meta_boxes/search_form.php:34
1192
  #: app/features/mec/meta_boxes/search_form.php:41
1193
  #: app/features/mec/meta_boxes/search_form.php:48
1260
  msgid "Dropdown"
1261
  msgstr "Menu déroulant"
1262
 
1263
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1264
  #: app/libraries/main.php:2886
1265
  msgid "Agreement"
1266
  msgstr ""
1267
 
1268
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1269
  #: app/libraries/main.php:2727
1270
  msgid "Paragraph"
1271
  msgstr "Paragraphe"
1272
 
1273
+ #: app/features/events.php:2992 app/features/events.php:3009
1274
+ #: app/features/events.php:3026 app/features/events.php:3043
1275
  #, php-format
1276
  msgid "Show all %s"
1277
  msgstr "Afficher tous les %s"
1278
 
1279
+ #: app/features/events.php:2992
1280
  msgid "labels"
1281
  msgstr "labels"
1282
 
1283
+ #: app/features/events.php:3009
1284
  msgid "locations"
1285
  msgstr "lieux"
1286
 
1287
+ #: app/features/events.php:3026
1288
  msgid "organizers"
1289
  msgstr "organisateurs"
1290
 
1291
+ #: app/features/events.php:3073 app/features/events.php:3265
1292
+ #: app/features/events.php:3307 app/features/ix.php:2743
1293
  #: app/features/ix.php:2784 app/features/locations.php:58
1294
  #: app/features/locations.php:230 app/features/locations.php:287
1295
  #: app/features/locations.php:289 app/features/locations.php:298
1313
  msgid "Location"
1314
  msgstr "Lieu"
1315
 
1316
+ #: app/features/events.php:3074 app/features/events.php:3265
1317
+ #: app/features/events.php:3307 app/features/ix.php:2743
1318
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1319
  #: app/features/mec/meta_boxes/search_form.php:45
1320
  #: app/features/mec/meta_boxes/search_form.php:107
1337
  msgid "Organizer"
1338
  msgstr "Organisateur"
1339
 
1340
+ #: app/features/events.php:3078
1341
  msgid "Repeat"
1342
  msgstr "Répetition"
1343
 
1344
+ #: app/features/events.php:3079
1345
  msgid "Author"
1346
  msgstr "Auteur"
1347
 
1348
+ #: app/features/events.php:3200 app/features/events.php:3201
1349
  msgid "iCal Export"
1350
  msgstr "Exporter vers iCal"
1351
 
1352
+ #: app/features/events.php:3203 app/features/events.php:3204
1353
  msgid "CSV Export"
1354
  msgstr "Exporter en CSV"
1355
 
1356
+ #: app/features/events.php:3206 app/features/events.php:3207
1357
  msgid "MS Excel Export"
1358
  msgstr "Exporter en Microsoft Excel"
1359
 
1360
+ #: app/features/events.php:3209 app/features/events.php:3210
1361
  msgid "XML Export"
1362
  msgstr "Exporter en XML"
1363
 
1364
+ #: app/features/events.php:3212 app/features/events.php:3213
1365
  msgid "JSON Export"
1366
  msgstr "Exporter en JSON"
1367
 
1368
+ #: app/features/events.php:3215 app/features/events.php:3216
1369
+ #: app/features/events.php:3397
1370
  msgid "Duplicate"
1371
  msgstr "Dupliquer"
1372
 
1373
+ #: app/features/events.php:3265 app/features/events.php:3307
1374
  #: app/features/ix.php:2743 app/features/ix.php:2784
1375
  #: app/features/labels.php:177 app/features/locations.php:229
1376
  #: app/features/organizers.php:203 app/features/speakers.php:246
1377
  msgid "ID"
1378
  msgstr "ID"
1379
 
1380
+ #: app/features/events.php:3265 app/features/events.php:3307
1381
  #: app/features/ix.php:2743 app/features/ix.php:2784
1382
  msgid "Link"
1383
  msgstr "Lien"
1384
 
1385
+ #: app/features/events.php:3265 app/features/events.php:3307
1386
  #, php-format
1387
  msgid "%s Tel"
1388
  msgstr "%s Téléphone"
1389
 
1390
+ #: app/features/events.php:3265 app/features/events.php:3307
1391
  #, fuzzy, php-format
1392
  msgid "%s Email"
1393
  msgstr "%s mail"
1909
  msgid "Import all of your Facebook events into MEC."
1910
  msgstr "Importer tous vos évènements Facebook dans l'extansion M.E.C. ."
1911
 
1912
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1913
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1914
  msgid "Documentation"
1915
  msgstr "Documentation"
2306
  msgstr "%s événement"
2307
 
2308
  #: app/features/locations.php:59 app/features/mec.php:337
2309
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2310
  #: app/libraries/main.php:4838
2311
  msgid "Locations"
2312
  msgstr "Lieux"
2477
  msgid "Support"
2478
  msgstr "Aide"
2479
 
2480
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2481
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2482
  #: app/libraries/main.php:4840
2483
  msgid "Organizers"
2484
  msgstr "Organisateurs"
2485
 
2486
  #: app/features/mec.php:346 app/features/mec.php:366
2487
+ #: app/features/mec/dashboard.php:236
2488
  msgid "Shortcodes"
2489
  msgstr "Shortcodes"
2490
 
2835
  msgid "Update"
2836
  msgstr "Mettre à jour %s"
2837
 
2838
+ #: app/features/mec/dashboard.php:92
2839
  #, php-format
2840
  msgid ""
2841
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2842
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2843
+ "Spots, etc you should upgrade to the Pro version."
2844
  msgstr ""
2845
 
2846
+ #: app/features/mec/dashboard.php:92
2847
  msgid "lite"
2848
  msgstr ""
2849
 
2850
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2851
+ msgid "GO PREMIUM"
2852
+ msgstr ""
2853
+
2854
+ #: app/features/mec/dashboard.php:98
2855
+ #, php-format
2856
+ msgid ""
2857
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2858
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2859
  msgstr ""
2860
 
2861
+ #: app/features/mec/dashboard.php:98
2862
+ #, fuzzy
2863
+ #| msgid "Address"
2864
+ msgid "WordPress"
2865
+ msgstr "Adresse"
2866
+
2867
+ #: app/features/mec/dashboard.php:98
2868
+ msgid "Copouns!"
2869
+ msgstr ""
2870
+
2871
+ #: app/features/mec/dashboard.php:127
2872
  #, fuzzy
2873
  #| msgid "Modern Events Calendar"
2874
  msgid "Getting started with Modern Events Calendar"
2875
  msgstr "Modern Events Calendar"
2876
 
2877
+ #: app/features/mec/dashboard.php:128
2878
  msgid ""
2879
  "In this short video, you can learn how to make an event and put a calendar "
2880
  "on your website. Please watch this 2 minutes video to the end."
2881
  msgstr ""
2882
 
2883
+ #: app/features/mec/dashboard.php:144
2884
  #, fuzzy
2885
  #| msgid "MEC Activation"
2886
  msgid "MEC Activate"
2887
  msgstr "Activation de l'extension"
2888
 
2889
+ #: app/features/mec/dashboard.php:150
2890
  msgid ""
2891
  "In order to use all plugin features and options, please enter your purchase "
2892
  "code."
2893
  msgstr ""
2894
 
2895
+ #: app/features/mec/dashboard.php:208
2896
  #, fuzzy
2897
  #| msgid "MEC Activation"
2898
  msgid "Activate Addons"
2899
  msgstr "Activation de l'extension"
2900
 
2901
+ #: app/features/mec/dashboard.php:217
2902
  msgid "You cannot access this section."
2903
  msgstr ""
2904
 
2905
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2906
  msgid "Upcoming Events"
2907
  msgstr "Prochains évenements"
2908
 
2909
+ #: app/features/mec/dashboard.php:285
2910
  msgid "Popular Gateways"
2911
  msgstr "Passerelle populaire"
2912
 
2913
+ #: app/features/mec/dashboard.php:339
2914
  msgid "Total Bookings"
2915
  msgstr "Total de réservation"
2916
 
2917
+ #: app/features/mec/dashboard.php:366
2918
  msgid "This Month"
2919
  msgstr "Ce mois"
2920
 
2921
+ #: app/features/mec/dashboard.php:367
2922
  msgid "Last Month"
2923
  msgstr "Le mois dernier"
2924
 
2925
+ #: app/features/mec/dashboard.php:368
2926
  msgid "This Year"
2927
  msgstr "Cette année"
2928
 
2929
+ #: app/features/mec/dashboard.php:369
2930
  msgid "Last Year"
2931
  msgstr "L'année dernière"
2932
 
2933
+ #: app/features/mec/dashboard.php:381
2934
  msgid "Bar"
2935
  msgstr "Barre"
2936
 
2937
+ #: app/features/mec/dashboard.php:382
2938
  msgid "Line"
2939
  msgstr "Ligne"
2940
 
2941
+ #: app/features/mec/dashboard.php:384
2942
  msgid "Filter"
2943
  msgstr "Filtre"
2944
 
2945
+ #: app/features/mec/dashboard.php:400
2946
  #, php-format
2947
  msgid "Total Sells (%s)"
2948
  msgstr "Ventes totales (%s)"
2949
 
2950
+ #: app/features/mec/dashboard.php:421
2951
  msgid "Change Log"
2952
  msgstr "Journal des modifications"
2953
 
4360
  "reçue."
4361
 
4362
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4363
+ #: app/libraries/notifications.php:478
4364
  msgid "Booking Reminder"
4365
  msgstr ""
4366
 
5612
  "n'hésitez pas à nous contacter, nous vous répondrons dans les plus brefs "
5613
  "délais."
5614
 
 
 
 
 
5615
  #: app/features/mec/support.php:128
5616
  msgid "OPEN A TICKET"
5617
  msgstr "Ouvrir un ticket"
5782
  msgstr ""
5783
 
5784
  #: app/features/search_bar/search_result.php:11
5785
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5786
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5787
  #: app/skins/single.php:160 app/skins/single.php:708
5788
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6378
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6379
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6380
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6381
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6382
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6383
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6384
  #: app/skins/single.php:729 app/skins/single/default.php:233
6398
 
6399
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6400
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6401
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6402
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6403
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6404
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6405
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6463
  msgid "Skin controller does not exist."
6464
  msgstr "Le contrôleur de Skin n'existe pas."
6465
 
6466
+ #: app/libraries/notifications.php:60
6467
  msgid "Please verify your email."
6468
  msgstr "Merci de vérifier vos e-mails."
6469
 
6470
+ #: app/libraries/notifications.php:139
6471
  msgid "Your booking is received."
6472
  msgstr "Votre réservation est reçue."
6473
 
6474
+ #: app/libraries/notifications.php:224
6475
  msgid "Your booking is confirmed."
6476
  msgstr "Votre réservation est confirmée."
6477
 
6478
+ #: app/libraries/notifications.php:349
6479
  #, fuzzy
6480
  #| msgid "Your booking cannot be canceled."
6481
  msgid "booking canceled."
6482
  msgstr "Votre réservation ne peut être annulée."
6483
 
6484
+ #: app/libraries/notifications.php:410
6485
  msgid "A new booking is received."
6486
  msgstr "Une nouvelle réservation est enregistrée."
6487
 
6488
+ #: app/libraries/notifications.php:561
6489
  msgid "A new event is added."
6490
  msgstr "Un nouvel événement est ajouté."
6491
 
6492
+ #: app/libraries/notifications.php:746
6493
  msgid "to"
6494
  msgstr ""
6495
 
6496
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6497
  msgid "+ Add to Google Calendar"
6498
  msgstr "+ Ajouter à mon Agenda Google"
6499
 
6500
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6501
  msgid "+ iCal export"
6502
  msgstr "+ Exporter vers iCal"
6503
 
6504
+ #: app/libraries/notifications.php:821
6505
  msgid "Yes"
6506
  msgstr "Oui"
6507
 
6508
+ #: app/libraries/notifications.php:821
6509
  msgid "No"
6510
  msgstr "Non"
6511
 
6941
  #~ msgid "Book Date"
6942
  #~ msgstr "Date de réservation"
6943
 
6944
+ #, fuzzy
6945
+ #~| msgid "Ticket"
6946
+ #~ msgid " - Ticket"
6947
+ #~ msgstr "Billets"
6948
+
6949
  #~ msgid "Confirm"
6950
  #~ msgstr "Confirmation"
6951
 
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: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 15:59+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
@@ -66,7 +66,7 @@ msgid "Event Color"
66
  msgstr ""
67
 
68
  #: app/features/contextual.php:55 app/features/mec.php:347
69
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
70
  #: app/features/mec/support.php:20 app/libraries/main.php:587
71
  msgid "Settings"
72
  msgstr ""
@@ -242,7 +242,7 @@ msgid "MEC Activation"
242
  msgstr ""
243
 
244
  #: app/features/events.php:148 app/features/ix/export.php:34
245
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
246
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
247
  msgid "Events"
248
  msgstr ""
@@ -260,7 +260,7 @@ msgstr ""
260
  msgid "Add Event"
261
  msgstr ""
262
 
263
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
264
  msgid "Add New Event"
265
  msgstr ""
266
 
@@ -285,7 +285,7 @@ msgstr ""
285
  msgid "No events found in Trash!"
286
  msgstr ""
287
 
288
- #: app/features/events.php:173 app/features/events.php:3078
289
  #: app/features/mec/meta_boxes/display_options.php:828
290
  #: app/features/mec/meta_boxes/search_form.php:31
291
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -305,7 +305,7 @@ msgstr ""
305
  msgid "Category"
306
  msgstr "kategória"
307
 
308
- #: app/features/events.php:174 app/features/events.php:3049
309
  #: app/features/fes/form.php:745 app/features/mec.php:335
310
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
311
  msgid "Categories"
@@ -379,8 +379,8 @@ msgstr ""
379
  msgid "Event Details"
380
  msgstr ""
381
 
382
- #: app/features/events.php:333 app/features/events.php:3271
383
- #: app/features/events.php:3313 app/features/fes/form.php:706
384
  #: app/features/ix.php:2743 app/features/ix.php:2784
385
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
386
  #: app/widgets/single.php:103
@@ -405,19 +405,19 @@ msgstr ""
405
  #: app/features/events.php:443 app/features/events.php:2261
406
  #: app/features/fes/form.php:668 app/features/labels.php:178
407
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
408
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
409
  #: app/modules/booking/steps/form.php:37
410
  msgid "Name"
411
  msgstr "Név"
412
 
413
  #: app/features/events.php:444 app/features/events.php:2272
414
- #: app/features/events.php:2350 app/features/fes/form.php:664
415
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
416
  #: app/features/organizers.php:111 app/features/organizers.php:152
417
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
418
  #: app/features/speakers.php:184 app/libraries/main.php:1471
419
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
420
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
421
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
422
  #: app/skins/single.php:836 app/skins/single/default.php:212
423
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -430,11 +430,11 @@ msgid "Date and Time"
430
  msgstr ""
431
 
432
  #: app/features/events.php:452 app/features/events.php:458
433
- #: app/features/events.php:3081 app/features/events.php:3271
434
- #: app/features/events.php:3313 app/features/fes/form.php:236
435
  #: app/features/fes/form.php:240 app/features/ix.php:2743
436
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
437
- #: app/features/mec/dashboard.php:346
438
  #: app/features/mec/meta_boxes/display_options.php:44
439
  #: app/features/mec/meta_boxes/display_options.php:185
440
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -466,11 +466,11 @@ msgid "PM"
466
  msgstr ""
467
 
468
  #: app/features/events.php:544 app/features/events.php:549
469
- #: app/features/events.php:3082 app/features/events.php:3271
470
- #: app/features/events.php:3313 app/features/fes/form.php:276
471
  #: app/features/fes/form.php:280 app/features/ix.php:2743
472
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
473
- #: app/features/mec/dashboard.php:347
474
  msgid "End Date"
475
  msgstr ""
476
 
@@ -581,7 +581,7 @@ msgid "Repeats"
581
  msgstr ""
582
 
583
  #: app/features/events.php:703 app/features/fes/form.php:338
584
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
585
  msgid "Daily"
586
  msgstr ""
587
 
@@ -603,12 +603,12 @@ msgid "Weekly"
603
  msgstr ""
604
 
605
  #: app/features/events.php:738 app/features/fes/form.php:343
606
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
607
  msgid "Monthly"
608
  msgstr ""
609
 
610
  #: app/features/events.php:745 app/features/fes/form.php:344
611
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
612
  msgid "Yearly"
613
  msgstr ""
614
 
@@ -765,7 +765,7 @@ msgstr ""
765
  msgid "Exclude certain days"
766
  msgstr ""
767
 
768
- #: app/features/events.php:1141 app/features/events.php:2351
769
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
770
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
771
  #: app/modules/booking/steps/tickets.php:22
@@ -809,8 +809,8 @@ msgstr ""
809
  #: app/features/events.php:1239 app/features/events.php:1278
810
  #: app/features/events.php:1313 app/features/events.php:1345
811
  #: app/features/events.php:1374 app/features/events.php:2130
812
- #: app/features/events.php:2177 app/features/events.php:3077
813
- #: app/features/events.php:3271 app/features/events.php:3313
814
  #: app/features/fes/form.php:225 app/features/ix.php:2743
815
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
816
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -978,13 +978,13 @@ msgid "Ticket Name"
978
  msgstr ""
979
 
980
  #: app/features/events.php:1584 app/features/events.php:1805
981
- #: app/features/events.php:3271 app/features/events.php:3313
982
  #: app/features/ix.php:2743 app/features/ix.php:2784
983
  msgid "Start Time"
984
  msgstr ""
985
 
986
  #: app/features/events.php:1626 app/features/events.php:1829
987
- #: app/features/events.php:3271 app/features/events.php:3313
988
  #: app/features/ix.php:2743 app/features/ix.php:2784
989
  msgid "End Time"
990
  msgstr ""
@@ -1098,51 +1098,51 @@ msgstr ""
1098
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1099
  msgstr ""
1100
 
1101
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1102
  #: app/libraries/main.php:2523
1103
  #, fuzzy
1104
  #| msgid "Name"
1105
  msgid "MEC Name"
1106
  msgstr "Név"
1107
 
1108
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1109
  #: app/libraries/main.php:2552
1110
  msgid "MEC Email"
1111
  msgstr ""
1112
 
1113
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1114
  #: app/libraries/main.php:2493
1115
  msgid "Text"
1116
  msgstr ""
1117
 
1118
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1119
  #: app/features/organizers.php:103 app/features/organizers.php:148
1120
  #: app/features/speakers.php:116 app/features/speakers.php:180
1121
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1122
  msgid "Tel"
1123
  msgstr ""
1124
 
1125
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1126
  #: app/libraries/main.php:2611
1127
  msgid "File"
1128
  msgstr ""
1129
 
1130
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1131
  #: app/libraries/main.php:2698
1132
  msgid "Textarea"
1133
  msgstr ""
1134
 
1135
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1136
  #: app/libraries/main.php:2751
1137
  msgid "Checkboxes"
1138
  msgstr ""
1139
 
1140
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1141
  #: app/libraries/main.php:2795
1142
  msgid "Radio Buttons"
1143
  msgstr ""
1144
 
1145
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1146
  #: app/features/mec/meta_boxes/search_form.php:34
1147
  #: app/features/mec/meta_boxes/search_form.php:41
1148
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1215,36 +1215,36 @@ msgstr ""
1215
  msgid "Dropdown"
1216
  msgstr ""
1217
 
1218
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1219
  #: app/libraries/main.php:2886
1220
  msgid "Agreement"
1221
  msgstr ""
1222
 
1223
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1224
  #: app/libraries/main.php:2727
1225
  msgid "Paragraph"
1226
  msgstr ""
1227
 
1228
- #: app/features/events.php:2998 app/features/events.php:3015
1229
- #: app/features/events.php:3032 app/features/events.php:3049
1230
  #, php-format
1231
  msgid "Show all %s"
1232
  msgstr ""
1233
 
1234
- #: app/features/events.php:2998
1235
  msgid "labels"
1236
  msgstr ""
1237
 
1238
- #: app/features/events.php:3015
1239
  msgid "locations"
1240
  msgstr ""
1241
 
1242
- #: app/features/events.php:3032
1243
  msgid "organizers"
1244
  msgstr ""
1245
 
1246
- #: app/features/events.php:3079 app/features/events.php:3271
1247
- #: app/features/events.php:3313 app/features/ix.php:2743
1248
  #: app/features/ix.php:2784 app/features/locations.php:58
1249
  #: app/features/locations.php:230 app/features/locations.php:287
1250
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1268,8 +1268,8 @@ msgstr ""
1268
  msgid "Location"
1269
  msgstr "helyszín"
1270
 
1271
- #: app/features/events.php:3080 app/features/events.php:3271
1272
- #: app/features/events.php:3313 app/features/ix.php:2743
1273
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1274
  #: app/features/mec/meta_boxes/search_form.php:45
1275
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1292,57 +1292,57 @@ msgstr "helyszín"
1292
  msgid "Organizer"
1293
  msgstr "Szervező"
1294
 
1295
- #: app/features/events.php:3084
1296
  msgid "Repeat"
1297
  msgstr ""
1298
 
1299
- #: app/features/events.php:3085
1300
  msgid "Author"
1301
  msgstr ""
1302
 
1303
- #: app/features/events.php:3206 app/features/events.php:3207
1304
  msgid "iCal Export"
1305
  msgstr "iCal naptárba mentés"
1306
 
1307
- #: app/features/events.php:3209 app/features/events.php:3210
1308
  msgid "CSV Export"
1309
  msgstr ""
1310
 
1311
- #: app/features/events.php:3212 app/features/events.php:3213
1312
  msgid "MS Excel Export"
1313
  msgstr ""
1314
 
1315
- #: app/features/events.php:3215 app/features/events.php:3216
1316
  msgid "XML Export"
1317
  msgstr ""
1318
 
1319
- #: app/features/events.php:3218 app/features/events.php:3219
1320
  msgid "JSON Export"
1321
  msgstr ""
1322
 
1323
- #: app/features/events.php:3221 app/features/events.php:3222
1324
- #: app/features/events.php:3403
1325
  msgid "Duplicate"
1326
  msgstr ""
1327
 
1328
- #: app/features/events.php:3271 app/features/events.php:3313
1329
  #: app/features/ix.php:2743 app/features/ix.php:2784
1330
  #: app/features/labels.php:177 app/features/locations.php:229
1331
  #: app/features/organizers.php:203 app/features/speakers.php:246
1332
  msgid "ID"
1333
  msgstr ""
1334
 
1335
- #: app/features/events.php:3271 app/features/events.php:3313
1336
  #: app/features/ix.php:2743 app/features/ix.php:2784
1337
  msgid "Link"
1338
  msgstr ""
1339
 
1340
- #: app/features/events.php:3271 app/features/events.php:3313
1341
  #, php-format
1342
  msgid "%s Tel"
1343
  msgstr ""
1344
 
1345
- #: app/features/events.php:3271 app/features/events.php:3313
1346
  #, php-format
1347
  msgid "%s Email"
1348
  msgstr ""
@@ -1834,7 +1834,7 @@ msgstr ""
1834
  msgid "Import all of your Facebook events into MEC."
1835
  msgstr ""
1836
 
1837
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1838
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1839
  msgid "Documentation"
1840
  msgstr ""
@@ -2187,7 +2187,7 @@ msgid "Event %s"
2187
  msgstr ""
2188
 
2189
  #: app/features/locations.php:59 app/features/mec.php:337
2190
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2191
  #: app/libraries/main.php:4838
2192
  msgid "Locations"
2193
  msgstr ""
@@ -2345,14 +2345,14 @@ msgstr ""
2345
  msgid "Support"
2346
  msgstr ""
2347
 
2348
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2349
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2350
  #: app/libraries/main.php:4840
2351
  msgid "Organizers"
2352
  msgstr ""
2353
 
2354
  #: app/features/mec.php:346 app/features/mec.php:366
2355
- #: app/features/mec/dashboard.php:209
2356
  msgid "Shortcodes"
2357
  msgstr ""
2358
 
@@ -2686,96 +2686,111 @@ msgstr ""
2686
  msgid "Update"
2687
  msgstr ""
2688
 
2689
- #: app/features/mec/dashboard.php:90
2690
  #, php-format
2691
  msgid ""
2692
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2693
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2694
- "Spots, etc you should %s to the Pro version."
2695
  msgstr ""
2696
 
2697
- #: app/features/mec/dashboard.php:90
2698
  msgid "lite"
2699
  msgstr ""
2700
 
2701
- #: app/features/mec/dashboard.php:90
2702
- msgid "upgrade"
 
 
 
 
 
 
 
2703
  msgstr ""
2704
 
2705
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
2706
  msgid "Getting started with Modern Events Calendar"
2707
  msgstr ""
2708
 
2709
- #: app/features/mec/dashboard.php:101
2710
  msgid ""
2711
  "In this short video, you can learn how to make an event and put a calendar "
2712
  "on your website. Please watch this 2 minutes video to the end."
2713
  msgstr ""
2714
 
2715
- #: app/features/mec/dashboard.php:117
2716
  msgid "MEC Activate"
2717
  msgstr ""
2718
 
2719
- #: app/features/mec/dashboard.php:123
2720
  msgid ""
2721
  "In order to use all plugin features and options, please enter your purchase "
2722
  "code."
2723
  msgstr ""
2724
 
2725
- #: app/features/mec/dashboard.php:181
2726
  msgid "Activate Addons"
2727
  msgstr ""
2728
 
2729
- #: app/features/mec/dashboard.php:190
2730
  msgid "You cannot access this section."
2731
  msgstr ""
2732
 
2733
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2734
  msgid "Upcoming Events"
2735
  msgstr ""
2736
 
2737
- #: app/features/mec/dashboard.php:258
2738
  msgid "Popular Gateways"
2739
  msgstr ""
2740
 
2741
- #: app/features/mec/dashboard.php:312
2742
  msgid "Total Bookings"
2743
  msgstr ""
2744
 
2745
- #: app/features/mec/dashboard.php:339
2746
  msgid "This Month"
2747
  msgstr ""
2748
 
2749
- #: app/features/mec/dashboard.php:340
2750
  msgid "Last Month"
2751
  msgstr ""
2752
 
2753
- #: app/features/mec/dashboard.php:341
2754
  msgid "This Year"
2755
  msgstr ""
2756
 
2757
- #: app/features/mec/dashboard.php:342
2758
  msgid "Last Year"
2759
  msgstr ""
2760
 
2761
- #: app/features/mec/dashboard.php:354
2762
  msgid "Bar"
2763
  msgstr ""
2764
 
2765
- #: app/features/mec/dashboard.php:355
2766
  msgid "Line"
2767
  msgstr ""
2768
 
2769
- #: app/features/mec/dashboard.php:357
2770
  msgid "Filter"
2771
  msgstr ""
2772
 
2773
- #: app/features/mec/dashboard.php:373
2774
  #, php-format
2775
  msgid "Total Sells (%s)"
2776
  msgstr ""
2777
 
2778
- #: app/features/mec/dashboard.php:394
2779
  msgid "Change Log"
2780
  msgstr ""
2781
 
@@ -4115,7 +4130,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4115
  msgstr ""
4116
 
4117
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4118
- #: app/libraries/notifications.php:405
4119
  msgid "Booking Reminder"
4120
  msgstr ""
4121
 
@@ -5193,10 +5208,6 @@ msgid ""
5193
  "soon as possible."
5194
  msgstr ""
5195
 
5196
- #: app/features/mec/support.php:126
5197
- msgid "GO PREMIUM"
5198
- msgstr ""
5199
-
5200
  #: app/features/mec/support.php:128
5201
  msgid "OPEN A TICKET"
5202
  msgstr ""
@@ -5355,7 +5366,7 @@ msgid "No search result."
5355
  msgstr ""
5356
 
5357
  #: app/features/search_bar/search_result.php:11
5358
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5359
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5360
  #: app/skins/single.php:160 app/skins/single.php:708
5361
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -5919,7 +5930,7 @@ msgstr ""
5919
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
5920
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5921
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5922
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
5923
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5924
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
5925
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -5939,8 +5950,8 @@ msgstr ""
5939
 
5940
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
5941
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5942
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
5943
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
5944
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
5945
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
5946
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6004,49 +6015,49 @@ msgstr ""
6004
  msgid "Skin controller does not exist."
6005
  msgstr ""
6006
 
6007
- #: app/libraries/notifications.php:61
6008
  msgid "Please verify your email."
6009
  msgstr ""
6010
 
6011
- #: app/libraries/notifications.php:125
6012
  msgid "Your booking is received."
6013
  msgstr ""
6014
 
6015
- #: app/libraries/notifications.php:193
6016
  msgid "Your booking is confirmed."
6017
  msgstr ""
6018
 
6019
- #: app/libraries/notifications.php:282
6020
  #, fuzzy
6021
  #| msgid "Bookings"
6022
  msgid "booking canceled."
6023
  msgstr "Foglalások"
6024
 
6025
- #: app/libraries/notifications.php:337
6026
  msgid "A new booking is received."
6027
  msgstr ""
6028
 
6029
- #: app/libraries/notifications.php:488
6030
  msgid "A new event is added."
6031
  msgstr ""
6032
 
6033
- #: app/libraries/notifications.php:674
6034
  msgid "to"
6035
  msgstr ""
6036
 
6037
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6038
  msgid "+ Add to Google Calendar"
6039
  msgstr "+ Google Naptárba mentés"
6040
 
6041
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6042
  msgid "+ iCal export"
6043
  msgstr "+ iCal Exportálás"
6044
 
6045
- #: app/libraries/notifications.php:752
6046
  msgid "Yes"
6047
  msgstr ""
6048
 
6049
- #: app/libraries/notifications.php:752
6050
  msgid "No"
6051
  msgstr ""
6052
 
@@ -6398,6 +6409,11 @@ msgstr ""
6398
  msgid "http://webnus.net"
6399
  msgstr ""
6400
 
 
 
 
 
 
6401
  #, fuzzy
6402
  #~| msgid "Payment is invalid."
6403
  #~ msgid "Uploaded file type is not valid."
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:23+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: hu_HU\n"
66
  msgstr ""
67
 
68
  #: app/features/contextual.php:55 app/features/mec.php:347
69
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
70
  #: app/features/mec/support.php:20 app/libraries/main.php:587
71
  msgid "Settings"
72
  msgstr ""
242
  msgstr ""
243
 
244
  #: app/features/events.php:148 app/features/ix/export.php:34
245
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
246
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
247
  msgid "Events"
248
  msgstr ""
260
  msgid "Add Event"
261
  msgstr ""
262
 
263
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
264
  msgid "Add New Event"
265
  msgstr ""
266
 
285
  msgid "No events found in Trash!"
286
  msgstr ""
287
 
288
+ #: app/features/events.php:173 app/features/events.php:3072
289
  #: app/features/mec/meta_boxes/display_options.php:828
290
  #: app/features/mec/meta_boxes/search_form.php:31
291
  #: app/features/mec/meta_boxes/search_form.php:93
305
  msgid "Category"
306
  msgstr "kategória"
307
 
308
+ #: app/features/events.php:174 app/features/events.php:3043
309
  #: app/features/fes/form.php:745 app/features/mec.php:335
310
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
311
  msgid "Categories"
379
  msgid "Event Details"
380
  msgstr ""
381
 
382
+ #: app/features/events.php:333 app/features/events.php:3265
383
+ #: app/features/events.php:3307 app/features/fes/form.php:706
384
  #: app/features/ix.php:2743 app/features/ix.php:2784
385
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
386
  #: app/widgets/single.php:103
405
  #: app/features/events.php:443 app/features/events.php:2261
406
  #: app/features/fes/form.php:668 app/features/labels.php:178
407
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
408
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
409
  #: app/modules/booking/steps/form.php:37
410
  msgid "Name"
411
  msgstr "Név"
412
 
413
  #: app/features/events.php:444 app/features/events.php:2272
414
+ #: app/features/events.php:2348 app/features/fes/form.php:664
415
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
416
  #: app/features/organizers.php:111 app/features/organizers.php:152
417
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
418
  #: app/features/speakers.php:184 app/libraries/main.php:1471
419
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
420
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
421
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
422
  #: app/skins/single.php:836 app/skins/single/default.php:212
423
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
430
  msgstr ""
431
 
432
  #: app/features/events.php:452 app/features/events.php:458
433
+ #: app/features/events.php:3075 app/features/events.php:3265
434
+ #: app/features/events.php:3307 app/features/fes/form.php:236
435
  #: app/features/fes/form.php:240 app/features/ix.php:2743
436
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
437
+ #: app/features/mec/dashboard.php:373
438
  #: app/features/mec/meta_boxes/display_options.php:44
439
  #: app/features/mec/meta_boxes/display_options.php:185
440
  #: app/features/mec/meta_boxes/display_options.php:337
466
  msgstr ""
467
 
468
  #: app/features/events.php:544 app/features/events.php:549
469
+ #: app/features/events.php:3076 app/features/events.php:3265
470
+ #: app/features/events.php:3307 app/features/fes/form.php:276
471
  #: app/features/fes/form.php:280 app/features/ix.php:2743
472
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
473
+ #: app/features/mec/dashboard.php:374
474
  msgid "End Date"
475
  msgstr ""
476
 
581
  msgstr ""
582
 
583
  #: app/features/events.php:703 app/features/fes/form.php:338
584
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
585
  msgid "Daily"
586
  msgstr ""
587
 
603
  msgstr ""
604
 
605
  #: app/features/events.php:738 app/features/fes/form.php:343
606
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
607
  msgid "Monthly"
608
  msgstr ""
609
 
610
  #: app/features/events.php:745 app/features/fes/form.php:344
611
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
612
  msgid "Yearly"
613
  msgstr ""
614
 
765
  msgid "Exclude certain days"
766
  msgstr ""
767
 
768
+ #: app/features/events.php:1141 app/features/events.php:2349
769
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
770
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
771
  #: app/modules/booking/steps/tickets.php:22
809
  #: app/features/events.php:1239 app/features/events.php:1278
810
  #: app/features/events.php:1313 app/features/events.php:1345
811
  #: app/features/events.php:1374 app/features/events.php:2130
812
+ #: app/features/events.php:2177 app/features/events.php:3071
813
+ #: app/features/events.php:3265 app/features/events.php:3307
814
  #: app/features/fes/form.php:225 app/features/ix.php:2743
815
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
816
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
978
  msgstr ""
979
 
980
  #: app/features/events.php:1584 app/features/events.php:1805
981
+ #: app/features/events.php:3265 app/features/events.php:3307
982
  #: app/features/ix.php:2743 app/features/ix.php:2784
983
  msgid "Start Time"
984
  msgstr ""
985
 
986
  #: app/features/events.php:1626 app/features/events.php:1829
987
+ #: app/features/events.php:3265 app/features/events.php:3307
988
  #: app/features/ix.php:2743 app/features/ix.php:2784
989
  msgid "End Time"
990
  msgstr ""
1098
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1099
  msgstr ""
1100
 
1101
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1102
  #: app/libraries/main.php:2523
1103
  #, fuzzy
1104
  #| msgid "Name"
1105
  msgid "MEC Name"
1106
  msgstr "Név"
1107
 
1108
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1109
  #: app/libraries/main.php:2552
1110
  msgid "MEC Email"
1111
  msgstr ""
1112
 
1113
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1114
  #: app/libraries/main.php:2493
1115
  msgid "Text"
1116
  msgstr ""
1117
 
1118
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1119
  #: app/features/organizers.php:103 app/features/organizers.php:148
1120
  #: app/features/speakers.php:116 app/features/speakers.php:180
1121
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1122
  msgid "Tel"
1123
  msgstr ""
1124
 
1125
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1126
  #: app/libraries/main.php:2611
1127
  msgid "File"
1128
  msgstr ""
1129
 
1130
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1131
  #: app/libraries/main.php:2698
1132
  msgid "Textarea"
1133
  msgstr ""
1134
 
1135
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1136
  #: app/libraries/main.php:2751
1137
  msgid "Checkboxes"
1138
  msgstr ""
1139
 
1140
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1141
  #: app/libraries/main.php:2795
1142
  msgid "Radio Buttons"
1143
  msgstr ""
1144
 
1145
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1146
  #: app/features/mec/meta_boxes/search_form.php:34
1147
  #: app/features/mec/meta_boxes/search_form.php:41
1148
  #: app/features/mec/meta_boxes/search_form.php:48
1215
  msgid "Dropdown"
1216
  msgstr ""
1217
 
1218
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1219
  #: app/libraries/main.php:2886
1220
  msgid "Agreement"
1221
  msgstr ""
1222
 
1223
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1224
  #: app/libraries/main.php:2727
1225
  msgid "Paragraph"
1226
  msgstr ""
1227
 
1228
+ #: app/features/events.php:2992 app/features/events.php:3009
1229
+ #: app/features/events.php:3026 app/features/events.php:3043
1230
  #, php-format
1231
  msgid "Show all %s"
1232
  msgstr ""
1233
 
1234
+ #: app/features/events.php:2992
1235
  msgid "labels"
1236
  msgstr ""
1237
 
1238
+ #: app/features/events.php:3009
1239
  msgid "locations"
1240
  msgstr ""
1241
 
1242
+ #: app/features/events.php:3026
1243
  msgid "organizers"
1244
  msgstr ""
1245
 
1246
+ #: app/features/events.php:3073 app/features/events.php:3265
1247
+ #: app/features/events.php:3307 app/features/ix.php:2743
1248
  #: app/features/ix.php:2784 app/features/locations.php:58
1249
  #: app/features/locations.php:230 app/features/locations.php:287
1250
  #: app/features/locations.php:289 app/features/locations.php:298
1268
  msgid "Location"
1269
  msgstr "helyszín"
1270
 
1271
+ #: app/features/events.php:3074 app/features/events.php:3265
1272
+ #: app/features/events.php:3307 app/features/ix.php:2743
1273
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1274
  #: app/features/mec/meta_boxes/search_form.php:45
1275
  #: app/features/mec/meta_boxes/search_form.php:107
1292
  msgid "Organizer"
1293
  msgstr "Szervező"
1294
 
1295
+ #: app/features/events.php:3078
1296
  msgid "Repeat"
1297
  msgstr ""
1298
 
1299
+ #: app/features/events.php:3079
1300
  msgid "Author"
1301
  msgstr ""
1302
 
1303
+ #: app/features/events.php:3200 app/features/events.php:3201
1304
  msgid "iCal Export"
1305
  msgstr "iCal naptárba mentés"
1306
 
1307
+ #: app/features/events.php:3203 app/features/events.php:3204
1308
  msgid "CSV Export"
1309
  msgstr ""
1310
 
1311
+ #: app/features/events.php:3206 app/features/events.php:3207
1312
  msgid "MS Excel Export"
1313
  msgstr ""
1314
 
1315
+ #: app/features/events.php:3209 app/features/events.php:3210
1316
  msgid "XML Export"
1317
  msgstr ""
1318
 
1319
+ #: app/features/events.php:3212 app/features/events.php:3213
1320
  msgid "JSON Export"
1321
  msgstr ""
1322
 
1323
+ #: app/features/events.php:3215 app/features/events.php:3216
1324
+ #: app/features/events.php:3397
1325
  msgid "Duplicate"
1326
  msgstr ""
1327
 
1328
+ #: app/features/events.php:3265 app/features/events.php:3307
1329
  #: app/features/ix.php:2743 app/features/ix.php:2784
1330
  #: app/features/labels.php:177 app/features/locations.php:229
1331
  #: app/features/organizers.php:203 app/features/speakers.php:246
1332
  msgid "ID"
1333
  msgstr ""
1334
 
1335
+ #: app/features/events.php:3265 app/features/events.php:3307
1336
  #: app/features/ix.php:2743 app/features/ix.php:2784
1337
  msgid "Link"
1338
  msgstr ""
1339
 
1340
+ #: app/features/events.php:3265 app/features/events.php:3307
1341
  #, php-format
1342
  msgid "%s Tel"
1343
  msgstr ""
1344
 
1345
+ #: app/features/events.php:3265 app/features/events.php:3307
1346
  #, php-format
1347
  msgid "%s Email"
1348
  msgstr ""
1834
  msgid "Import all of your Facebook events into MEC."
1835
  msgstr ""
1836
 
1837
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1838
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1839
  msgid "Documentation"
1840
  msgstr ""
2187
  msgstr ""
2188
 
2189
  #: app/features/locations.php:59 app/features/mec.php:337
2190
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2191
  #: app/libraries/main.php:4838
2192
  msgid "Locations"
2193
  msgstr ""
2345
  msgid "Support"
2346
  msgstr ""
2347
 
2348
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2349
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2350
  #: app/libraries/main.php:4840
2351
  msgid "Organizers"
2352
  msgstr ""
2353
 
2354
  #: app/features/mec.php:346 app/features/mec.php:366
2355
+ #: app/features/mec/dashboard.php:236
2356
  msgid "Shortcodes"
2357
  msgstr ""
2358
 
2686
  msgid "Update"
2687
  msgstr ""
2688
 
2689
+ #: app/features/mec/dashboard.php:92
2690
  #, php-format
2691
  msgid ""
2692
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2693
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2694
+ "Spots, etc you should upgrade to the Pro version."
2695
  msgstr ""
2696
 
2697
+ #: app/features/mec/dashboard.php:92
2698
  msgid "lite"
2699
  msgstr ""
2700
 
2701
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2702
+ msgid "GO PREMIUM"
2703
+ msgstr ""
2704
+
2705
+ #: app/features/mec/dashboard.php:98
2706
+ #, php-format
2707
+ msgid ""
2708
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2709
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2710
  msgstr ""
2711
 
2712
+ #: app/features/mec/dashboard.php:98
2713
+ msgid "WordPress"
2714
+ msgstr ""
2715
+
2716
+ #: app/features/mec/dashboard.php:98
2717
+ msgid "Copouns!"
2718
+ msgstr ""
2719
+
2720
+ #: app/features/mec/dashboard.php:127
2721
  msgid "Getting started with Modern Events Calendar"
2722
  msgstr ""
2723
 
2724
+ #: app/features/mec/dashboard.php:128
2725
  msgid ""
2726
  "In this short video, you can learn how to make an event and put a calendar "
2727
  "on your website. Please watch this 2 minutes video to the end."
2728
  msgstr ""
2729
 
2730
+ #: app/features/mec/dashboard.php:144
2731
  msgid "MEC Activate"
2732
  msgstr ""
2733
 
2734
+ #: app/features/mec/dashboard.php:150
2735
  msgid ""
2736
  "In order to use all plugin features and options, please enter your purchase "
2737
  "code."
2738
  msgstr ""
2739
 
2740
+ #: app/features/mec/dashboard.php:208
2741
  msgid "Activate Addons"
2742
  msgstr ""
2743
 
2744
+ #: app/features/mec/dashboard.php:217
2745
  msgid "You cannot access this section."
2746
  msgstr ""
2747
 
2748
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2749
  msgid "Upcoming Events"
2750
  msgstr ""
2751
 
2752
+ #: app/features/mec/dashboard.php:285
2753
  msgid "Popular Gateways"
2754
  msgstr ""
2755
 
2756
+ #: app/features/mec/dashboard.php:339
2757
  msgid "Total Bookings"
2758
  msgstr ""
2759
 
2760
+ #: app/features/mec/dashboard.php:366
2761
  msgid "This Month"
2762
  msgstr ""
2763
 
2764
+ #: app/features/mec/dashboard.php:367
2765
  msgid "Last Month"
2766
  msgstr ""
2767
 
2768
+ #: app/features/mec/dashboard.php:368
2769
  msgid "This Year"
2770
  msgstr ""
2771
 
2772
+ #: app/features/mec/dashboard.php:369
2773
  msgid "Last Year"
2774
  msgstr ""
2775
 
2776
+ #: app/features/mec/dashboard.php:381
2777
  msgid "Bar"
2778
  msgstr ""
2779
 
2780
+ #: app/features/mec/dashboard.php:382
2781
  msgid "Line"
2782
  msgstr ""
2783
 
2784
+ #: app/features/mec/dashboard.php:384
2785
  msgid "Filter"
2786
  msgstr ""
2787
 
2788
+ #: app/features/mec/dashboard.php:400
2789
  #, php-format
2790
  msgid "Total Sells (%s)"
2791
  msgstr ""
2792
 
2793
+ #: app/features/mec/dashboard.php:421
2794
  msgid "Change Log"
2795
  msgstr ""
2796
 
4130
  msgstr ""
4131
 
4132
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4133
+ #: app/libraries/notifications.php:478
4134
  msgid "Booking Reminder"
4135
  msgstr ""
4136
 
5208
  "soon as possible."
5209
  msgstr ""
5210
 
 
 
 
 
5211
  #: app/features/mec/support.php:128
5212
  msgid "OPEN A TICKET"
5213
  msgstr ""
5366
  msgstr ""
5367
 
5368
  #: app/features/search_bar/search_result.php:11
5369
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5370
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5371
  #: app/skins/single.php:160 app/skins/single.php:708
5372
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5930
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
5931
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5932
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5933
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
5934
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5935
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
5936
  #: app/skins/single.php:729 app/skins/single/default.php:233
5950
 
5951
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
5952
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5953
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
5954
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
5955
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
5956
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
5957
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6015
  msgid "Skin controller does not exist."
6016
  msgstr ""
6017
 
6018
+ #: app/libraries/notifications.php:60
6019
  msgid "Please verify your email."
6020
  msgstr ""
6021
 
6022
+ #: app/libraries/notifications.php:139
6023
  msgid "Your booking is received."
6024
  msgstr ""
6025
 
6026
+ #: app/libraries/notifications.php:224
6027
  msgid "Your booking is confirmed."
6028
  msgstr ""
6029
 
6030
+ #: app/libraries/notifications.php:349
6031
  #, fuzzy
6032
  #| msgid "Bookings"
6033
  msgid "booking canceled."
6034
  msgstr "Foglalások"
6035
 
6036
+ #: app/libraries/notifications.php:410
6037
  msgid "A new booking is received."
6038
  msgstr ""
6039
 
6040
+ #: app/libraries/notifications.php:561
6041
  msgid "A new event is added."
6042
  msgstr ""
6043
 
6044
+ #: app/libraries/notifications.php:746
6045
  msgid "to"
6046
  msgstr ""
6047
 
6048
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6049
  msgid "+ Add to Google Calendar"
6050
  msgstr "+ Google Naptárba mentés"
6051
 
6052
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6053
  msgid "+ iCal export"
6054
  msgstr "+ iCal Exportálás"
6055
 
6056
+ #: app/libraries/notifications.php:821
6057
  msgid "Yes"
6058
  msgstr ""
6059
 
6060
+ #: app/libraries/notifications.php:821
6061
  msgid "No"
6062
  msgstr ""
6063
 
6409
  msgid "http://webnus.net"
6410
  msgstr ""
6411
 
6412
+ #, fuzzy
6413
+ #~| msgid "First name"
6414
+ #~ msgid " - Ticket"
6415
+ #~ msgstr "Keresztnév"
6416
+
6417
  #, fuzzy
6418
  #~| msgid "Payment is invalid."
6419
  #~ msgid "Uploaded file type is not valid."
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: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 16:00+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
@@ -76,7 +76,7 @@ msgid "Event Color"
76
  msgstr "Colore Evento"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:347
79
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
80
  #: app/features/mec/support.php:20 app/libraries/main.php:587
81
  msgid "Settings"
82
  msgstr "Impostazioni"
@@ -252,7 +252,7 @@ msgid "MEC Activation"
252
  msgstr "Attivazione"
253
 
254
  #: app/features/events.php:148 app/features/ix/export.php:34
255
- #: app/features/mec/dashboard.php:202 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 "Eventi"
@@ -270,7 +270,7 @@ msgstr "Evento"
270
  msgid "Add Event"
271
  msgstr "Aggiungi Evento"
272
 
273
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
274
  msgid "Add New Event"
275
  msgstr "Aggiungi nuovo Evento"
276
 
@@ -295,7 +295,7 @@ msgstr "Visualizza Evento"
295
  msgid "No events found in Trash!"
296
  msgstr "Nessun evento trovato nel cestino!"
297
 
298
- #: app/features/events.php:173 app/features/events.php:3078
299
  #: app/features/mec/meta_boxes/display_options.php:828
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -315,7 +315,7 @@ msgstr "Nessun evento trovato nel cestino!"
315
  msgid "Category"
316
  msgstr "Categoria"
317
 
318
- #: app/features/events.php:174 app/features/events.php:3049
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
321
  msgid "Categories"
@@ -389,8 +389,8 @@ msgstr ""
389
  msgid "Event Details"
390
  msgstr "Dettaglio Evento"
391
 
392
- #: app/features/events.php:333 app/features/events.php:3271
393
- #: app/features/events.php:3313 app/features/fes/form.php:706
394
  #: app/features/ix.php:2743 app/features/ix.php:2784
395
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
396
  #: app/widgets/single.php:103
@@ -415,19 +415,19 @@ msgstr "Dati dell'ospite"
415
  #: app/features/events.php:443 app/features/events.php:2261
416
  #: app/features/fes/form.php:668 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Nome"
422
 
423
  #: app/features/events.php:444 app/features/events.php:2272
424
- #: app/features/events.php:2350 app/features/fes/form.php:664
425
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
426
  #: app/features/organizers.php:111 app/features/organizers.php:152
427
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
428
  #: app/features/speakers.php:184 app/libraries/main.php:1471
429
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
430
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
431
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
432
  #: app/skins/single.php:836 app/skins/single/default.php:212
433
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -440,11 +440,11 @@ msgid "Date and Time"
440
  msgstr "Data e Ora"
441
 
442
  #: app/features/events.php:452 app/features/events.php:458
443
- #: app/features/events.php:3081 app/features/events.php:3271
444
- #: app/features/events.php:3313 app/features/fes/form.php:236
445
  #: app/features/fes/form.php:240 app/features/ix.php:2743
446
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
447
- #: app/features/mec/dashboard.php:346
448
  #: app/features/mec/meta_boxes/display_options.php:44
449
  #: app/features/mec/meta_boxes/display_options.php:185
450
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -476,11 +476,11 @@ msgid "PM"
476
  msgstr "PM"
477
 
478
  #: app/features/events.php:544 app/features/events.php:549
479
- #: app/features/events.php:3082 app/features/events.php:3271
480
- #: app/features/events.php:3313 app/features/fes/form.php:276
481
  #: app/features/fes/form.php:280 app/features/ix.php:2743
482
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
483
- #: app/features/mec/dashboard.php:347
484
  msgid "End Date"
485
  msgstr "Data di fine"
486
 
@@ -597,7 +597,7 @@ msgid "Repeats"
597
  msgstr "Ripeti"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Giornaliero"
603
 
@@ -619,12 +619,12 @@ msgid "Weekly"
619
  msgstr "Settimanale"
620
 
621
  #: app/features/events.php:738 app/features/fes/form.php:343
622
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
623
  msgid "Monthly"
624
  msgstr "Mensile"
625
 
626
  #: app/features/events.php:745 app/features/fes/form.php:344
627
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
628
  msgid "Yearly"
629
  msgstr "Annuale"
630
 
@@ -789,7 +789,7 @@ msgstr ""
789
  msgid "Exclude certain days"
790
  msgstr "Escludi certi giorni"
791
 
792
- #: app/features/events.php:1141 app/features/events.php:2351
793
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
794
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
795
  #: app/modules/booking/steps/tickets.php:22
@@ -833,8 +833,8 @@ msgstr ""
833
  #: app/features/events.php:1239 app/features/events.php:1278
834
  #: app/features/events.php:1313 app/features/events.php:1345
835
  #: app/features/events.php:1374 app/features/events.php:2130
836
- #: app/features/events.php:2177 app/features/events.php:3077
837
- #: app/features/events.php:3271 app/features/events.php:3313
838
  #: app/features/fes/form.php:225 app/features/ix.php:2743
839
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
840
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1017,13 +1017,13 @@ msgid "Ticket Name"
1017
  msgstr "Nome biglietto/ticket"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
- #: app/features/events.php:3271 app/features/events.php:3313
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr "Ora di inizio"
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
- #: app/features/events.php:3271 app/features/events.php:3313
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr "Ora di fine"
@@ -1145,53 +1145,53 @@ msgstr "Massimo numero di eventi"
1145
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1146
  msgstr ""
1147
 
1148
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1149
  #: app/libraries/main.php:2523
1150
  #, fuzzy
1151
  #| msgid "Name"
1152
  msgid "MEC Name"
1153
  msgstr "Nome"
1154
 
1155
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1156
  #: app/libraries/main.php:2552
1157
  #, fuzzy
1158
  #| msgid "Email"
1159
  msgid "MEC Email"
1160
  msgstr "Email"
1161
 
1162
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1163
  #: app/libraries/main.php:2493
1164
  msgid "Text"
1165
  msgstr "Testo"
1166
 
1167
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1168
  #: app/features/organizers.php:103 app/features/organizers.php:148
1169
  #: app/features/speakers.php:116 app/features/speakers.php:180
1170
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1171
  msgid "Tel"
1172
  msgstr "Tel"
1173
 
1174
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1175
  #: app/libraries/main.php:2611
1176
  msgid "File"
1177
  msgstr ""
1178
 
1179
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1180
  #: app/libraries/main.php:2698
1181
  msgid "Textarea"
1182
  msgstr "Area di testo"
1183
 
1184
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1185
  #: app/libraries/main.php:2751
1186
  msgid "Checkboxes"
1187
  msgstr "Caselle di selezione"
1188
 
1189
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1190
  #: app/libraries/main.php:2795
1191
  msgid "Radio Buttons"
1192
  msgstr "Opzioni di selezione"
1193
 
1194
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1195
  #: app/features/mec/meta_boxes/search_form.php:34
1196
  #: app/features/mec/meta_boxes/search_form.php:41
1197
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1264,36 +1264,36 @@ msgstr "Opzioni di selezione"
1264
  msgid "Dropdown"
1265
  msgstr "Casella di selezione"
1266
 
1267
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1268
  #: app/libraries/main.php:2886
1269
  msgid "Agreement"
1270
  msgstr ""
1271
 
1272
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1273
  #: app/libraries/main.php:2727
1274
  msgid "Paragraph"
1275
  msgstr "Paragrafo"
1276
 
1277
- #: app/features/events.php:2998 app/features/events.php:3015
1278
- #: app/features/events.php:3032 app/features/events.php:3049
1279
  #, php-format
1280
  msgid "Show all %s"
1281
  msgstr ""
1282
 
1283
- #: app/features/events.php:2998
1284
  msgid "labels"
1285
  msgstr "etichette"
1286
 
1287
- #: app/features/events.php:3015
1288
  msgid "locations"
1289
  msgstr ""
1290
 
1291
- #: app/features/events.php:3032
1292
  msgid "organizers"
1293
  msgstr ""
1294
 
1295
- #: app/features/events.php:3079 app/features/events.php:3271
1296
- #: app/features/events.php:3313 app/features/ix.php:2743
1297
  #: app/features/ix.php:2784 app/features/locations.php:58
1298
  #: app/features/locations.php:230 app/features/locations.php:287
1299
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1317,8 +1317,8 @@ msgstr ""
1317
  msgid "Location"
1318
  msgstr "Luogo"
1319
 
1320
- #: app/features/events.php:3080 app/features/events.php:3271
1321
- #: app/features/events.php:3313 app/features/ix.php:2743
1322
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1323
  #: app/features/mec/meta_boxes/search_form.php:45
1324
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1341,57 +1341,57 @@ msgstr "Luogo"
1341
  msgid "Organizer"
1342
  msgstr "Organizzatore"
1343
 
1344
- #: app/features/events.php:3084
1345
  msgid "Repeat"
1346
  msgstr "Ripeti"
1347
 
1348
- #: app/features/events.php:3085
1349
  msgid "Author"
1350
  msgstr "Autore"
1351
 
1352
- #: app/features/events.php:3206 app/features/events.php:3207
1353
  msgid "iCal Export"
1354
  msgstr "esporta iCal"
1355
 
1356
- #: app/features/events.php:3209 app/features/events.php:3210
1357
  msgid "CSV Export"
1358
  msgstr "Esporta CSV"
1359
 
1360
- #: app/features/events.php:3212 app/features/events.php:3213
1361
  msgid "MS Excel Export"
1362
  msgstr "Esporta Excel"
1363
 
1364
- #: app/features/events.php:3215 app/features/events.php:3216
1365
  msgid "XML Export"
1366
  msgstr "Esporta XML"
1367
 
1368
- #: app/features/events.php:3218 app/features/events.php:3219
1369
  msgid "JSON Export"
1370
  msgstr "Esporta JSON"
1371
 
1372
- #: app/features/events.php:3221 app/features/events.php:3222
1373
- #: app/features/events.php:3403
1374
  msgid "Duplicate"
1375
  msgstr "Duplica"
1376
 
1377
- #: app/features/events.php:3271 app/features/events.php:3313
1378
  #: app/features/ix.php:2743 app/features/ix.php:2784
1379
  #: app/features/labels.php:177 app/features/locations.php:229
1380
  #: app/features/organizers.php:203 app/features/speakers.php:246
1381
  msgid "ID"
1382
  msgstr "ID"
1383
 
1384
- #: app/features/events.php:3271 app/features/events.php:3313
1385
  #: app/features/ix.php:2743 app/features/ix.php:2784
1386
  msgid "Link"
1387
  msgstr "Link"
1388
 
1389
- #: app/features/events.php:3271 app/features/events.php:3313
1390
  #, php-format
1391
  msgid "%s Tel"
1392
  msgstr ""
1393
 
1394
- #: app/features/events.php:3271 app/features/events.php:3313
1395
  #, php-format
1396
  msgid "%s Email"
1397
  msgstr ""
@@ -1915,7 +1915,7 @@ msgstr "Importa dal calendario Facebook"
1915
  msgid "Import all of your Facebook events into MEC."
1916
  msgstr "Importa tutti gli eventi dal tuo Facebook in MEC."
1917
 
1918
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1919
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1920
  msgid "Documentation"
1921
  msgstr "Documentazione"
@@ -2310,7 +2310,7 @@ msgid "Event %s"
2310
  msgstr ""
2311
 
2312
  #: app/features/locations.php:59 app/features/mec.php:337
2313
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2314
  #: app/libraries/main.php:4838
2315
  msgid "Locations"
2316
  msgstr "Luoghi"
@@ -2476,14 +2476,14 @@ msgstr "Supporto"
2476
  msgid "Support"
2477
  msgstr "Supporto"
2478
 
2479
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2480
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2481
  #: app/libraries/main.php:4840
2482
  msgid "Organizers"
2483
  msgstr "Organizzatori"
2484
 
2485
  #: app/features/mec.php:346 app/features/mec.php:366
2486
- #: app/features/mec/dashboard.php:209
2487
  msgid "Shortcodes"
2488
  msgstr "Shortcode"
2489
 
@@ -2831,102 +2831,119 @@ msgstr ""
2831
  msgid "Update"
2832
  msgstr "Aggiorna Etichetta"
2833
 
2834
- #: app/features/mec/dashboard.php:90
2835
  #, php-format
2836
  msgid ""
2837
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2838
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2839
- "Spots, etc you should %s to the Pro version."
2840
  msgstr ""
2841
 
2842
- #: app/features/mec/dashboard.php:90
2843
  msgid "lite"
2844
  msgstr ""
2845
 
2846
- #: app/features/mec/dashboard.php:90
2847
- msgid "upgrade"
 
 
 
 
 
 
 
2848
  msgstr ""
2849
 
2850
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2851
  #, fuzzy
2852
  #| msgid "Modern Events Calendar"
2853
  msgid "Getting started with Modern Events Calendar"
2854
  msgstr "Calendario moderno degli eventi"
2855
 
2856
- #: app/features/mec/dashboard.php:101
2857
  msgid ""
2858
  "In this short video, you can learn how to make an event and put a calendar "
2859
  "on your website. Please watch this 2 minutes video to the end."
2860
  msgstr ""
2861
 
2862
- #: app/features/mec/dashboard.php:117
2863
  #, fuzzy
2864
  #| msgid "MEC Activation"
2865
  msgid "MEC Activate"
2866
  msgstr "Attivazione"
2867
 
2868
- #: app/features/mec/dashboard.php:123
2869
  msgid ""
2870
  "In order to use all plugin features and options, please enter your purchase "
2871
  "code."
2872
  msgstr ""
2873
 
2874
- #: app/features/mec/dashboard.php:181
2875
  #, fuzzy
2876
  #| msgid "MEC Activation"
2877
  msgid "Activate Addons"
2878
  msgstr "Attivazione"
2879
 
2880
- #: app/features/mec/dashboard.php:190
2881
  msgid "You cannot access this section."
2882
  msgstr ""
2883
 
2884
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2885
  msgid "Upcoming Events"
2886
  msgstr ""
2887
 
2888
- #: app/features/mec/dashboard.php:258
2889
  msgid "Popular Gateways"
2890
  msgstr ""
2891
 
2892
- #: app/features/mec/dashboard.php:312
2893
  msgid "Total Bookings"
2894
  msgstr ""
2895
 
2896
- #: app/features/mec/dashboard.php:339
2897
  msgid "This Month"
2898
  msgstr ""
2899
 
2900
- #: app/features/mec/dashboard.php:340
2901
  msgid "Last Month"
2902
  msgstr ""
2903
 
2904
- #: app/features/mec/dashboard.php:341
2905
  msgid "This Year"
2906
  msgstr ""
2907
 
2908
- #: app/features/mec/dashboard.php:342
2909
  msgid "Last Year"
2910
  msgstr ""
2911
 
2912
- #: app/features/mec/dashboard.php:354
2913
  msgid "Bar"
2914
  msgstr ""
2915
 
2916
- #: app/features/mec/dashboard.php:355
2917
  msgid "Line"
2918
  msgstr ""
2919
 
2920
- #: app/features/mec/dashboard.php:357
2921
  msgid "Filter"
2922
  msgstr ""
2923
 
2924
- #: app/features/mec/dashboard.php:373
2925
  #, php-format
2926
  msgid "Total Sells (%s)"
2927
  msgstr ""
2928
 
2929
- #: app/features/mec/dashboard.php:394
2930
  msgid "Change Log"
2931
  msgstr "Log modifiche"
2932
 
@@ -4320,7 +4337,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4320
  msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
4321
 
4322
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4323
- #: app/libraries/notifications.php:405
4324
  msgid "Booking Reminder"
4325
  msgstr ""
4326
 
@@ -5551,10 +5568,6 @@ msgstr ""
5551
  "soddisfatti. Se hai problemi, non esitate a contattarci, risponderemo al più "
5552
  "presto."
5553
 
5554
- #: app/features/mec/support.php:126
5555
- msgid "GO PREMIUM"
5556
- msgstr ""
5557
-
5558
  #: app/features/mec/support.php:128
5559
  msgid "OPEN A TICKET"
5560
  msgstr "APRI UN TICKET"
@@ -5723,7 +5736,7 @@ msgid "No search result."
5723
  msgstr ""
5724
 
5725
  #: app/features/search_bar/search_result.php:11
5726
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5727
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5728
  #: app/skins/single.php:160 app/skins/single.php:708
5729
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6318,7 +6331,7 @@ msgstr ""
6318
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6319
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6320
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6321
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6322
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6323
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6324
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6338,8 +6351,8 @@ msgstr ""
6338
 
6339
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6340
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6341
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6342
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6343
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6344
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6345
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6403,49 +6416,49 @@ msgstr "In attesa"
6403
  msgid "Skin controller does not exist."
6404
  msgstr "Non esiste il controllo dello stile."
6405
 
6406
- #: app/libraries/notifications.php:61
6407
  msgid "Please verify your email."
6408
  msgstr "Si prega di verificare la propria email."
6409
 
6410
- #: app/libraries/notifications.php:125
6411
  msgid "Your booking is received."
6412
  msgstr ""
6413
 
6414
- #: app/libraries/notifications.php:193
6415
  msgid "Your booking is confirmed."
6416
  msgstr "La tua prenotazione è confermata."
6417
 
6418
- #: app/libraries/notifications.php:282
6419
  #, fuzzy
6420
  #| msgid "Your booking cannot be canceled."
6421
  msgid "booking canceled."
6422
  msgstr "La tua prenotazione non può essere cancellata."
6423
 
6424
- #: app/libraries/notifications.php:337
6425
  msgid "A new booking is received."
6426
  msgstr "Una nuova prenotazione è stata ricevuta."
6427
 
6428
- #: app/libraries/notifications.php:488
6429
  msgid "A new event is added."
6430
  msgstr "Un nuovo evento è stato aggiunto."
6431
 
6432
- #: app/libraries/notifications.php:674
6433
  msgid "to"
6434
  msgstr ""
6435
 
6436
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6437
  msgid "+ Add to Google Calendar"
6438
  msgstr "+ Aggiungi a Google Calendar"
6439
 
6440
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6441
  msgid "+ iCal export"
6442
  msgstr "+ Esporta iCal"
6443
 
6444
- #: app/libraries/notifications.php:752
6445
  msgid "Yes"
6446
  msgstr ""
6447
 
6448
- #: app/libraries/notifications.php:752
6449
  msgid "No"
6450
  msgstr ""
6451
 
@@ -6872,6 +6885,11 @@ msgstr ""
6872
  #~ msgid "Book Date"
6873
  #~ msgstr "Data Prenotazione"
6874
 
 
 
 
 
 
6875
  #~ msgid "Confirm"
6876
  #~ msgstr "Conferma"
6877
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:23+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: it_IT\n"
76
  msgstr "Colore Evento"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:347
79
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
80
  #: app/features/mec/support.php:20 app/libraries/main.php:587
81
  msgid "Settings"
82
  msgstr "Impostazioni"
252
  msgstr "Attivazione"
253
 
254
  #: app/features/events.php:148 app/features/ix/export.php:34
255
+ #: app/features/mec/dashboard.php:229 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 "Eventi"
270
  msgid "Add Event"
271
  msgstr "Aggiungi Evento"
272
 
273
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
274
  msgid "Add New Event"
275
  msgstr "Aggiungi nuovo Evento"
276
 
295
  msgid "No events found in Trash!"
296
  msgstr "Nessun evento trovato nel cestino!"
297
 
298
+ #: app/features/events.php:173 app/features/events.php:3072
299
  #: app/features/mec/meta_boxes/display_options.php:828
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
315
  msgid "Category"
316
  msgstr "Categoria"
317
 
318
+ #: app/features/events.php:174 app/features/events.php:3043
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
321
  msgid "Categories"
389
  msgid "Event Details"
390
  msgstr "Dettaglio Evento"
391
 
392
+ #: app/features/events.php:333 app/features/events.php:3265
393
+ #: app/features/events.php:3307 app/features/fes/form.php:706
394
  #: app/features/ix.php:2743 app/features/ix.php:2784
395
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
396
  #: app/widgets/single.php:103
415
  #: app/features/events.php:443 app/features/events.php:2261
416
  #: app/features/fes/form.php:668 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Nome"
422
 
423
  #: app/features/events.php:444 app/features/events.php:2272
424
+ #: app/features/events.php:2348 app/features/fes/form.php:664
425
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
426
  #: app/features/organizers.php:111 app/features/organizers.php:152
427
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
428
  #: app/features/speakers.php:184 app/libraries/main.php:1471
429
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
430
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
431
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
432
  #: app/skins/single.php:836 app/skins/single/default.php:212
433
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
440
  msgstr "Data e Ora"
441
 
442
  #: app/features/events.php:452 app/features/events.php:458
443
+ #: app/features/events.php:3075 app/features/events.php:3265
444
+ #: app/features/events.php:3307 app/features/fes/form.php:236
445
  #: app/features/fes/form.php:240 app/features/ix.php:2743
446
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
447
+ #: app/features/mec/dashboard.php:373
448
  #: app/features/mec/meta_boxes/display_options.php:44
449
  #: app/features/mec/meta_boxes/display_options.php:185
450
  #: app/features/mec/meta_boxes/display_options.php:337
476
  msgstr "PM"
477
 
478
  #: app/features/events.php:544 app/features/events.php:549
479
+ #: app/features/events.php:3076 app/features/events.php:3265
480
+ #: app/features/events.php:3307 app/features/fes/form.php:276
481
  #: app/features/fes/form.php:280 app/features/ix.php:2743
482
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
483
+ #: app/features/mec/dashboard.php:374
484
  msgid "End Date"
485
  msgstr "Data di fine"
486
 
597
  msgstr "Ripeti"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Giornaliero"
603
 
619
  msgstr "Settimanale"
620
 
621
  #: app/features/events.php:738 app/features/fes/form.php:343
622
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
623
  msgid "Monthly"
624
  msgstr "Mensile"
625
 
626
  #: app/features/events.php:745 app/features/fes/form.php:344
627
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
628
  msgid "Yearly"
629
  msgstr "Annuale"
630
 
789
  msgid "Exclude certain days"
790
  msgstr "Escludi certi giorni"
791
 
792
+ #: app/features/events.php:1141 app/features/events.php:2349
793
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
794
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
795
  #: app/modules/booking/steps/tickets.php:22
833
  #: app/features/events.php:1239 app/features/events.php:1278
834
  #: app/features/events.php:1313 app/features/events.php:1345
835
  #: app/features/events.php:1374 app/features/events.php:2130
836
+ #: app/features/events.php:2177 app/features/events.php:3071
837
+ #: app/features/events.php:3265 app/features/events.php:3307
838
  #: app/features/fes/form.php:225 app/features/ix.php:2743
839
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
840
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1017
  msgstr "Nome biglietto/ticket"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
+ #: app/features/events.php:3265 app/features/events.php:3307
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr "Ora di inizio"
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
+ #: app/features/events.php:3265 app/features/events.php:3307
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr "Ora di fine"
1145
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1146
  msgstr ""
1147
 
1148
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1149
  #: app/libraries/main.php:2523
1150
  #, fuzzy
1151
  #| msgid "Name"
1152
  msgid "MEC Name"
1153
  msgstr "Nome"
1154
 
1155
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1156
  #: app/libraries/main.php:2552
1157
  #, fuzzy
1158
  #| msgid "Email"
1159
  msgid "MEC Email"
1160
  msgstr "Email"
1161
 
1162
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1163
  #: app/libraries/main.php:2493
1164
  msgid "Text"
1165
  msgstr "Testo"
1166
 
1167
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1168
  #: app/features/organizers.php:103 app/features/organizers.php:148
1169
  #: app/features/speakers.php:116 app/features/speakers.php:180
1170
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1171
  msgid "Tel"
1172
  msgstr "Tel"
1173
 
1174
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1175
  #: app/libraries/main.php:2611
1176
  msgid "File"
1177
  msgstr ""
1178
 
1179
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1180
  #: app/libraries/main.php:2698
1181
  msgid "Textarea"
1182
  msgstr "Area di testo"
1183
 
1184
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1185
  #: app/libraries/main.php:2751
1186
  msgid "Checkboxes"
1187
  msgstr "Caselle di selezione"
1188
 
1189
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1190
  #: app/libraries/main.php:2795
1191
  msgid "Radio Buttons"
1192
  msgstr "Opzioni di selezione"
1193
 
1194
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1195
  #: app/features/mec/meta_boxes/search_form.php:34
1196
  #: app/features/mec/meta_boxes/search_form.php:41
1197
  #: app/features/mec/meta_boxes/search_form.php:48
1264
  msgid "Dropdown"
1265
  msgstr "Casella di selezione"
1266
 
1267
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1268
  #: app/libraries/main.php:2886
1269
  msgid "Agreement"
1270
  msgstr ""
1271
 
1272
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1273
  #: app/libraries/main.php:2727
1274
  msgid "Paragraph"
1275
  msgstr "Paragrafo"
1276
 
1277
+ #: app/features/events.php:2992 app/features/events.php:3009
1278
+ #: app/features/events.php:3026 app/features/events.php:3043
1279
  #, php-format
1280
  msgid "Show all %s"
1281
  msgstr ""
1282
 
1283
+ #: app/features/events.php:2992
1284
  msgid "labels"
1285
  msgstr "etichette"
1286
 
1287
+ #: app/features/events.php:3009
1288
  msgid "locations"
1289
  msgstr ""
1290
 
1291
+ #: app/features/events.php:3026
1292
  msgid "organizers"
1293
  msgstr ""
1294
 
1295
+ #: app/features/events.php:3073 app/features/events.php:3265
1296
+ #: app/features/events.php:3307 app/features/ix.php:2743
1297
  #: app/features/ix.php:2784 app/features/locations.php:58
1298
  #: app/features/locations.php:230 app/features/locations.php:287
1299
  #: app/features/locations.php:289 app/features/locations.php:298
1317
  msgid "Location"
1318
  msgstr "Luogo"
1319
 
1320
+ #: app/features/events.php:3074 app/features/events.php:3265
1321
+ #: app/features/events.php:3307 app/features/ix.php:2743
1322
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1323
  #: app/features/mec/meta_boxes/search_form.php:45
1324
  #: app/features/mec/meta_boxes/search_form.php:107
1341
  msgid "Organizer"
1342
  msgstr "Organizzatore"
1343
 
1344
+ #: app/features/events.php:3078
1345
  msgid "Repeat"
1346
  msgstr "Ripeti"
1347
 
1348
+ #: app/features/events.php:3079
1349
  msgid "Author"
1350
  msgstr "Autore"
1351
 
1352
+ #: app/features/events.php:3200 app/features/events.php:3201
1353
  msgid "iCal Export"
1354
  msgstr "esporta iCal"
1355
 
1356
+ #: app/features/events.php:3203 app/features/events.php:3204
1357
  msgid "CSV Export"
1358
  msgstr "Esporta CSV"
1359
 
1360
+ #: app/features/events.php:3206 app/features/events.php:3207
1361
  msgid "MS Excel Export"
1362
  msgstr "Esporta Excel"
1363
 
1364
+ #: app/features/events.php:3209 app/features/events.php:3210
1365
  msgid "XML Export"
1366
  msgstr "Esporta XML"
1367
 
1368
+ #: app/features/events.php:3212 app/features/events.php:3213
1369
  msgid "JSON Export"
1370
  msgstr "Esporta JSON"
1371
 
1372
+ #: app/features/events.php:3215 app/features/events.php:3216
1373
+ #: app/features/events.php:3397
1374
  msgid "Duplicate"
1375
  msgstr "Duplica"
1376
 
1377
+ #: app/features/events.php:3265 app/features/events.php:3307
1378
  #: app/features/ix.php:2743 app/features/ix.php:2784
1379
  #: app/features/labels.php:177 app/features/locations.php:229
1380
  #: app/features/organizers.php:203 app/features/speakers.php:246
1381
  msgid "ID"
1382
  msgstr "ID"
1383
 
1384
+ #: app/features/events.php:3265 app/features/events.php:3307
1385
  #: app/features/ix.php:2743 app/features/ix.php:2784
1386
  msgid "Link"
1387
  msgstr "Link"
1388
 
1389
+ #: app/features/events.php:3265 app/features/events.php:3307
1390
  #, php-format
1391
  msgid "%s Tel"
1392
  msgstr ""
1393
 
1394
+ #: app/features/events.php:3265 app/features/events.php:3307
1395
  #, php-format
1396
  msgid "%s Email"
1397
  msgstr ""
1915
  msgid "Import all of your Facebook events into MEC."
1916
  msgstr "Importa tutti gli eventi dal tuo Facebook in MEC."
1917
 
1918
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1919
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1920
  msgid "Documentation"
1921
  msgstr "Documentazione"
2310
  msgstr ""
2311
 
2312
  #: app/features/locations.php:59 app/features/mec.php:337
2313
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2314
  #: app/libraries/main.php:4838
2315
  msgid "Locations"
2316
  msgstr "Luoghi"
2476
  msgid "Support"
2477
  msgstr "Supporto"
2478
 
2479
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2480
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2481
  #: app/libraries/main.php:4840
2482
  msgid "Organizers"
2483
  msgstr "Organizzatori"
2484
 
2485
  #: app/features/mec.php:346 app/features/mec.php:366
2486
+ #: app/features/mec/dashboard.php:236
2487
  msgid "Shortcodes"
2488
  msgstr "Shortcode"
2489
 
2831
  msgid "Update"
2832
  msgstr "Aggiorna Etichetta"
2833
 
2834
+ #: app/features/mec/dashboard.php:92
2835
  #, php-format
2836
  msgid ""
2837
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2838
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2839
+ "Spots, etc you should upgrade to the Pro version."
2840
  msgstr ""
2841
 
2842
+ #: app/features/mec/dashboard.php:92
2843
  msgid "lite"
2844
  msgstr ""
2845
 
2846
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2847
+ msgid "GO PREMIUM"
2848
+ msgstr ""
2849
+
2850
+ #: app/features/mec/dashboard.php:98
2851
+ #, php-format
2852
+ msgid ""
2853
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2854
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2855
  msgstr ""
2856
 
2857
+ #: app/features/mec/dashboard.php:98
2858
+ #, fuzzy
2859
+ #| msgid "Address"
2860
+ msgid "WordPress"
2861
+ msgstr "Indirizzo"
2862
+
2863
+ #: app/features/mec/dashboard.php:98
2864
+ msgid "Copouns!"
2865
+ msgstr ""
2866
+
2867
+ #: app/features/mec/dashboard.php:127
2868
  #, fuzzy
2869
  #| msgid "Modern Events Calendar"
2870
  msgid "Getting started with Modern Events Calendar"
2871
  msgstr "Calendario moderno degli eventi"
2872
 
2873
+ #: app/features/mec/dashboard.php:128
2874
  msgid ""
2875
  "In this short video, you can learn how to make an event and put a calendar "
2876
  "on your website. Please watch this 2 minutes video to the end."
2877
  msgstr ""
2878
 
2879
+ #: app/features/mec/dashboard.php:144
2880
  #, fuzzy
2881
  #| msgid "MEC Activation"
2882
  msgid "MEC Activate"
2883
  msgstr "Attivazione"
2884
 
2885
+ #: app/features/mec/dashboard.php:150
2886
  msgid ""
2887
  "In order to use all plugin features and options, please enter your purchase "
2888
  "code."
2889
  msgstr ""
2890
 
2891
+ #: app/features/mec/dashboard.php:208
2892
  #, fuzzy
2893
  #| msgid "MEC Activation"
2894
  msgid "Activate Addons"
2895
  msgstr "Attivazione"
2896
 
2897
+ #: app/features/mec/dashboard.php:217
2898
  msgid "You cannot access this section."
2899
  msgstr ""
2900
 
2901
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2902
  msgid "Upcoming Events"
2903
  msgstr ""
2904
 
2905
+ #: app/features/mec/dashboard.php:285
2906
  msgid "Popular Gateways"
2907
  msgstr ""
2908
 
2909
+ #: app/features/mec/dashboard.php:339
2910
  msgid "Total Bookings"
2911
  msgstr ""
2912
 
2913
+ #: app/features/mec/dashboard.php:366
2914
  msgid "This Month"
2915
  msgstr ""
2916
 
2917
+ #: app/features/mec/dashboard.php:367
2918
  msgid "Last Month"
2919
  msgstr ""
2920
 
2921
+ #: app/features/mec/dashboard.php:368
2922
  msgid "This Year"
2923
  msgstr ""
2924
 
2925
+ #: app/features/mec/dashboard.php:369
2926
  msgid "Last Year"
2927
  msgstr ""
2928
 
2929
+ #: app/features/mec/dashboard.php:381
2930
  msgid "Bar"
2931
  msgstr ""
2932
 
2933
+ #: app/features/mec/dashboard.php:382
2934
  msgid "Line"
2935
  msgstr ""
2936
 
2937
+ #: app/features/mec/dashboard.php:384
2938
  msgid "Filter"
2939
  msgstr ""
2940
 
2941
+ #: app/features/mec/dashboard.php:400
2942
  #, php-format
2943
  msgid "Total Sells (%s)"
2944
  msgstr ""
2945
 
2946
+ #: app/features/mec/dashboard.php:421
2947
  msgid "Change Log"
2948
  msgstr "Log modifiche"
2949
 
4337
  msgstr "Invia notifica all'amministratore per una nuova prenotazione ricevuta."
4338
 
4339
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4340
+ #: app/libraries/notifications.php:478
4341
  msgid "Booking Reminder"
4342
  msgstr ""
4343
 
5568
  "soddisfatti. Se hai problemi, non esitate a contattarci, risponderemo al più "
5569
  "presto."
5570
 
 
 
 
 
5571
  #: app/features/mec/support.php:128
5572
  msgid "OPEN A TICKET"
5573
  msgstr "APRI UN TICKET"
5736
  msgstr ""
5737
 
5738
  #: app/features/search_bar/search_result.php:11
5739
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5740
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5741
  #: app/skins/single.php:160 app/skins/single.php:708
5742
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6331
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6332
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6333
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6334
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6335
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6336
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6337
  #: app/skins/single.php:729 app/skins/single/default.php:233
6351
 
6352
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6353
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6354
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6355
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6356
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6357
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6358
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6416
  msgid "Skin controller does not exist."
6417
  msgstr "Non esiste il controllo dello stile."
6418
 
6419
+ #: app/libraries/notifications.php:60
6420
  msgid "Please verify your email."
6421
  msgstr "Si prega di verificare la propria email."
6422
 
6423
+ #: app/libraries/notifications.php:139
6424
  msgid "Your booking is received."
6425
  msgstr ""
6426
 
6427
+ #: app/libraries/notifications.php:224
6428
  msgid "Your booking is confirmed."
6429
  msgstr "La tua prenotazione è confermata."
6430
 
6431
+ #: app/libraries/notifications.php:349
6432
  #, fuzzy
6433
  #| msgid "Your booking cannot be canceled."
6434
  msgid "booking canceled."
6435
  msgstr "La tua prenotazione non può essere cancellata."
6436
 
6437
+ #: app/libraries/notifications.php:410
6438
  msgid "A new booking is received."
6439
  msgstr "Una nuova prenotazione è stata ricevuta."
6440
 
6441
+ #: app/libraries/notifications.php:561
6442
  msgid "A new event is added."
6443
  msgstr "Un nuovo evento è stato aggiunto."
6444
 
6445
+ #: app/libraries/notifications.php:746
6446
  msgid "to"
6447
  msgstr ""
6448
 
6449
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6450
  msgid "+ Add to Google Calendar"
6451
  msgstr "+ Aggiungi a Google Calendar"
6452
 
6453
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6454
  msgid "+ iCal export"
6455
  msgstr "+ Esporta iCal"
6456
 
6457
+ #: app/libraries/notifications.php:821
6458
  msgid "Yes"
6459
  msgstr ""
6460
 
6461
+ #: app/libraries/notifications.php:821
6462
  msgid "No"
6463
  msgstr ""
6464
 
6885
  #~ msgid "Book Date"
6886
  #~ msgstr "Data Prenotazione"
6887
 
6888
+ #, fuzzy
6889
+ #~| msgid "Ticket"
6890
+ #~ msgid " - Ticket"
6891
+ #~ msgstr "Ticket"
6892
+
6893
  #~ msgid "Confirm"
6894
  #~ msgstr "Conferma"
6895
 
languages/modern-events-calendar-lite-nb_NO.mo CHANGED
Binary file
languages/modern-events-calendar-lite-nb_NO.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 16:00+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
@@ -70,7 +70,7 @@ msgid "Event Color"
70
  msgstr "Arrangementsfarge"
71
 
72
  #: app/features/contextual.php:55 app/features/mec.php:347
73
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
74
  #: app/features/mec/support.php:20 app/libraries/main.php:587
75
  msgid "Settings"
76
  msgstr "Innstillinger"
@@ -270,7 +270,7 @@ msgid "MEC Activation"
270
  msgstr "MEC Aktivisering"
271
 
272
  #: app/features/events.php:148 app/features/ix/export.php:34
273
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
274
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
275
  msgid "Events"
276
  msgstr "Arrangementer"
@@ -288,7 +288,7 @@ msgstr "Arrangement"
288
  msgid "Add Event"
289
  msgstr "Legg til Arrangement"
290
 
291
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
292
  msgid "Add New Event"
293
  msgstr "Legg til nytt arrangement"
294
 
@@ -313,7 +313,7 @@ msgstr "Vis arrangement"
313
  msgid "No events found in Trash!"
314
  msgstr "Ingen arrangement funnet i søppelbøtta!"
315
 
316
- #: app/features/events.php:173 app/features/events.php:3078
317
  #: app/features/mec/meta_boxes/display_options.php:828
318
  #: app/features/mec/meta_boxes/search_form.php:31
319
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -333,7 +333,7 @@ msgstr "Ingen arrangement funnet i søppelbøtta!"
333
  msgid "Category"
334
  msgstr "Kategori"
335
 
336
- #: app/features/events.php:174 app/features/events.php:3049
337
  #: app/features/fes/form.php:745 app/features/mec.php:335
338
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
339
  msgid "Categories"
@@ -407,8 +407,8 @@ msgstr "Velg ikon"
407
  msgid "Event Details"
408
  msgstr "Arrangementsdetaljer"
409
 
410
- #: app/features/events.php:333 app/features/events.php:3271
411
- #: app/features/events.php:3313 app/features/fes/form.php:706
412
  #: app/features/ix.php:2743 app/features/ix.php:2784
413
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
414
  #: app/widgets/single.php:103
@@ -433,19 +433,19 @@ msgstr "Gjestedata"
433
  #: app/features/events.php:443 app/features/events.php:2261
434
  #: app/features/fes/form.php:668 app/features/labels.php:178
435
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
436
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
437
  #: app/modules/booking/steps/form.php:37
438
  msgid "Name"
439
  msgstr "Navn"
440
 
441
  #: app/features/events.php:444 app/features/events.php:2272
442
- #: app/features/events.php:2350 app/features/fes/form.php:664
443
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
444
  #: app/features/organizers.php:111 app/features/organizers.php:152
445
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
446
  #: app/features/speakers.php:184 app/libraries/main.php:1471
447
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
448
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
449
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
450
  #: app/skins/single.php:836 app/skins/single/default.php:212
451
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -458,11 +458,11 @@ msgid "Date and Time"
458
  msgstr "Dato og klokkeslett"
459
 
460
  #: app/features/events.php:452 app/features/events.php:458
461
- #: app/features/events.php:3081 app/features/events.php:3271
462
- #: app/features/events.php:3313 app/features/fes/form.php:236
463
  #: app/features/fes/form.php:240 app/features/ix.php:2743
464
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
465
- #: app/features/mec/dashboard.php:346
466
  #: app/features/mec/meta_boxes/display_options.php:44
467
  #: app/features/mec/meta_boxes/display_options.php:185
468
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -494,11 +494,11 @@ msgid "PM"
494
  msgstr "PM"
495
 
496
  #: app/features/events.php:544 app/features/events.php:549
497
- #: app/features/events.php:3082 app/features/events.php:3271
498
- #: app/features/events.php:3313 app/features/fes/form.php:276
499
  #: app/features/fes/form.php:280 app/features/ix.php:2743
500
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
501
- #: app/features/mec/dashboard.php:347
502
  msgid "End Date"
503
  msgstr "Sluttdato"
504
 
@@ -615,7 +615,7 @@ msgid "Repeats"
615
  msgstr "Gjentakelser"
616
 
617
  #: app/features/events.php:703 app/features/fes/form.php:338
618
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
619
  msgid "Daily"
620
  msgstr "Daglig"
621
 
@@ -637,12 +637,12 @@ msgid "Weekly"
637
  msgstr "Ukentlig"
638
 
639
  #: app/features/events.php:738 app/features/fes/form.php:343
640
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
641
  msgid "Monthly"
642
  msgstr "Månedlig"
643
 
644
  #: app/features/events.php:745 app/features/fes/form.php:344
645
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
646
  msgid "Yearly"
647
  msgstr "Årlig"
648
 
@@ -807,7 +807,7 @@ msgstr ""
807
  msgid "Exclude certain days"
808
  msgstr "Ekskluder bestemte dager"
809
 
810
- #: app/features/events.php:1141 app/features/events.php:2351
811
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
812
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
813
  #: app/modules/booking/steps/tickets.php:22
@@ -853,8 +853,8 @@ msgstr "Dag %s"
853
  #: app/features/events.php:1239 app/features/events.php:1278
854
  #: app/features/events.php:1313 app/features/events.php:1345
855
  #: app/features/events.php:1374 app/features/events.php:2130
856
- #: app/features/events.php:2177 app/features/events.php:3077
857
- #: app/features/events.php:3271 app/features/events.php:3313
858
  #: app/features/fes/form.php:225 app/features/ix.php:2743
859
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
860
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1040,13 +1040,13 @@ msgid "Ticket Name"
1040
  msgstr "Billettnavn"
1041
 
1042
  #: app/features/events.php:1584 app/features/events.php:1805
1043
- #: app/features/events.php:3271 app/features/events.php:3313
1044
  #: app/features/ix.php:2743 app/features/ix.php:2784
1045
  msgid "Start Time"
1046
  msgstr "Starttid"
1047
 
1048
  #: app/features/events.php:1626 app/features/events.php:1829
1049
- #: app/features/events.php:3271 app/features/events.php:3313
1050
  #: app/features/ix.php:2743 app/features/ix.php:2784
1051
  msgid "End Time"
1052
  msgstr "Sluttidspunkt"
@@ -1162,53 +1162,53 @@ msgstr "Maks Per billett"
1162
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1163
  msgstr "Maks per billett. La det stå tomt for ubegrenset."
1164
 
1165
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1166
  #: app/libraries/main.php:2523
1167
  #, fuzzy
1168
  #| msgid "Name"
1169
  msgid "MEC Name"
1170
  msgstr "Navn"
1171
 
1172
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1173
  #: app/libraries/main.php:2552
1174
  #, fuzzy
1175
  #| msgid "Email"
1176
  msgid "MEC Email"
1177
  msgstr "E-post"
1178
 
1179
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1180
  #: app/libraries/main.php:2493
1181
  msgid "Text"
1182
  msgstr "Tekst"
1183
 
1184
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1185
  #: app/features/organizers.php:103 app/features/organizers.php:148
1186
  #: app/features/speakers.php:116 app/features/speakers.php:180
1187
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1188
  msgid "Tel"
1189
  msgstr "Tlf"
1190
 
1191
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1192
  #: app/libraries/main.php:2611
1193
  msgid "File"
1194
  msgstr ""
1195
 
1196
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1197
  #: app/libraries/main.php:2698
1198
  msgid "Textarea"
1199
  msgstr "Tekstområde"
1200
 
1201
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1202
  #: app/libraries/main.php:2751
1203
  msgid "Checkboxes"
1204
  msgstr "Avmerkingsbokser"
1205
 
1206
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1207
  #: app/libraries/main.php:2795
1208
  msgid "Radio Buttons"
1209
  msgstr "Radioknapper"
1210
 
1211
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1212
  #: app/features/mec/meta_boxes/search_form.php:34
1213
  #: app/features/mec/meta_boxes/search_form.php:41
1214
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1281,36 +1281,36 @@ msgstr "Radioknapper"
1281
  msgid "Dropdown"
1282
  msgstr "Nedtrekksmeny"
1283
 
1284
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1285
  #: app/libraries/main.php:2886
1286
  msgid "Agreement"
1287
  msgstr "Avtalen"
1288
 
1289
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1290
  #: app/libraries/main.php:2727
1291
  msgid "Paragraph"
1292
  msgstr "Avsnitt"
1293
 
1294
- #: app/features/events.php:2998 app/features/events.php:3015
1295
- #: app/features/events.php:3032 app/features/events.php:3049
1296
  #, php-format
1297
  msgid "Show all %s"
1298
  msgstr "Vis alle %s"
1299
 
1300
- #: app/features/events.php:2998
1301
  msgid "labels"
1302
  msgstr "etiketter"
1303
 
1304
- #: app/features/events.php:3015
1305
  msgid "locations"
1306
  msgstr "steder"
1307
 
1308
- #: app/features/events.php:3032
1309
  msgid "organizers"
1310
  msgstr "arrangører"
1311
 
1312
- #: app/features/events.php:3079 app/features/events.php:3271
1313
- #: app/features/events.php:3313 app/features/ix.php:2743
1314
  #: app/features/ix.php:2784 app/features/locations.php:58
1315
  #: app/features/locations.php:230 app/features/locations.php:287
1316
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1334,8 +1334,8 @@ msgstr "arrangører"
1334
  msgid "Location"
1335
  msgstr "Sted"
1336
 
1337
- #: app/features/events.php:3080 app/features/events.php:3271
1338
- #: app/features/events.php:3313 app/features/ix.php:2743
1339
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1340
  #: app/features/mec/meta_boxes/search_form.php:45
1341
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1358,57 +1358,57 @@ msgstr "Sted"
1358
  msgid "Organizer"
1359
  msgstr "Arrangør"
1360
 
1361
- #: app/features/events.php:3084
1362
  msgid "Repeat"
1363
  msgstr "Gjenta"
1364
 
1365
- #: app/features/events.php:3085
1366
  msgid "Author"
1367
  msgstr "Forfatter"
1368
 
1369
- #: app/features/events.php:3206 app/features/events.php:3207
1370
  msgid "iCal Export"
1371
  msgstr "iCal-eksport"
1372
 
1373
- #: app/features/events.php:3209 app/features/events.php:3210
1374
  msgid "CSV Export"
1375
  msgstr "CSV-eksport"
1376
 
1377
- #: app/features/events.php:3212 app/features/events.php:3213
1378
  msgid "MS Excel Export"
1379
  msgstr "MS Excel Export"
1380
 
1381
- #: app/features/events.php:3215 app/features/events.php:3216
1382
  msgid "XML Export"
1383
  msgstr "XML Eksport"
1384
 
1385
- #: app/features/events.php:3218 app/features/events.php:3219
1386
  msgid "JSON Export"
1387
  msgstr "JSON Eksport"
1388
 
1389
- #: app/features/events.php:3221 app/features/events.php:3222
1390
- #: app/features/events.php:3403
1391
  msgid "Duplicate"
1392
  msgstr "Dupliser"
1393
 
1394
- #: app/features/events.php:3271 app/features/events.php:3313
1395
  #: app/features/ix.php:2743 app/features/ix.php:2784
1396
  #: app/features/labels.php:177 app/features/locations.php:229
1397
  #: app/features/organizers.php:203 app/features/speakers.php:246
1398
  msgid "ID"
1399
  msgstr "ID"
1400
 
1401
- #: app/features/events.php:3271 app/features/events.php:3313
1402
  #: app/features/ix.php:2743 app/features/ix.php:2784
1403
  msgid "Link"
1404
  msgstr "Lenke"
1405
 
1406
- #: app/features/events.php:3271 app/features/events.php:3313
1407
  #, php-format
1408
  msgid "%s Tel"
1409
  msgstr "%s Tlf"
1410
 
1411
- #: app/features/events.php:3271 app/features/events.php:3313
1412
  #, php-format
1413
  msgid "%s Email"
1414
  msgstr "%s E-post"
@@ -1918,7 +1918,7 @@ msgstr "Importer fra Facebook Kalender"
1918
  msgid "Import all of your Facebook events into MEC."
1919
  msgstr "Importer alle dine Facebook-hendelser i MEC."
1920
 
1921
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1922
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1923
  msgid "Documentation"
1924
  msgstr "Dokumentasjon"
@@ -2296,7 +2296,7 @@ msgid "Event %s"
2296
  msgstr "Arrangement %s"
2297
 
2298
  #: app/features/locations.php:59 app/features/mec.php:337
2299
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2300
  #: app/libraries/main.php:4838
2301
  msgid "Locations"
2302
  msgstr "Steder"
@@ -2464,14 +2464,14 @@ msgstr "MEC-støtte"
2464
  msgid "Support"
2465
  msgstr "Support"
2466
 
2467
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2468
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2469
  #: app/libraries/main.php:4840
2470
  msgid "Organizers"
2471
  msgstr "Arrangører"
2472
 
2473
  #: app/features/mec.php:346 app/features/mec.php:366
2474
- #: app/features/mec/dashboard.php:209
2475
  msgid "Shortcodes"
2476
  msgstr "Shortcodes"
2477
 
@@ -2815,42 +2815,63 @@ msgstr "Ranger plugin ★ ★ ★ ★ ★"
2815
  msgid "Update"
2816
  msgstr "Oppdatere %s"
2817
 
2818
- #: app/features/mec/dashboard.php:90
2819
- #, php-format
 
 
 
 
2820
  msgid ""
2821
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2822
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2823
- "Spots, etc you should %s to the Pro version."
2824
  msgstr ""
2825
  "Du bruker %s-versjonen av kalenderen for moderne aktiviteter. Hvis du vil "
2826
  "bruke avanserte booking system, moderne skins som agenda, tidsplan, murverk, "
2827
  "årlig visning, tilgjengelige spots, etc bør du %s til Pro-versjonen."
2828
 
2829
- #: app/features/mec/dashboard.php:90
2830
  msgid "lite"
2831
  msgstr "lett"
2832
 
2833
- #: app/features/mec/dashboard.php:90
2834
- msgid "upgrade"
2835
- msgstr "Oppgradere"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2836
 
2837
- #: app/features/mec/dashboard.php:100
2838
  #, fuzzy
2839
  #| msgid "Modern Events Calendar"
2840
  msgid "Getting started with Modern Events Calendar"
2841
  msgstr "Modern Events Calendar"
2842
 
2843
- #: app/features/mec/dashboard.php:101
2844
  msgid ""
2845
  "In this short video, you can learn how to make an event and put a calendar "
2846
  "on your website. Please watch this 2 minutes video to the end."
2847
  msgstr ""
2848
 
2849
- #: app/features/mec/dashboard.php:117
2850
  msgid "MEC Activate"
2851
  msgstr "MEC Aktivisering"
2852
 
2853
- #: app/features/mec/dashboard.php:123
2854
  msgid ""
2855
  "In order to use all plugin features and options, please enter your purchase "
2856
  "code."
@@ -2858,62 +2879,62 @@ msgstr ""
2858
  "For å bruke alle plugin funksjoner og alternativer, vennligst skriv inn din "
2859
  "kjøpskode."
2860
 
2861
- #: app/features/mec/dashboard.php:181
2862
  #, fuzzy
2863
  #| msgid "Activate License"
2864
  msgid "Activate Addons"
2865
  msgstr "Aktiver Lisens"
2866
 
2867
- #: app/features/mec/dashboard.php:190
2868
  msgid "You cannot access this section."
2869
  msgstr ""
2870
 
2871
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2872
  msgid "Upcoming Events"
2873
  msgstr "Kommende arrangementer"
2874
 
2875
- #: app/features/mec/dashboard.php:258
2876
  msgid "Popular Gateways"
2877
  msgstr "Populære Gatewayer"
2878
 
2879
- #: app/features/mec/dashboard.php:312
2880
  msgid "Total Bookings"
2881
  msgstr "Totalt Antall Bestillinger"
2882
 
2883
- #: app/features/mec/dashboard.php:339
2884
  msgid "This Month"
2885
  msgstr "Denne måneden"
2886
 
2887
- #: app/features/mec/dashboard.php:340
2888
  msgid "Last Month"
2889
  msgstr "Siste måned"
2890
 
2891
- #: app/features/mec/dashboard.php:341
2892
  msgid "This Year"
2893
  msgstr "Dette Året"
2894
 
2895
- #: app/features/mec/dashboard.php:342
2896
  msgid "Last Year"
2897
  msgstr "Siste År"
2898
 
2899
- #: app/features/mec/dashboard.php:354
2900
  msgid "Bar"
2901
  msgstr "Stolpe"
2902
 
2903
- #: app/features/mec/dashboard.php:355
2904
  msgid "Line"
2905
  msgstr "Linje"
2906
 
2907
- #: app/features/mec/dashboard.php:357
2908
  msgid "Filter"
2909
  msgstr "Filter"
2910
 
2911
- #: app/features/mec/dashboard.php:373
2912
  #, php-format
2913
  msgid "Total Sells (%s)"
2914
  msgstr "Totalt salg (% s)"
2915
 
2916
- #: app/features/mec/dashboard.php:394
2917
  msgid "Change Log"
2918
  msgstr "Endringslogg"
2919
 
@@ -4300,7 +4321,7 @@ msgstr ""
4300
  "Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
4301
 
4302
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4303
- #: app/libraries/notifications.php:405
4304
  msgid "Booking Reminder"
4305
  msgstr "Påminnelse angående din bestilling"
4306
 
@@ -5507,10 +5528,6 @@ msgstr ""
5507
  "Opplever du noen problemer vennligst ikke nøl med å kontakt oss, vi svarer "
5508
  "så raskt vi kan."
5509
 
5510
- #: app/features/mec/support.php:126
5511
- msgid "GO PREMIUM"
5512
- msgstr "GO PREMIUM"
5513
-
5514
  #: app/features/mec/support.php:128
5515
  msgid "OPEN A TICKET"
5516
  msgstr "ÅPNE EN SUPPORT TICKET"
@@ -5672,7 +5689,7 @@ msgid "No search result."
5672
  msgstr ""
5673
 
5674
  #: app/features/search_bar/search_result.php:11
5675
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5676
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5677
  #: app/skins/single.php:160 app/skins/single.php:708
5678
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6246,7 +6263,7 @@ msgstr "Registreringsknapp"
6246
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6247
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6248
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6249
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6250
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6251
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6252
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6266,8 +6283,8 @@ msgstr "Se Detalj Knapp"
6266
 
6267
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6268
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6269
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6270
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6271
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6272
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6273
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6331,49 +6348,49 @@ msgstr "Ventende"
6331
  msgid "Skin controller does not exist."
6332
  msgstr "Skin kontroller eksisterer ikke."
6333
 
6334
- #: app/libraries/notifications.php:61
6335
  msgid "Please verify your email."
6336
  msgstr "Vennligst bekrefte din E-post."
6337
 
6338
- #: app/libraries/notifications.php:125
6339
  msgid "Your booking is received."
6340
  msgstr "Din bestilling er mottatt."
6341
 
6342
- #: app/libraries/notifications.php:193
6343
  msgid "Your booking is confirmed."
6344
  msgstr "Din Bestilling er bekreftet."
6345
 
6346
- #: app/libraries/notifications.php:282
6347
  #, fuzzy
6348
  #| msgid "Your booking cannot be canceled."
6349
  msgid "booking canceled."
6350
  msgstr "Din booking ble ikke kansellert."
6351
 
6352
- #: app/libraries/notifications.php:337
6353
  msgid "A new booking is received."
6354
  msgstr "En ny bestilling er mottatt."
6355
 
6356
- #: app/libraries/notifications.php:488
6357
  msgid "A new event is added."
6358
  msgstr "Ett nytt arrangement er lagt til."
6359
 
6360
- #: app/libraries/notifications.php:674
6361
  msgid "to"
6362
  msgstr "til"
6363
 
6364
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6365
  msgid "+ Add to Google Calendar"
6366
  msgstr "+ Legg til i Google Kalender"
6367
 
6368
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6369
  msgid "+ iCal export"
6370
  msgstr "+ iCal eksport"
6371
 
6372
- #: app/libraries/notifications.php:752
6373
  msgid "Yes"
6374
  msgstr "Ja"
6375
 
6376
- #: app/libraries/notifications.php:752
6377
  msgid "No"
6378
  msgstr "Nei"
6379
 
@@ -6810,6 +6827,11 @@ msgstr "http://webnus.net"
6810
  #~ msgid "Book Date"
6811
  #~ msgstr "Bestillingsdato"
6812
 
 
 
 
 
 
6813
  #~ msgid "Confirm"
6814
  #~ msgstr "Bekreft"
6815
 
@@ -7101,6 +7123,9 @@ msgstr "http://webnus.net"
7101
  #~ msgid "Organizer Payment Credentials"
7102
  #~ msgstr "Arrangørnavnet av booket arrangement"
7103
 
 
 
 
7104
  #~ msgid "Card Number"
7105
  #~ msgstr "Kortnummer"
7106
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:23+0430\n"
6
  "Last-Translator: \n"
7
  "Language-Team: \n"
8
  "Language: nb_NO\n"
70
  msgstr "Arrangementsfarge"
71
 
72
  #: app/features/contextual.php:55 app/features/mec.php:347
73
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
74
  #: app/features/mec/support.php:20 app/libraries/main.php:587
75
  msgid "Settings"
76
  msgstr "Innstillinger"
270
  msgstr "MEC Aktivisering"
271
 
272
  #: app/features/events.php:148 app/features/ix/export.php:34
273
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
274
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
275
  msgid "Events"
276
  msgstr "Arrangementer"
288
  msgid "Add Event"
289
  msgstr "Legg til Arrangement"
290
 
291
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
292
  msgid "Add New Event"
293
  msgstr "Legg til nytt arrangement"
294
 
313
  msgid "No events found in Trash!"
314
  msgstr "Ingen arrangement funnet i søppelbøtta!"
315
 
316
+ #: app/features/events.php:173 app/features/events.php:3072
317
  #: app/features/mec/meta_boxes/display_options.php:828
318
  #: app/features/mec/meta_boxes/search_form.php:31
319
  #: app/features/mec/meta_boxes/search_form.php:93
333
  msgid "Category"
334
  msgstr "Kategori"
335
 
336
+ #: app/features/events.php:174 app/features/events.php:3043
337
  #: app/features/fes/form.php:745 app/features/mec.php:335
338
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
339
  msgid "Categories"
407
  msgid "Event Details"
408
  msgstr "Arrangementsdetaljer"
409
 
410
+ #: app/features/events.php:333 app/features/events.php:3265
411
+ #: app/features/events.php:3307 app/features/fes/form.php:706
412
  #: app/features/ix.php:2743 app/features/ix.php:2784
413
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
414
  #: app/widgets/single.php:103
433
  #: app/features/events.php:443 app/features/events.php:2261
434
  #: app/features/fes/form.php:668 app/features/labels.php:178
435
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
436
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
437
  #: app/modules/booking/steps/form.php:37
438
  msgid "Name"
439
  msgstr "Navn"
440
 
441
  #: app/features/events.php:444 app/features/events.php:2272
442
+ #: app/features/events.php:2348 app/features/fes/form.php:664
443
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
444
  #: app/features/organizers.php:111 app/features/organizers.php:152
445
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
446
  #: app/features/speakers.php:184 app/libraries/main.php:1471
447
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
448
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
449
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
450
  #: app/skins/single.php:836 app/skins/single/default.php:212
451
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
458
  msgstr "Dato og klokkeslett"
459
 
460
  #: app/features/events.php:452 app/features/events.php:458
461
+ #: app/features/events.php:3075 app/features/events.php:3265
462
+ #: app/features/events.php:3307 app/features/fes/form.php:236
463
  #: app/features/fes/form.php:240 app/features/ix.php:2743
464
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
465
+ #: app/features/mec/dashboard.php:373
466
  #: app/features/mec/meta_boxes/display_options.php:44
467
  #: app/features/mec/meta_boxes/display_options.php:185
468
  #: app/features/mec/meta_boxes/display_options.php:337
494
  msgstr "PM"
495
 
496
  #: app/features/events.php:544 app/features/events.php:549
497
+ #: app/features/events.php:3076 app/features/events.php:3265
498
+ #: app/features/events.php:3307 app/features/fes/form.php:276
499
  #: app/features/fes/form.php:280 app/features/ix.php:2743
500
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
501
+ #: app/features/mec/dashboard.php:374
502
  msgid "End Date"
503
  msgstr "Sluttdato"
504
 
615
  msgstr "Gjentakelser"
616
 
617
  #: app/features/events.php:703 app/features/fes/form.php:338
618
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
619
  msgid "Daily"
620
  msgstr "Daglig"
621
 
637
  msgstr "Ukentlig"
638
 
639
  #: app/features/events.php:738 app/features/fes/form.php:343
640
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
641
  msgid "Monthly"
642
  msgstr "Månedlig"
643
 
644
  #: app/features/events.php:745 app/features/fes/form.php:344
645
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
646
  msgid "Yearly"
647
  msgstr "Årlig"
648
 
807
  msgid "Exclude certain days"
808
  msgstr "Ekskluder bestemte dager"
809
 
810
+ #: app/features/events.php:1141 app/features/events.php:2349
811
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
812
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
813
  #: app/modules/booking/steps/tickets.php:22
853
  #: app/features/events.php:1239 app/features/events.php:1278
854
  #: app/features/events.php:1313 app/features/events.php:1345
855
  #: app/features/events.php:1374 app/features/events.php:2130
856
+ #: app/features/events.php:2177 app/features/events.php:3071
857
+ #: app/features/events.php:3265 app/features/events.php:3307
858
  #: app/features/fes/form.php:225 app/features/ix.php:2743
859
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
860
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1040
  msgstr "Billettnavn"
1041
 
1042
  #: app/features/events.php:1584 app/features/events.php:1805
1043
+ #: app/features/events.php:3265 app/features/events.php:3307
1044
  #: app/features/ix.php:2743 app/features/ix.php:2784
1045
  msgid "Start Time"
1046
  msgstr "Starttid"
1047
 
1048
  #: app/features/events.php:1626 app/features/events.php:1829
1049
+ #: app/features/events.php:3265 app/features/events.php:3307
1050
  #: app/features/ix.php:2743 app/features/ix.php:2784
1051
  msgid "End Time"
1052
  msgstr "Sluttidspunkt"
1162
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1163
  msgstr "Maks per billett. La det stå tomt for ubegrenset."
1164
 
1165
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1166
  #: app/libraries/main.php:2523
1167
  #, fuzzy
1168
  #| msgid "Name"
1169
  msgid "MEC Name"
1170
  msgstr "Navn"
1171
 
1172
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1173
  #: app/libraries/main.php:2552
1174
  #, fuzzy
1175
  #| msgid "Email"
1176
  msgid "MEC Email"
1177
  msgstr "E-post"
1178
 
1179
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1180
  #: app/libraries/main.php:2493
1181
  msgid "Text"
1182
  msgstr "Tekst"
1183
 
1184
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1185
  #: app/features/organizers.php:103 app/features/organizers.php:148
1186
  #: app/features/speakers.php:116 app/features/speakers.php:180
1187
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1188
  msgid "Tel"
1189
  msgstr "Tlf"
1190
 
1191
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1192
  #: app/libraries/main.php:2611
1193
  msgid "File"
1194
  msgstr ""
1195
 
1196
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1197
  #: app/libraries/main.php:2698
1198
  msgid "Textarea"
1199
  msgstr "Tekstområde"
1200
 
1201
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1202
  #: app/libraries/main.php:2751
1203
  msgid "Checkboxes"
1204
  msgstr "Avmerkingsbokser"
1205
 
1206
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1207
  #: app/libraries/main.php:2795
1208
  msgid "Radio Buttons"
1209
  msgstr "Radioknapper"
1210
 
1211
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1212
  #: app/features/mec/meta_boxes/search_form.php:34
1213
  #: app/features/mec/meta_boxes/search_form.php:41
1214
  #: app/features/mec/meta_boxes/search_form.php:48
1281
  msgid "Dropdown"
1282
  msgstr "Nedtrekksmeny"
1283
 
1284
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1285
  #: app/libraries/main.php:2886
1286
  msgid "Agreement"
1287
  msgstr "Avtalen"
1288
 
1289
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1290
  #: app/libraries/main.php:2727
1291
  msgid "Paragraph"
1292
  msgstr "Avsnitt"
1293
 
1294
+ #: app/features/events.php:2992 app/features/events.php:3009
1295
+ #: app/features/events.php:3026 app/features/events.php:3043
1296
  #, php-format
1297
  msgid "Show all %s"
1298
  msgstr "Vis alle %s"
1299
 
1300
+ #: app/features/events.php:2992
1301
  msgid "labels"
1302
  msgstr "etiketter"
1303
 
1304
+ #: app/features/events.php:3009
1305
  msgid "locations"
1306
  msgstr "steder"
1307
 
1308
+ #: app/features/events.php:3026
1309
  msgid "organizers"
1310
  msgstr "arrangører"
1311
 
1312
+ #: app/features/events.php:3073 app/features/events.php:3265
1313
+ #: app/features/events.php:3307 app/features/ix.php:2743
1314
  #: app/features/ix.php:2784 app/features/locations.php:58
1315
  #: app/features/locations.php:230 app/features/locations.php:287
1316
  #: app/features/locations.php:289 app/features/locations.php:298
1334
  msgid "Location"
1335
  msgstr "Sted"
1336
 
1337
+ #: app/features/events.php:3074 app/features/events.php:3265
1338
+ #: app/features/events.php:3307 app/features/ix.php:2743
1339
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1340
  #: app/features/mec/meta_boxes/search_form.php:45
1341
  #: app/features/mec/meta_boxes/search_form.php:107
1358
  msgid "Organizer"
1359
  msgstr "Arrangør"
1360
 
1361
+ #: app/features/events.php:3078
1362
  msgid "Repeat"
1363
  msgstr "Gjenta"
1364
 
1365
+ #: app/features/events.php:3079
1366
  msgid "Author"
1367
  msgstr "Forfatter"
1368
 
1369
+ #: app/features/events.php:3200 app/features/events.php:3201
1370
  msgid "iCal Export"
1371
  msgstr "iCal-eksport"
1372
 
1373
+ #: app/features/events.php:3203 app/features/events.php:3204
1374
  msgid "CSV Export"
1375
  msgstr "CSV-eksport"
1376
 
1377
+ #: app/features/events.php:3206 app/features/events.php:3207
1378
  msgid "MS Excel Export"
1379
  msgstr "MS Excel Export"
1380
 
1381
+ #: app/features/events.php:3209 app/features/events.php:3210
1382
  msgid "XML Export"
1383
  msgstr "XML Eksport"
1384
 
1385
+ #: app/features/events.php:3212 app/features/events.php:3213
1386
  msgid "JSON Export"
1387
  msgstr "JSON Eksport"
1388
 
1389
+ #: app/features/events.php:3215 app/features/events.php:3216
1390
+ #: app/features/events.php:3397
1391
  msgid "Duplicate"
1392
  msgstr "Dupliser"
1393
 
1394
+ #: app/features/events.php:3265 app/features/events.php:3307
1395
  #: app/features/ix.php:2743 app/features/ix.php:2784
1396
  #: app/features/labels.php:177 app/features/locations.php:229
1397
  #: app/features/organizers.php:203 app/features/speakers.php:246
1398
  msgid "ID"
1399
  msgstr "ID"
1400
 
1401
+ #: app/features/events.php:3265 app/features/events.php:3307
1402
  #: app/features/ix.php:2743 app/features/ix.php:2784
1403
  msgid "Link"
1404
  msgstr "Lenke"
1405
 
1406
+ #: app/features/events.php:3265 app/features/events.php:3307
1407
  #, php-format
1408
  msgid "%s Tel"
1409
  msgstr "%s Tlf"
1410
 
1411
+ #: app/features/events.php:3265 app/features/events.php:3307
1412
  #, php-format
1413
  msgid "%s Email"
1414
  msgstr "%s E-post"
1918
  msgid "Import all of your Facebook events into MEC."
1919
  msgstr "Importer alle dine Facebook-hendelser i MEC."
1920
 
1921
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1922
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1923
  msgid "Documentation"
1924
  msgstr "Dokumentasjon"
2296
  msgstr "Arrangement %s"
2297
 
2298
  #: app/features/locations.php:59 app/features/mec.php:337
2299
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2300
  #: app/libraries/main.php:4838
2301
  msgid "Locations"
2302
  msgstr "Steder"
2464
  msgid "Support"
2465
  msgstr "Support"
2466
 
2467
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2468
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2469
  #: app/libraries/main.php:4840
2470
  msgid "Organizers"
2471
  msgstr "Arrangører"
2472
 
2473
  #: app/features/mec.php:346 app/features/mec.php:366
2474
+ #: app/features/mec/dashboard.php:236
2475
  msgid "Shortcodes"
2476
  msgstr "Shortcodes"
2477
 
2815
  msgid "Update"
2816
  msgstr "Oppdatere %s"
2817
 
2818
+ #: app/features/mec/dashboard.php:92
2819
+ #, fuzzy, php-format
2820
+ #| msgid ""
2821
+ #| "You're using %s version of Modern Events Calendar. To use advanced "
2822
+ #| "booking system, modern skins like Agenda, Timetable, Masonry, Yearly "
2823
+ #| "View, Available Spots, etc you should %s to the Pro version."
2824
  msgid ""
2825
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2826
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2827
+ "Spots, etc you should upgrade to the Pro version."
2828
  msgstr ""
2829
  "Du bruker %s-versjonen av kalenderen for moderne aktiviteter. Hvis du vil "
2830
  "bruke avanserte booking system, moderne skins som agenda, tidsplan, murverk, "
2831
  "årlig visning, tilgjengelige spots, etc bør du %s til Pro-versjonen."
2832
 
2833
+ #: app/features/mec/dashboard.php:92
2834
  msgid "lite"
2835
  msgstr "lett"
2836
 
2837
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2838
+ msgid "GO PREMIUM"
2839
+ msgstr "GO PREMIUM"
2840
+
2841
+ #: app/features/mec/dashboard.php:98
2842
+ #, php-format
2843
+ msgid ""
2844
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2845
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2846
+ msgstr ""
2847
+
2848
+ #: app/features/mec/dashboard.php:98
2849
+ #, fuzzy
2850
+ #| msgid "Address"
2851
+ msgid "WordPress"
2852
+ msgstr "Adresse"
2853
+
2854
+ #: app/features/mec/dashboard.php:98
2855
+ msgid "Copouns!"
2856
+ msgstr ""
2857
 
2858
+ #: app/features/mec/dashboard.php:127
2859
  #, fuzzy
2860
  #| msgid "Modern Events Calendar"
2861
  msgid "Getting started with Modern Events Calendar"
2862
  msgstr "Modern Events Calendar"
2863
 
2864
+ #: app/features/mec/dashboard.php:128
2865
  msgid ""
2866
  "In this short video, you can learn how to make an event and put a calendar "
2867
  "on your website. Please watch this 2 minutes video to the end."
2868
  msgstr ""
2869
 
2870
+ #: app/features/mec/dashboard.php:144
2871
  msgid "MEC Activate"
2872
  msgstr "MEC Aktivisering"
2873
 
2874
+ #: app/features/mec/dashboard.php:150
2875
  msgid ""
2876
  "In order to use all plugin features and options, please enter your purchase "
2877
  "code."
2879
  "For å bruke alle plugin funksjoner og alternativer, vennligst skriv inn din "
2880
  "kjøpskode."
2881
 
2882
+ #: app/features/mec/dashboard.php:208
2883
  #, fuzzy
2884
  #| msgid "Activate License"
2885
  msgid "Activate Addons"
2886
  msgstr "Aktiver Lisens"
2887
 
2888
+ #: app/features/mec/dashboard.php:217
2889
  msgid "You cannot access this section."
2890
  msgstr ""
2891
 
2892
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2893
  msgid "Upcoming Events"
2894
  msgstr "Kommende arrangementer"
2895
 
2896
+ #: app/features/mec/dashboard.php:285
2897
  msgid "Popular Gateways"
2898
  msgstr "Populære Gatewayer"
2899
 
2900
+ #: app/features/mec/dashboard.php:339
2901
  msgid "Total Bookings"
2902
  msgstr "Totalt Antall Bestillinger"
2903
 
2904
+ #: app/features/mec/dashboard.php:366
2905
  msgid "This Month"
2906
  msgstr "Denne måneden"
2907
 
2908
+ #: app/features/mec/dashboard.php:367
2909
  msgid "Last Month"
2910
  msgstr "Siste måned"
2911
 
2912
+ #: app/features/mec/dashboard.php:368
2913
  msgid "This Year"
2914
  msgstr "Dette Året"
2915
 
2916
+ #: app/features/mec/dashboard.php:369
2917
  msgid "Last Year"
2918
  msgstr "Siste År"
2919
 
2920
+ #: app/features/mec/dashboard.php:381
2921
  msgid "Bar"
2922
  msgstr "Stolpe"
2923
 
2924
+ #: app/features/mec/dashboard.php:382
2925
  msgid "Line"
2926
  msgstr "Linje"
2927
 
2928
+ #: app/features/mec/dashboard.php:384
2929
  msgid "Filter"
2930
  msgstr "Filter"
2931
 
2932
+ #: app/features/mec/dashboard.php:400
2933
  #, php-format
2934
  msgid "Total Sells (%s)"
2935
  msgstr "Totalt salg (% s)"
2936
 
2937
+ #: app/features/mec/dashboard.php:421
2938
  msgid "Change Log"
2939
  msgstr "Endringslogg"
2940
 
4321
  "Sender melding til admin for å gi hint til han/henne at ny booking er kommet."
4322
 
4323
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4324
+ #: app/libraries/notifications.php:478
4325
  msgid "Booking Reminder"
4326
  msgstr "Påminnelse angående din bestilling"
4327
 
5528
  "Opplever du noen problemer vennligst ikke nøl med å kontakt oss, vi svarer "
5529
  "så raskt vi kan."
5530
 
 
 
 
 
5531
  #: app/features/mec/support.php:128
5532
  msgid "OPEN A TICKET"
5533
  msgstr "ÅPNE EN SUPPORT TICKET"
5689
  msgstr ""
5690
 
5691
  #: app/features/search_bar/search_result.php:11
5692
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5693
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5694
  #: app/skins/single.php:160 app/skins/single.php:708
5695
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6263
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6264
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6265
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6266
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6267
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6268
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6269
  #: app/skins/single.php:729 app/skins/single/default.php:233
6283
 
6284
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6285
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6286
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6287
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6288
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6289
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6290
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6348
  msgid "Skin controller does not exist."
6349
  msgstr "Skin kontroller eksisterer ikke."
6350
 
6351
+ #: app/libraries/notifications.php:60
6352
  msgid "Please verify your email."
6353
  msgstr "Vennligst bekrefte din E-post."
6354
 
6355
+ #: app/libraries/notifications.php:139
6356
  msgid "Your booking is received."
6357
  msgstr "Din bestilling er mottatt."
6358
 
6359
+ #: app/libraries/notifications.php:224
6360
  msgid "Your booking is confirmed."
6361
  msgstr "Din Bestilling er bekreftet."
6362
 
6363
+ #: app/libraries/notifications.php:349
6364
  #, fuzzy
6365
  #| msgid "Your booking cannot be canceled."
6366
  msgid "booking canceled."
6367
  msgstr "Din booking ble ikke kansellert."
6368
 
6369
+ #: app/libraries/notifications.php:410
6370
  msgid "A new booking is received."
6371
  msgstr "En ny bestilling er mottatt."
6372
 
6373
+ #: app/libraries/notifications.php:561
6374
  msgid "A new event is added."
6375
  msgstr "Ett nytt arrangement er lagt til."
6376
 
6377
+ #: app/libraries/notifications.php:746
6378
  msgid "to"
6379
  msgstr "til"
6380
 
6381
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6382
  msgid "+ Add to Google Calendar"
6383
  msgstr "+ Legg til i Google Kalender"
6384
 
6385
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6386
  msgid "+ iCal export"
6387
  msgstr "+ iCal eksport"
6388
 
6389
+ #: app/libraries/notifications.php:821
6390
  msgid "Yes"
6391
  msgstr "Ja"
6392
 
6393
+ #: app/libraries/notifications.php:821
6394
  msgid "No"
6395
  msgstr "Nei"
6396
 
6827
  #~ msgid "Book Date"
6828
  #~ msgstr "Bestillingsdato"
6829
 
6830
+ #, fuzzy
6831
+ #~| msgid "Ticket"
6832
+ #~ msgid " - Ticket"
6833
+ #~ msgstr "Billett"
6834
+
6835
  #~ msgid "Confirm"
6836
  #~ msgstr "Bekreft"
6837
 
7123
  #~ msgid "Organizer Payment Credentials"
7124
  #~ msgstr "Arrangørnavnet av booket arrangement"
7125
 
7126
+ #~ msgid "upgrade"
7127
+ #~ msgstr "Oppgradere"
7128
+
7129
  #~ msgid "Card Number"
7130
  #~ msgstr "Kortnummer"
7131
 
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: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 16:00+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
@@ -74,7 +74,7 @@ msgid "Event Color"
74
  msgstr "Evenement kleur"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:347
77
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
78
  #: app/features/mec/support.php:20 app/libraries/main.php:587
79
  msgid "Settings"
80
  msgstr "Instellingen"
@@ -251,7 +251,7 @@ msgid "MEC Activation"
251
  msgstr ""
252
 
253
  #: app/features/events.php:148 app/features/ix/export.php:34
254
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
256
  msgid "Events"
257
  msgstr "Evenementen"
@@ -269,7 +269,7 @@ msgstr "Evenement"
269
  msgid "Add Event"
270
  msgstr "Evenement toevoegen"
271
 
272
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
273
  msgid "Add New Event"
274
  msgstr "Voeg nieuw evenement toe"
275
 
@@ -294,7 +294,7 @@ msgstr "Bekijk evenement"
294
  msgid "No events found in Trash!"
295
  msgstr "Geen evenementen gevonden in de prullenbak."
296
 
297
- #: app/features/events.php:173 app/features/events.php:3078
298
  #: app/features/mec/meta_boxes/display_options.php:828
299
  #: app/features/mec/meta_boxes/search_form.php:31
300
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -314,7 +314,7 @@ msgstr "Geen evenementen gevonden in de prullenbak."
314
  msgid "Category"
315
  msgstr "Categorie"
316
 
317
- #: app/features/events.php:174 app/features/events.php:3049
318
  #: app/features/fes/form.php:745 app/features/mec.php:335
319
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
320
  msgid "Categories"
@@ -388,8 +388,8 @@ msgstr ""
388
  msgid "Event Details"
389
  msgstr "Evenement details"
390
 
391
- #: app/features/events.php:333 app/features/events.php:3271
392
- #: app/features/events.php:3313 app/features/fes/form.php:706
393
  #: app/features/ix.php:2743 app/features/ix.php:2784
394
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
395
  #: app/widgets/single.php:103
@@ -414,19 +414,19 @@ msgstr ""
414
  #: app/features/events.php:443 app/features/events.php:2261
415
  #: app/features/fes/form.php:668 app/features/labels.php:178
416
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
417
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
418
  #: app/modules/booking/steps/form.php:37
419
  msgid "Name"
420
  msgstr "Naam"
421
 
422
  #: app/features/events.php:444 app/features/events.php:2272
423
- #: app/features/events.php:2350 app/features/fes/form.php:664
424
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
425
  #: app/features/organizers.php:111 app/features/organizers.php:152
426
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
427
  #: app/features/speakers.php:184 app/libraries/main.php:1471
428
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
429
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
430
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
431
  #: app/skins/single.php:836 app/skins/single/default.php:212
432
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -439,11 +439,11 @@ msgid "Date and Time"
439
  msgstr "Datum en tijd"
440
 
441
  #: app/features/events.php:452 app/features/events.php:458
442
- #: app/features/events.php:3081 app/features/events.php:3271
443
- #: app/features/events.php:3313 app/features/fes/form.php:236
444
  #: app/features/fes/form.php:240 app/features/ix.php:2743
445
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
446
- #: app/features/mec/dashboard.php:346
447
  #: app/features/mec/meta_boxes/display_options.php:44
448
  #: app/features/mec/meta_boxes/display_options.php:185
449
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -475,11 +475,11 @@ msgid "PM"
475
  msgstr "PM"
476
 
477
  #: app/features/events.php:544 app/features/events.php:549
478
- #: app/features/events.php:3082 app/features/events.php:3271
479
- #: app/features/events.php:3313 app/features/fes/form.php:276
480
  #: app/features/fes/form.php:280 app/features/ix.php:2743
481
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
482
- #: app/features/mec/dashboard.php:347
483
  msgid "End Date"
484
  msgstr "Einddatum"
485
 
@@ -597,7 +597,7 @@ msgid "Repeats"
597
  msgstr "Terugkerend"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Dagelijks"
603
 
@@ -620,12 +620,12 @@ msgid "Weekly"
620
  msgstr "Wekelijks"
621
 
622
  #: app/features/events.php:738 app/features/fes/form.php:343
623
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
624
  msgid "Monthly"
625
  msgstr "Maandelijks"
626
 
627
  #: app/features/events.php:745 app/features/fes/form.php:344
628
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
629
  msgid "Yearly"
630
  msgstr "Jaarlijks"
631
 
@@ -791,7 +791,7 @@ msgstr ""
791
  msgid "Exclude certain days"
792
  msgstr "Elke doordeweekse dag"
793
 
794
- #: app/features/events.php:1141 app/features/events.php:2351
795
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
796
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
797
  #: app/modules/booking/steps/tickets.php:22
@@ -835,8 +835,8 @@ msgstr ""
835
  #: app/features/events.php:1239 app/features/events.php:1278
836
  #: app/features/events.php:1313 app/features/events.php:1345
837
  #: app/features/events.php:1374 app/features/events.php:2130
838
- #: app/features/events.php:2177 app/features/events.php:3077
839
- #: app/features/events.php:3271 app/features/events.php:3313
840
  #: app/features/fes/form.php:225 app/features/ix.php:2743
841
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
842
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1017,13 +1017,13 @@ msgid "Ticket Name"
1017
  msgstr "Ticket naam"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
- #: app/features/events.php:3271 app/features/events.php:3313
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr ""
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
- #: app/features/events.php:3271 app/features/events.php:3313
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr ""
@@ -1145,53 +1145,53 @@ msgstr "Mximum evenementen"
1145
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1146
  msgstr ""
1147
 
1148
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1149
  #: app/libraries/main.php:2523
1150
  #, fuzzy
1151
  #| msgid "Name"
1152
  msgid "MEC Name"
1153
  msgstr "Naam"
1154
 
1155
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1156
  #: app/libraries/main.php:2552
1157
  #, fuzzy
1158
  #| msgid "Email"
1159
  msgid "MEC Email"
1160
  msgstr "Email"
1161
 
1162
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1163
  #: app/libraries/main.php:2493
1164
  msgid "Text"
1165
  msgstr "Tekst"
1166
 
1167
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1168
  #: app/features/organizers.php:103 app/features/organizers.php:148
1169
  #: app/features/speakers.php:116 app/features/speakers.php:180
1170
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1171
  msgid "Tel"
1172
  msgstr "Tel"
1173
 
1174
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1175
  #: app/libraries/main.php:2611
1176
  msgid "File"
1177
  msgstr ""
1178
 
1179
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1180
  #: app/libraries/main.php:2698
1181
  msgid "Textarea"
1182
  msgstr "Tekstgebied"
1183
 
1184
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1185
  #: app/libraries/main.php:2751
1186
  msgid "Checkboxes"
1187
  msgstr "Checkboxes"
1188
 
1189
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1190
  #: app/libraries/main.php:2795
1191
  msgid "Radio Buttons"
1192
  msgstr "Radio knoppen"
1193
 
1194
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1195
  #: app/features/mec/meta_boxes/search_form.php:34
1196
  #: app/features/mec/meta_boxes/search_form.php:41
1197
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1264,36 +1264,36 @@ msgstr "Radio knoppen"
1264
  msgid "Dropdown"
1265
  msgstr "Dropdown"
1266
 
1267
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1268
  #: app/libraries/main.php:2886
1269
  msgid "Agreement"
1270
  msgstr ""
1271
 
1272
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1273
  #: app/libraries/main.php:2727
1274
  msgid "Paragraph"
1275
  msgstr "Paragraaf"
1276
 
1277
- #: app/features/events.php:2998 app/features/events.php:3015
1278
- #: app/features/events.php:3032 app/features/events.php:3049
1279
  #, php-format
1280
  msgid "Show all %s"
1281
  msgstr ""
1282
 
1283
- #: app/features/events.php:2998
1284
  msgid "labels"
1285
  msgstr "labels"
1286
 
1287
- #: app/features/events.php:3015
1288
  msgid "locations"
1289
  msgstr ""
1290
 
1291
- #: app/features/events.php:3032
1292
  msgid "organizers"
1293
  msgstr ""
1294
 
1295
- #: app/features/events.php:3079 app/features/events.php:3271
1296
- #: app/features/events.php:3313 app/features/ix.php:2743
1297
  #: app/features/ix.php:2784 app/features/locations.php:58
1298
  #: app/features/locations.php:230 app/features/locations.php:287
1299
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1317,8 +1317,8 @@ msgstr ""
1317
  msgid "Location"
1318
  msgstr "Locatie"
1319
 
1320
- #: app/features/events.php:3080 app/features/events.php:3271
1321
- #: app/features/events.php:3313 app/features/ix.php:2743
1322
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1323
  #: app/features/mec/meta_boxes/search_form.php:45
1324
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1341,57 +1341,57 @@ msgstr "Locatie"
1341
  msgid "Organizer"
1342
  msgstr "Organisator"
1343
 
1344
- #: app/features/events.php:3084
1345
  msgid "Repeat"
1346
  msgstr "Herhalen"
1347
 
1348
- #: app/features/events.php:3085
1349
  msgid "Author"
1350
  msgstr "Auteur"
1351
 
1352
- #: app/features/events.php:3206 app/features/events.php:3207
1353
  msgid "iCal Export"
1354
  msgstr "iCal export"
1355
 
1356
- #: app/features/events.php:3209 app/features/events.php:3210
1357
  msgid "CSV Export"
1358
  msgstr "CSV export"
1359
 
1360
- #: app/features/events.php:3212 app/features/events.php:3213
1361
  msgid "MS Excel Export"
1362
  msgstr "Excel export"
1363
 
1364
- #: app/features/events.php:3215 app/features/events.php:3216
1365
  msgid "XML Export"
1366
  msgstr ""
1367
 
1368
- #: app/features/events.php:3218 app/features/events.php:3219
1369
  msgid "JSON Export"
1370
  msgstr ""
1371
 
1372
- #: app/features/events.php:3221 app/features/events.php:3222
1373
- #: app/features/events.php:3403
1374
  msgid "Duplicate"
1375
  msgstr ""
1376
 
1377
- #: app/features/events.php:3271 app/features/events.php:3313
1378
  #: app/features/ix.php:2743 app/features/ix.php:2784
1379
  #: app/features/labels.php:177 app/features/locations.php:229
1380
  #: app/features/organizers.php:203 app/features/speakers.php:246
1381
  msgid "ID"
1382
  msgstr "ID"
1383
 
1384
- #: app/features/events.php:3271 app/features/events.php:3313
1385
  #: app/features/ix.php:2743 app/features/ix.php:2784
1386
  msgid "Link"
1387
  msgstr ""
1388
 
1389
- #: app/features/events.php:3271 app/features/events.php:3313
1390
  #, php-format
1391
  msgid "%s Tel"
1392
  msgstr ""
1393
 
1394
- #: app/features/events.php:3271 app/features/events.php:3313
1395
  #, php-format
1396
  msgid "%s Email"
1397
  msgstr ""
@@ -1889,7 +1889,7 @@ msgstr ""
1889
  msgid "Import all of your Facebook events into MEC."
1890
  msgstr ""
1891
 
1892
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1893
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1894
  msgid "Documentation"
1895
  msgstr "Documentatie"
@@ -2251,7 +2251,7 @@ msgid "Event %s"
2251
  msgstr ""
2252
 
2253
  #: app/features/locations.php:59 app/features/mec.php:337
2254
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2255
  #: app/libraries/main.php:4838
2256
  msgid "Locations"
2257
  msgstr "Locaties"
@@ -2417,14 +2417,14 @@ msgstr "Support"
2417
  msgid "Support"
2418
  msgstr "Support"
2419
 
2420
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2421
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2422
  #: app/libraries/main.php:4840
2423
  msgid "Organizers"
2424
  msgstr "Organisatoren"
2425
 
2426
  #: app/features/mec.php:346 app/features/mec.php:366
2427
- #: app/features/mec/dashboard.php:209
2428
  msgid "Shortcodes"
2429
  msgstr "Shortcodes"
2430
 
@@ -2774,98 +2774,115 @@ msgstr ""
2774
  msgid "Update"
2775
  msgstr "Update label"
2776
 
2777
- #: app/features/mec/dashboard.php:90
2778
  #, php-format
2779
  msgid ""
2780
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2781
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2782
- "Spots, etc you should %s to the Pro version."
2783
  msgstr ""
2784
 
2785
- #: app/features/mec/dashboard.php:90
2786
  msgid "lite"
2787
  msgstr ""
2788
 
2789
- #: app/features/mec/dashboard.php:90
2790
- msgid "upgrade"
 
 
 
 
 
 
 
2791
  msgstr ""
2792
 
2793
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2794
  #, fuzzy
2795
  #| msgid "Modern Events Calendar"
2796
  msgid "Getting started with Modern Events Calendar"
2797
  msgstr "Modern Events Calendar"
2798
 
2799
- #: app/features/mec/dashboard.php:101
2800
  msgid ""
2801
  "In this short video, you can learn how to make an event and put a calendar "
2802
  "on your website. Please watch this 2 minutes video to the end."
2803
  msgstr ""
2804
 
2805
- #: app/features/mec/dashboard.php:117
2806
  msgid "MEC Activate"
2807
  msgstr ""
2808
 
2809
- #: app/features/mec/dashboard.php:123
2810
  msgid ""
2811
  "In order to use all plugin features and options, please enter your purchase "
2812
  "code."
2813
  msgstr ""
2814
 
2815
- #: app/features/mec/dashboard.php:181
2816
  msgid "Activate Addons"
2817
  msgstr ""
2818
 
2819
- #: app/features/mec/dashboard.php:190
2820
  msgid "You cannot access this section."
2821
  msgstr ""
2822
 
2823
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2824
  msgid "Upcoming Events"
2825
  msgstr ""
2826
 
2827
- #: app/features/mec/dashboard.php:258
2828
  msgid "Popular Gateways"
2829
  msgstr ""
2830
 
2831
- #: app/features/mec/dashboard.php:312
2832
  msgid "Total Bookings"
2833
  msgstr ""
2834
 
2835
- #: app/features/mec/dashboard.php:339
2836
  msgid "This Month"
2837
  msgstr ""
2838
 
2839
- #: app/features/mec/dashboard.php:340
2840
  msgid "Last Month"
2841
  msgstr ""
2842
 
2843
- #: app/features/mec/dashboard.php:341
2844
  msgid "This Year"
2845
  msgstr ""
2846
 
2847
- #: app/features/mec/dashboard.php:342
2848
  msgid "Last Year"
2849
  msgstr ""
2850
 
2851
- #: app/features/mec/dashboard.php:354
2852
  msgid "Bar"
2853
  msgstr ""
2854
 
2855
- #: app/features/mec/dashboard.php:355
2856
  msgid "Line"
2857
  msgstr ""
2858
 
2859
- #: app/features/mec/dashboard.php:357
2860
  msgid "Filter"
2861
  msgstr ""
2862
 
2863
- #: app/features/mec/dashboard.php:373
2864
  #, php-format
2865
  msgid "Total Sells (%s)"
2866
  msgstr ""
2867
 
2868
- #: app/features/mec/dashboard.php:394
2869
  msgid "Change Log"
2870
  msgstr "Change log"
2871
 
@@ -4279,7 +4296,7 @@ msgstr ""
4279
  "nieuwe boeking is ontvangen."
4280
 
4281
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4282
- #: app/libraries/notifications.php:405
4283
  msgid "Booking Reminder"
4284
  msgstr ""
4285
 
@@ -5456,10 +5473,6 @@ msgstr ""
5456
  "tevreden gebruikers. Loop je tegen problemen aan, aarzel dan niet om contact "
5457
  "met ons op te nemen, wij zullen u zo spoedig mogelijk antwoorden."
5458
 
5459
- #: app/features/mec/support.php:126
5460
- msgid "GO PREMIUM"
5461
- msgstr ""
5462
-
5463
  #: app/features/mec/support.php:128
5464
  msgid "OPEN A TICKET"
5465
  msgstr "OPEN EEN TICKET"
@@ -5626,7 +5639,7 @@ msgid "No search result."
5626
  msgstr ""
5627
 
5628
  #: app/features/search_bar/search_result.php:11
5629
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5630
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5631
  #: app/skins/single.php:160 app/skins/single.php:708
5632
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6221,7 +6234,7 @@ msgstr ""
6221
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6222
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6223
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6224
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6225
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6226
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6227
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6241,8 +6254,8 @@ msgstr ""
6241
 
6242
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6243
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6244
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6245
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6246
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6247
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6248
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6307,49 +6320,49 @@ msgstr "In afwachting"
6307
  msgid "Skin controller does not exist."
6308
  msgstr "Skin controller bestaat niet."
6309
 
6310
- #: app/libraries/notifications.php:61
6311
  msgid "Please verify your email."
6312
  msgstr "Controleer uw email."
6313
 
6314
- #: app/libraries/notifications.php:125
6315
  msgid "Your booking is received."
6316
  msgstr ""
6317
 
6318
- #: app/libraries/notifications.php:193
6319
  msgid "Your booking is confirmed."
6320
  msgstr "Uw boeking is bevestigd."
6321
 
6322
- #: app/libraries/notifications.php:282
6323
  #, fuzzy
6324
  #| msgid "Your booking cannot be canceled."
6325
  msgid "booking canceled."
6326
  msgstr "Uw boeking kan niet worden geannuleerd."
6327
 
6328
- #: app/libraries/notifications.php:337
6329
  msgid "A new booking is received."
6330
  msgstr "Een nieuwe boeking ontvangen."
6331
 
6332
- #: app/libraries/notifications.php:488
6333
  msgid "A new event is added."
6334
  msgstr "Een nieuw evenement is toegevoegd."
6335
 
6336
- #: app/libraries/notifications.php:674
6337
  msgid "to"
6338
  msgstr ""
6339
 
6340
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6341
  msgid "+ Add to Google Calendar"
6342
  msgstr "+ Aan Google Kalender toevoegen"
6343
 
6344
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6345
  msgid "+ iCal export"
6346
  msgstr "+ iCal export"
6347
 
6348
- #: app/libraries/notifications.php:752
6349
  msgid "Yes"
6350
  msgstr ""
6351
 
6352
- #: app/libraries/notifications.php:752
6353
  msgid "No"
6354
  msgstr ""
6355
 
@@ -6751,6 +6764,11 @@ msgstr ""
6751
  #~ msgid "Book Date"
6752
  #~ msgstr "Boekings datum"
6753
 
 
 
 
 
 
6754
  #~ msgid "Confirm"
6755
  #~ msgstr "Bevestig"
6756
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:23+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: nl_NL\n"
74
  msgstr "Evenement kleur"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:347
77
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
78
  #: app/features/mec/support.php:20 app/libraries/main.php:587
79
  msgid "Settings"
80
  msgstr "Instellingen"
251
  msgstr ""
252
 
253
  #: app/features/events.php:148 app/features/ix/export.php:34
254
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
256
  msgid "Events"
257
  msgstr "Evenementen"
269
  msgid "Add Event"
270
  msgstr "Evenement toevoegen"
271
 
272
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
273
  msgid "Add New Event"
274
  msgstr "Voeg nieuw evenement toe"
275
 
294
  msgid "No events found in Trash!"
295
  msgstr "Geen evenementen gevonden in de prullenbak."
296
 
297
+ #: app/features/events.php:173 app/features/events.php:3072
298
  #: app/features/mec/meta_boxes/display_options.php:828
299
  #: app/features/mec/meta_boxes/search_form.php:31
300
  #: app/features/mec/meta_boxes/search_form.php:93
314
  msgid "Category"
315
  msgstr "Categorie"
316
 
317
+ #: app/features/events.php:174 app/features/events.php:3043
318
  #: app/features/fes/form.php:745 app/features/mec.php:335
319
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
320
  msgid "Categories"
388
  msgid "Event Details"
389
  msgstr "Evenement details"
390
 
391
+ #: app/features/events.php:333 app/features/events.php:3265
392
+ #: app/features/events.php:3307 app/features/fes/form.php:706
393
  #: app/features/ix.php:2743 app/features/ix.php:2784
394
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
395
  #: app/widgets/single.php:103
414
  #: app/features/events.php:443 app/features/events.php:2261
415
  #: app/features/fes/form.php:668 app/features/labels.php:178
416
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
417
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
418
  #: app/modules/booking/steps/form.php:37
419
  msgid "Name"
420
  msgstr "Naam"
421
 
422
  #: app/features/events.php:444 app/features/events.php:2272
423
+ #: app/features/events.php:2348 app/features/fes/form.php:664
424
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
425
  #: app/features/organizers.php:111 app/features/organizers.php:152
426
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
427
  #: app/features/speakers.php:184 app/libraries/main.php:1471
428
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
429
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
430
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
431
  #: app/skins/single.php:836 app/skins/single/default.php:212
432
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
439
  msgstr "Datum en tijd"
440
 
441
  #: app/features/events.php:452 app/features/events.php:458
442
+ #: app/features/events.php:3075 app/features/events.php:3265
443
+ #: app/features/events.php:3307 app/features/fes/form.php:236
444
  #: app/features/fes/form.php:240 app/features/ix.php:2743
445
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
446
+ #: app/features/mec/dashboard.php:373
447
  #: app/features/mec/meta_boxes/display_options.php:44
448
  #: app/features/mec/meta_boxes/display_options.php:185
449
  #: app/features/mec/meta_boxes/display_options.php:337
475
  msgstr "PM"
476
 
477
  #: app/features/events.php:544 app/features/events.php:549
478
+ #: app/features/events.php:3076 app/features/events.php:3265
479
+ #: app/features/events.php:3307 app/features/fes/form.php:276
480
  #: app/features/fes/form.php:280 app/features/ix.php:2743
481
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
482
+ #: app/features/mec/dashboard.php:374
483
  msgid "End Date"
484
  msgstr "Einddatum"
485
 
597
  msgstr "Terugkerend"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Dagelijks"
603
 
620
  msgstr "Wekelijks"
621
 
622
  #: app/features/events.php:738 app/features/fes/form.php:343
623
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
624
  msgid "Monthly"
625
  msgstr "Maandelijks"
626
 
627
  #: app/features/events.php:745 app/features/fes/form.php:344
628
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
629
  msgid "Yearly"
630
  msgstr "Jaarlijks"
631
 
791
  msgid "Exclude certain days"
792
  msgstr "Elke doordeweekse dag"
793
 
794
+ #: app/features/events.php:1141 app/features/events.php:2349
795
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
796
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
797
  #: app/modules/booking/steps/tickets.php:22
835
  #: app/features/events.php:1239 app/features/events.php:1278
836
  #: app/features/events.php:1313 app/features/events.php:1345
837
  #: app/features/events.php:1374 app/features/events.php:2130
838
+ #: app/features/events.php:2177 app/features/events.php:3071
839
+ #: app/features/events.php:3265 app/features/events.php:3307
840
  #: app/features/fes/form.php:225 app/features/ix.php:2743
841
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
842
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1017
  msgstr "Ticket naam"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
+ #: app/features/events.php:3265 app/features/events.php:3307
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr ""
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
+ #: app/features/events.php:3265 app/features/events.php:3307
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr ""
1145
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1146
  msgstr ""
1147
 
1148
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1149
  #: app/libraries/main.php:2523
1150
  #, fuzzy
1151
  #| msgid "Name"
1152
  msgid "MEC Name"
1153
  msgstr "Naam"
1154
 
1155
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1156
  #: app/libraries/main.php:2552
1157
  #, fuzzy
1158
  #| msgid "Email"
1159
  msgid "MEC Email"
1160
  msgstr "Email"
1161
 
1162
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1163
  #: app/libraries/main.php:2493
1164
  msgid "Text"
1165
  msgstr "Tekst"
1166
 
1167
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1168
  #: app/features/organizers.php:103 app/features/organizers.php:148
1169
  #: app/features/speakers.php:116 app/features/speakers.php:180
1170
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1171
  msgid "Tel"
1172
  msgstr "Tel"
1173
 
1174
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1175
  #: app/libraries/main.php:2611
1176
  msgid "File"
1177
  msgstr ""
1178
 
1179
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1180
  #: app/libraries/main.php:2698
1181
  msgid "Textarea"
1182
  msgstr "Tekstgebied"
1183
 
1184
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1185
  #: app/libraries/main.php:2751
1186
  msgid "Checkboxes"
1187
  msgstr "Checkboxes"
1188
 
1189
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1190
  #: app/libraries/main.php:2795
1191
  msgid "Radio Buttons"
1192
  msgstr "Radio knoppen"
1193
 
1194
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1195
  #: app/features/mec/meta_boxes/search_form.php:34
1196
  #: app/features/mec/meta_boxes/search_form.php:41
1197
  #: app/features/mec/meta_boxes/search_form.php:48
1264
  msgid "Dropdown"
1265
  msgstr "Dropdown"
1266
 
1267
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1268
  #: app/libraries/main.php:2886
1269
  msgid "Agreement"
1270
  msgstr ""
1271
 
1272
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1273
  #: app/libraries/main.php:2727
1274
  msgid "Paragraph"
1275
  msgstr "Paragraaf"
1276
 
1277
+ #: app/features/events.php:2992 app/features/events.php:3009
1278
+ #: app/features/events.php:3026 app/features/events.php:3043
1279
  #, php-format
1280
  msgid "Show all %s"
1281
  msgstr ""
1282
 
1283
+ #: app/features/events.php:2992
1284
  msgid "labels"
1285
  msgstr "labels"
1286
 
1287
+ #: app/features/events.php:3009
1288
  msgid "locations"
1289
  msgstr ""
1290
 
1291
+ #: app/features/events.php:3026
1292
  msgid "organizers"
1293
  msgstr ""
1294
 
1295
+ #: app/features/events.php:3073 app/features/events.php:3265
1296
+ #: app/features/events.php:3307 app/features/ix.php:2743
1297
  #: app/features/ix.php:2784 app/features/locations.php:58
1298
  #: app/features/locations.php:230 app/features/locations.php:287
1299
  #: app/features/locations.php:289 app/features/locations.php:298
1317
  msgid "Location"
1318
  msgstr "Locatie"
1319
 
1320
+ #: app/features/events.php:3074 app/features/events.php:3265
1321
+ #: app/features/events.php:3307 app/features/ix.php:2743
1322
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1323
  #: app/features/mec/meta_boxes/search_form.php:45
1324
  #: app/features/mec/meta_boxes/search_form.php:107
1341
  msgid "Organizer"
1342
  msgstr "Organisator"
1343
 
1344
+ #: app/features/events.php:3078
1345
  msgid "Repeat"
1346
  msgstr "Herhalen"
1347
 
1348
+ #: app/features/events.php:3079
1349
  msgid "Author"
1350
  msgstr "Auteur"
1351
 
1352
+ #: app/features/events.php:3200 app/features/events.php:3201
1353
  msgid "iCal Export"
1354
  msgstr "iCal export"
1355
 
1356
+ #: app/features/events.php:3203 app/features/events.php:3204
1357
  msgid "CSV Export"
1358
  msgstr "CSV export"
1359
 
1360
+ #: app/features/events.php:3206 app/features/events.php:3207
1361
  msgid "MS Excel Export"
1362
  msgstr "Excel export"
1363
 
1364
+ #: app/features/events.php:3209 app/features/events.php:3210
1365
  msgid "XML Export"
1366
  msgstr ""
1367
 
1368
+ #: app/features/events.php:3212 app/features/events.php:3213
1369
  msgid "JSON Export"
1370
  msgstr ""
1371
 
1372
+ #: app/features/events.php:3215 app/features/events.php:3216
1373
+ #: app/features/events.php:3397
1374
  msgid "Duplicate"
1375
  msgstr ""
1376
 
1377
+ #: app/features/events.php:3265 app/features/events.php:3307
1378
  #: app/features/ix.php:2743 app/features/ix.php:2784
1379
  #: app/features/labels.php:177 app/features/locations.php:229
1380
  #: app/features/organizers.php:203 app/features/speakers.php:246
1381
  msgid "ID"
1382
  msgstr "ID"
1383
 
1384
+ #: app/features/events.php:3265 app/features/events.php:3307
1385
  #: app/features/ix.php:2743 app/features/ix.php:2784
1386
  msgid "Link"
1387
  msgstr ""
1388
 
1389
+ #: app/features/events.php:3265 app/features/events.php:3307
1390
  #, php-format
1391
  msgid "%s Tel"
1392
  msgstr ""
1393
 
1394
+ #: app/features/events.php:3265 app/features/events.php:3307
1395
  #, php-format
1396
  msgid "%s Email"
1397
  msgstr ""
1889
  msgid "Import all of your Facebook events into MEC."
1890
  msgstr ""
1891
 
1892
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1893
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1894
  msgid "Documentation"
1895
  msgstr "Documentatie"
2251
  msgstr ""
2252
 
2253
  #: app/features/locations.php:59 app/features/mec.php:337
2254
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2255
  #: app/libraries/main.php:4838
2256
  msgid "Locations"
2257
  msgstr "Locaties"
2417
  msgid "Support"
2418
  msgstr "Support"
2419
 
2420
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2421
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2422
  #: app/libraries/main.php:4840
2423
  msgid "Organizers"
2424
  msgstr "Organisatoren"
2425
 
2426
  #: app/features/mec.php:346 app/features/mec.php:366
2427
+ #: app/features/mec/dashboard.php:236
2428
  msgid "Shortcodes"
2429
  msgstr "Shortcodes"
2430
 
2774
  msgid "Update"
2775
  msgstr "Update label"
2776
 
2777
+ #: app/features/mec/dashboard.php:92
2778
  #, php-format
2779
  msgid ""
2780
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2781
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2782
+ "Spots, etc you should upgrade to the Pro version."
2783
  msgstr ""
2784
 
2785
+ #: app/features/mec/dashboard.php:92
2786
  msgid "lite"
2787
  msgstr ""
2788
 
2789
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2790
+ msgid "GO PREMIUM"
2791
+ msgstr ""
2792
+
2793
+ #: app/features/mec/dashboard.php:98
2794
+ #, php-format
2795
+ msgid ""
2796
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2797
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2798
  msgstr ""
2799
 
2800
+ #: app/features/mec/dashboard.php:98
2801
+ #, fuzzy
2802
+ #| msgid "Address"
2803
+ msgid "WordPress"
2804
+ msgstr "Adres"
2805
+
2806
+ #: app/features/mec/dashboard.php:98
2807
+ msgid "Copouns!"
2808
+ msgstr ""
2809
+
2810
+ #: app/features/mec/dashboard.php:127
2811
  #, fuzzy
2812
  #| msgid "Modern Events Calendar"
2813
  msgid "Getting started with Modern Events Calendar"
2814
  msgstr "Modern Events Calendar"
2815
 
2816
+ #: app/features/mec/dashboard.php:128
2817
  msgid ""
2818
  "In this short video, you can learn how to make an event and put a calendar "
2819
  "on your website. Please watch this 2 minutes video to the end."
2820
  msgstr ""
2821
 
2822
+ #: app/features/mec/dashboard.php:144
2823
  msgid "MEC Activate"
2824
  msgstr ""
2825
 
2826
+ #: app/features/mec/dashboard.php:150
2827
  msgid ""
2828
  "In order to use all plugin features and options, please enter your purchase "
2829
  "code."
2830
  msgstr ""
2831
 
2832
+ #: app/features/mec/dashboard.php:208
2833
  msgid "Activate Addons"
2834
  msgstr ""
2835
 
2836
+ #: app/features/mec/dashboard.php:217
2837
  msgid "You cannot access this section."
2838
  msgstr ""
2839
 
2840
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2841
  msgid "Upcoming Events"
2842
  msgstr ""
2843
 
2844
+ #: app/features/mec/dashboard.php:285
2845
  msgid "Popular Gateways"
2846
  msgstr ""
2847
 
2848
+ #: app/features/mec/dashboard.php:339
2849
  msgid "Total Bookings"
2850
  msgstr ""
2851
 
2852
+ #: app/features/mec/dashboard.php:366
2853
  msgid "This Month"
2854
  msgstr ""
2855
 
2856
+ #: app/features/mec/dashboard.php:367
2857
  msgid "Last Month"
2858
  msgstr ""
2859
 
2860
+ #: app/features/mec/dashboard.php:368
2861
  msgid "This Year"
2862
  msgstr ""
2863
 
2864
+ #: app/features/mec/dashboard.php:369
2865
  msgid "Last Year"
2866
  msgstr ""
2867
 
2868
+ #: app/features/mec/dashboard.php:381
2869
  msgid "Bar"
2870
  msgstr ""
2871
 
2872
+ #: app/features/mec/dashboard.php:382
2873
  msgid "Line"
2874
  msgstr ""
2875
 
2876
+ #: app/features/mec/dashboard.php:384
2877
  msgid "Filter"
2878
  msgstr ""
2879
 
2880
+ #: app/features/mec/dashboard.php:400
2881
  #, php-format
2882
  msgid "Total Sells (%s)"
2883
  msgstr ""
2884
 
2885
+ #: app/features/mec/dashboard.php:421
2886
  msgid "Change Log"
2887
  msgstr "Change log"
2888
 
4296
  "nieuwe boeking is ontvangen."
4297
 
4298
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4299
+ #: app/libraries/notifications.php:478
4300
  msgid "Booking Reminder"
4301
  msgstr ""
4302
 
5473
  "tevreden gebruikers. Loop je tegen problemen aan, aarzel dan niet om contact "
5474
  "met ons op te nemen, wij zullen u zo spoedig mogelijk antwoorden."
5475
 
 
 
 
 
5476
  #: app/features/mec/support.php:128
5477
  msgid "OPEN A TICKET"
5478
  msgstr "OPEN EEN TICKET"
5639
  msgstr ""
5640
 
5641
  #: app/features/search_bar/search_result.php:11
5642
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5643
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5644
  #: app/skins/single.php:160 app/skins/single.php:708
5645
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6234
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6235
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6236
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6237
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6238
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6239
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6240
  #: app/skins/single.php:729 app/skins/single/default.php:233
6254
 
6255
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6256
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6257
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6258
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6259
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6260
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6261
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6320
  msgid "Skin controller does not exist."
6321
  msgstr "Skin controller bestaat niet."
6322
 
6323
+ #: app/libraries/notifications.php:60
6324
  msgid "Please verify your email."
6325
  msgstr "Controleer uw email."
6326
 
6327
+ #: app/libraries/notifications.php:139
6328
  msgid "Your booking is received."
6329
  msgstr ""
6330
 
6331
+ #: app/libraries/notifications.php:224
6332
  msgid "Your booking is confirmed."
6333
  msgstr "Uw boeking is bevestigd."
6334
 
6335
+ #: app/libraries/notifications.php:349
6336
  #, fuzzy
6337
  #| msgid "Your booking cannot be canceled."
6338
  msgid "booking canceled."
6339
  msgstr "Uw boeking kan niet worden geannuleerd."
6340
 
6341
+ #: app/libraries/notifications.php:410
6342
  msgid "A new booking is received."
6343
  msgstr "Een nieuwe boeking ontvangen."
6344
 
6345
+ #: app/libraries/notifications.php:561
6346
  msgid "A new event is added."
6347
  msgstr "Een nieuw evenement is toegevoegd."
6348
 
6349
+ #: app/libraries/notifications.php:746
6350
  msgid "to"
6351
  msgstr ""
6352
 
6353
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6354
  msgid "+ Add to Google Calendar"
6355
  msgstr "+ Aan Google Kalender toevoegen"
6356
 
6357
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6358
  msgid "+ iCal export"
6359
  msgstr "+ iCal export"
6360
 
6361
+ #: app/libraries/notifications.php:821
6362
  msgid "Yes"
6363
  msgstr ""
6364
 
6365
+ #: app/libraries/notifications.php:821
6366
  msgid "No"
6367
  msgstr ""
6368
 
6764
  #~ msgid "Book Date"
6765
  #~ msgstr "Boekings datum"
6766
 
6767
+ #, fuzzy
6768
+ #~| msgid "Ticket"
6769
+ #~ msgid " - Ticket"
6770
+ #~ msgstr "Ticket"
6771
+
6772
  #~ msgid "Confirm"
6773
  #~ msgstr "Bevestig"
6774
 
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: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 16:00+0430\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
@@ -77,7 +77,7 @@ msgid "Event Color"
77
  msgstr "Kolor wydarzenia"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:347
80
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
81
  #: app/features/mec/support.php:20 app/libraries/main.php:587
82
  msgid "Settings"
83
  msgstr "Ustawienia"
@@ -253,7 +253,7 @@ msgid "MEC Activation"
253
  msgstr "Aktywacja MEC"
254
 
255
  #: app/features/events.php:148 app/features/ix/export.php:34
256
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
259
  msgstr "Wydarzenia"
@@ -271,7 +271,7 @@ msgstr "Wydarzenie"
271
  msgid "Add Event"
272
  msgstr "Dodaj wydarzenie"
273
 
274
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
275
  msgid "Add New Event"
276
  msgstr "Dodaj nowe wydarzenie"
277
 
@@ -296,7 +296,7 @@ msgstr "Zobacz wydarzenie"
296
  msgid "No events found in Trash!"
297
  msgstr "Nie znaleziono wydarzeń w Koszu!"
298
 
299
- #: app/features/events.php:173 app/features/events.php:3078
300
  #: app/features/mec/meta_boxes/display_options.php:828
301
  #: app/features/mec/meta_boxes/search_form.php:31
302
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -316,7 +316,7 @@ msgstr "Nie znaleziono wydarzeń w Koszu!"
316
  msgid "Category"
317
  msgstr "Kategoria"
318
 
319
- #: app/features/events.php:174 app/features/events.php:3049
320
  #: app/features/fes/form.php:745 app/features/mec.php:335
321
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
322
  msgid "Categories"
@@ -390,8 +390,8 @@ msgstr ""
390
  msgid "Event Details"
391
  msgstr "Szczegóły wydarzenia"
392
 
393
- #: app/features/events.php:333 app/features/events.php:3271
394
- #: app/features/events.php:3313 app/features/fes/form.php:706
395
  #: app/features/ix.php:2743 app/features/ix.php:2784
396
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
397
  #: app/widgets/single.php:103
@@ -416,19 +416,19 @@ msgstr "Dane gości"
416
  #: app/features/events.php:443 app/features/events.php:2261
417
  #: app/features/fes/form.php:668 app/features/labels.php:178
418
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
419
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
420
  #: app/modules/booking/steps/form.php:37
421
  msgid "Name"
422
  msgstr "Imię"
423
 
424
  #: app/features/events.php:444 app/features/events.php:2272
425
- #: app/features/events.php:2350 app/features/fes/form.php:664
426
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
427
  #: app/features/organizers.php:111 app/features/organizers.php:152
428
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
429
  #: app/features/speakers.php:184 app/libraries/main.php:1471
430
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
431
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
432
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
433
  #: app/skins/single.php:836 app/skins/single/default.php:212
434
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -441,11 +441,11 @@ msgid "Date and Time"
441
  msgstr "Data i godzina"
442
 
443
  #: app/features/events.php:452 app/features/events.php:458
444
- #: app/features/events.php:3081 app/features/events.php:3271
445
- #: app/features/events.php:3313 app/features/fes/form.php:236
446
  #: app/features/fes/form.php:240 app/features/ix.php:2743
447
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
448
- #: app/features/mec/dashboard.php:346
449
  #: app/features/mec/meta_boxes/display_options.php:44
450
  #: app/features/mec/meta_boxes/display_options.php:185
451
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -477,11 +477,11 @@ msgid "PM"
477
  msgstr "PM"
478
 
479
  #: app/features/events.php:544 app/features/events.php:549
480
- #: app/features/events.php:3082 app/features/events.php:3271
481
- #: app/features/events.php:3313 app/features/fes/form.php:276
482
  #: app/features/fes/form.php:280 app/features/ix.php:2743
483
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
484
- #: app/features/mec/dashboard.php:347
485
  msgid "End Date"
486
  msgstr "Data zakończenia"
487
 
@@ -598,7 +598,7 @@ msgid "Repeats"
598
  msgstr "Powtórzenia"
599
 
600
  #: app/features/events.php:703 app/features/fes/form.php:338
601
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
602
  msgid "Daily"
603
  msgstr "Codziennie"
604
 
@@ -620,12 +620,12 @@ msgid "Weekly"
620
  msgstr "Co tydzień"
621
 
622
  #: app/features/events.php:738 app/features/fes/form.php:343
623
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
624
  msgid "Monthly"
625
  msgstr "Co miesiąc"
626
 
627
  #: app/features/events.php:745 app/features/fes/form.php:344
628
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
629
  msgid "Yearly"
630
  msgstr "Co roku"
631
 
@@ -790,7 +790,7 @@ msgstr ""
790
  msgid "Exclude certain days"
791
  msgstr "Wyklucz pewne dni"
792
 
793
- #: app/features/events.php:1141 app/features/events.php:2351
794
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
795
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
796
  #: app/modules/booking/steps/tickets.php:22
@@ -834,8 +834,8 @@ msgstr ""
834
  #: app/features/events.php:1239 app/features/events.php:1278
835
  #: app/features/events.php:1313 app/features/events.php:1345
836
  #: app/features/events.php:1374 app/features/events.php:2130
837
- #: app/features/events.php:2177 app/features/events.php:3077
838
- #: app/features/events.php:3271 app/features/events.php:3313
839
  #: app/features/fes/form.php:225 app/features/ix.php:2743
840
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
841
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1017,13 +1017,13 @@ msgid "Ticket Name"
1017
  msgstr "Nazwa biletu"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
- #: app/features/events.php:3271 app/features/events.php:3313
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr "Czas rozpoczęcia"
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
- #: app/features/events.php:3271 app/features/events.php:3313
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr "Czas zakończenia"
@@ -1146,53 +1146,53 @@ msgstr "Wartość (bilet)"
1146
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1147
  msgstr ""
1148
 
1149
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1150
  #: app/libraries/main.php:2523
1151
  #, fuzzy
1152
  #| msgid "Name"
1153
  msgid "MEC Name"
1154
  msgstr "Imię"
1155
 
1156
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1157
  #: app/libraries/main.php:2552
1158
  #, fuzzy
1159
  #| msgid "Email"
1160
  msgid "MEC Email"
1161
  msgstr "Email"
1162
 
1163
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1164
  #: app/libraries/main.php:2493
1165
  msgid "Text"
1166
  msgstr "Pole tekstowe"
1167
 
1168
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1169
  #: app/features/organizers.php:103 app/features/organizers.php:148
1170
  #: app/features/speakers.php:116 app/features/speakers.php:180
1171
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1172
  msgid "Tel"
1173
  msgstr "Tel"
1174
 
1175
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1176
  #: app/libraries/main.php:2611
1177
  msgid "File"
1178
  msgstr ""
1179
 
1180
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1181
  #: app/libraries/main.php:2698
1182
  msgid "Textarea"
1183
  msgstr "Obszar tekstowy"
1184
 
1185
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1186
  #: app/libraries/main.php:2751
1187
  msgid "Checkboxes"
1188
  msgstr "Pola wyboru"
1189
 
1190
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1191
  #: app/libraries/main.php:2795
1192
  msgid "Radio Buttons"
1193
  msgstr "Przyciski radiowe"
1194
 
1195
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1196
  #: app/features/mec/meta_boxes/search_form.php:34
1197
  #: app/features/mec/meta_boxes/search_form.php:41
1198
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1265,36 +1265,36 @@ msgstr "Przyciski radiowe"
1265
  msgid "Dropdown"
1266
  msgstr "Lista rozwijalna"
1267
 
1268
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1269
  #: app/libraries/main.php:2886
1270
  msgid "Agreement"
1271
  msgstr ""
1272
 
1273
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1274
  #: app/libraries/main.php:2727
1275
  msgid "Paragraph"
1276
  msgstr "Paragraf"
1277
 
1278
- #: app/features/events.php:2998 app/features/events.php:3015
1279
- #: app/features/events.php:3032 app/features/events.php:3049
1280
  #, php-format
1281
  msgid "Show all %s"
1282
  msgstr "Wyświetl wszystkie %s"
1283
 
1284
- #: app/features/events.php:2998
1285
  msgid "labels"
1286
  msgstr "etykiety"
1287
 
1288
- #: app/features/events.php:3015
1289
  msgid "locations"
1290
  msgstr "lokalizacje"
1291
 
1292
- #: app/features/events.php:3032
1293
  msgid "organizers"
1294
  msgstr "organizatorzy"
1295
 
1296
- #: app/features/events.php:3079 app/features/events.php:3271
1297
- #: app/features/events.php:3313 app/features/ix.php:2743
1298
  #: app/features/ix.php:2784 app/features/locations.php:58
1299
  #: app/features/locations.php:230 app/features/locations.php:287
1300
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1318,8 +1318,8 @@ msgstr "organizatorzy"
1318
  msgid "Location"
1319
  msgstr "Lokalizacja"
1320
 
1321
- #: app/features/events.php:3080 app/features/events.php:3271
1322
- #: app/features/events.php:3313 app/features/ix.php:2743
1323
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1324
  #: app/features/mec/meta_boxes/search_form.php:45
1325
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1342,57 +1342,57 @@ msgstr "Lokalizacja"
1342
  msgid "Organizer"
1343
  msgstr "Organizator"
1344
 
1345
- #: app/features/events.php:3084
1346
  msgid "Repeat"
1347
  msgstr "Powtarzanie"
1348
 
1349
- #: app/features/events.php:3085
1350
  msgid "Author"
1351
  msgstr "Author"
1352
 
1353
- #: app/features/events.php:3206 app/features/events.php:3207
1354
  msgid "iCal Export"
1355
  msgstr "iCal eksport"
1356
 
1357
- #: app/features/events.php:3209 app/features/events.php:3210
1358
  msgid "CSV Export"
1359
  msgstr "Eksport CSV"
1360
 
1361
- #: app/features/events.php:3212 app/features/events.php:3213
1362
  msgid "MS Excel Export"
1363
  msgstr "MS Excel Export"
1364
 
1365
- #: app/features/events.php:3215 app/features/events.php:3216
1366
  msgid "XML Export"
1367
  msgstr "Eksportuj XML"
1368
 
1369
- #: app/features/events.php:3218 app/features/events.php:3219
1370
  msgid "JSON Export"
1371
  msgstr "Eksportuj JSON"
1372
 
1373
- #: app/features/events.php:3221 app/features/events.php:3222
1374
- #: app/features/events.php:3403
1375
  msgid "Duplicate"
1376
  msgstr "Duplikuj"
1377
 
1378
- #: app/features/events.php:3271 app/features/events.php:3313
1379
  #: app/features/ix.php:2743 app/features/ix.php:2784
1380
  #: app/features/labels.php:177 app/features/locations.php:229
1381
  #: app/features/organizers.php:203 app/features/speakers.php:246
1382
  msgid "ID"
1383
  msgstr "ID"
1384
 
1385
- #: app/features/events.php:3271 app/features/events.php:3313
1386
  #: app/features/ix.php:2743 app/features/ix.php:2784
1387
  msgid "Link"
1388
  msgstr "Link"
1389
 
1390
- #: app/features/events.php:3271 app/features/events.php:3313
1391
  #, php-format
1392
  msgid "%s Tel"
1393
  msgstr "%s Tel"
1394
 
1395
- #: app/features/events.php:3271 app/features/events.php:3313
1396
  #, php-format
1397
  msgid "%s Email"
1398
  msgstr "%s Email"
@@ -1912,7 +1912,7 @@ msgstr "Importuj z kalendarza Facebook"
1912
  msgid "Import all of your Facebook events into MEC."
1913
  msgstr "Importuj wszystkie wydarzenia Facebook do MEC."
1914
 
1915
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1916
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1917
  msgid "Documentation"
1918
  msgstr "Dokumentacja"
@@ -2304,7 +2304,7 @@ msgid "Event %s"
2304
  msgstr "Wydarzenie %s"
2305
 
2306
  #: app/features/locations.php:59 app/features/mec.php:337
2307
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2308
  #: app/libraries/main.php:4838
2309
  msgid "Locations"
2310
  msgstr "Lokalizacje"
@@ -2470,14 +2470,14 @@ msgstr "Wsparcie"
2470
  msgid "Support"
2471
  msgstr "Wsparcie"
2472
 
2473
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2474
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2475
  #: app/libraries/main.php:4840
2476
  msgid "Organizers"
2477
  msgstr "Organizatorzy"
2478
 
2479
  #: app/features/mec.php:346 app/features/mec.php:366
2480
- #: app/features/mec/dashboard.php:209
2481
  msgid "Shortcodes"
2482
  msgstr "Shortcodes"
2483
 
@@ -2825,102 +2825,119 @@ msgstr ""
2825
  msgid "Update"
2826
  msgstr "Zaktualizuj %s"
2827
 
2828
- #: app/features/mec/dashboard.php:90
2829
  #, php-format
2830
  msgid ""
2831
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2832
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2833
- "Spots, etc you should %s to the Pro version."
2834
  msgstr ""
2835
 
2836
- #: app/features/mec/dashboard.php:90
2837
  msgid "lite"
2838
  msgstr ""
2839
 
2840
- #: app/features/mec/dashboard.php:90
2841
- msgid "upgrade"
 
 
 
 
 
 
 
2842
  msgstr ""
2843
 
2844
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2845
  #, fuzzy
2846
  #| msgid "Modern Events Calendar"
2847
  msgid "Getting started with Modern Events Calendar"
2848
  msgstr "Nowoczesny Kalendarz Wydarzeń"
2849
 
2850
- #: app/features/mec/dashboard.php:101
2851
  msgid ""
2852
  "In this short video, you can learn how to make an event and put a calendar "
2853
  "on your website. Please watch this 2 minutes video to the end."
2854
  msgstr ""
2855
 
2856
- #: app/features/mec/dashboard.php:117
2857
  #, fuzzy
2858
  #| msgid "MEC Activation"
2859
  msgid "MEC Activate"
2860
  msgstr "Aktywacja MEC"
2861
 
2862
- #: app/features/mec/dashboard.php:123
2863
  msgid ""
2864
  "In order to use all plugin features and options, please enter your purchase "
2865
  "code."
2866
  msgstr ""
2867
 
2868
- #: app/features/mec/dashboard.php:181
2869
  #, fuzzy
2870
  #| msgid "MEC Activation"
2871
  msgid "Activate Addons"
2872
  msgstr "Aktywacja MEC"
2873
 
2874
- #: app/features/mec/dashboard.php:190
2875
  msgid "You cannot access this section."
2876
  msgstr ""
2877
 
2878
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2879
  msgid "Upcoming Events"
2880
  msgstr "Nadchodzące wydarzenia"
2881
 
2882
- #: app/features/mec/dashboard.php:258
2883
  msgid "Popular Gateways"
2884
  msgstr "Popularne bramki płatności"
2885
 
2886
- #: app/features/mec/dashboard.php:312
2887
  msgid "Total Bookings"
2888
  msgstr "Rezerwacje"
2889
 
2890
- #: app/features/mec/dashboard.php:339
2891
  msgid "This Month"
2892
  msgstr "Ten miesiąc"
2893
 
2894
- #: app/features/mec/dashboard.php:340
2895
  msgid "Last Month"
2896
  msgstr "Ostatni miesiąc"
2897
 
2898
- #: app/features/mec/dashboard.php:341
2899
  msgid "This Year"
2900
  msgstr "W tym roku"
2901
 
2902
- #: app/features/mec/dashboard.php:342
2903
  msgid "Last Year"
2904
  msgstr "W poprzednim roku"
2905
 
2906
- #: app/features/mec/dashboard.php:354
2907
  msgid "Bar"
2908
  msgstr "Pasek"
2909
 
2910
- #: app/features/mec/dashboard.php:355
2911
  msgid "Line"
2912
  msgstr "Linia"
2913
 
2914
- #: app/features/mec/dashboard.php:357
2915
  msgid "Filter"
2916
  msgstr "Filtr"
2917
 
2918
- #: app/features/mec/dashboard.php:373
2919
  #, php-format
2920
  msgid "Total Sells (%s)"
2921
  msgstr "Sprzedaż w sumie (%s)"
2922
 
2923
- #: app/features/mec/dashboard.php:394
2924
  msgid "Change Log"
2925
  msgstr "Dziennik Zmian"
2926
 
@@ -4324,7 +4341,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4324
  msgstr "Wysyła do administratora email z informacją o nowej rezerwacji."
4325
 
4326
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4327
- #: app/libraries/notifications.php:405
4328
  msgid "Booking Reminder"
4329
  msgstr ""
4330
 
@@ -5561,10 +5578,6 @@ msgstr ""
5561
  "funkcjonowaniem kalendarza, niezwłocznie skontaktuj się z nami - pomożemy Ci "
5562
  "najszybciej jak tylko będzie to możliwe."
5563
 
5564
- #: app/features/mec/support.php:126
5565
- msgid "GO PREMIUM"
5566
- msgstr ""
5567
-
5568
  #: app/features/mec/support.php:128
5569
  msgid "OPEN A TICKET"
5570
  msgstr "Wyślij zgłoszenie"
@@ -5731,7 +5744,7 @@ msgid "No search result."
5731
  msgstr ""
5732
 
5733
  #: app/features/search_bar/search_result.php:11
5734
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5735
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5736
  #: app/skins/single.php:160 app/skins/single.php:708
5737
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6326,7 +6339,7 @@ msgstr "Przycisk rejestracji"
6326
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6327
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6328
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6329
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6330
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6331
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6332
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6346,8 +6359,8 @@ msgstr "Pokaż szczegóły"
6346
 
6347
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6348
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6349
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6350
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6351
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6352
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6353
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6411,49 +6424,49 @@ msgstr "Oczekuje"
6411
  msgid "Skin controller does not exist."
6412
  msgstr "Kontroler skórki nie iestnieje."
6413
 
6414
- #: app/libraries/notifications.php:61
6415
  msgid "Please verify your email."
6416
  msgstr "Potwierdź swój email."
6417
 
6418
- #: app/libraries/notifications.php:125
6419
  msgid "Your booking is received."
6420
  msgstr "Otrzymaliśmy twoją rezerwację."
6421
 
6422
- #: app/libraries/notifications.php:193
6423
  msgid "Your booking is confirmed."
6424
  msgstr "Twoja rezerwacja jest potwierdzona."
6425
 
6426
- #: app/libraries/notifications.php:282
6427
  #, fuzzy
6428
  #| msgid "Your booking cannot be canceled."
6429
  msgid "booking canceled."
6430
  msgstr "Twoja rezerwacja nie może zostać anulowana."
6431
 
6432
- #: app/libraries/notifications.php:337
6433
  msgid "A new booking is received."
6434
  msgstr "Otrzymałeś nową rezerwację."
6435
 
6436
- #: app/libraries/notifications.php:488
6437
  msgid "A new event is added."
6438
  msgstr "Nowe wydarzenie zostało dodane."
6439
 
6440
- #: app/libraries/notifications.php:674
6441
  msgid "to"
6442
  msgstr ""
6443
 
6444
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6445
  msgid "+ Add to Google Calendar"
6446
  msgstr "+ Dodaj do Google Calendar"
6447
 
6448
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6449
  msgid "+ iCal export"
6450
  msgstr "+ eksport iCal"
6451
 
6452
- #: app/libraries/notifications.php:752
6453
  msgid "Yes"
6454
  msgstr ""
6455
 
6456
- #: app/libraries/notifications.php:752
6457
  msgid "No"
6458
  msgstr ""
6459
 
@@ -6884,6 +6897,11 @@ msgstr ""
6884
  #~ msgid "Book Date"
6885
  #~ msgstr "Data rezerwacji"
6886
 
 
 
 
 
 
6887
  #~ msgid "Confirm"
6888
  #~ msgstr "Potwierdź"
6889
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:23+0430\n"
6
  "Last-Translator: Łukasz Szmigiel <lszmigiel@szmigieldesign.pl>\n"
7
  "Language-Team: \n"
8
  "Language: pl_PL\n"
77
  msgstr "Kolor wydarzenia"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:347
80
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
81
  #: app/features/mec/support.php:20 app/libraries/main.php:587
82
  msgid "Settings"
83
  msgstr "Ustawienia"
253
  msgstr "Aktywacja MEC"
254
 
255
  #: app/features/events.php:148 app/features/ix/export.php:34
256
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
259
  msgstr "Wydarzenia"
271
  msgid "Add Event"
272
  msgstr "Dodaj wydarzenie"
273
 
274
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
275
  msgid "Add New Event"
276
  msgstr "Dodaj nowe wydarzenie"
277
 
296
  msgid "No events found in Trash!"
297
  msgstr "Nie znaleziono wydarzeń w Koszu!"
298
 
299
+ #: app/features/events.php:173 app/features/events.php:3072
300
  #: app/features/mec/meta_boxes/display_options.php:828
301
  #: app/features/mec/meta_boxes/search_form.php:31
302
  #: app/features/mec/meta_boxes/search_form.php:93
316
  msgid "Category"
317
  msgstr "Kategoria"
318
 
319
+ #: app/features/events.php:174 app/features/events.php:3043
320
  #: app/features/fes/form.php:745 app/features/mec.php:335
321
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
322
  msgid "Categories"
390
  msgid "Event Details"
391
  msgstr "Szczegóły wydarzenia"
392
 
393
+ #: app/features/events.php:333 app/features/events.php:3265
394
+ #: app/features/events.php:3307 app/features/fes/form.php:706
395
  #: app/features/ix.php:2743 app/features/ix.php:2784
396
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
397
  #: app/widgets/single.php:103
416
  #: app/features/events.php:443 app/features/events.php:2261
417
  #: app/features/fes/form.php:668 app/features/labels.php:178
418
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
419
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
420
  #: app/modules/booking/steps/form.php:37
421
  msgid "Name"
422
  msgstr "Imię"
423
 
424
  #: app/features/events.php:444 app/features/events.php:2272
425
+ #: app/features/events.php:2348 app/features/fes/form.php:664
426
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
427
  #: app/features/organizers.php:111 app/features/organizers.php:152
428
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
429
  #: app/features/speakers.php:184 app/libraries/main.php:1471
430
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
431
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
432
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
433
  #: app/skins/single.php:836 app/skins/single/default.php:212
434
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
441
  msgstr "Data i godzina"
442
 
443
  #: app/features/events.php:452 app/features/events.php:458
444
+ #: app/features/events.php:3075 app/features/events.php:3265
445
+ #: app/features/events.php:3307 app/features/fes/form.php:236
446
  #: app/features/fes/form.php:240 app/features/ix.php:2743
447
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
448
+ #: app/features/mec/dashboard.php:373
449
  #: app/features/mec/meta_boxes/display_options.php:44
450
  #: app/features/mec/meta_boxes/display_options.php:185
451
  #: app/features/mec/meta_boxes/display_options.php:337
477
  msgstr "PM"
478
 
479
  #: app/features/events.php:544 app/features/events.php:549
480
+ #: app/features/events.php:3076 app/features/events.php:3265
481
+ #: app/features/events.php:3307 app/features/fes/form.php:276
482
  #: app/features/fes/form.php:280 app/features/ix.php:2743
483
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
484
+ #: app/features/mec/dashboard.php:374
485
  msgid "End Date"
486
  msgstr "Data zakończenia"
487
 
598
  msgstr "Powtórzenia"
599
 
600
  #: app/features/events.php:703 app/features/fes/form.php:338
601
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
602
  msgid "Daily"
603
  msgstr "Codziennie"
604
 
620
  msgstr "Co tydzień"
621
 
622
  #: app/features/events.php:738 app/features/fes/form.php:343
623
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
624
  msgid "Monthly"
625
  msgstr "Co miesiąc"
626
 
627
  #: app/features/events.php:745 app/features/fes/form.php:344
628
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
629
  msgid "Yearly"
630
  msgstr "Co roku"
631
 
790
  msgid "Exclude certain days"
791
  msgstr "Wyklucz pewne dni"
792
 
793
+ #: app/features/events.php:1141 app/features/events.php:2349
794
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
795
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
796
  #: app/modules/booking/steps/tickets.php:22
834
  #: app/features/events.php:1239 app/features/events.php:1278
835
  #: app/features/events.php:1313 app/features/events.php:1345
836
  #: app/features/events.php:1374 app/features/events.php:2130
837
+ #: app/features/events.php:2177 app/features/events.php:3071
838
+ #: app/features/events.php:3265 app/features/events.php:3307
839
  #: app/features/fes/form.php:225 app/features/ix.php:2743
840
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
841
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1017
  msgstr "Nazwa biletu"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
+ #: app/features/events.php:3265 app/features/events.php:3307
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr "Czas rozpoczęcia"
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
+ #: app/features/events.php:3265 app/features/events.php:3307
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr "Czas zakończenia"
1146
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1147
  msgstr ""
1148
 
1149
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1150
  #: app/libraries/main.php:2523
1151
  #, fuzzy
1152
  #| msgid "Name"
1153
  msgid "MEC Name"
1154
  msgstr "Imię"
1155
 
1156
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1157
  #: app/libraries/main.php:2552
1158
  #, fuzzy
1159
  #| msgid "Email"
1160
  msgid "MEC Email"
1161
  msgstr "Email"
1162
 
1163
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1164
  #: app/libraries/main.php:2493
1165
  msgid "Text"
1166
  msgstr "Pole tekstowe"
1167
 
1168
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1169
  #: app/features/organizers.php:103 app/features/organizers.php:148
1170
  #: app/features/speakers.php:116 app/features/speakers.php:180
1171
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1172
  msgid "Tel"
1173
  msgstr "Tel"
1174
 
1175
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1176
  #: app/libraries/main.php:2611
1177
  msgid "File"
1178
  msgstr ""
1179
 
1180
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1181
  #: app/libraries/main.php:2698
1182
  msgid "Textarea"
1183
  msgstr "Obszar tekstowy"
1184
 
1185
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1186
  #: app/libraries/main.php:2751
1187
  msgid "Checkboxes"
1188
  msgstr "Pola wyboru"
1189
 
1190
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1191
  #: app/libraries/main.php:2795
1192
  msgid "Radio Buttons"
1193
  msgstr "Przyciski radiowe"
1194
 
1195
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1196
  #: app/features/mec/meta_boxes/search_form.php:34
1197
  #: app/features/mec/meta_boxes/search_form.php:41
1198
  #: app/features/mec/meta_boxes/search_form.php:48
1265
  msgid "Dropdown"
1266
  msgstr "Lista rozwijalna"
1267
 
1268
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1269
  #: app/libraries/main.php:2886
1270
  msgid "Agreement"
1271
  msgstr ""
1272
 
1273
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1274
  #: app/libraries/main.php:2727
1275
  msgid "Paragraph"
1276
  msgstr "Paragraf"
1277
 
1278
+ #: app/features/events.php:2992 app/features/events.php:3009
1279
+ #: app/features/events.php:3026 app/features/events.php:3043
1280
  #, php-format
1281
  msgid "Show all %s"
1282
  msgstr "Wyświetl wszystkie %s"
1283
 
1284
+ #: app/features/events.php:2992
1285
  msgid "labels"
1286
  msgstr "etykiety"
1287
 
1288
+ #: app/features/events.php:3009
1289
  msgid "locations"
1290
  msgstr "lokalizacje"
1291
 
1292
+ #: app/features/events.php:3026
1293
  msgid "organizers"
1294
  msgstr "organizatorzy"
1295
 
1296
+ #: app/features/events.php:3073 app/features/events.php:3265
1297
+ #: app/features/events.php:3307 app/features/ix.php:2743
1298
  #: app/features/ix.php:2784 app/features/locations.php:58
1299
  #: app/features/locations.php:230 app/features/locations.php:287
1300
  #: app/features/locations.php:289 app/features/locations.php:298
1318
  msgid "Location"
1319
  msgstr "Lokalizacja"
1320
 
1321
+ #: app/features/events.php:3074 app/features/events.php:3265
1322
+ #: app/features/events.php:3307 app/features/ix.php:2743
1323
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1324
  #: app/features/mec/meta_boxes/search_form.php:45
1325
  #: app/features/mec/meta_boxes/search_form.php:107
1342
  msgid "Organizer"
1343
  msgstr "Organizator"
1344
 
1345
+ #: app/features/events.php:3078
1346
  msgid "Repeat"
1347
  msgstr "Powtarzanie"
1348
 
1349
+ #: app/features/events.php:3079
1350
  msgid "Author"
1351
  msgstr "Author"
1352
 
1353
+ #: app/features/events.php:3200 app/features/events.php:3201
1354
  msgid "iCal Export"
1355
  msgstr "iCal eksport"
1356
 
1357
+ #: app/features/events.php:3203 app/features/events.php:3204
1358
  msgid "CSV Export"
1359
  msgstr "Eksport CSV"
1360
 
1361
+ #: app/features/events.php:3206 app/features/events.php:3207
1362
  msgid "MS Excel Export"
1363
  msgstr "MS Excel Export"
1364
 
1365
+ #: app/features/events.php:3209 app/features/events.php:3210
1366
  msgid "XML Export"
1367
  msgstr "Eksportuj XML"
1368
 
1369
+ #: app/features/events.php:3212 app/features/events.php:3213
1370
  msgid "JSON Export"
1371
  msgstr "Eksportuj JSON"
1372
 
1373
+ #: app/features/events.php:3215 app/features/events.php:3216
1374
+ #: app/features/events.php:3397
1375
  msgid "Duplicate"
1376
  msgstr "Duplikuj"
1377
 
1378
+ #: app/features/events.php:3265 app/features/events.php:3307
1379
  #: app/features/ix.php:2743 app/features/ix.php:2784
1380
  #: app/features/labels.php:177 app/features/locations.php:229
1381
  #: app/features/organizers.php:203 app/features/speakers.php:246
1382
  msgid "ID"
1383
  msgstr "ID"
1384
 
1385
+ #: app/features/events.php:3265 app/features/events.php:3307
1386
  #: app/features/ix.php:2743 app/features/ix.php:2784
1387
  msgid "Link"
1388
  msgstr "Link"
1389
 
1390
+ #: app/features/events.php:3265 app/features/events.php:3307
1391
  #, php-format
1392
  msgid "%s Tel"
1393
  msgstr "%s Tel"
1394
 
1395
+ #: app/features/events.php:3265 app/features/events.php:3307
1396
  #, php-format
1397
  msgid "%s Email"
1398
  msgstr "%s Email"
1912
  msgid "Import all of your Facebook events into MEC."
1913
  msgstr "Importuj wszystkie wydarzenia Facebook do MEC."
1914
 
1915
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1916
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1917
  msgid "Documentation"
1918
  msgstr "Dokumentacja"
2304
  msgstr "Wydarzenie %s"
2305
 
2306
  #: app/features/locations.php:59 app/features/mec.php:337
2307
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2308
  #: app/libraries/main.php:4838
2309
  msgid "Locations"
2310
  msgstr "Lokalizacje"
2470
  msgid "Support"
2471
  msgstr "Wsparcie"
2472
 
2473
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2474
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2475
  #: app/libraries/main.php:4840
2476
  msgid "Organizers"
2477
  msgstr "Organizatorzy"
2478
 
2479
  #: app/features/mec.php:346 app/features/mec.php:366
2480
+ #: app/features/mec/dashboard.php:236
2481
  msgid "Shortcodes"
2482
  msgstr "Shortcodes"
2483
 
2825
  msgid "Update"
2826
  msgstr "Zaktualizuj %s"
2827
 
2828
+ #: app/features/mec/dashboard.php:92
2829
  #, php-format
2830
  msgid ""
2831
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2832
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2833
+ "Spots, etc you should upgrade to the Pro version."
2834
  msgstr ""
2835
 
2836
+ #: app/features/mec/dashboard.php:92
2837
  msgid "lite"
2838
  msgstr ""
2839
 
2840
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2841
+ msgid "GO PREMIUM"
2842
+ msgstr ""
2843
+
2844
+ #: app/features/mec/dashboard.php:98
2845
+ #, php-format
2846
+ msgid ""
2847
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2848
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2849
  msgstr ""
2850
 
2851
+ #: app/features/mec/dashboard.php:98
2852
+ #, fuzzy
2853
+ #| msgid "Address"
2854
+ msgid "WordPress"
2855
+ msgstr "Adres"
2856
+
2857
+ #: app/features/mec/dashboard.php:98
2858
+ msgid "Copouns!"
2859
+ msgstr ""
2860
+
2861
+ #: app/features/mec/dashboard.php:127
2862
  #, fuzzy
2863
  #| msgid "Modern Events Calendar"
2864
  msgid "Getting started with Modern Events Calendar"
2865
  msgstr "Nowoczesny Kalendarz Wydarzeń"
2866
 
2867
+ #: app/features/mec/dashboard.php:128
2868
  msgid ""
2869
  "In this short video, you can learn how to make an event and put a calendar "
2870
  "on your website. Please watch this 2 minutes video to the end."
2871
  msgstr ""
2872
 
2873
+ #: app/features/mec/dashboard.php:144
2874
  #, fuzzy
2875
  #| msgid "MEC Activation"
2876
  msgid "MEC Activate"
2877
  msgstr "Aktywacja MEC"
2878
 
2879
+ #: app/features/mec/dashboard.php:150
2880
  msgid ""
2881
  "In order to use all plugin features and options, please enter your purchase "
2882
  "code."
2883
  msgstr ""
2884
 
2885
+ #: app/features/mec/dashboard.php:208
2886
  #, fuzzy
2887
  #| msgid "MEC Activation"
2888
  msgid "Activate Addons"
2889
  msgstr "Aktywacja MEC"
2890
 
2891
+ #: app/features/mec/dashboard.php:217
2892
  msgid "You cannot access this section."
2893
  msgstr ""
2894
 
2895
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2896
  msgid "Upcoming Events"
2897
  msgstr "Nadchodzące wydarzenia"
2898
 
2899
+ #: app/features/mec/dashboard.php:285
2900
  msgid "Popular Gateways"
2901
  msgstr "Popularne bramki płatności"
2902
 
2903
+ #: app/features/mec/dashboard.php:339
2904
  msgid "Total Bookings"
2905
  msgstr "Rezerwacje"
2906
 
2907
+ #: app/features/mec/dashboard.php:366
2908
  msgid "This Month"
2909
  msgstr "Ten miesiąc"
2910
 
2911
+ #: app/features/mec/dashboard.php:367
2912
  msgid "Last Month"
2913
  msgstr "Ostatni miesiąc"
2914
 
2915
+ #: app/features/mec/dashboard.php:368
2916
  msgid "This Year"
2917
  msgstr "W tym roku"
2918
 
2919
+ #: app/features/mec/dashboard.php:369
2920
  msgid "Last Year"
2921
  msgstr "W poprzednim roku"
2922
 
2923
+ #: app/features/mec/dashboard.php:381
2924
  msgid "Bar"
2925
  msgstr "Pasek"
2926
 
2927
+ #: app/features/mec/dashboard.php:382
2928
  msgid "Line"
2929
  msgstr "Linia"
2930
 
2931
+ #: app/features/mec/dashboard.php:384
2932
  msgid "Filter"
2933
  msgstr "Filtr"
2934
 
2935
+ #: app/features/mec/dashboard.php:400
2936
  #, php-format
2937
  msgid "Total Sells (%s)"
2938
  msgstr "Sprzedaż w sumie (%s)"
2939
 
2940
+ #: app/features/mec/dashboard.php:421
2941
  msgid "Change Log"
2942
  msgstr "Dziennik Zmian"
2943
 
4341
  msgstr "Wysyła do administratora email z informacją o nowej rezerwacji."
4342
 
4343
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4344
+ #: app/libraries/notifications.php:478
4345
  msgid "Booking Reminder"
4346
  msgstr ""
4347
 
5578
  "funkcjonowaniem kalendarza, niezwłocznie skontaktuj się z nami - pomożemy Ci "
5579
  "najszybciej jak tylko będzie to możliwe."
5580
 
 
 
 
 
5581
  #: app/features/mec/support.php:128
5582
  msgid "OPEN A TICKET"
5583
  msgstr "Wyślij zgłoszenie"
5744
  msgstr ""
5745
 
5746
  #: app/features/search_bar/search_result.php:11
5747
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5748
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5749
  #: app/skins/single.php:160 app/skins/single.php:708
5750
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6339
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6340
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6341
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6342
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6343
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6344
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6345
  #: app/skins/single.php:729 app/skins/single/default.php:233
6359
 
6360
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6361
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6362
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6363
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6364
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6365
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6366
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6424
  msgid "Skin controller does not exist."
6425
  msgstr "Kontroler skórki nie iestnieje."
6426
 
6427
+ #: app/libraries/notifications.php:60
6428
  msgid "Please verify your email."
6429
  msgstr "Potwierdź swój email."
6430
 
6431
+ #: app/libraries/notifications.php:139
6432
  msgid "Your booking is received."
6433
  msgstr "Otrzymaliśmy twoją rezerwację."
6434
 
6435
+ #: app/libraries/notifications.php:224
6436
  msgid "Your booking is confirmed."
6437
  msgstr "Twoja rezerwacja jest potwierdzona."
6438
 
6439
+ #: app/libraries/notifications.php:349
6440
  #, fuzzy
6441
  #| msgid "Your booking cannot be canceled."
6442
  msgid "booking canceled."
6443
  msgstr "Twoja rezerwacja nie może zostać anulowana."
6444
 
6445
+ #: app/libraries/notifications.php:410
6446
  msgid "A new booking is received."
6447
  msgstr "Otrzymałeś nową rezerwację."
6448
 
6449
+ #: app/libraries/notifications.php:561
6450
  msgid "A new event is added."
6451
  msgstr "Nowe wydarzenie zostało dodane."
6452
 
6453
+ #: app/libraries/notifications.php:746
6454
  msgid "to"
6455
  msgstr ""
6456
 
6457
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6458
  msgid "+ Add to Google Calendar"
6459
  msgstr "+ Dodaj do Google Calendar"
6460
 
6461
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6462
  msgid "+ iCal export"
6463
  msgstr "+ eksport iCal"
6464
 
6465
+ #: app/libraries/notifications.php:821
6466
  msgid "Yes"
6467
  msgstr ""
6468
 
6469
+ #: app/libraries/notifications.php:821
6470
  msgid "No"
6471
  msgstr ""
6472
 
6897
  #~ msgid "Book Date"
6898
  #~ msgstr "Data rezerwacji"
6899
 
6900
+ #, fuzzy
6901
+ #~| msgid "Ticket"
6902
+ #~ msgid " - Ticket"
6903
+ #~ msgstr "Zgłoszenie"
6904
+
6905
  #~ msgid "Confirm"
6906
  #~ msgstr "Potwierdź"
6907
 
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: 2019-09-04 15:57+0430\n"
6
- "PO-Revision-Date: 2019-09-04 16:00+0430\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
@@ -77,7 +77,7 @@ msgid "Event Color"
77
  msgstr "Cor do Evento"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:347
80
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
81
  #: app/features/mec/support.php:20 app/libraries/main.php:587
82
  msgid "Settings"
83
  msgstr "Configurações"
@@ -253,7 +253,7 @@ msgid "MEC Activation"
253
  msgstr "Ativação CEM"
254
 
255
  #: app/features/events.php:148 app/features/ix/export.php:34
256
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
259
  msgstr "Eventos"
@@ -271,7 +271,7 @@ msgstr "Evento"
271
  msgid "Add Event"
272
  msgstr "Adicionar Evento"
273
 
274
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
275
  msgid "Add New Event"
276
  msgstr "Adicionar Novo Evento"
277
 
@@ -296,7 +296,7 @@ msgstr "Ver Evento"
296
  msgid "No events found in Trash!"
297
  msgstr "Nenhum evento encontrado na Lixeira!"
298
 
299
- #: app/features/events.php:173 app/features/events.php:3078
300
  #: app/features/mec/meta_boxes/display_options.php:828
301
  #: app/features/mec/meta_boxes/search_form.php:31
302
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -316,7 +316,7 @@ msgstr "Nenhum evento encontrado na Lixeira!"
316
  msgid "Category"
317
  msgstr "Categoria"
318
 
319
- #: app/features/events.php:174 app/features/events.php:3049
320
  #: app/features/fes/form.php:745 app/features/mec.php:335
321
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
322
  msgid "Categories"
@@ -390,8 +390,8 @@ msgstr ""
390
  msgid "Event Details"
391
  msgstr "Detalhes do Evento"
392
 
393
- #: app/features/events.php:333 app/features/events.php:3271
394
- #: app/features/events.php:3313 app/features/fes/form.php:706
395
  #: app/features/ix.php:2743 app/features/ix.php:2784
396
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
397
  #: app/widgets/single.php:103
@@ -416,19 +416,19 @@ msgstr ""
416
  #: app/features/events.php:443 app/features/events.php:2261
417
  #: app/features/fes/form.php:668 app/features/labels.php:178
418
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
419
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
420
  #: app/modules/booking/steps/form.php:37
421
  msgid "Name"
422
  msgstr "Nome"
423
 
424
  #: app/features/events.php:444 app/features/events.php:2272
425
- #: app/features/events.php:2350 app/features/fes/form.php:664
426
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
427
  #: app/features/organizers.php:111 app/features/organizers.php:152
428
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
429
  #: app/features/speakers.php:184 app/libraries/main.php:1471
430
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
431
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
432
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
433
  #: app/skins/single.php:836 app/skins/single/default.php:212
434
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -441,11 +441,11 @@ msgid "Date and Time"
441
  msgstr "Data e Hora"
442
 
443
  #: app/features/events.php:452 app/features/events.php:458
444
- #: app/features/events.php:3081 app/features/events.php:3271
445
- #: app/features/events.php:3313 app/features/fes/form.php:236
446
  #: app/features/fes/form.php:240 app/features/ix.php:2743
447
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
448
- #: app/features/mec/dashboard.php:346
449
  #: app/features/mec/meta_boxes/display_options.php:44
450
  #: app/features/mec/meta_boxes/display_options.php:185
451
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -477,11 +477,11 @@ msgid "PM"
477
  msgstr "PM"
478
 
479
  #: app/features/events.php:544 app/features/events.php:549
480
- #: app/features/events.php:3082 app/features/events.php:3271
481
- #: app/features/events.php:3313 app/features/fes/form.php:276
482
  #: app/features/fes/form.php:280 app/features/ix.php:2743
483
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
484
- #: app/features/mec/dashboard.php:347
485
  msgid "End Date"
486
  msgstr "Data de Término"
487
 
@@ -598,7 +598,7 @@ msgid "Repeats"
598
  msgstr "Repetições"
599
 
600
  #: app/features/events.php:703 app/features/fes/form.php:338
601
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
602
  msgid "Daily"
603
  msgstr "Diariamente"
604
 
@@ -620,12 +620,12 @@ msgid "Weekly"
620
  msgstr "Semanalmente"
621
 
622
  #: app/features/events.php:738 app/features/fes/form.php:343
623
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
624
  msgid "Monthly"
625
  msgstr "Mensalmente"
626
 
627
  #: app/features/events.php:745 app/features/fes/form.php:344
628
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
629
  msgid "Yearly"
630
  msgstr "Anualmente"
631
 
@@ -790,7 +790,7 @@ msgstr ""
790
  msgid "Exclude certain days"
791
  msgstr "Excluir determinados dias"
792
 
793
- #: app/features/events.php:1141 app/features/events.php:2351
794
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
795
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
796
  #: app/modules/booking/steps/tickets.php:22
@@ -834,8 +834,8 @@ msgstr ""
834
  #: app/features/events.php:1239 app/features/events.php:1278
835
  #: app/features/events.php:1313 app/features/events.php:1345
836
  #: app/features/events.php:1374 app/features/events.php:2130
837
- #: app/features/events.php:2177 app/features/events.php:3077
838
- #: app/features/events.php:3271 app/features/events.php:3313
839
  #: app/features/fes/form.php:225 app/features/ix.php:2743
840
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
841
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1017,13 +1017,13 @@ msgid "Ticket Name"
1017
  msgstr "Nome do Bilhete"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
- #: app/features/events.php:3271 app/features/events.php:3313
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr "Horário de Início"
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
- #: app/features/events.php:3271 app/features/events.php:3313
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr "Horário de Término"
@@ -1145,53 +1145,53 @@ msgstr "Máximo de eventos"
1145
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1146
  msgstr ""
1147
 
1148
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1149
  #: app/libraries/main.php:2523
1150
  #, fuzzy
1151
  #| msgid "Name"
1152
  msgid "MEC Name"
1153
  msgstr "Nome"
1154
 
1155
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1156
  #: app/libraries/main.php:2552
1157
  #, fuzzy
1158
  #| msgid "Email"
1159
  msgid "MEC Email"
1160
  msgstr "E-mail"
1161
 
1162
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1163
  #: app/libraries/main.php:2493
1164
  msgid "Text"
1165
  msgstr "Texto"
1166
 
1167
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1168
  #: app/features/organizers.php:103 app/features/organizers.php:148
1169
  #: app/features/speakers.php:116 app/features/speakers.php:180
1170
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1171
  msgid "Tel"
1172
  msgstr "Telefone"
1173
 
1174
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1175
  #: app/libraries/main.php:2611
1176
  msgid "File"
1177
  msgstr ""
1178
 
1179
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1180
  #: app/libraries/main.php:2698
1181
  msgid "Textarea"
1182
  msgstr "Área de texto"
1183
 
1184
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1185
  #: app/libraries/main.php:2751
1186
  msgid "Checkboxes"
1187
  msgstr "Caixas de seleção"
1188
 
1189
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1190
  #: app/libraries/main.php:2795
1191
  msgid "Radio Buttons"
1192
  msgstr "Botões Rádio"
1193
 
1194
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1195
  #: app/features/mec/meta_boxes/search_form.php:34
1196
  #: app/features/mec/meta_boxes/search_form.php:41
1197
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1264,36 +1264,36 @@ msgstr "Botões Rádio"
1264
  msgid "Dropdown"
1265
  msgstr "Suspenso"
1266
 
1267
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1268
  #: app/libraries/main.php:2886
1269
  msgid "Agreement"
1270
  msgstr ""
1271
 
1272
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1273
  #: app/libraries/main.php:2727
1274
  msgid "Paragraph"
1275
  msgstr "Parágrafo"
1276
 
1277
- #: app/features/events.php:2998 app/features/events.php:3015
1278
- #: app/features/events.php:3032 app/features/events.php:3049
1279
  #, php-format
1280
  msgid "Show all %s"
1281
  msgstr ""
1282
 
1283
- #: app/features/events.php:2998
1284
  msgid "labels"
1285
  msgstr "etiquetas"
1286
 
1287
- #: app/features/events.php:3015
1288
  msgid "locations"
1289
  msgstr ""
1290
 
1291
- #: app/features/events.php:3032
1292
  msgid "organizers"
1293
  msgstr ""
1294
 
1295
- #: app/features/events.php:3079 app/features/events.php:3271
1296
- #: app/features/events.php:3313 app/features/ix.php:2743
1297
  #: app/features/ix.php:2784 app/features/locations.php:58
1298
  #: app/features/locations.php:230 app/features/locations.php:287
1299
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1317,8 +1317,8 @@ msgstr ""
1317
  msgid "Location"
1318
  msgstr "Localização"
1319
 
1320
- #: app/features/events.php:3080 app/features/events.php:3271
1321
- #: app/features/events.php:3313 app/features/ix.php:2743
1322
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1323
  #: app/features/mec/meta_boxes/search_form.php:45
1324
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1341,57 +1341,57 @@ msgstr "Localização"
1341
  msgid "Organizer"
1342
  msgstr "Organizador"
1343
 
1344
- #: app/features/events.php:3084
1345
  msgid "Repeat"
1346
  msgstr "Repetir"
1347
 
1348
- #: app/features/events.php:3085
1349
  msgid "Author"
1350
  msgstr "Autor"
1351
 
1352
- #: app/features/events.php:3206 app/features/events.php:3207
1353
  msgid "iCal Export"
1354
  msgstr "Exportar iCal"
1355
 
1356
- #: app/features/events.php:3209 app/features/events.php:3210
1357
  msgid "CSV Export"
1358
  msgstr "Exportar CSV"
1359
 
1360
- #: app/features/events.php:3212 app/features/events.php:3213
1361
  msgid "MS Excel Export"
1362
  msgstr "Exportar para MS Excel"
1363
 
1364
- #: app/features/events.php:3215 app/features/events.php:3216
1365
  msgid "XML Export"
1366
  msgstr "Exportar XML"
1367
 
1368
- #: app/features/events.php:3218 app/features/events.php:3219
1369
  msgid "JSON Export"
1370
  msgstr "Exportar JSON"
1371
 
1372
- #: app/features/events.php:3221 app/features/events.php:3222
1373
- #: app/features/events.php:3403
1374
  msgid "Duplicate"
1375
  msgstr "Duplicar"
1376
 
1377
- #: app/features/events.php:3271 app/features/events.php:3313
1378
  #: app/features/ix.php:2743 app/features/ix.php:2784
1379
  #: app/features/labels.php:177 app/features/locations.php:229
1380
  #: app/features/organizers.php:203 app/features/speakers.php:246
1381
  msgid "ID"
1382
  msgstr "ID"
1383
 
1384
- #: app/features/events.php:3271 app/features/events.php:3313
1385
  #: app/features/ix.php:2743 app/features/ix.php:2784
1386
  msgid "Link"
1387
  msgstr "Link"
1388
 
1389
- #: app/features/events.php:3271 app/features/events.php:3313
1390
  #, php-format
1391
  msgid "%s Tel"
1392
  msgstr ""
1393
 
1394
- #: app/features/events.php:3271 app/features/events.php:3313
1395
  #, php-format
1396
  msgid "%s Email"
1397
  msgstr ""
@@ -1916,7 +1916,7 @@ msgstr "Importar do Calendário do Facebook"
1916
  msgid "Import all of your Facebook events into MEC."
1917
  msgstr "Importe todos os seus eventos do facebook para o CEM."
1918
 
1919
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1920
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1921
  msgid "Documentation"
1922
  msgstr "Documentação"
@@ -2306,7 +2306,7 @@ msgid "Event %s"
2306
  msgstr ""
2307
 
2308
  #: app/features/locations.php:59 app/features/mec.php:337
2309
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2310
  #: app/libraries/main.php:4838
2311
  msgid "Locations"
2312
  msgstr "Localizações"
@@ -2472,14 +2472,14 @@ msgstr "Suporte"
2472
  msgid "Support"
2473
  msgstr "Suporte"
2474
 
2475
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2476
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2477
  #: app/libraries/main.php:4840
2478
  msgid "Organizers"
2479
  msgstr "Organizadores"
2480
 
2481
  #: app/features/mec.php:346 app/features/mec.php:366
2482
- #: app/features/mec/dashboard.php:209
2483
  msgid "Shortcodes"
2484
  msgstr "Códigos Curtos"
2485
 
@@ -2827,102 +2827,119 @@ msgstr ""
2827
  msgid "Update"
2828
  msgstr "Atualizar Etiqueta"
2829
 
2830
- #: app/features/mec/dashboard.php:90
2831
  #, php-format
2832
  msgid ""
2833
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2834
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2835
- "Spots, etc you should %s to the Pro version."
2836
  msgstr ""
2837
 
2838
- #: app/features/mec/dashboard.php:90
2839
  msgid "lite"
2840
  msgstr ""
2841
 
2842
- #: app/features/mec/dashboard.php:90
2843
- msgid "upgrade"
 
 
 
 
 
 
 
2844
  msgstr ""
2845
 
2846
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2847
  #, fuzzy
2848
  #| msgid "Modern Events Calendar"
2849
  msgid "Getting started with Modern Events Calendar"
2850
  msgstr "Calendário de Eventos Moderno"
2851
 
2852
- #: app/features/mec/dashboard.php:101
2853
  msgid ""
2854
  "In this short video, you can learn how to make an event and put a calendar "
2855
  "on your website. Please watch this 2 minutes video to the end."
2856
  msgstr ""
2857
 
2858
- #: app/features/mec/dashboard.php:117
2859
  #, fuzzy
2860
  #| msgid "MEC Activation"
2861
  msgid "MEC Activate"
2862
  msgstr "Ativação CEM"
2863
 
2864
- #: app/features/mec/dashboard.php:123
2865
  msgid ""
2866
  "In order to use all plugin features and options, please enter your purchase "
2867
  "code."
2868
  msgstr ""
2869
 
2870
- #: app/features/mec/dashboard.php:181
2871
  #, fuzzy
2872
  #| msgid "MEC Activation"
2873
  msgid "Activate Addons"
2874
  msgstr "Ativação CEM"
2875
 
2876
- #: app/features/mec/dashboard.php:190
2877
  msgid "You cannot access this section."
2878
  msgstr ""
2879
 
2880
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2881
  msgid "Upcoming Events"
2882
  msgstr ""
2883
 
2884
- #: app/features/mec/dashboard.php:258
2885
  msgid "Popular Gateways"
2886
  msgstr ""
2887
 
2888
- #: app/features/mec/dashboard.php:312
2889
  msgid "Total Bookings"
2890
  msgstr ""
2891
 
2892
- #: app/features/mec/dashboard.php:339
2893
  msgid "This Month"
2894
  msgstr ""
2895
 
2896
- #: app/features/mec/dashboard.php:340
2897
  msgid "Last Month"
2898
  msgstr ""
2899
 
2900
- #: app/features/mec/dashboard.php:341
2901
  msgid "This Year"
2902
  msgstr ""
2903
 
2904
- #: app/features/mec/dashboard.php:342
2905
  msgid "Last Year"
2906
  msgstr ""
2907
 
2908
- #: app/features/mec/dashboard.php:354
2909
  msgid "Bar"
2910
  msgstr ""
2911
 
2912
- #: app/features/mec/dashboard.php:355
2913
  msgid "Line"
2914
  msgstr ""
2915
 
2916
- #: app/features/mec/dashboard.php:357
2917
  msgid "Filter"
2918
  msgstr ""
2919
 
2920
- #: app/features/mec/dashboard.php:373
2921
  #, php-format
2922
  msgid "Total Sells (%s)"
2923
  msgstr ""
2924
 
2925
- #: app/features/mec/dashboard.php:394
2926
  msgid "Change Log"
2927
  msgstr "Registro de Alterações"
2928
 
@@ -4321,7 +4338,7 @@ msgstr ""
4321
  "Ele envia para administrador para notificá-lo que recebeu uma nova reserva."
4322
 
4323
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4324
- #: app/libraries/notifications.php:405
4325
  msgid "Booking Reminder"
4326
  msgstr ""
4327
 
@@ -5555,10 +5572,6 @@ msgstr ""
5555
  "satisfeitos. Se você tiver quaisquer problemas por favor não hesite em "
5556
  "contatar-nos, vamos responder o mais rapidamente possível."
5557
 
5558
- #: app/features/mec/support.php:126
5559
- msgid "GO PREMIUM"
5560
- msgstr ""
5561
-
5562
  #: app/features/mec/support.php:128
5563
  msgid "OPEN A TICKET"
5564
  msgstr "ABRIR UM CHAMADO"
@@ -5726,7 +5739,7 @@ msgid "No search result."
5726
  msgstr ""
5727
 
5728
  #: app/features/search_bar/search_result.php:11
5729
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5730
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5731
  #: app/skins/single.php:160 app/skins/single.php:708
5732
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6320,7 +6333,7 @@ msgstr ""
6320
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6321
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6322
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6323
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6324
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6325
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6326
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6340,8 +6353,8 @@ msgstr ""
6340
 
6341
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6342
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6343
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6344
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6345
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6346
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6347
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6405,49 +6418,49 @@ msgstr "Aguardando"
6405
  msgid "Skin controller does not exist."
6406
  msgstr "Controlador de pele não existe."
6407
 
6408
- #: app/libraries/notifications.php:61
6409
  msgid "Please verify your email."
6410
  msgstr "Por favor, verifique seu e-mail."
6411
 
6412
- #: app/libraries/notifications.php:125
6413
  msgid "Your booking is received."
6414
  msgstr ""
6415
 
6416
- #: app/libraries/notifications.php:193
6417
  msgid "Your booking is confirmed."
6418
  msgstr "Sua reserva foi confirmada."
6419
 
6420
- #: app/libraries/notifications.php:282
6421
  #, fuzzy
6422
  #| msgid "Your booking cannot be canceled."
6423
  msgid "booking canceled."
6424
  msgstr "Sua reserva não pôde ser cancelada."
6425
 
6426
- #: app/libraries/notifications.php:337
6427
  msgid "A new booking is received."
6428
  msgstr "Uma nova reserva foi recebida."
6429
 
6430
- #: app/libraries/notifications.php:488
6431
  msgid "A new event is added."
6432
  msgstr "Um novo evento foi adicionado."
6433
 
6434
- #: app/libraries/notifications.php:674
6435
  msgid "to"
6436
  msgstr ""
6437
 
6438
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6439
  msgid "+ Add to Google Calendar"
6440
  msgstr "+ Adicionar ao Calendário do Google"
6441
 
6442
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6443
  msgid "+ iCal export"
6444
  msgstr "+ Exportar para iCal"
6445
 
6446
- #: app/libraries/notifications.php:752
6447
  msgid "Yes"
6448
  msgstr ""
6449
 
6450
- #: app/libraries/notifications.php:752
6451
  msgid "No"
6452
  msgstr ""
6453
 
@@ -6870,6 +6883,11 @@ msgstr ""
6870
  #~ msgid "Book Date"
6871
  #~ msgstr "Data da Reserva"
6872
 
 
 
 
 
 
6873
  #~ msgid "Confirm"
6874
  #~ msgstr "Confirmar"
6875
 
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
  "Report-Msgid-Bugs-To: \n"
5
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
6
+ "PO-Revision-Date: 2019-09-11 13:24+0430\n"
7
  "Last-Translator: Howard <howard@realtyna.com>\n"
8
  "Language-Team: Portuguese (Brazil)\n"
9
  "Language: pt_BR\n"
77
  msgstr "Cor do Evento"
78
 
79
  #: app/features/contextual.php:55 app/features/mec.php:347
80
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
81
  #: app/features/mec/support.php:20 app/libraries/main.php:587
82
  msgid "Settings"
83
  msgstr "Configurações"
253
  msgstr "Ativação CEM"
254
 
255
  #: app/features/events.php:148 app/features/ix/export.php:34
256
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
257
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
258
  msgid "Events"
259
  msgstr "Eventos"
271
  msgid "Add Event"
272
  msgstr "Adicionar Evento"
273
 
274
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
275
  msgid "Add New Event"
276
  msgstr "Adicionar Novo Evento"
277
 
296
  msgid "No events found in Trash!"
297
  msgstr "Nenhum evento encontrado na Lixeira!"
298
 
299
+ #: app/features/events.php:173 app/features/events.php:3072
300
  #: app/features/mec/meta_boxes/display_options.php:828
301
  #: app/features/mec/meta_boxes/search_form.php:31
302
  #: app/features/mec/meta_boxes/search_form.php:93
316
  msgid "Category"
317
  msgstr "Categoria"
318
 
319
+ #: app/features/events.php:174 app/features/events.php:3043
320
  #: app/features/fes/form.php:745 app/features/mec.php:335
321
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
322
  msgid "Categories"
390
  msgid "Event Details"
391
  msgstr "Detalhes do Evento"
392
 
393
+ #: app/features/events.php:333 app/features/events.php:3265
394
+ #: app/features/events.php:3307 app/features/fes/form.php:706
395
  #: app/features/ix.php:2743 app/features/ix.php:2784
396
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
397
  #: app/widgets/single.php:103
416
  #: app/features/events.php:443 app/features/events.php:2261
417
  #: app/features/fes/form.php:668 app/features/labels.php:178
418
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
419
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
420
  #: app/modules/booking/steps/form.php:37
421
  msgid "Name"
422
  msgstr "Nome"
423
 
424
  #: app/features/events.php:444 app/features/events.php:2272
425
+ #: app/features/events.php:2348 app/features/fes/form.php:664
426
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
427
  #: app/features/organizers.php:111 app/features/organizers.php:152
428
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
429
  #: app/features/speakers.php:184 app/libraries/main.php:1471
430
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
431
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
432
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
433
  #: app/skins/single.php:836 app/skins/single/default.php:212
434
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
441
  msgstr "Data e Hora"
442
 
443
  #: app/features/events.php:452 app/features/events.php:458
444
+ #: app/features/events.php:3075 app/features/events.php:3265
445
+ #: app/features/events.php:3307 app/features/fes/form.php:236
446
  #: app/features/fes/form.php:240 app/features/ix.php:2743
447
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
448
+ #: app/features/mec/dashboard.php:373
449
  #: app/features/mec/meta_boxes/display_options.php:44
450
  #: app/features/mec/meta_boxes/display_options.php:185
451
  #: app/features/mec/meta_boxes/display_options.php:337
477
  msgstr "PM"
478
 
479
  #: app/features/events.php:544 app/features/events.php:549
480
+ #: app/features/events.php:3076 app/features/events.php:3265
481
+ #: app/features/events.php:3307 app/features/fes/form.php:276
482
  #: app/features/fes/form.php:280 app/features/ix.php:2743
483
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
484
+ #: app/features/mec/dashboard.php:374
485
  msgid "End Date"
486
  msgstr "Data de Término"
487
 
598
  msgstr "Repetições"
599
 
600
  #: app/features/events.php:703 app/features/fes/form.php:338
601
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
602
  msgid "Daily"
603
  msgstr "Diariamente"
604
 
620
  msgstr "Semanalmente"
621
 
622
  #: app/features/events.php:738 app/features/fes/form.php:343
623
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
624
  msgid "Monthly"
625
  msgstr "Mensalmente"
626
 
627
  #: app/features/events.php:745 app/features/fes/form.php:344
628
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
629
  msgid "Yearly"
630
  msgstr "Anualmente"
631
 
790
  msgid "Exclude certain days"
791
  msgstr "Excluir determinados dias"
792
 
793
+ #: app/features/events.php:1141 app/features/events.php:2349
794
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
795
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
796
  #: app/modules/booking/steps/tickets.php:22
834
  #: app/features/events.php:1239 app/features/events.php:1278
835
  #: app/features/events.php:1313 app/features/events.php:1345
836
  #: app/features/events.php:1374 app/features/events.php:2130
837
+ #: app/features/events.php:2177 app/features/events.php:3071
838
+ #: app/features/events.php:3265 app/features/events.php:3307
839
  #: app/features/fes/form.php:225 app/features/ix.php:2743
840
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
841
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1017
  msgstr "Nome do Bilhete"
1018
 
1019
  #: app/features/events.php:1584 app/features/events.php:1805
1020
+ #: app/features/events.php:3265 app/features/events.php:3307
1021
  #: app/features/ix.php:2743 app/features/ix.php:2784
1022
  msgid "Start Time"
1023
  msgstr "Horário de Início"
1024
 
1025
  #: app/features/events.php:1626 app/features/events.php:1829
1026
+ #: app/features/events.php:3265 app/features/events.php:3307
1027
  #: app/features/ix.php:2743 app/features/ix.php:2784
1028
  msgid "End Time"
1029
  msgstr "Horário de Término"
1145
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1146
  msgstr ""
1147
 
1148
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1149
  #: app/libraries/main.php:2523
1150
  #, fuzzy
1151
  #| msgid "Name"
1152
  msgid "MEC Name"
1153
  msgstr "Nome"
1154
 
1155
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1156
  #: app/libraries/main.php:2552
1157
  #, fuzzy
1158
  #| msgid "Email"
1159
  msgid "MEC Email"
1160
  msgstr "E-mail"
1161
 
1162
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1163
  #: app/libraries/main.php:2493
1164
  msgid "Text"
1165
  msgstr "Texto"
1166
 
1167
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1168
  #: app/features/organizers.php:103 app/features/organizers.php:148
1169
  #: app/features/speakers.php:116 app/features/speakers.php:180
1170
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1171
  msgid "Tel"
1172
  msgstr "Telefone"
1173
 
1174
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1175
  #: app/libraries/main.php:2611
1176
  msgid "File"
1177
  msgstr ""
1178
 
1179
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1180
  #: app/libraries/main.php:2698
1181
  msgid "Textarea"
1182
  msgstr "Área de texto"
1183
 
1184
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1185
  #: app/libraries/main.php:2751
1186
  msgid "Checkboxes"
1187
  msgstr "Caixas de seleção"
1188
 
1189
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1190
  #: app/libraries/main.php:2795
1191
  msgid "Radio Buttons"
1192
  msgstr "Botões Rádio"
1193
 
1194
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1195
  #: app/features/mec/meta_boxes/search_form.php:34
1196
  #: app/features/mec/meta_boxes/search_form.php:41
1197
  #: app/features/mec/meta_boxes/search_form.php:48
1264
  msgid "Dropdown"
1265
  msgstr "Suspenso"
1266
 
1267
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1268
  #: app/libraries/main.php:2886
1269
  msgid "Agreement"
1270
  msgstr ""
1271
 
1272
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1273
  #: app/libraries/main.php:2727
1274
  msgid "Paragraph"
1275
  msgstr "Parágrafo"
1276
 
1277
+ #: app/features/events.php:2992 app/features/events.php:3009
1278
+ #: app/features/events.php:3026 app/features/events.php:3043
1279
  #, php-format
1280
  msgid "Show all %s"
1281
  msgstr ""
1282
 
1283
+ #: app/features/events.php:2992
1284
  msgid "labels"
1285
  msgstr "etiquetas"
1286
 
1287
+ #: app/features/events.php:3009
1288
  msgid "locations"
1289
  msgstr ""
1290
 
1291
+ #: app/features/events.php:3026
1292
  msgid "organizers"
1293
  msgstr ""
1294
 
1295
+ #: app/features/events.php:3073 app/features/events.php:3265
1296
+ #: app/features/events.php:3307 app/features/ix.php:2743
1297
  #: app/features/ix.php:2784 app/features/locations.php:58
1298
  #: app/features/locations.php:230 app/features/locations.php:287
1299
  #: app/features/locations.php:289 app/features/locations.php:298
1317
  msgid "Location"
1318
  msgstr "Localização"
1319
 
1320
+ #: app/features/events.php:3074 app/features/events.php:3265
1321
+ #: app/features/events.php:3307 app/features/ix.php:2743
1322
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1323
  #: app/features/mec/meta_boxes/search_form.php:45
1324
  #: app/features/mec/meta_boxes/search_form.php:107
1341
  msgid "Organizer"
1342
  msgstr "Organizador"
1343
 
1344
+ #: app/features/events.php:3078
1345
  msgid "Repeat"
1346
  msgstr "Repetir"
1347
 
1348
+ #: app/features/events.php:3079
1349
  msgid "Author"
1350
  msgstr "Autor"
1351
 
1352
+ #: app/features/events.php:3200 app/features/events.php:3201
1353
  msgid "iCal Export"
1354
  msgstr "Exportar iCal"
1355
 
1356
+ #: app/features/events.php:3203 app/features/events.php:3204
1357
  msgid "CSV Export"
1358
  msgstr "Exportar CSV"
1359
 
1360
+ #: app/features/events.php:3206 app/features/events.php:3207
1361
  msgid "MS Excel Export"
1362
  msgstr "Exportar para MS Excel"
1363
 
1364
+ #: app/features/events.php:3209 app/features/events.php:3210
1365
  msgid "XML Export"
1366
  msgstr "Exportar XML"
1367
 
1368
+ #: app/features/events.php:3212 app/features/events.php:3213
1369
  msgid "JSON Export"
1370
  msgstr "Exportar JSON"
1371
 
1372
+ #: app/features/events.php:3215 app/features/events.php:3216
1373
+ #: app/features/events.php:3397
1374
  msgid "Duplicate"
1375
  msgstr "Duplicar"
1376
 
1377
+ #: app/features/events.php:3265 app/features/events.php:3307
1378
  #: app/features/ix.php:2743 app/features/ix.php:2784
1379
  #: app/features/labels.php:177 app/features/locations.php:229
1380
  #: app/features/organizers.php:203 app/features/speakers.php:246
1381
  msgid "ID"
1382
  msgstr "ID"
1383
 
1384
+ #: app/features/events.php:3265 app/features/events.php:3307
1385
  #: app/features/ix.php:2743 app/features/ix.php:2784
1386
  msgid "Link"
1387
  msgstr "Link"
1388
 
1389
+ #: app/features/events.php:3265 app/features/events.php:3307
1390
  #, php-format
1391
  msgid "%s Tel"
1392
  msgstr ""
1393
 
1394
+ #: app/features/events.php:3265 app/features/events.php:3307
1395
  #, php-format
1396
  msgid "%s Email"
1397
  msgstr ""
1916
  msgid "Import all of your Facebook events into MEC."
1917
  msgstr "Importe todos os seus eventos do facebook para o CEM."
1918
 
1919
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1920
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1921
  msgid "Documentation"
1922
  msgstr "Documentação"
2306
  msgstr ""
2307
 
2308
  #: app/features/locations.php:59 app/features/mec.php:337
2309
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2310
  #: app/libraries/main.php:4838
2311
  msgid "Locations"
2312
  msgstr "Localizações"
2472
  msgid "Support"
2473
  msgstr "Suporte"
2474
 
2475
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2476
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2477
  #: app/libraries/main.php:4840
2478
  msgid "Organizers"
2479
  msgstr "Organizadores"
2480
 
2481
  #: app/features/mec.php:346 app/features/mec.php:366
2482
+ #: app/features/mec/dashboard.php:236
2483
  msgid "Shortcodes"
2484
  msgstr "Códigos Curtos"
2485
 
2827
  msgid "Update"
2828
  msgstr "Atualizar Etiqueta"
2829
 
2830
+ #: app/features/mec/dashboard.php:92
2831
  #, php-format
2832
  msgid ""
2833
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2834
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2835
+ "Spots, etc you should upgrade to the Pro version."
2836
  msgstr ""
2837
 
2838
+ #: app/features/mec/dashboard.php:92
2839
  msgid "lite"
2840
  msgstr ""
2841
 
2842
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2843
+ msgid "GO PREMIUM"
2844
+ msgstr ""
2845
+
2846
+ #: app/features/mec/dashboard.php:98
2847
+ #, php-format
2848
+ msgid ""
2849
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2850
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2851
  msgstr ""
2852
 
2853
+ #: app/features/mec/dashboard.php:98
2854
+ #, fuzzy
2855
+ #| msgid "Address"
2856
+ msgid "WordPress"
2857
+ msgstr "Endereço"
2858
+
2859
+ #: app/features/mec/dashboard.php:98
2860
+ msgid "Copouns!"
2861
+ msgstr ""
2862
+
2863
+ #: app/features/mec/dashboard.php:127
2864
  #, fuzzy
2865
  #| msgid "Modern Events Calendar"
2866
  msgid "Getting started with Modern Events Calendar"
2867
  msgstr "Calendário de Eventos Moderno"
2868
 
2869
+ #: app/features/mec/dashboard.php:128
2870
  msgid ""
2871
  "In this short video, you can learn how to make an event and put a calendar "
2872
  "on your website. Please watch this 2 minutes video to the end."
2873
  msgstr ""
2874
 
2875
+ #: app/features/mec/dashboard.php:144
2876
  #, fuzzy
2877
  #| msgid "MEC Activation"
2878
  msgid "MEC Activate"
2879
  msgstr "Ativação CEM"
2880
 
2881
+ #: app/features/mec/dashboard.php:150
2882
  msgid ""
2883
  "In order to use all plugin features and options, please enter your purchase "
2884
  "code."
2885
  msgstr ""
2886
 
2887
+ #: app/features/mec/dashboard.php:208
2888
  #, fuzzy
2889
  #| msgid "MEC Activation"
2890
  msgid "Activate Addons"
2891
  msgstr "Ativação CEM"
2892
 
2893
+ #: app/features/mec/dashboard.php:217
2894
  msgid "You cannot access this section."
2895
  msgstr ""
2896
 
2897
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2898
  msgid "Upcoming Events"
2899
  msgstr ""
2900
 
2901
+ #: app/features/mec/dashboard.php:285
2902
  msgid "Popular Gateways"
2903
  msgstr ""
2904
 
2905
+ #: app/features/mec/dashboard.php:339
2906
  msgid "Total Bookings"
2907
  msgstr ""
2908
 
2909
+ #: app/features/mec/dashboard.php:366
2910
  msgid "This Month"
2911
  msgstr ""
2912
 
2913
+ #: app/features/mec/dashboard.php:367
2914
  msgid "Last Month"
2915
  msgstr ""
2916
 
2917
+ #: app/features/mec/dashboard.php:368
2918
  msgid "This Year"
2919
  msgstr ""
2920
 
2921
+ #: app/features/mec/dashboard.php:369
2922
  msgid "Last Year"
2923
  msgstr ""
2924
 
2925
+ #: app/features/mec/dashboard.php:381
2926
  msgid "Bar"
2927
  msgstr ""
2928
 
2929
+ #: app/features/mec/dashboard.php:382
2930
  msgid "Line"
2931
  msgstr ""
2932
 
2933
+ #: app/features/mec/dashboard.php:384
2934
  msgid "Filter"
2935
  msgstr ""
2936
 
2937
+ #: app/features/mec/dashboard.php:400
2938
  #, php-format
2939
  msgid "Total Sells (%s)"
2940
  msgstr ""
2941
 
2942
+ #: app/features/mec/dashboard.php:421
2943
  msgid "Change Log"
2944
  msgstr "Registro de Alterações"
2945
 
4338
  "Ele envia para administrador para notificá-lo que recebeu uma nova reserva."
4339
 
4340
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4341
+ #: app/libraries/notifications.php:478
4342
  msgid "Booking Reminder"
4343
  msgstr ""
4344
 
5572
  "satisfeitos. Se você tiver quaisquer problemas por favor não hesite em "
5573
  "contatar-nos, vamos responder o mais rapidamente possível."
5574
 
 
 
 
 
5575
  #: app/features/mec/support.php:128
5576
  msgid "OPEN A TICKET"
5577
  msgstr "ABRIR UM CHAMADO"
5739
  msgstr ""
5740
 
5741
  #: app/features/search_bar/search_result.php:11
5742
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5743
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5744
  #: app/skins/single.php:160 app/skins/single.php:708
5745
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6333
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6334
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6335
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6336
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6337
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6338
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6339
  #: app/skins/single.php:729 app/skins/single/default.php:233
6353
 
6354
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6355
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6356
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6357
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6358
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6359
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6360
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6418
  msgid "Skin controller does not exist."
6419
  msgstr "Controlador de pele não existe."
6420
 
6421
+ #: app/libraries/notifications.php:60
6422
  msgid "Please verify your email."
6423
  msgstr "Por favor, verifique seu e-mail."
6424
 
6425
+ #: app/libraries/notifications.php:139
6426
  msgid "Your booking is received."
6427
  msgstr ""
6428
 
6429
+ #: app/libraries/notifications.php:224
6430
  msgid "Your booking is confirmed."
6431
  msgstr "Sua reserva foi confirmada."
6432
 
6433
+ #: app/libraries/notifications.php:349
6434
  #, fuzzy
6435
  #| msgid "Your booking cannot be canceled."
6436
  msgid "booking canceled."
6437
  msgstr "Sua reserva não pôde ser cancelada."
6438
 
6439
+ #: app/libraries/notifications.php:410
6440
  msgid "A new booking is received."
6441
  msgstr "Uma nova reserva foi recebida."
6442
 
6443
+ #: app/libraries/notifications.php:561
6444
  msgid "A new event is added."
6445
  msgstr "Um novo evento foi adicionado."
6446
 
6447
+ #: app/libraries/notifications.php:746
6448
  msgid "to"
6449
  msgstr ""
6450
 
6451
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6452
  msgid "+ Add to Google Calendar"
6453
  msgstr "+ Adicionar ao Calendário do Google"
6454
 
6455
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6456
  msgid "+ iCal export"
6457
  msgstr "+ Exportar para iCal"
6458
 
6459
+ #: app/libraries/notifications.php:821
6460
  msgid "Yes"
6461
  msgstr ""
6462
 
6463
+ #: app/libraries/notifications.php:821
6464
  msgid "No"
6465
  msgstr ""
6466
 
6883
  #~ msgid "Book Date"
6884
  #~ msgstr "Data da Reserva"
6885
 
6886
+ #, fuzzy
6887
+ #~| msgid "Ticket"
6888
+ #~ msgid " - Ticket"
6889
+ #~ msgstr "Bilhete"
6890
+
6891
  #~ msgid "Confirm"
6892
  #~ msgstr "Confirmar"
6893
 
languages/modern-events-calendar-lite-ru_RU.mo CHANGED
Binary file
languages/modern-events-calendar-lite-ru_RU.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 16:00+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
@@ -75,7 +75,7 @@ msgid "Event Color"
75
  msgstr "Цвет события"
76
 
77
  #: app/features/contextual.php:55 app/features/mec.php:347
78
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
79
  #: app/features/mec/support.php:20 app/libraries/main.php:587
80
  msgid "Settings"
81
  msgstr "Настройки"
@@ -251,7 +251,7 @@ msgid "MEC Activation"
251
  msgstr "Активация Календаря Событий"
252
 
253
  #: app/features/events.php:148 app/features/ix/export.php:34
254
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
256
  msgid "Events"
257
  msgstr "События"
@@ -269,7 +269,7 @@ msgstr "Событие"
269
  msgid "Add Event"
270
  msgstr "Добавить событие"
271
 
272
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
273
  msgid "Add New Event"
274
  msgstr "Добавить новое событие"
275
 
@@ -294,7 +294,7 @@ msgstr "Просмотр события"
294
  msgid "No events found in Trash!"
295
  msgstr "Событий в корзине не найдено!"
296
 
297
- #: app/features/events.php:173 app/features/events.php:3078
298
  #: app/features/mec/meta_boxes/display_options.php:828
299
  #: app/features/mec/meta_boxes/search_form.php:31
300
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -314,7 +314,7 @@ msgstr "Событий в корзине не найдено!"
314
  msgid "Category"
315
  msgstr "Категория"
316
 
317
- #: app/features/events.php:174 app/features/events.php:3049
318
  #: app/features/fes/form.php:745 app/features/mec.php:335
319
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
320
  msgid "Categories"
@@ -388,8 +388,8 @@ msgstr ""
388
  msgid "Event Details"
389
  msgstr "Детали события"
390
 
391
- #: app/features/events.php:333 app/features/events.php:3271
392
- #: app/features/events.php:3313 app/features/fes/form.php:706
393
  #: app/features/ix.php:2743 app/features/ix.php:2784
394
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
395
  #: app/widgets/single.php:103
@@ -414,19 +414,19 @@ msgstr ""
414
  #: app/features/events.php:443 app/features/events.php:2261
415
  #: app/features/fes/form.php:668 app/features/labels.php:178
416
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
417
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
418
  #: app/modules/booking/steps/form.php:37
419
  msgid "Name"
420
  msgstr "Имя"
421
 
422
  #: app/features/events.php:444 app/features/events.php:2272
423
- #: app/features/events.php:2350 app/features/fes/form.php:664
424
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
425
  #: app/features/organizers.php:111 app/features/organizers.php:152
426
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
427
  #: app/features/speakers.php:184 app/libraries/main.php:1471
428
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
429
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
430
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
431
  #: app/skins/single.php:836 app/skins/single/default.php:212
432
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -439,11 +439,11 @@ msgid "Date and Time"
439
  msgstr "Дата и время"
440
 
441
  #: app/features/events.php:452 app/features/events.php:458
442
- #: app/features/events.php:3081 app/features/events.php:3271
443
- #: app/features/events.php:3313 app/features/fes/form.php:236
444
  #: app/features/fes/form.php:240 app/features/ix.php:2743
445
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
446
- #: app/features/mec/dashboard.php:346
447
  #: app/features/mec/meta_boxes/display_options.php:44
448
  #: app/features/mec/meta_boxes/display_options.php:185
449
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -475,11 +475,11 @@ msgid "PM"
475
  msgstr "PM"
476
 
477
  #: app/features/events.php:544 app/features/events.php:549
478
- #: app/features/events.php:3082 app/features/events.php:3271
479
- #: app/features/events.php:3313 app/features/fes/form.php:276
480
  #: app/features/fes/form.php:280 app/features/ix.php:2743
481
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
482
- #: app/features/mec/dashboard.php:347
483
  msgid "End Date"
484
  msgstr "Дата окончания"
485
 
@@ -596,7 +596,7 @@ msgid "Repeats"
596
  msgstr "Повторения"
597
 
598
  #: app/features/events.php:703 app/features/fes/form.php:338
599
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
600
  msgid "Daily"
601
  msgstr "Ежедневно"
602
 
@@ -618,12 +618,12 @@ msgid "Weekly"
618
  msgstr "Еженедельно"
619
 
620
  #: app/features/events.php:738 app/features/fes/form.php:343
621
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
622
  msgid "Monthly"
623
  msgstr "Каждый месяц"
624
 
625
  #: app/features/events.php:745 app/features/fes/form.php:344
626
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
627
  msgid "Yearly"
628
  msgstr "Каждый год"
629
 
@@ -786,7 +786,7 @@ msgstr ""
786
  msgid "Exclude certain days"
787
  msgstr "Исключить определённые дни"
788
 
789
- #: app/features/events.php:1141 app/features/events.php:2351
790
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
791
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
792
  #: app/modules/booking/steps/tickets.php:22
@@ -830,8 +830,8 @@ msgstr ""
830
  #: app/features/events.php:1239 app/features/events.php:1278
831
  #: app/features/events.php:1313 app/features/events.php:1345
832
  #: app/features/events.php:1374 app/features/events.php:2130
833
- #: app/features/events.php:2177 app/features/events.php:3077
834
- #: app/features/events.php:3271 app/features/events.php:3313
835
  #: app/features/fes/form.php:225 app/features/ix.php:2743
836
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
837
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1013,13 +1013,13 @@ msgid "Ticket Name"
1013
  msgstr "Имя билета"
1014
 
1015
  #: app/features/events.php:1584 app/features/events.php:1805
1016
- #: app/features/events.php:3271 app/features/events.php:3313
1017
  #: app/features/ix.php:2743 app/features/ix.php:2784
1018
  msgid "Start Time"
1019
  msgstr ""
1020
 
1021
  #: app/features/events.php:1626 app/features/events.php:1829
1022
- #: app/features/events.php:3271 app/features/events.php:3313
1023
  #: app/features/ix.php:2743 app/features/ix.php:2784
1024
  msgid "End Time"
1025
  msgstr ""
@@ -1141,53 +1141,53 @@ msgstr "Макс. количество событий"
1141
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1142
  msgstr ""
1143
 
1144
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1145
  #: app/libraries/main.php:2523
1146
  #, fuzzy
1147
  #| msgid "Name"
1148
  msgid "MEC Name"
1149
  msgstr "Имя"
1150
 
1151
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1152
  #: app/libraries/main.php:2552
1153
  #, fuzzy
1154
  #| msgid "Email"
1155
  msgid "MEC Email"
1156
  msgstr "Электронная почта"
1157
 
1158
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1159
  #: app/libraries/main.php:2493
1160
  msgid "Text"
1161
  msgstr "Текст"
1162
 
1163
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1164
  #: app/features/organizers.php:103 app/features/organizers.php:148
1165
  #: app/features/speakers.php:116 app/features/speakers.php:180
1166
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1167
  msgid "Tel"
1168
  msgstr "Тел."
1169
 
1170
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1171
  #: app/libraries/main.php:2611
1172
  msgid "File"
1173
  msgstr ""
1174
 
1175
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1176
  #: app/libraries/main.php:2698
1177
  msgid "Textarea"
1178
  msgstr "Текстовое поле"
1179
 
1180
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1181
  #: app/libraries/main.php:2751
1182
  msgid "Checkboxes"
1183
  msgstr "Флажок"
1184
 
1185
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1186
  #: app/libraries/main.php:2795
1187
  msgid "Radio Buttons"
1188
  msgstr "\"Радио\" переключатель"
1189
 
1190
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1191
  #: app/features/mec/meta_boxes/search_form.php:34
1192
  #: app/features/mec/meta_boxes/search_form.php:41
1193
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1260,36 +1260,36 @@ msgstr "\"Радио\" переключатель"
1260
  msgid "Dropdown"
1261
  msgstr "Выпадающий список"
1262
 
1263
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1264
  #: app/libraries/main.php:2886
1265
  msgid "Agreement"
1266
  msgstr ""
1267
 
1268
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1269
  #: app/libraries/main.php:2727
1270
  msgid "Paragraph"
1271
  msgstr "Параграф"
1272
 
1273
- #: app/features/events.php:2998 app/features/events.php:3015
1274
- #: app/features/events.php:3032 app/features/events.php:3049
1275
  #, php-format
1276
  msgid "Show all %s"
1277
  msgstr ""
1278
 
1279
- #: app/features/events.php:2998
1280
  msgid "labels"
1281
  msgstr "метки"
1282
 
1283
- #: app/features/events.php:3015
1284
  msgid "locations"
1285
  msgstr ""
1286
 
1287
- #: app/features/events.php:3032
1288
  msgid "organizers"
1289
  msgstr ""
1290
 
1291
- #: app/features/events.php:3079 app/features/events.php:3271
1292
- #: app/features/events.php:3313 app/features/ix.php:2743
1293
  #: app/features/ix.php:2784 app/features/locations.php:58
1294
  #: app/features/locations.php:230 app/features/locations.php:287
1295
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1313,8 +1313,8 @@ msgstr ""
1313
  msgid "Location"
1314
  msgstr "Места"
1315
 
1316
- #: app/features/events.php:3080 app/features/events.php:3271
1317
- #: app/features/events.php:3313 app/features/ix.php:2743
1318
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1319
  #: app/features/mec/meta_boxes/search_form.php:45
1320
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1337,57 +1337,57 @@ msgstr "Места"
1337
  msgid "Organizer"
1338
  msgstr "Организатор"
1339
 
1340
- #: app/features/events.php:3084
1341
  msgid "Repeat"
1342
  msgstr "Повтор"
1343
 
1344
- #: app/features/events.php:3085
1345
  msgid "Author"
1346
  msgstr "Автор"
1347
 
1348
- #: app/features/events.php:3206 app/features/events.php:3207
1349
  msgid "iCal Export"
1350
  msgstr "iCal Экспорт"
1351
 
1352
- #: app/features/events.php:3209 app/features/events.php:3210
1353
  msgid "CSV Export"
1354
  msgstr "CSV экспорт"
1355
 
1356
- #: app/features/events.php:3212 app/features/events.php:3213
1357
  msgid "MS Excel Export"
1358
  msgstr "MS Excel экспорт"
1359
 
1360
- #: app/features/events.php:3215 app/features/events.php:3216
1361
  msgid "XML Export"
1362
  msgstr ""
1363
 
1364
- #: app/features/events.php:3218 app/features/events.php:3219
1365
  msgid "JSON Export"
1366
  msgstr ""
1367
 
1368
- #: app/features/events.php:3221 app/features/events.php:3222
1369
- #: app/features/events.php:3403
1370
  msgid "Duplicate"
1371
  msgstr "Дублировать"
1372
 
1373
- #: app/features/events.php:3271 app/features/events.php:3313
1374
  #: app/features/ix.php:2743 app/features/ix.php:2784
1375
  #: app/features/labels.php:177 app/features/locations.php:229
1376
  #: app/features/organizers.php:203 app/features/speakers.php:246
1377
  msgid "ID"
1378
  msgstr "ID"
1379
 
1380
- #: app/features/events.php:3271 app/features/events.php:3313
1381
  #: app/features/ix.php:2743 app/features/ix.php:2784
1382
  msgid "Link"
1383
  msgstr ""
1384
 
1385
- #: app/features/events.php:3271 app/features/events.php:3313
1386
  #, php-format
1387
  msgid "%s Tel"
1388
  msgstr ""
1389
 
1390
- #: app/features/events.php:3271 app/features/events.php:3313
1391
  #, php-format
1392
  msgid "%s Email"
1393
  msgstr ""
@@ -1885,7 +1885,7 @@ msgstr ""
1885
  msgid "Import all of your Facebook events into MEC."
1886
  msgstr ""
1887
 
1888
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1889
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1890
  msgid "Documentation"
1891
  msgstr "Руководство пользователя"
@@ -2249,7 +2249,7 @@ msgid "Event %s"
2249
  msgstr ""
2250
 
2251
  #: app/features/locations.php:59 app/features/mec.php:337
2252
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2253
  #: app/libraries/main.php:4838
2254
  msgid "Locations"
2255
  msgstr "Места"
@@ -2415,14 +2415,14 @@ msgstr "Поддержка"
2415
  msgid "Support"
2416
  msgstr "Поддержка"
2417
 
2418
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2419
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2420
  #: app/libraries/main.php:4840
2421
  msgid "Organizers"
2422
  msgstr "Оранизаторы"
2423
 
2424
  #: app/features/mec.php:346 app/features/mec.php:366
2425
- #: app/features/mec/dashboard.php:209
2426
  msgid "Shortcodes"
2427
  msgstr "Шорткоды"
2428
 
@@ -2768,102 +2768,119 @@ msgstr ""
2768
  msgid "Update"
2769
  msgstr "Обновить метку"
2770
 
2771
- #: app/features/mec/dashboard.php:90
2772
  #, php-format
2773
  msgid ""
2774
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2775
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2776
- "Spots, etc you should %s to the Pro version."
2777
  msgstr ""
2778
 
2779
- #: app/features/mec/dashboard.php:90
2780
  msgid "lite"
2781
  msgstr ""
2782
 
2783
- #: app/features/mec/dashboard.php:90
2784
- msgid "upgrade"
 
 
 
 
 
 
 
2785
  msgstr ""
2786
 
2787
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2788
  #, fuzzy
2789
  #| msgid "Modern Events Calendar"
2790
  msgid "Getting started with Modern Events Calendar"
2791
  msgstr "Календарь событий"
2792
 
2793
- #: app/features/mec/dashboard.php:101
2794
  msgid ""
2795
  "In this short video, you can learn how to make an event and put a calendar "
2796
  "on your website. Please watch this 2 minutes video to the end."
2797
  msgstr ""
2798
 
2799
- #: app/features/mec/dashboard.php:117
2800
  #, fuzzy
2801
  #| msgid "MEC Activation"
2802
  msgid "MEC Activate"
2803
  msgstr "Активация Календаря Событий"
2804
 
2805
- #: app/features/mec/dashboard.php:123
2806
  msgid ""
2807
  "In order to use all plugin features and options, please enter your purchase "
2808
  "code."
2809
  msgstr ""
2810
 
2811
- #: app/features/mec/dashboard.php:181
2812
  #, fuzzy
2813
  #| msgid "MEC Activation"
2814
  msgid "Activate Addons"
2815
  msgstr "Активация Календаря Событий"
2816
 
2817
- #: app/features/mec/dashboard.php:190
2818
  msgid "You cannot access this section."
2819
  msgstr ""
2820
 
2821
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2822
  msgid "Upcoming Events"
2823
  msgstr ""
2824
 
2825
- #: app/features/mec/dashboard.php:258
2826
  msgid "Popular Gateways"
2827
  msgstr ""
2828
 
2829
- #: app/features/mec/dashboard.php:312
2830
  msgid "Total Bookings"
2831
  msgstr ""
2832
 
2833
- #: app/features/mec/dashboard.php:339
2834
  msgid "This Month"
2835
  msgstr ""
2836
 
2837
- #: app/features/mec/dashboard.php:340
2838
  msgid "Last Month"
2839
  msgstr ""
2840
 
2841
- #: app/features/mec/dashboard.php:341
2842
  msgid "This Year"
2843
  msgstr ""
2844
 
2845
- #: app/features/mec/dashboard.php:342
2846
  msgid "Last Year"
2847
  msgstr ""
2848
 
2849
- #: app/features/mec/dashboard.php:354
2850
  msgid "Bar"
2851
  msgstr ""
2852
 
2853
- #: app/features/mec/dashboard.php:355
2854
  msgid "Line"
2855
  msgstr ""
2856
 
2857
- #: app/features/mec/dashboard.php:357
2858
  msgid "Filter"
2859
  msgstr ""
2860
 
2861
- #: app/features/mec/dashboard.php:373
2862
  #, php-format
2863
  msgid "Total Sells (%s)"
2864
  msgstr ""
2865
 
2866
- #: app/features/mec/dashboard.php:394
2867
  msgid "Change Log"
2868
  msgstr "История изменений"
2869
 
@@ -4255,7 +4272,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4255
  msgstr "Будет отправлено администратору для уведомления о новом бронировании."
4256
 
4257
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4258
- #: app/libraries/notifications.php:405
4259
  msgid "Booking Reminder"
4260
  msgstr ""
4261
 
@@ -5462,10 +5479,6 @@ msgstr ""
5462
  "клиентов. Если у вас есть какие-либо вопросы смело пишите нам, мы ответим в "
5463
  "самое ближайшее время."
5464
 
5465
- #: app/features/mec/support.php:126
5466
- msgid "GO PREMIUM"
5467
- msgstr ""
5468
-
5469
  #: app/features/mec/support.php:128
5470
  msgid "OPEN A TICKET"
5471
  msgstr "Создать тикет"
@@ -5630,7 +5643,7 @@ msgid "No search result."
5630
  msgstr ""
5631
 
5632
  #: app/features/search_bar/search_result.php:11
5633
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5634
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5635
  #: app/skins/single.php:160 app/skins/single.php:708
5636
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6222,7 +6235,7 @@ msgstr ""
6222
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6223
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6224
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6225
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6226
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6227
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6228
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6242,8 +6255,8 @@ msgstr ""
6242
 
6243
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6244
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6245
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6246
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6247
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6248
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6249
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6307,49 +6320,49 @@ msgstr "Ожидает"
6307
  msgid "Skin controller does not exist."
6308
  msgstr "Контроллер скина не существует."
6309
 
6310
- #: app/libraries/notifications.php:61
6311
  msgid "Please verify your email."
6312
  msgstr "Пожалуйста подтвердите свою эл. почту."
6313
 
6314
- #: app/libraries/notifications.php:125
6315
  msgid "Your booking is received."
6316
  msgstr ""
6317
 
6318
- #: app/libraries/notifications.php:193
6319
  msgid "Your booking is confirmed."
6320
  msgstr "Ваше бронирование подтверждено."
6321
 
6322
- #: app/libraries/notifications.php:282
6323
  #, fuzzy
6324
  #| msgid "Your booking cannot be canceled."
6325
  msgid "booking canceled."
6326
  msgstr "Ваше бронирование не может быть отменено."
6327
 
6328
- #: app/libraries/notifications.php:337
6329
  msgid "A new booking is received."
6330
  msgstr "Получено новое бронирование."
6331
 
6332
- #: app/libraries/notifications.php:488
6333
  msgid "A new event is added."
6334
  msgstr "Новое событие добавлено."
6335
 
6336
- #: app/libraries/notifications.php:674
6337
  msgid "to"
6338
  msgstr ""
6339
 
6340
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6341
  msgid "+ Add to Google Calendar"
6342
  msgstr "+ Добавить в Google Calendar"
6343
 
6344
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6345
  msgid "+ iCal export"
6346
  msgstr "+ iCal экспорт"
6347
 
6348
- #: app/libraries/notifications.php:752
6349
  msgid "Yes"
6350
  msgstr ""
6351
 
6352
- #: app/libraries/notifications.php:752
6353
  msgid "No"
6354
  msgstr ""
6355
 
@@ -6752,6 +6765,11 @@ msgstr ""
6752
  #~ msgid "Book Date"
6753
  #~ msgstr "Дата"
6754
 
 
 
 
 
 
6755
  #~ msgid "Confirm"
6756
  #~ msgstr "Подтверждение"
6757
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:24+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: Runa Simi Tours <info@runa-simi.com>\n"
8
  "Language: ru_RU\n"
75
  msgstr "Цвет события"
76
 
77
  #: app/features/contextual.php:55 app/features/mec.php:347
78
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
79
  #: app/features/mec/support.php:20 app/libraries/main.php:587
80
  msgid "Settings"
81
  msgstr "Настройки"
251
  msgstr "Активация Календаря Событий"
252
 
253
  #: app/features/events.php:148 app/features/ix/export.php:34
254
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
256
  msgid "Events"
257
  msgstr "События"
269
  msgid "Add Event"
270
  msgstr "Добавить событие"
271
 
272
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
273
  msgid "Add New Event"
274
  msgstr "Добавить новое событие"
275
 
294
  msgid "No events found in Trash!"
295
  msgstr "Событий в корзине не найдено!"
296
 
297
+ #: app/features/events.php:173 app/features/events.php:3072
298
  #: app/features/mec/meta_boxes/display_options.php:828
299
  #: app/features/mec/meta_boxes/search_form.php:31
300
  #: app/features/mec/meta_boxes/search_form.php:93
314
  msgid "Category"
315
  msgstr "Категория"
316
 
317
+ #: app/features/events.php:174 app/features/events.php:3043
318
  #: app/features/fes/form.php:745 app/features/mec.php:335
319
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
320
  msgid "Categories"
388
  msgid "Event Details"
389
  msgstr "Детали события"
390
 
391
+ #: app/features/events.php:333 app/features/events.php:3265
392
+ #: app/features/events.php:3307 app/features/fes/form.php:706
393
  #: app/features/ix.php:2743 app/features/ix.php:2784
394
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
395
  #: app/widgets/single.php:103
414
  #: app/features/events.php:443 app/features/events.php:2261
415
  #: app/features/fes/form.php:668 app/features/labels.php:178
416
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
417
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
418
  #: app/modules/booking/steps/form.php:37
419
  msgid "Name"
420
  msgstr "Имя"
421
 
422
  #: app/features/events.php:444 app/features/events.php:2272
423
+ #: app/features/events.php:2348 app/features/fes/form.php:664
424
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
425
  #: app/features/organizers.php:111 app/features/organizers.php:152
426
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
427
  #: app/features/speakers.php:184 app/libraries/main.php:1471
428
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
429
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
430
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
431
  #: app/skins/single.php:836 app/skins/single/default.php:212
432
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
439
  msgstr "Дата и время"
440
 
441
  #: app/features/events.php:452 app/features/events.php:458
442
+ #: app/features/events.php:3075 app/features/events.php:3265
443
+ #: app/features/events.php:3307 app/features/fes/form.php:236
444
  #: app/features/fes/form.php:240 app/features/ix.php:2743
445
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
446
+ #: app/features/mec/dashboard.php:373
447
  #: app/features/mec/meta_boxes/display_options.php:44
448
  #: app/features/mec/meta_boxes/display_options.php:185
449
  #: app/features/mec/meta_boxes/display_options.php:337
475
  msgstr "PM"
476
 
477
  #: app/features/events.php:544 app/features/events.php:549
478
+ #: app/features/events.php:3076 app/features/events.php:3265
479
+ #: app/features/events.php:3307 app/features/fes/form.php:276
480
  #: app/features/fes/form.php:280 app/features/ix.php:2743
481
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
482
+ #: app/features/mec/dashboard.php:374
483
  msgid "End Date"
484
  msgstr "Дата окончания"
485
 
596
  msgstr "Повторения"
597
 
598
  #: app/features/events.php:703 app/features/fes/form.php:338
599
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
600
  msgid "Daily"
601
  msgstr "Ежедневно"
602
 
618
  msgstr "Еженедельно"
619
 
620
  #: app/features/events.php:738 app/features/fes/form.php:343
621
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
622
  msgid "Monthly"
623
  msgstr "Каждый месяц"
624
 
625
  #: app/features/events.php:745 app/features/fes/form.php:344
626
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
627
  msgid "Yearly"
628
  msgstr "Каждый год"
629
 
786
  msgid "Exclude certain days"
787
  msgstr "Исключить определённые дни"
788
 
789
+ #: app/features/events.php:1141 app/features/events.php:2349
790
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
791
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
792
  #: app/modules/booking/steps/tickets.php:22
830
  #: app/features/events.php:1239 app/features/events.php:1278
831
  #: app/features/events.php:1313 app/features/events.php:1345
832
  #: app/features/events.php:1374 app/features/events.php:2130
833
+ #: app/features/events.php:2177 app/features/events.php:3071
834
+ #: app/features/events.php:3265 app/features/events.php:3307
835
  #: app/features/fes/form.php:225 app/features/ix.php:2743
836
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
837
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1013
  msgstr "Имя билета"
1014
 
1015
  #: app/features/events.php:1584 app/features/events.php:1805
1016
+ #: app/features/events.php:3265 app/features/events.php:3307
1017
  #: app/features/ix.php:2743 app/features/ix.php:2784
1018
  msgid "Start Time"
1019
  msgstr ""
1020
 
1021
  #: app/features/events.php:1626 app/features/events.php:1829
1022
+ #: app/features/events.php:3265 app/features/events.php:3307
1023
  #: app/features/ix.php:2743 app/features/ix.php:2784
1024
  msgid "End Time"
1025
  msgstr ""
1141
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1142
  msgstr ""
1143
 
1144
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1145
  #: app/libraries/main.php:2523
1146
  #, fuzzy
1147
  #| msgid "Name"
1148
  msgid "MEC Name"
1149
  msgstr "Имя"
1150
 
1151
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1152
  #: app/libraries/main.php:2552
1153
  #, fuzzy
1154
  #| msgid "Email"
1155
  msgid "MEC Email"
1156
  msgstr "Электронная почта"
1157
 
1158
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1159
  #: app/libraries/main.php:2493
1160
  msgid "Text"
1161
  msgstr "Текст"
1162
 
1163
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1164
  #: app/features/organizers.php:103 app/features/organizers.php:148
1165
  #: app/features/speakers.php:116 app/features/speakers.php:180
1166
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1167
  msgid "Tel"
1168
  msgstr "Тел."
1169
 
1170
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1171
  #: app/libraries/main.php:2611
1172
  msgid "File"
1173
  msgstr ""
1174
 
1175
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1176
  #: app/libraries/main.php:2698
1177
  msgid "Textarea"
1178
  msgstr "Текстовое поле"
1179
 
1180
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1181
  #: app/libraries/main.php:2751
1182
  msgid "Checkboxes"
1183
  msgstr "Флажок"
1184
 
1185
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1186
  #: app/libraries/main.php:2795
1187
  msgid "Radio Buttons"
1188
  msgstr "\"Радио\" переключатель"
1189
 
1190
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1191
  #: app/features/mec/meta_boxes/search_form.php:34
1192
  #: app/features/mec/meta_boxes/search_form.php:41
1193
  #: app/features/mec/meta_boxes/search_form.php:48
1260
  msgid "Dropdown"
1261
  msgstr "Выпадающий список"
1262
 
1263
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1264
  #: app/libraries/main.php:2886
1265
  msgid "Agreement"
1266
  msgstr ""
1267
 
1268
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1269
  #: app/libraries/main.php:2727
1270
  msgid "Paragraph"
1271
  msgstr "Параграф"
1272
 
1273
+ #: app/features/events.php:2992 app/features/events.php:3009
1274
+ #: app/features/events.php:3026 app/features/events.php:3043
1275
  #, php-format
1276
  msgid "Show all %s"
1277
  msgstr ""
1278
 
1279
+ #: app/features/events.php:2992
1280
  msgid "labels"
1281
  msgstr "метки"
1282
 
1283
+ #: app/features/events.php:3009
1284
  msgid "locations"
1285
  msgstr ""
1286
 
1287
+ #: app/features/events.php:3026
1288
  msgid "organizers"
1289
  msgstr ""
1290
 
1291
+ #: app/features/events.php:3073 app/features/events.php:3265
1292
+ #: app/features/events.php:3307 app/features/ix.php:2743
1293
  #: app/features/ix.php:2784 app/features/locations.php:58
1294
  #: app/features/locations.php:230 app/features/locations.php:287
1295
  #: app/features/locations.php:289 app/features/locations.php:298
1313
  msgid "Location"
1314
  msgstr "Места"
1315
 
1316
+ #: app/features/events.php:3074 app/features/events.php:3265
1317
+ #: app/features/events.php:3307 app/features/ix.php:2743
1318
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1319
  #: app/features/mec/meta_boxes/search_form.php:45
1320
  #: app/features/mec/meta_boxes/search_form.php:107
1337
  msgid "Organizer"
1338
  msgstr "Организатор"
1339
 
1340
+ #: app/features/events.php:3078
1341
  msgid "Repeat"
1342
  msgstr "Повтор"
1343
 
1344
+ #: app/features/events.php:3079
1345
  msgid "Author"
1346
  msgstr "Автор"
1347
 
1348
+ #: app/features/events.php:3200 app/features/events.php:3201
1349
  msgid "iCal Export"
1350
  msgstr "iCal Экспорт"
1351
 
1352
+ #: app/features/events.php:3203 app/features/events.php:3204
1353
  msgid "CSV Export"
1354
  msgstr "CSV экспорт"
1355
 
1356
+ #: app/features/events.php:3206 app/features/events.php:3207
1357
  msgid "MS Excel Export"
1358
  msgstr "MS Excel экспорт"
1359
 
1360
+ #: app/features/events.php:3209 app/features/events.php:3210
1361
  msgid "XML Export"
1362
  msgstr ""
1363
 
1364
+ #: app/features/events.php:3212 app/features/events.php:3213
1365
  msgid "JSON Export"
1366
  msgstr ""
1367
 
1368
+ #: app/features/events.php:3215 app/features/events.php:3216
1369
+ #: app/features/events.php:3397
1370
  msgid "Duplicate"
1371
  msgstr "Дублировать"
1372
 
1373
+ #: app/features/events.php:3265 app/features/events.php:3307
1374
  #: app/features/ix.php:2743 app/features/ix.php:2784
1375
  #: app/features/labels.php:177 app/features/locations.php:229
1376
  #: app/features/organizers.php:203 app/features/speakers.php:246
1377
  msgid "ID"
1378
  msgstr "ID"
1379
 
1380
+ #: app/features/events.php:3265 app/features/events.php:3307
1381
  #: app/features/ix.php:2743 app/features/ix.php:2784
1382
  msgid "Link"
1383
  msgstr ""
1384
 
1385
+ #: app/features/events.php:3265 app/features/events.php:3307
1386
  #, php-format
1387
  msgid "%s Tel"
1388
  msgstr ""
1389
 
1390
+ #: app/features/events.php:3265 app/features/events.php:3307
1391
  #, php-format
1392
  msgid "%s Email"
1393
  msgstr ""
1885
  msgid "Import all of your Facebook events into MEC."
1886
  msgstr ""
1887
 
1888
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1889
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1890
  msgid "Documentation"
1891
  msgstr "Руководство пользователя"
2249
  msgstr ""
2250
 
2251
  #: app/features/locations.php:59 app/features/mec.php:337
2252
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2253
  #: app/libraries/main.php:4838
2254
  msgid "Locations"
2255
  msgstr "Места"
2415
  msgid "Support"
2416
  msgstr "Поддержка"
2417
 
2418
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2419
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2420
  #: app/libraries/main.php:4840
2421
  msgid "Organizers"
2422
  msgstr "Оранизаторы"
2423
 
2424
  #: app/features/mec.php:346 app/features/mec.php:366
2425
+ #: app/features/mec/dashboard.php:236
2426
  msgid "Shortcodes"
2427
  msgstr "Шорткоды"
2428
 
2768
  msgid "Update"
2769
  msgstr "Обновить метку"
2770
 
2771
+ #: app/features/mec/dashboard.php:92
2772
  #, php-format
2773
  msgid ""
2774
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2775
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2776
+ "Spots, etc you should upgrade to the Pro version."
2777
  msgstr ""
2778
 
2779
+ #: app/features/mec/dashboard.php:92
2780
  msgid "lite"
2781
  msgstr ""
2782
 
2783
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2784
+ msgid "GO PREMIUM"
2785
+ msgstr ""
2786
+
2787
+ #: app/features/mec/dashboard.php:98
2788
+ #, php-format
2789
+ msgid ""
2790
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2791
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2792
  msgstr ""
2793
 
2794
+ #: app/features/mec/dashboard.php:98
2795
+ #, fuzzy
2796
+ #| msgid "Address"
2797
+ msgid "WordPress"
2798
+ msgstr "Адрес"
2799
+
2800
+ #: app/features/mec/dashboard.php:98
2801
+ msgid "Copouns!"
2802
+ msgstr ""
2803
+
2804
+ #: app/features/mec/dashboard.php:127
2805
  #, fuzzy
2806
  #| msgid "Modern Events Calendar"
2807
  msgid "Getting started with Modern Events Calendar"
2808
  msgstr "Календарь событий"
2809
 
2810
+ #: app/features/mec/dashboard.php:128
2811
  msgid ""
2812
  "In this short video, you can learn how to make an event and put a calendar "
2813
  "on your website. Please watch this 2 minutes video to the end."
2814
  msgstr ""
2815
 
2816
+ #: app/features/mec/dashboard.php:144
2817
  #, fuzzy
2818
  #| msgid "MEC Activation"
2819
  msgid "MEC Activate"
2820
  msgstr "Активация Календаря Событий"
2821
 
2822
+ #: app/features/mec/dashboard.php:150
2823
  msgid ""
2824
  "In order to use all plugin features and options, please enter your purchase "
2825
  "code."
2826
  msgstr ""
2827
 
2828
+ #: app/features/mec/dashboard.php:208
2829
  #, fuzzy
2830
  #| msgid "MEC Activation"
2831
  msgid "Activate Addons"
2832
  msgstr "Активация Календаря Событий"
2833
 
2834
+ #: app/features/mec/dashboard.php:217
2835
  msgid "You cannot access this section."
2836
  msgstr ""
2837
 
2838
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2839
  msgid "Upcoming Events"
2840
  msgstr ""
2841
 
2842
+ #: app/features/mec/dashboard.php:285
2843
  msgid "Popular Gateways"
2844
  msgstr ""
2845
 
2846
+ #: app/features/mec/dashboard.php:339
2847
  msgid "Total Bookings"
2848
  msgstr ""
2849
 
2850
+ #: app/features/mec/dashboard.php:366
2851
  msgid "This Month"
2852
  msgstr ""
2853
 
2854
+ #: app/features/mec/dashboard.php:367
2855
  msgid "Last Month"
2856
  msgstr ""
2857
 
2858
+ #: app/features/mec/dashboard.php:368
2859
  msgid "This Year"
2860
  msgstr ""
2861
 
2862
+ #: app/features/mec/dashboard.php:369
2863
  msgid "Last Year"
2864
  msgstr ""
2865
 
2866
+ #: app/features/mec/dashboard.php:381
2867
  msgid "Bar"
2868
  msgstr ""
2869
 
2870
+ #: app/features/mec/dashboard.php:382
2871
  msgid "Line"
2872
  msgstr ""
2873
 
2874
+ #: app/features/mec/dashboard.php:384
2875
  msgid "Filter"
2876
  msgstr ""
2877
 
2878
+ #: app/features/mec/dashboard.php:400
2879
  #, php-format
2880
  msgid "Total Sells (%s)"
2881
  msgstr ""
2882
 
2883
+ #: app/features/mec/dashboard.php:421
2884
  msgid "Change Log"
2885
  msgstr "История изменений"
2886
 
4272
  msgstr "Будет отправлено администратору для уведомления о новом бронировании."
4273
 
4274
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4275
+ #: app/libraries/notifications.php:478
4276
  msgid "Booking Reminder"
4277
  msgstr ""
4278
 
5479
  "клиентов. Если у вас есть какие-либо вопросы смело пишите нам, мы ответим в "
5480
  "самое ближайшее время."
5481
 
 
 
 
 
5482
  #: app/features/mec/support.php:128
5483
  msgid "OPEN A TICKET"
5484
  msgstr "Создать тикет"
5643
  msgstr ""
5644
 
5645
  #: app/features/search_bar/search_result.php:11
5646
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5647
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5648
  #: app/skins/single.php:160 app/skins/single.php:708
5649
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6235
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6236
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6237
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6238
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6239
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6240
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6241
  #: app/skins/single.php:729 app/skins/single/default.php:233
6255
 
6256
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6257
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6258
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6259
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6260
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6261
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6262
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6320
  msgid "Skin controller does not exist."
6321
  msgstr "Контроллер скина не существует."
6322
 
6323
+ #: app/libraries/notifications.php:60
6324
  msgid "Please verify your email."
6325
  msgstr "Пожалуйста подтвердите свою эл. почту."
6326
 
6327
+ #: app/libraries/notifications.php:139
6328
  msgid "Your booking is received."
6329
  msgstr ""
6330
 
6331
+ #: app/libraries/notifications.php:224
6332
  msgid "Your booking is confirmed."
6333
  msgstr "Ваше бронирование подтверждено."
6334
 
6335
+ #: app/libraries/notifications.php:349
6336
  #, fuzzy
6337
  #| msgid "Your booking cannot be canceled."
6338
  msgid "booking canceled."
6339
  msgstr "Ваше бронирование не может быть отменено."
6340
 
6341
+ #: app/libraries/notifications.php:410
6342
  msgid "A new booking is received."
6343
  msgstr "Получено новое бронирование."
6344
 
6345
+ #: app/libraries/notifications.php:561
6346
  msgid "A new event is added."
6347
  msgstr "Новое событие добавлено."
6348
 
6349
+ #: app/libraries/notifications.php:746
6350
  msgid "to"
6351
  msgstr ""
6352
 
6353
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6354
  msgid "+ Add to Google Calendar"
6355
  msgstr "+ Добавить в Google Calendar"
6356
 
6357
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6358
  msgid "+ iCal export"
6359
  msgstr "+ iCal экспорт"
6360
 
6361
+ #: app/libraries/notifications.php:821
6362
  msgid "Yes"
6363
  msgstr ""
6364
 
6365
+ #: app/libraries/notifications.php:821
6366
  msgid "No"
6367
  msgstr ""
6368
 
6765
  #~ msgid "Book Date"
6766
  #~ msgstr "Дата"
6767
 
6768
+ #, fuzzy
6769
+ #~| msgid "Ticket"
6770
+ #~ msgid " - Ticket"
6771
+ #~ msgstr "Билет"
6772
+
6773
  #~ msgid "Confirm"
6774
  #~ msgstr "Подтверждение"
6775
 
languages/modern-events-calendar-lite-sv_SE.mo CHANGED
Binary file
languages/modern-events-calendar-lite-sv_SE.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 16:00+0430\n"
6
  "Last-Translator: Mats Vallström <walle@mtre.se>\n"
7
  "Language-Team: Mats Vallström <walle@mtre.se>\n"
8
  "Language: sv_SE\n"
@@ -76,7 +76,7 @@ msgid "Event Color"
76
  msgstr "Evenemangs-färg"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:347
79
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
80
  #: app/features/mec/support.php:20 app/libraries/main.php:587
81
  msgid "Settings"
82
  msgstr "Inställningar"
@@ -252,7 +252,7 @@ msgid "MEC Activation"
252
  msgstr "MEC-aktivering"
253
 
254
  #: app/features/events.php:148 app/features/ix/export.php:34
255
- #: app/features/mec/dashboard.php:202 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 "Evenemang"
@@ -270,7 +270,7 @@ msgstr "Evenemang"
270
  msgid "Add Event"
271
  msgstr "Lägg till evenemang"
272
 
273
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
274
  msgid "Add New Event"
275
  msgstr "Lägg till nytt evenemang"
276
 
@@ -295,7 +295,7 @@ msgstr "Visa evenemang"
295
  msgid "No events found in Trash!"
296
  msgstr "Inga raderade evenemang hittades!"
297
 
298
- #: app/features/events.php:173 app/features/events.php:3078
299
  #: app/features/mec/meta_boxes/display_options.php:828
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -315,7 +315,7 @@ msgstr "Inga raderade evenemang hittades!"
315
  msgid "Category"
316
  msgstr "Kategori"
317
 
318
- #: app/features/events.php:174 app/features/events.php:3049
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
321
  msgid "Categories"
@@ -389,8 +389,8 @@ msgstr ""
389
  msgid "Event Details"
390
  msgstr "Evenemangsdetaljer"
391
 
392
- #: app/features/events.php:333 app/features/events.php:3271
393
- #: app/features/events.php:3313 app/features/fes/form.php:706
394
  #: app/features/ix.php:2743 app/features/ix.php:2784
395
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
396
  #: app/widgets/single.php:103
@@ -415,19 +415,19 @@ msgstr "Gäst-data"
415
  #: app/features/events.php:443 app/features/events.php:2261
416
  #: app/features/fes/form.php:668 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Namn"
422
 
423
  #: app/features/events.php:444 app/features/events.php:2272
424
- #: app/features/events.php:2350 app/features/fes/form.php:664
425
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
426
  #: app/features/organizers.php:111 app/features/organizers.php:152
427
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
428
  #: app/features/speakers.php:184 app/libraries/main.php:1471
429
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
430
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
431
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
432
  #: app/skins/single.php:836 app/skins/single/default.php:212
433
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -440,11 +440,11 @@ msgid "Date and Time"
440
  msgstr "Datum och tid"
441
 
442
  #: app/features/events.php:452 app/features/events.php:458
443
- #: app/features/events.php:3081 app/features/events.php:3271
444
- #: app/features/events.php:3313 app/features/fes/form.php:236
445
  #: app/features/fes/form.php:240 app/features/ix.php:2743
446
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
447
- #: app/features/mec/dashboard.php:346
448
  #: app/features/mec/meta_boxes/display_options.php:44
449
  #: app/features/mec/meta_boxes/display_options.php:185
450
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -476,11 +476,11 @@ msgid "PM"
476
  msgstr "PM"
477
 
478
  #: app/features/events.php:544 app/features/events.php:549
479
- #: app/features/events.php:3082 app/features/events.php:3271
480
- #: app/features/events.php:3313 app/features/fes/form.php:276
481
  #: app/features/fes/form.php:280 app/features/ix.php:2743
482
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
483
- #: app/features/mec/dashboard.php:347
484
  msgid "End Date"
485
  msgstr "Slut-datum"
486
 
@@ -597,7 +597,7 @@ msgid "Repeats"
597
  msgstr "Upprepningar"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Dagligen"
603
 
@@ -619,12 +619,12 @@ msgid "Weekly"
619
  msgstr "Veckovis"
620
 
621
  #: app/features/events.php:738 app/features/fes/form.php:343
622
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
623
  msgid "Monthly"
624
  msgstr "Månadsvis"
625
 
626
  #: app/features/events.php:745 app/features/fes/form.php:344
627
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
628
  msgid "Yearly"
629
  msgstr "Årsvis"
630
 
@@ -789,7 +789,7 @@ msgstr ""
789
  msgid "Exclude certain days"
790
  msgstr "Uteslut vissa dagar"
791
 
792
- #: app/features/events.php:1141 app/features/events.php:2351
793
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
794
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
795
  #: app/modules/booking/steps/tickets.php:22
@@ -833,8 +833,8 @@ msgstr ""
833
  #: app/features/events.php:1239 app/features/events.php:1278
834
  #: app/features/events.php:1313 app/features/events.php:1345
835
  #: app/features/events.php:1374 app/features/events.php:2130
836
- #: app/features/events.php:2177 app/features/events.php:3077
837
- #: app/features/events.php:3271 app/features/events.php:3313
838
  #: app/features/fes/form.php:225 app/features/ix.php:2743
839
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
840
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1016,13 +1016,13 @@ msgid "Ticket Name"
1016
  msgstr "Biljettnamn"
1017
 
1018
  #: app/features/events.php:1584 app/features/events.php:1805
1019
- #: app/features/events.php:3271 app/features/events.php:3313
1020
  #: app/features/ix.php:2743 app/features/ix.php:2784
1021
  msgid "Start Time"
1022
  msgstr "Start-tid"
1023
 
1024
  #: app/features/events.php:1626 app/features/events.php:1829
1025
- #: app/features/events.php:3271 app/features/events.php:3313
1026
  #: app/features/ix.php:2743 app/features/ix.php:2784
1027
  msgid "End Time"
1028
  msgstr "Slut-tid"
@@ -1144,53 +1144,53 @@ msgstr "Maximalt antal evenemang"
1144
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1145
  msgstr ""
1146
 
1147
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1148
  #: app/libraries/main.php:2523
1149
  #, fuzzy
1150
  #| msgid "Name"
1151
  msgid "MEC Name"
1152
  msgstr "Namn"
1153
 
1154
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1155
  #: app/libraries/main.php:2552
1156
  #, fuzzy
1157
  #| msgid "Email"
1158
  msgid "MEC Email"
1159
  msgstr "E-post"
1160
 
1161
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1162
  #: app/libraries/main.php:2493
1163
  msgid "Text"
1164
  msgstr "Text"
1165
 
1166
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1167
  #: app/features/organizers.php:103 app/features/organizers.php:148
1168
  #: app/features/speakers.php:116 app/features/speakers.php:180
1169
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1170
  msgid "Tel"
1171
  msgstr "Tel"
1172
 
1173
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1174
  #: app/libraries/main.php:2611
1175
  msgid "File"
1176
  msgstr ""
1177
 
1178
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1179
  #: app/libraries/main.php:2698
1180
  msgid "Textarea"
1181
  msgstr "Textyta"
1182
 
1183
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1184
  #: app/libraries/main.php:2751
1185
  msgid "Checkboxes"
1186
  msgstr "Kryssrutor"
1187
 
1188
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1189
  #: app/libraries/main.php:2795
1190
  msgid "Radio Buttons"
1191
  msgstr "Radio-knappar"
1192
 
1193
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1194
  #: app/features/mec/meta_boxes/search_form.php:34
1195
  #: app/features/mec/meta_boxes/search_form.php:41
1196
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1263,36 +1263,36 @@ msgstr "Radio-knappar"
1263
  msgid "Dropdown"
1264
  msgstr "Rullgardin"
1265
 
1266
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1267
  #: app/libraries/main.php:2886
1268
  msgid "Agreement"
1269
  msgstr ""
1270
 
1271
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1272
  #: app/libraries/main.php:2727
1273
  msgid "Paragraph"
1274
  msgstr "Stycke"
1275
 
1276
- #: app/features/events.php:2998 app/features/events.php:3015
1277
- #: app/features/events.php:3032 app/features/events.php:3049
1278
  #, php-format
1279
  msgid "Show all %s"
1280
  msgstr "Visa alla %s"
1281
 
1282
- #: app/features/events.php:2998
1283
  msgid "labels"
1284
  msgstr "etiketter"
1285
 
1286
- #: app/features/events.php:3015
1287
  msgid "locations"
1288
  msgstr "platser"
1289
 
1290
- #: app/features/events.php:3032
1291
  msgid "organizers"
1292
  msgstr "arrangörer"
1293
 
1294
- #: app/features/events.php:3079 app/features/events.php:3271
1295
- #: app/features/events.php:3313 app/features/ix.php:2743
1296
  #: app/features/ix.php:2784 app/features/locations.php:58
1297
  #: app/features/locations.php:230 app/features/locations.php:287
1298
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1316,8 +1316,8 @@ msgstr "arrangörer"
1316
  msgid "Location"
1317
  msgstr "Platser"
1318
 
1319
- #: app/features/events.php:3080 app/features/events.php:3271
1320
- #: app/features/events.php:3313 app/features/ix.php:2743
1321
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1322
  #: app/features/mec/meta_boxes/search_form.php:45
1323
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1340,57 +1340,57 @@ msgstr "Platser"
1340
  msgid "Organizer"
1341
  msgstr "Arrangör"
1342
 
1343
- #: app/features/events.php:3084
1344
  msgid "Repeat"
1345
  msgstr "Upprepa"
1346
 
1347
- #: app/features/events.php:3085
1348
  msgid "Author"
1349
  msgstr "Författare"
1350
 
1351
- #: app/features/events.php:3206 app/features/events.php:3207
1352
  msgid "iCal Export"
1353
  msgstr "iCal-export"
1354
 
1355
- #: app/features/events.php:3209 app/features/events.php:3210
1356
  msgid "CSV Export"
1357
  msgstr "CSV-export"
1358
 
1359
- #: app/features/events.php:3212 app/features/events.php:3213
1360
  msgid "MS Excel Export"
1361
  msgstr "MS Excel-export"
1362
 
1363
- #: app/features/events.php:3215 app/features/events.php:3216
1364
  msgid "XML Export"
1365
  msgstr "XML-export"
1366
 
1367
- #: app/features/events.php:3218 app/features/events.php:3219
1368
  msgid "JSON Export"
1369
  msgstr "JSON-export"
1370
 
1371
- #: app/features/events.php:3221 app/features/events.php:3222
1372
- #: app/features/events.php:3403
1373
  msgid "Duplicate"
1374
  msgstr "Duplicera"
1375
 
1376
- #: app/features/events.php:3271 app/features/events.php:3313
1377
  #: app/features/ix.php:2743 app/features/ix.php:2784
1378
  #: app/features/labels.php:177 app/features/locations.php:229
1379
  #: app/features/organizers.php:203 app/features/speakers.php:246
1380
  msgid "ID"
1381
  msgstr "ID"
1382
 
1383
- #: app/features/events.php:3271 app/features/events.php:3313
1384
  #: app/features/ix.php:2743 app/features/ix.php:2784
1385
  msgid "Link"
1386
  msgstr "Länk"
1387
 
1388
- #: app/features/events.php:3271 app/features/events.php:3313
1389
  #, php-format
1390
  msgid "%s Tel"
1391
  msgstr "%s Tel"
1392
 
1393
- #: app/features/events.php:3271 app/features/events.php:3313
1394
  #, php-format
1395
  msgid "%s Email"
1396
  msgstr "%s E-post"
@@ -1906,7 +1906,7 @@ msgstr "Importera från Facebook Kalender"
1906
  msgid "Import all of your Facebook events into MEC."
1907
  msgstr "Importera alla dina Facebook-evenemang till MEC."
1908
 
1909
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1910
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1911
  msgid "Documentation"
1912
  msgstr "Dokumentation"
@@ -2292,7 +2292,7 @@ msgid "Event %s"
2292
  msgstr "Evenemang %s"
2293
 
2294
  #: app/features/locations.php:59 app/features/mec.php:337
2295
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2296
  #: app/libraries/main.php:4838
2297
  msgid "Locations"
2298
  msgstr "Platser"
@@ -2458,14 +2458,14 @@ msgstr "Support"
2458
  msgid "Support"
2459
  msgstr "Support"
2460
 
2461
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2462
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2463
  #: app/libraries/main.php:4840
2464
  msgid "Organizers"
2465
  msgstr "Arrangörer"
2466
 
2467
  #: app/features/mec.php:346 app/features/mec.php:366
2468
- #: app/features/mec/dashboard.php:209
2469
  msgid "Shortcodes"
2470
  msgstr "Shortcodes"
2471
 
@@ -2813,102 +2813,119 @@ msgstr ""
2813
  msgid "Update"
2814
  msgstr "Uppdatera %s"
2815
 
2816
- #: app/features/mec/dashboard.php:90
2817
  #, php-format
2818
  msgid ""
2819
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2820
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2821
- "Spots, etc you should %s to the Pro version."
2822
  msgstr ""
2823
 
2824
- #: app/features/mec/dashboard.php:90
2825
  msgid "lite"
2826
  msgstr ""
2827
 
2828
- #: app/features/mec/dashboard.php:90
2829
- msgid "upgrade"
 
 
 
 
 
 
 
2830
  msgstr ""
2831
 
2832
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2833
  #, fuzzy
2834
  #| msgid "Modern Events Calendar"
2835
  msgid "Getting started with Modern Events Calendar"
2836
  msgstr "Modern Events Calendar"
2837
 
2838
- #: app/features/mec/dashboard.php:101
2839
  msgid ""
2840
  "In this short video, you can learn how to make an event and put a calendar "
2841
  "on your website. Please watch this 2 minutes video to the end."
2842
  msgstr ""
2843
 
2844
- #: app/features/mec/dashboard.php:117
2845
  #, fuzzy
2846
  #| msgid "MEC Activation"
2847
  msgid "MEC Activate"
2848
  msgstr "MEC-aktivering"
2849
 
2850
- #: app/features/mec/dashboard.php:123
2851
  msgid ""
2852
  "In order to use all plugin features and options, please enter your purchase "
2853
  "code."
2854
  msgstr ""
2855
 
2856
- #: app/features/mec/dashboard.php:181
2857
  #, fuzzy
2858
  #| msgid "MEC Activation"
2859
  msgid "Activate Addons"
2860
  msgstr "MEC-aktivering"
2861
 
2862
- #: app/features/mec/dashboard.php:190
2863
  msgid "You cannot access this section."
2864
  msgstr ""
2865
 
2866
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2867
  msgid "Upcoming Events"
2868
  msgstr "Kommande evenemang"
2869
 
2870
- #: app/features/mec/dashboard.php:258
2871
  msgid "Popular Gateways"
2872
  msgstr "Populära Gateways"
2873
 
2874
- #: app/features/mec/dashboard.php:312
2875
  msgid "Total Bookings"
2876
  msgstr "Totalt antal bokningar"
2877
 
2878
- #: app/features/mec/dashboard.php:339
2879
  msgid "This Month"
2880
  msgstr "Denna månad"
2881
 
2882
- #: app/features/mec/dashboard.php:340
2883
  msgid "Last Month"
2884
  msgstr "Föregående månad"
2885
 
2886
- #: app/features/mec/dashboard.php:341
2887
  msgid "This Year"
2888
  msgstr "Det här året"
2889
 
2890
- #: app/features/mec/dashboard.php:342
2891
  msgid "Last Year"
2892
  msgstr "Föregående år"
2893
 
2894
- #: app/features/mec/dashboard.php:354
2895
  msgid "Bar"
2896
  msgstr ""
2897
 
2898
- #: app/features/mec/dashboard.php:355
2899
  msgid "Line"
2900
  msgstr "Linje"
2901
 
2902
- #: app/features/mec/dashboard.php:357
2903
  msgid "Filter"
2904
  msgstr "Filter"
2905
 
2906
- #: app/features/mec/dashboard.php:373
2907
  #, php-format
2908
  msgid "Total Sells (%s)"
2909
  msgstr "Totala försäljningar (%s)"
2910
 
2911
- #: app/features/mec/dashboard.php:394
2912
  msgid "Change Log"
2913
  msgstr "Ändringslogg"
2914
 
@@ -4312,7 +4329,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4312
  msgstr "Skickas till admin för att meddela att en ny bokning inkommit."
4313
 
4314
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4315
- #: app/libraries/notifications.php:405
4316
  msgid "Booking Reminder"
4317
  msgstr ""
4318
 
@@ -5552,10 +5569,6 @@ msgstr ""
5552
  "Webnus är en kompetent och pålitlig författare med många nöjda användare. Om "
5553
  "du har några frågor, tveka inte att kontakta oss. Vi svarar så snart vi kan."
5554
 
5555
- #: app/features/mec/support.php:126
5556
- msgid "GO PREMIUM"
5557
- msgstr ""
5558
-
5559
  #: app/features/mec/support.php:128
5560
  msgid "OPEN A TICKET"
5561
  msgstr "SKAPA EN SUPPORTFRÅGA"
@@ -5722,7 +5735,7 @@ msgid "No search result."
5722
  msgstr ""
5723
 
5724
  #: app/features/search_bar/search_result.php:11
5725
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5726
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5727
  #: app/skins/single.php:160 app/skins/single.php:708
5728
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6316,7 +6329,7 @@ msgstr "Knappen Registrera"
6316
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6317
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6318
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6319
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6320
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6321
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6322
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6336,8 +6349,8 @@ msgstr "Knappen Visa detaljer"
6336
 
6337
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6338
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6339
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6340
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6341
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6342
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6343
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6401,49 +6414,49 @@ msgstr "Väntar"
6401
  msgid "Skin controller does not exist."
6402
  msgstr "Tema-kontroll existerar inte."
6403
 
6404
- #: app/libraries/notifications.php:61
6405
  msgid "Please verify your email."
6406
  msgstr "Bekräfta din e-postadress."
6407
 
6408
- #: app/libraries/notifications.php:125
6409
  msgid "Your booking is received."
6410
  msgstr ""
6411
 
6412
- #: app/libraries/notifications.php:193
6413
  msgid "Your booking is confirmed."
6414
  msgstr "Din bokning är bekräftad."
6415
 
6416
- #: app/libraries/notifications.php:282
6417
  #, fuzzy
6418
  #| msgid "Your booking cannot be canceled."
6419
  msgid "booking canceled."
6420
  msgstr "Din bokning kan inte avbrytas."
6421
 
6422
- #: app/libraries/notifications.php:337
6423
  msgid "A new booking is received."
6424
  msgstr "En ny bokning är mottagen."
6425
 
6426
- #: app/libraries/notifications.php:488
6427
  msgid "A new event is added."
6428
  msgstr "Ett nytt evenemang läggs till."
6429
 
6430
- #: app/libraries/notifications.php:674
6431
  msgid "to"
6432
  msgstr ""
6433
 
6434
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6435
  msgid "+ Add to Google Calendar"
6436
  msgstr "+ Lägg till i Google Kalender"
6437
 
6438
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6439
  msgid "+ iCal export"
6440
  msgstr "+ iCal-export"
6441
 
6442
- #: app/libraries/notifications.php:752
6443
  msgid "Yes"
6444
  msgstr ""
6445
 
6446
- #: app/libraries/notifications.php:752
6447
  msgid "No"
6448
  msgstr ""
6449
 
@@ -6874,6 +6887,11 @@ msgstr ""
6874
  #~ msgid "Book Date"
6875
  #~ msgstr "Bokningsdatum"
6876
 
 
 
 
 
 
6877
  #~ msgid "Confirm"
6878
  #~ msgstr "Bekräfta"
6879
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:24+0430\n"
6
  "Last-Translator: Mats Vallström <walle@mtre.se>\n"
7
  "Language-Team: Mats Vallström <walle@mtre.se>\n"
8
  "Language: sv_SE\n"
76
  msgstr "Evenemangs-färg"
77
 
78
  #: app/features/contextual.php:55 app/features/mec.php:347
79
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
80
  #: app/features/mec/support.php:20 app/libraries/main.php:587
81
  msgid "Settings"
82
  msgstr "Inställningar"
252
  msgstr "MEC-aktivering"
253
 
254
  #: app/features/events.php:148 app/features/ix/export.php:34
255
+ #: app/features/mec/dashboard.php:229 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 "Evenemang"
270
  msgid "Add Event"
271
  msgstr "Lägg till evenemang"
272
 
273
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
274
  msgid "Add New Event"
275
  msgstr "Lägg till nytt evenemang"
276
 
295
  msgid "No events found in Trash!"
296
  msgstr "Inga raderade evenemang hittades!"
297
 
298
+ #: app/features/events.php:173 app/features/events.php:3072
299
  #: app/features/mec/meta_boxes/display_options.php:828
300
  #: app/features/mec/meta_boxes/search_form.php:31
301
  #: app/features/mec/meta_boxes/search_form.php:93
315
  msgid "Category"
316
  msgstr "Kategori"
317
 
318
+ #: app/features/events.php:174 app/features/events.php:3043
319
  #: app/features/fes/form.php:745 app/features/mec.php:335
320
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
321
  msgid "Categories"
389
  msgid "Event Details"
390
  msgstr "Evenemangsdetaljer"
391
 
392
+ #: app/features/events.php:333 app/features/events.php:3265
393
+ #: app/features/events.php:3307 app/features/fes/form.php:706
394
  #: app/features/ix.php:2743 app/features/ix.php:2784
395
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
396
  #: app/widgets/single.php:103
415
  #: app/features/events.php:443 app/features/events.php:2261
416
  #: app/features/fes/form.php:668 app/features/labels.php:178
417
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
418
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
419
  #: app/modules/booking/steps/form.php:37
420
  msgid "Name"
421
  msgstr "Namn"
422
 
423
  #: app/features/events.php:444 app/features/events.php:2272
424
+ #: app/features/events.php:2348 app/features/fes/form.php:664
425
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
426
  #: app/features/organizers.php:111 app/features/organizers.php:152
427
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
428
  #: app/features/speakers.php:184 app/libraries/main.php:1471
429
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
430
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
431
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
432
  #: app/skins/single.php:836 app/skins/single/default.php:212
433
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
440
  msgstr "Datum och tid"
441
 
442
  #: app/features/events.php:452 app/features/events.php:458
443
+ #: app/features/events.php:3075 app/features/events.php:3265
444
+ #: app/features/events.php:3307 app/features/fes/form.php:236
445
  #: app/features/fes/form.php:240 app/features/ix.php:2743
446
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
447
+ #: app/features/mec/dashboard.php:373
448
  #: app/features/mec/meta_boxes/display_options.php:44
449
  #: app/features/mec/meta_boxes/display_options.php:185
450
  #: app/features/mec/meta_boxes/display_options.php:337
476
  msgstr "PM"
477
 
478
  #: app/features/events.php:544 app/features/events.php:549
479
+ #: app/features/events.php:3076 app/features/events.php:3265
480
+ #: app/features/events.php:3307 app/features/fes/form.php:276
481
  #: app/features/fes/form.php:280 app/features/ix.php:2743
482
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
483
+ #: app/features/mec/dashboard.php:374
484
  msgid "End Date"
485
  msgstr "Slut-datum"
486
 
597
  msgstr "Upprepningar"
598
 
599
  #: app/features/events.php:703 app/features/fes/form.php:338
600
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
601
  msgid "Daily"
602
  msgstr "Dagligen"
603
 
619
  msgstr "Veckovis"
620
 
621
  #: app/features/events.php:738 app/features/fes/form.php:343
622
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
623
  msgid "Monthly"
624
  msgstr "Månadsvis"
625
 
626
  #: app/features/events.php:745 app/features/fes/form.php:344
627
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
628
  msgid "Yearly"
629
  msgstr "Årsvis"
630
 
789
  msgid "Exclude certain days"
790
  msgstr "Uteslut vissa dagar"
791
 
792
+ #: app/features/events.php:1141 app/features/events.php:2349
793
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
794
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
795
  #: app/modules/booking/steps/tickets.php:22
833
  #: app/features/events.php:1239 app/features/events.php:1278
834
  #: app/features/events.php:1313 app/features/events.php:1345
835
  #: app/features/events.php:1374 app/features/events.php:2130
836
+ #: app/features/events.php:2177 app/features/events.php:3071
837
+ #: app/features/events.php:3265 app/features/events.php:3307
838
  #: app/features/fes/form.php:225 app/features/ix.php:2743
839
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
840
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1016
  msgstr "Biljettnamn"
1017
 
1018
  #: app/features/events.php:1584 app/features/events.php:1805
1019
+ #: app/features/events.php:3265 app/features/events.php:3307
1020
  #: app/features/ix.php:2743 app/features/ix.php:2784
1021
  msgid "Start Time"
1022
  msgstr "Start-tid"
1023
 
1024
  #: app/features/events.php:1626 app/features/events.php:1829
1025
+ #: app/features/events.php:3265 app/features/events.php:3307
1026
  #: app/features/ix.php:2743 app/features/ix.php:2784
1027
  msgid "End Time"
1028
  msgstr "Slut-tid"
1144
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1145
  msgstr ""
1146
 
1147
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1148
  #: app/libraries/main.php:2523
1149
  #, fuzzy
1150
  #| msgid "Name"
1151
  msgid "MEC Name"
1152
  msgstr "Namn"
1153
 
1154
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1155
  #: app/libraries/main.php:2552
1156
  #, fuzzy
1157
  #| msgid "Email"
1158
  msgid "MEC Email"
1159
  msgstr "E-post"
1160
 
1161
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1162
  #: app/libraries/main.php:2493
1163
  msgid "Text"
1164
  msgstr "Text"
1165
 
1166
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1167
  #: app/features/organizers.php:103 app/features/organizers.php:148
1168
  #: app/features/speakers.php:116 app/features/speakers.php:180
1169
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1170
  msgid "Tel"
1171
  msgstr "Tel"
1172
 
1173
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1174
  #: app/libraries/main.php:2611
1175
  msgid "File"
1176
  msgstr ""
1177
 
1178
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1179
  #: app/libraries/main.php:2698
1180
  msgid "Textarea"
1181
  msgstr "Textyta"
1182
 
1183
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1184
  #: app/libraries/main.php:2751
1185
  msgid "Checkboxes"
1186
  msgstr "Kryssrutor"
1187
 
1188
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1189
  #: app/libraries/main.php:2795
1190
  msgid "Radio Buttons"
1191
  msgstr "Radio-knappar"
1192
 
1193
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1194
  #: app/features/mec/meta_boxes/search_form.php:34
1195
  #: app/features/mec/meta_boxes/search_form.php:41
1196
  #: app/features/mec/meta_boxes/search_form.php:48
1263
  msgid "Dropdown"
1264
  msgstr "Rullgardin"
1265
 
1266
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1267
  #: app/libraries/main.php:2886
1268
  msgid "Agreement"
1269
  msgstr ""
1270
 
1271
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1272
  #: app/libraries/main.php:2727
1273
  msgid "Paragraph"
1274
  msgstr "Stycke"
1275
 
1276
+ #: app/features/events.php:2992 app/features/events.php:3009
1277
+ #: app/features/events.php:3026 app/features/events.php:3043
1278
  #, php-format
1279
  msgid "Show all %s"
1280
  msgstr "Visa alla %s"
1281
 
1282
+ #: app/features/events.php:2992
1283
  msgid "labels"
1284
  msgstr "etiketter"
1285
 
1286
+ #: app/features/events.php:3009
1287
  msgid "locations"
1288
  msgstr "platser"
1289
 
1290
+ #: app/features/events.php:3026
1291
  msgid "organizers"
1292
  msgstr "arrangörer"
1293
 
1294
+ #: app/features/events.php:3073 app/features/events.php:3265
1295
+ #: app/features/events.php:3307 app/features/ix.php:2743
1296
  #: app/features/ix.php:2784 app/features/locations.php:58
1297
  #: app/features/locations.php:230 app/features/locations.php:287
1298
  #: app/features/locations.php:289 app/features/locations.php:298
1316
  msgid "Location"
1317
  msgstr "Platser"
1318
 
1319
+ #: app/features/events.php:3074 app/features/events.php:3265
1320
+ #: app/features/events.php:3307 app/features/ix.php:2743
1321
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1322
  #: app/features/mec/meta_boxes/search_form.php:45
1323
  #: app/features/mec/meta_boxes/search_form.php:107
1340
  msgid "Organizer"
1341
  msgstr "Arrangör"
1342
 
1343
+ #: app/features/events.php:3078
1344
  msgid "Repeat"
1345
  msgstr "Upprepa"
1346
 
1347
+ #: app/features/events.php:3079
1348
  msgid "Author"
1349
  msgstr "Författare"
1350
 
1351
+ #: app/features/events.php:3200 app/features/events.php:3201
1352
  msgid "iCal Export"
1353
  msgstr "iCal-export"
1354
 
1355
+ #: app/features/events.php:3203 app/features/events.php:3204
1356
  msgid "CSV Export"
1357
  msgstr "CSV-export"
1358
 
1359
+ #: app/features/events.php:3206 app/features/events.php:3207
1360
  msgid "MS Excel Export"
1361
  msgstr "MS Excel-export"
1362
 
1363
+ #: app/features/events.php:3209 app/features/events.php:3210
1364
  msgid "XML Export"
1365
  msgstr "XML-export"
1366
 
1367
+ #: app/features/events.php:3212 app/features/events.php:3213
1368
  msgid "JSON Export"
1369
  msgstr "JSON-export"
1370
 
1371
+ #: app/features/events.php:3215 app/features/events.php:3216
1372
+ #: app/features/events.php:3397
1373
  msgid "Duplicate"
1374
  msgstr "Duplicera"
1375
 
1376
+ #: app/features/events.php:3265 app/features/events.php:3307
1377
  #: app/features/ix.php:2743 app/features/ix.php:2784
1378
  #: app/features/labels.php:177 app/features/locations.php:229
1379
  #: app/features/organizers.php:203 app/features/speakers.php:246
1380
  msgid "ID"
1381
  msgstr "ID"
1382
 
1383
+ #: app/features/events.php:3265 app/features/events.php:3307
1384
  #: app/features/ix.php:2743 app/features/ix.php:2784
1385
  msgid "Link"
1386
  msgstr "Länk"
1387
 
1388
+ #: app/features/events.php:3265 app/features/events.php:3307
1389
  #, php-format
1390
  msgid "%s Tel"
1391
  msgstr "%s Tel"
1392
 
1393
+ #: app/features/events.php:3265 app/features/events.php:3307
1394
  #, php-format
1395
  msgid "%s Email"
1396
  msgstr "%s E-post"
1906
  msgid "Import all of your Facebook events into MEC."
1907
  msgstr "Importera alla dina Facebook-evenemang till MEC."
1908
 
1909
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1910
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1911
  msgid "Documentation"
1912
  msgstr "Dokumentation"
2292
  msgstr "Evenemang %s"
2293
 
2294
  #: app/features/locations.php:59 app/features/mec.php:337
2295
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2296
  #: app/libraries/main.php:4838
2297
  msgid "Locations"
2298
  msgstr "Platser"
2458
  msgid "Support"
2459
  msgstr "Support"
2460
 
2461
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2462
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2463
  #: app/libraries/main.php:4840
2464
  msgid "Organizers"
2465
  msgstr "Arrangörer"
2466
 
2467
  #: app/features/mec.php:346 app/features/mec.php:366
2468
+ #: app/features/mec/dashboard.php:236
2469
  msgid "Shortcodes"
2470
  msgstr "Shortcodes"
2471
 
2813
  msgid "Update"
2814
  msgstr "Uppdatera %s"
2815
 
2816
+ #: app/features/mec/dashboard.php:92
2817
  #, php-format
2818
  msgid ""
2819
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2820
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2821
+ "Spots, etc you should upgrade to the Pro version."
2822
  msgstr ""
2823
 
2824
+ #: app/features/mec/dashboard.php:92
2825
  msgid "lite"
2826
  msgstr ""
2827
 
2828
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2829
+ msgid "GO PREMIUM"
2830
+ msgstr ""
2831
+
2832
+ #: app/features/mec/dashboard.php:98
2833
+ #, php-format
2834
+ msgid ""
2835
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2836
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2837
  msgstr ""
2838
 
2839
+ #: app/features/mec/dashboard.php:98
2840
+ #, fuzzy
2841
+ #| msgid "Address"
2842
+ msgid "WordPress"
2843
+ msgstr "Adress"
2844
+
2845
+ #: app/features/mec/dashboard.php:98
2846
+ msgid "Copouns!"
2847
+ msgstr ""
2848
+
2849
+ #: app/features/mec/dashboard.php:127
2850
  #, fuzzy
2851
  #| msgid "Modern Events Calendar"
2852
  msgid "Getting started with Modern Events Calendar"
2853
  msgstr "Modern Events Calendar"
2854
 
2855
+ #: app/features/mec/dashboard.php:128
2856
  msgid ""
2857
  "In this short video, you can learn how to make an event and put a calendar "
2858
  "on your website. Please watch this 2 minutes video to the end."
2859
  msgstr ""
2860
 
2861
+ #: app/features/mec/dashboard.php:144
2862
  #, fuzzy
2863
  #| msgid "MEC Activation"
2864
  msgid "MEC Activate"
2865
  msgstr "MEC-aktivering"
2866
 
2867
+ #: app/features/mec/dashboard.php:150
2868
  msgid ""
2869
  "In order to use all plugin features and options, please enter your purchase "
2870
  "code."
2871
  msgstr ""
2872
 
2873
+ #: app/features/mec/dashboard.php:208
2874
  #, fuzzy
2875
  #| msgid "MEC Activation"
2876
  msgid "Activate Addons"
2877
  msgstr "MEC-aktivering"
2878
 
2879
+ #: app/features/mec/dashboard.php:217
2880
  msgid "You cannot access this section."
2881
  msgstr ""
2882
 
2883
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2884
  msgid "Upcoming Events"
2885
  msgstr "Kommande evenemang"
2886
 
2887
+ #: app/features/mec/dashboard.php:285
2888
  msgid "Popular Gateways"
2889
  msgstr "Populära Gateways"
2890
 
2891
+ #: app/features/mec/dashboard.php:339
2892
  msgid "Total Bookings"
2893
  msgstr "Totalt antal bokningar"
2894
 
2895
+ #: app/features/mec/dashboard.php:366
2896
  msgid "This Month"
2897
  msgstr "Denna månad"
2898
 
2899
+ #: app/features/mec/dashboard.php:367
2900
  msgid "Last Month"
2901
  msgstr "Föregående månad"
2902
 
2903
+ #: app/features/mec/dashboard.php:368
2904
  msgid "This Year"
2905
  msgstr "Det här året"
2906
 
2907
+ #: app/features/mec/dashboard.php:369
2908
  msgid "Last Year"
2909
  msgstr "Föregående år"
2910
 
2911
+ #: app/features/mec/dashboard.php:381
2912
  msgid "Bar"
2913
  msgstr ""
2914
 
2915
+ #: app/features/mec/dashboard.php:382
2916
  msgid "Line"
2917
  msgstr "Linje"
2918
 
2919
+ #: app/features/mec/dashboard.php:384
2920
  msgid "Filter"
2921
  msgstr "Filter"
2922
 
2923
+ #: app/features/mec/dashboard.php:400
2924
  #, php-format
2925
  msgid "Total Sells (%s)"
2926
  msgstr "Totala försäljningar (%s)"
2927
 
2928
+ #: app/features/mec/dashboard.php:421
2929
  msgid "Change Log"
2930
  msgstr "Ändringslogg"
2931
 
4329
  msgstr "Skickas till admin för att meddela att en ny bokning inkommit."
4330
 
4331
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4332
+ #: app/libraries/notifications.php:478
4333
  msgid "Booking Reminder"
4334
  msgstr ""
4335
 
5569
  "Webnus är en kompetent och pålitlig författare med många nöjda användare. Om "
5570
  "du har några frågor, tveka inte att kontakta oss. Vi svarar så snart vi kan."
5571
 
 
 
 
 
5572
  #: app/features/mec/support.php:128
5573
  msgid "OPEN A TICKET"
5574
  msgstr "SKAPA EN SUPPORTFRÅGA"
5735
  msgstr ""
5736
 
5737
  #: app/features/search_bar/search_result.php:11
5738
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5739
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5740
  #: app/skins/single.php:160 app/skins/single.php:708
5741
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6329
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6330
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6331
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6332
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6333
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6334
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6335
  #: app/skins/single.php:729 app/skins/single/default.php:233
6349
 
6350
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6351
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6352
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6353
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6354
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6355
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6356
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6414
  msgid "Skin controller does not exist."
6415
  msgstr "Tema-kontroll existerar inte."
6416
 
6417
+ #: app/libraries/notifications.php:60
6418
  msgid "Please verify your email."
6419
  msgstr "Bekräfta din e-postadress."
6420
 
6421
+ #: app/libraries/notifications.php:139
6422
  msgid "Your booking is received."
6423
  msgstr ""
6424
 
6425
+ #: app/libraries/notifications.php:224
6426
  msgid "Your booking is confirmed."
6427
  msgstr "Din bokning är bekräftad."
6428
 
6429
+ #: app/libraries/notifications.php:349
6430
  #, fuzzy
6431
  #| msgid "Your booking cannot be canceled."
6432
  msgid "booking canceled."
6433
  msgstr "Din bokning kan inte avbrytas."
6434
 
6435
+ #: app/libraries/notifications.php:410
6436
  msgid "A new booking is received."
6437
  msgstr "En ny bokning är mottagen."
6438
 
6439
+ #: app/libraries/notifications.php:561
6440
  msgid "A new event is added."
6441
  msgstr "Ett nytt evenemang läggs till."
6442
 
6443
+ #: app/libraries/notifications.php:746
6444
  msgid "to"
6445
  msgstr ""
6446
 
6447
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6448
  msgid "+ Add to Google Calendar"
6449
  msgstr "+ Lägg till i Google Kalender"
6450
 
6451
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6452
  msgid "+ iCal export"
6453
  msgstr "+ iCal-export"
6454
 
6455
+ #: app/libraries/notifications.php:821
6456
  msgid "Yes"
6457
  msgstr ""
6458
 
6459
+ #: app/libraries/notifications.php:821
6460
  msgid "No"
6461
  msgstr ""
6462
 
6887
  #~ msgid "Book Date"
6888
  #~ msgstr "Bokningsdatum"
6889
 
6890
+ #, fuzzy
6891
+ #~| msgid "Ticket"
6892
+ #~ msgid " - Ticket"
6893
+ #~ msgstr "Biljett"
6894
+
6895
  #~ msgid "Confirm"
6896
  #~ msgstr "Bekräfta"
6897
 
languages/modern-events-calendar-lite-tr_TR.mo CHANGED
Binary file
languages/modern-events-calendar-lite-tr_TR.po CHANGED
@@ -1,8 +1,8 @@
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
- "POT-Creation-Date: 2019-09-04 15:57+0430\n"
5
- "PO-Revision-Date: 2019-09-04 16:01+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: tr_TR\n"
@@ -74,7 +74,7 @@ msgid "Event Color"
74
  msgstr "Etkinlik Rengi"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:347
77
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
78
  #: app/features/mec/support.php:20 app/libraries/main.php:587
79
  msgid "Settings"
80
  msgstr "Ayarlar"
@@ -251,7 +251,7 @@ msgid "MEC Activation"
251
  msgstr "MEC Etkinleştirme"
252
 
253
  #: app/features/events.php:148 app/features/ix/export.php:34
254
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
256
  msgid "Events"
257
  msgstr "Etkinlikler"
@@ -275,7 +275,7 @@ msgstr ""
275
  msgid "Add Event"
276
  msgstr "Etkinlik Ekle"
277
 
278
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
279
  msgid "Add New Event"
280
  msgstr "Yeni Etkinlik Ekle"
281
 
@@ -300,7 +300,7 @@ msgstr "Etkinlikleri Görüntüle"
300
  msgid "No events found in Trash!"
301
  msgstr "Çöp Kutusunda bir etkinlik bulunamadı!"
302
 
303
- #: app/features/events.php:173 app/features/events.php:3078
304
  #: app/features/mec/meta_boxes/display_options.php:828
305
  #: app/features/mec/meta_boxes/search_form.php:31
306
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -320,7 +320,7 @@ msgstr "Çöp Kutusunda bir etkinlik bulunamadı!"
320
  msgid "Category"
321
  msgstr "Kategori"
322
 
323
- #: app/features/events.php:174 app/features/events.php:3049
324
  #: app/features/fes/form.php:745 app/features/mec.php:335
325
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
326
  msgid "Categories"
@@ -394,8 +394,8 @@ msgstr ""
394
  msgid "Event Details"
395
  msgstr "Etkinlik Detayları"
396
 
397
- #: app/features/events.php:333 app/features/events.php:3271
398
- #: app/features/events.php:3313 app/features/fes/form.php:706
399
  #: app/features/ix.php:2743 app/features/ix.php:2784
400
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
401
  #: app/widgets/single.php:103
@@ -420,19 +420,19 @@ msgstr ""
420
  #: app/features/events.php:443 app/features/events.php:2261
421
  #: app/features/fes/form.php:668 app/features/labels.php:178
422
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
423
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
424
  #: app/modules/booking/steps/form.php:37
425
  msgid "Name"
426
  msgstr "İsim"
427
 
428
  #: app/features/events.php:444 app/features/events.php:2272
429
- #: app/features/events.php:2350 app/features/fes/form.php:664
430
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
431
  #: app/features/organizers.php:111 app/features/organizers.php:152
432
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
433
  #: app/features/speakers.php:184 app/libraries/main.php:1471
434
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
435
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
436
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
437
  #: app/skins/single.php:836 app/skins/single/default.php:212
438
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -445,11 +445,11 @@ msgid "Date and Time"
445
  msgstr "Tarih ve Saat"
446
 
447
  #: app/features/events.php:452 app/features/events.php:458
448
- #: app/features/events.php:3081 app/features/events.php:3271
449
- #: app/features/events.php:3313 app/features/fes/form.php:236
450
  #: app/features/fes/form.php:240 app/features/ix.php:2743
451
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
452
- #: app/features/mec/dashboard.php:346
453
  #: app/features/mec/meta_boxes/display_options.php:44
454
  #: app/features/mec/meta_boxes/display_options.php:185
455
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -481,11 +481,11 @@ msgid "PM"
481
  msgstr "Öğleden Sonra"
482
 
483
  #: app/features/events.php:544 app/features/events.php:549
484
- #: app/features/events.php:3082 app/features/events.php:3271
485
- #: app/features/events.php:3313 app/features/fes/form.php:276
486
  #: app/features/fes/form.php:280 app/features/ix.php:2743
487
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
488
- #: app/features/mec/dashboard.php:347
489
  msgid "End Date"
490
  msgstr "Bitiş Tarihi"
491
 
@@ -602,7 +602,7 @@ msgid "Repeats"
602
  msgstr "Tekrarlar"
603
 
604
  #: app/features/events.php:703 app/features/fes/form.php:338
605
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
606
  msgid "Daily"
607
  msgstr "Günlük"
608
 
@@ -624,12 +624,12 @@ msgid "Weekly"
624
  msgstr "Haftalık"
625
 
626
  #: app/features/events.php:738 app/features/fes/form.php:343
627
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
628
  msgid "Monthly"
629
  msgstr "Aylık"
630
 
631
  #: app/features/events.php:745 app/features/fes/form.php:344
632
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
633
  msgid "Yearly"
634
  msgstr "Yıllık"
635
 
@@ -793,7 +793,7 @@ msgstr ""
793
  msgid "Exclude certain days"
794
  msgstr "Belirli Haftalar"
795
 
796
- #: app/features/events.php:1141 app/features/events.php:2351
797
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
798
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
799
  #: app/modules/booking/steps/tickets.php:22
@@ -837,8 +837,8 @@ msgstr ""
837
  #: app/features/events.php:1239 app/features/events.php:1278
838
  #: app/features/events.php:1313 app/features/events.php:1345
839
  #: app/features/events.php:1374 app/features/events.php:2130
840
- #: app/features/events.php:2177 app/features/events.php:3077
841
- #: app/features/events.php:3271 app/features/events.php:3313
842
  #: app/features/fes/form.php:225 app/features/ix.php:2743
843
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
844
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -1016,13 +1016,13 @@ msgid "Ticket Name"
1016
  msgstr "Bilet Adı"
1017
 
1018
  #: app/features/events.php:1584 app/features/events.php:1805
1019
- #: app/features/events.php:3271 app/features/events.php:3313
1020
  #: app/features/ix.php:2743 app/features/ix.php:2784
1021
  msgid "Start Time"
1022
  msgstr ""
1023
 
1024
  #: app/features/events.php:1626 app/features/events.php:1829
1025
- #: app/features/events.php:3271 app/features/events.php:3313
1026
  #: app/features/ix.php:2743 app/features/ix.php:2784
1027
  msgid "End Time"
1028
  msgstr ""
@@ -1144,53 +1144,53 @@ msgstr "Maksimum etkinlikler"
1144
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1145
  msgstr ""
1146
 
1147
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1148
  #: app/libraries/main.php:2523
1149
  #, fuzzy
1150
  #| msgid "Name"
1151
  msgid "MEC Name"
1152
  msgstr "İsim"
1153
 
1154
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1155
  #: app/libraries/main.php:2552
1156
  #, fuzzy
1157
  #| msgid "Email"
1158
  msgid "MEC Email"
1159
  msgstr "E-Posta"
1160
 
1161
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1162
  #: app/libraries/main.php:2493
1163
  msgid "Text"
1164
  msgstr "Metin"
1165
 
1166
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1167
  #: app/features/organizers.php:103 app/features/organizers.php:148
1168
  #: app/features/speakers.php:116 app/features/speakers.php:180
1169
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1170
  msgid "Tel"
1171
  msgstr "Tel"
1172
 
1173
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1174
  #: app/libraries/main.php:2611
1175
  msgid "File"
1176
  msgstr ""
1177
 
1178
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1179
  #: app/libraries/main.php:2698
1180
  msgid "Textarea"
1181
  msgstr "Metin Alanı"
1182
 
1183
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1184
  #: app/libraries/main.php:2751
1185
  msgid "Checkboxes"
1186
  msgstr "Onay kutuları"
1187
 
1188
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1189
  #: app/libraries/main.php:2795
1190
  msgid "Radio Buttons"
1191
  msgstr "Radyo Düğmeleri"
1192
 
1193
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1194
  #: app/features/mec/meta_boxes/search_form.php:34
1195
  #: app/features/mec/meta_boxes/search_form.php:41
1196
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1263,36 +1263,36 @@ msgstr "Radyo Düğmeleri"
1263
  msgid "Dropdown"
1264
  msgstr "Açılır"
1265
 
1266
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1267
  #: app/libraries/main.php:2886
1268
  msgid "Agreement"
1269
  msgstr ""
1270
 
1271
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1272
  #: app/libraries/main.php:2727
1273
  msgid "Paragraph"
1274
  msgstr "Paragraf"
1275
 
1276
- #: app/features/events.php:2998 app/features/events.php:3015
1277
- #: app/features/events.php:3032 app/features/events.php:3049
1278
  #, php-format
1279
  msgid "Show all %s"
1280
  msgstr ""
1281
 
1282
- #: app/features/events.php:2998
1283
  msgid "labels"
1284
  msgstr "etiketler"
1285
 
1286
- #: app/features/events.php:3015
1287
  msgid "locations"
1288
  msgstr ""
1289
 
1290
- #: app/features/events.php:3032
1291
  msgid "organizers"
1292
  msgstr ""
1293
 
1294
- #: app/features/events.php:3079 app/features/events.php:3271
1295
- #: app/features/events.php:3313 app/features/ix.php:2743
1296
  #: app/features/ix.php:2784 app/features/locations.php:58
1297
  #: app/features/locations.php:230 app/features/locations.php:287
1298
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1316,8 +1316,8 @@ msgstr ""
1316
  msgid "Location"
1317
  msgstr "Yer"
1318
 
1319
- #: app/features/events.php:3080 app/features/events.php:3271
1320
- #: app/features/events.php:3313 app/features/ix.php:2743
1321
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1322
  #: app/features/mec/meta_boxes/search_form.php:45
1323
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1340,57 +1340,57 @@ msgstr "Yer"
1340
  msgid "Organizer"
1341
  msgstr "Organizatör"
1342
 
1343
- #: app/features/events.php:3084
1344
  msgid "Repeat"
1345
  msgstr "Tekrar Et"
1346
 
1347
- #: app/features/events.php:3085
1348
  msgid "Author"
1349
  msgstr "Yazar"
1350
 
1351
- #: app/features/events.php:3206 app/features/events.php:3207
1352
  msgid "iCal Export"
1353
  msgstr "iCal Çıktısı"
1354
 
1355
- #: app/features/events.php:3209 app/features/events.php:3210
1356
  msgid "CSV Export"
1357
  msgstr "CSV Çıktısı"
1358
 
1359
- #: app/features/events.php:3212 app/features/events.php:3213
1360
  msgid "MS Excel Export"
1361
  msgstr "MS Excel Çıktısı"
1362
 
1363
- #: app/features/events.php:3215 app/features/events.php:3216
1364
  msgid "XML Export"
1365
  msgstr ""
1366
 
1367
- #: app/features/events.php:3218 app/features/events.php:3219
1368
  msgid "JSON Export"
1369
  msgstr ""
1370
 
1371
- #: app/features/events.php:3221 app/features/events.php:3222
1372
- #: app/features/events.php:3403
1373
  msgid "Duplicate"
1374
  msgstr "İkili"
1375
 
1376
- #: app/features/events.php:3271 app/features/events.php:3313
1377
  #: app/features/ix.php:2743 app/features/ix.php:2784
1378
  #: app/features/labels.php:177 app/features/locations.php:229
1379
  #: app/features/organizers.php:203 app/features/speakers.php:246
1380
  msgid "ID"
1381
  msgstr "ID"
1382
 
1383
- #: app/features/events.php:3271 app/features/events.php:3313
1384
  #: app/features/ix.php:2743 app/features/ix.php:2784
1385
  msgid "Link"
1386
  msgstr ""
1387
 
1388
- #: app/features/events.php:3271 app/features/events.php:3313
1389
  #, php-format
1390
  msgid "%s Tel"
1391
  msgstr ""
1392
 
1393
- #: app/features/events.php:3271 app/features/events.php:3313
1394
  #, php-format
1395
  msgid "%s Email"
1396
  msgstr ""
@@ -1886,7 +1886,7 @@ msgstr ""
1886
  msgid "Import all of your Facebook events into MEC."
1887
  msgstr ""
1888
 
1889
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1890
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1891
  msgid "Documentation"
1892
  msgstr "Belgeler"
@@ -2250,7 +2250,7 @@ msgid "Event %s"
2250
  msgstr ""
2251
 
2252
  #: app/features/locations.php:59 app/features/mec.php:337
2253
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2254
  #: app/libraries/main.php:4838
2255
  msgid "Locations"
2256
  msgstr "Konumlar"
@@ -2417,14 +2417,14 @@ msgstr "Destek"
2417
  msgid "Support"
2418
  msgstr "Destek"
2419
 
2420
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2421
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2422
  #: app/libraries/main.php:4840
2423
  msgid "Organizers"
2424
  msgstr "Organizatörler"
2425
 
2426
  #: app/features/mec.php:346 app/features/mec.php:366
2427
- #: app/features/mec/dashboard.php:209
2428
  msgid "Shortcodes"
2429
  msgstr "Kısa Kodlar"
2430
 
@@ -2773,102 +2773,119 @@ msgstr ""
2773
  msgid "Update"
2774
  msgstr "Etiketi Güncelle"
2775
 
2776
- #: app/features/mec/dashboard.php:90
2777
  #, php-format
2778
  msgid ""
2779
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2780
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2781
- "Spots, etc you should %s to the Pro version."
2782
  msgstr ""
2783
 
2784
- #: app/features/mec/dashboard.php:90
2785
  msgid "lite"
2786
  msgstr ""
2787
 
2788
- #: app/features/mec/dashboard.php:90
2789
- msgid "upgrade"
 
 
 
 
 
 
 
2790
  msgstr ""
2791
 
2792
- #: app/features/mec/dashboard.php:100
 
 
 
 
 
 
 
 
 
 
2793
  #, fuzzy
2794
  #| msgid "Modern Events Calendar"
2795
  msgid "Getting started with Modern Events Calendar"
2796
  msgstr "Modern Etkinlik Takvimi"
2797
 
2798
- #: app/features/mec/dashboard.php:101
2799
  msgid ""
2800
  "In this short video, you can learn how to make an event and put a calendar "
2801
  "on your website. Please watch this 2 minutes video to the end."
2802
  msgstr ""
2803
 
2804
- #: app/features/mec/dashboard.php:117
2805
  #, fuzzy
2806
  #| msgid "MEC Activation"
2807
  msgid "MEC Activate"
2808
  msgstr "MEC Etkinleştirme"
2809
 
2810
- #: app/features/mec/dashboard.php:123
2811
  msgid ""
2812
  "In order to use all plugin features and options, please enter your purchase "
2813
  "code."
2814
  msgstr ""
2815
 
2816
- #: app/features/mec/dashboard.php:181
2817
  #, fuzzy
2818
  #| msgid "MEC Activation"
2819
  msgid "Activate Addons"
2820
  msgstr "MEC Etkinleştirme"
2821
 
2822
- #: app/features/mec/dashboard.php:190
2823
  msgid "You cannot access this section."
2824
  msgstr ""
2825
 
2826
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2827
  msgid "Upcoming Events"
2828
  msgstr ""
2829
 
2830
- #: app/features/mec/dashboard.php:258
2831
  msgid "Popular Gateways"
2832
  msgstr ""
2833
 
2834
- #: app/features/mec/dashboard.php:312
2835
  msgid "Total Bookings"
2836
  msgstr ""
2837
 
2838
- #: app/features/mec/dashboard.php:339
2839
  msgid "This Month"
2840
  msgstr ""
2841
 
2842
- #: app/features/mec/dashboard.php:340
2843
  msgid "Last Month"
2844
  msgstr ""
2845
 
2846
- #: app/features/mec/dashboard.php:341
2847
  msgid "This Year"
2848
  msgstr ""
2849
 
2850
- #: app/features/mec/dashboard.php:342
2851
  msgid "Last Year"
2852
  msgstr ""
2853
 
2854
- #: app/features/mec/dashboard.php:354
2855
  msgid "Bar"
2856
  msgstr ""
2857
 
2858
- #: app/features/mec/dashboard.php:355
2859
  msgid "Line"
2860
  msgstr ""
2861
 
2862
- #: app/features/mec/dashboard.php:357
2863
  msgid "Filter"
2864
  msgstr ""
2865
 
2866
- #: app/features/mec/dashboard.php:373
2867
  #, php-format
2868
  msgid "Total Sells (%s)"
2869
  msgstr ""
2870
 
2871
- #: app/features/mec/dashboard.php:394
2872
  msgid "Change Log"
2873
  msgstr "Günlüğü Değiştir"
2874
 
@@ -4274,7 +4291,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4274
  msgstr "Yeni bir rezervasyon alındığında yöneticiye bildirim gönder."
4275
 
4276
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4277
- #: app/libraries/notifications.php:405
4278
  msgid "Booking Reminder"
4279
  msgstr ""
4280
 
@@ -5463,10 +5480,6 @@ msgstr ""
5463
  "yazardır. Herhangi bir sorunuz varsa lütfen bizimle iletişime geçmekten "
5464
  "çekinmeyin, en kısa zamanda cevap vereceğiz."
5465
 
5466
- #: app/features/mec/support.php:126
5467
- msgid "GO PREMIUM"
5468
- msgstr ""
5469
-
5470
  #: app/features/mec/support.php:128
5471
  msgid "OPEN A TICKET"
5472
  msgstr "Destek Aç"
@@ -5637,7 +5650,7 @@ msgid "No search result."
5637
  msgstr ""
5638
 
5639
  #: app/features/search_bar/search_result.php:11
5640
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5641
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5642
  #: app/skins/single.php:160 app/skins/single.php:708
5643
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -6231,7 +6244,7 @@ msgstr ""
6231
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6232
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6233
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6234
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
6235
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6236
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6237
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -6251,8 +6264,8 @@ msgstr ""
6251
 
6252
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6253
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6254
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
6255
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
6256
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6257
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6258
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -6317,49 +6330,49 @@ msgstr "Bekliyor"
6317
  msgid "Skin controller does not exist."
6318
  msgstr "Tema kontrolü mevcut değil."
6319
 
6320
- #: app/libraries/notifications.php:61
6321
  msgid "Please verify your email."
6322
  msgstr "Lütfen e-postanızı doğrulayın."
6323
 
6324
- #: app/libraries/notifications.php:125
6325
  msgid "Your booking is received."
6326
  msgstr ""
6327
 
6328
- #: app/libraries/notifications.php:193
6329
  msgid "Your booking is confirmed."
6330
  msgstr "Rezervasyonunuz teyit edildi."
6331
 
6332
- #: app/libraries/notifications.php:282
6333
  #, fuzzy
6334
  #| msgid "Your booking cannot be canceled."
6335
  msgid "booking canceled."
6336
  msgstr "Rezervasyonunuz iptal edilemez."
6337
 
6338
- #: app/libraries/notifications.php:337
6339
  msgid "A new booking is received."
6340
  msgstr "Yeni bir rezervasyon alındı."
6341
 
6342
- #: app/libraries/notifications.php:488
6343
  msgid "A new event is added."
6344
  msgstr "Yeni bir etkinlik eklendi."
6345
 
6346
- #: app/libraries/notifications.php:674
6347
  msgid "to"
6348
  msgstr ""
6349
 
6350
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
6351
  msgid "+ Add to Google Calendar"
6352
  msgstr "Google Takvim'e ekle"
6353
 
6354
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
6355
  msgid "+ iCal export"
6356
  msgstr "iCal Çıktısı"
6357
 
6358
- #: app/libraries/notifications.php:752
6359
  msgid "Yes"
6360
  msgstr ""
6361
 
6362
- #: app/libraries/notifications.php:752
6363
  msgid "No"
6364
  msgstr ""
6365
 
@@ -6762,6 +6775,11 @@ msgstr ""
6762
  #~ msgid "Book Date"
6763
  #~ msgstr "Rezervasyon Tarihi"
6764
 
 
 
 
 
 
6765
  #~ msgid "Confirm"
6766
  #~ msgstr "Onayla"
6767
 
1
  msgid ""
2
  msgstr ""
3
  "Project-Id-Version: Modern Events Calendar\n"
4
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
5
+ "PO-Revision-Date: 2019-09-11 13:24+0430\n"
6
  "Last-Translator: Howard <howard@realtyna.com>\n"
7
  "Language-Team: \n"
8
  "Language: tr_TR\n"
74
  msgstr "Etkinlik Rengi"
75
 
76
  #: app/features/contextual.php:55 app/features/mec.php:347
77
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
78
  #: app/features/mec/support.php:20 app/libraries/main.php:587
79
  msgid "Settings"
80
  msgstr "Ayarlar"
251
  msgstr "MEC Etkinleştirme"
252
 
253
  #: app/features/events.php:148 app/features/ix/export.php:34
254
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
255
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
256
  msgid "Events"
257
  msgstr "Etkinlikler"
275
  msgid "Add Event"
276
  msgstr "Etkinlik Ekle"
277
 
278
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
279
  msgid "Add New Event"
280
  msgstr "Yeni Etkinlik Ekle"
281
 
300
  msgid "No events found in Trash!"
301
  msgstr "Çöp Kutusunda bir etkinlik bulunamadı!"
302
 
303
+ #: app/features/events.php:173 app/features/events.php:3072
304
  #: app/features/mec/meta_boxes/display_options.php:828
305
  #: app/features/mec/meta_boxes/search_form.php:31
306
  #: app/features/mec/meta_boxes/search_form.php:93
320
  msgid "Category"
321
  msgstr "Kategori"
322
 
323
+ #: app/features/events.php:174 app/features/events.php:3043
324
  #: app/features/fes/form.php:745 app/features/mec.php:335
325
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
326
  msgid "Categories"
394
  msgid "Event Details"
395
  msgstr "Etkinlik Detayları"
396
 
397
+ #: app/features/events.php:333 app/features/events.php:3265
398
+ #: app/features/events.php:3307 app/features/fes/form.php:706
399
  #: app/features/ix.php:2743 app/features/ix.php:2784
400
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
401
  #: app/widgets/single.php:103
420
  #: app/features/events.php:443 app/features/events.php:2261
421
  #: app/features/fes/form.php:668 app/features/labels.php:178
422
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
423
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
424
  #: app/modules/booking/steps/form.php:37
425
  msgid "Name"
426
  msgstr "İsim"
427
 
428
  #: app/features/events.php:444 app/features/events.php:2272
429
+ #: app/features/events.php:2348 app/features/fes/form.php:664
430
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
431
  #: app/features/organizers.php:111 app/features/organizers.php:152
432
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
433
  #: app/features/speakers.php:184 app/libraries/main.php:1471
434
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
435
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
436
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
437
  #: app/skins/single.php:836 app/skins/single/default.php:212
438
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
445
  msgstr "Tarih ve Saat"
446
 
447
  #: app/features/events.php:452 app/features/events.php:458
448
+ #: app/features/events.php:3075 app/features/events.php:3265
449
+ #: app/features/events.php:3307 app/features/fes/form.php:236
450
  #: app/features/fes/form.php:240 app/features/ix.php:2743
451
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
452
+ #: app/features/mec/dashboard.php:373
453
  #: app/features/mec/meta_boxes/display_options.php:44
454
  #: app/features/mec/meta_boxes/display_options.php:185
455
  #: app/features/mec/meta_boxes/display_options.php:337
481
  msgstr "Öğleden Sonra"
482
 
483
  #: app/features/events.php:544 app/features/events.php:549
484
+ #: app/features/events.php:3076 app/features/events.php:3265
485
+ #: app/features/events.php:3307 app/features/fes/form.php:276
486
  #: app/features/fes/form.php:280 app/features/ix.php:2743
487
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
488
+ #: app/features/mec/dashboard.php:374
489
  msgid "End Date"
490
  msgstr "Bitiş Tarihi"
491
 
602
  msgstr "Tekrarlar"
603
 
604
  #: app/features/events.php:703 app/features/fes/form.php:338
605
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
606
  msgid "Daily"
607
  msgstr "Günlük"
608
 
624
  msgstr "Haftalık"
625
 
626
  #: app/features/events.php:738 app/features/fes/form.php:343
627
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
628
  msgid "Monthly"
629
  msgstr "Aylık"
630
 
631
  #: app/features/events.php:745 app/features/fes/form.php:344
632
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
633
  msgid "Yearly"
634
  msgstr "Yıllık"
635
 
793
  msgid "Exclude certain days"
794
  msgstr "Belirli Haftalar"
795
 
796
+ #: app/features/events.php:1141 app/features/events.php:2349
797
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
798
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
799
  #: app/modules/booking/steps/tickets.php:22
837
  #: app/features/events.php:1239 app/features/events.php:1278
838
  #: app/features/events.php:1313 app/features/events.php:1345
839
  #: app/features/events.php:1374 app/features/events.php:2130
840
+ #: app/features/events.php:2177 app/features/events.php:3071
841
+ #: app/features/events.php:3265 app/features/events.php:3307
842
  #: app/features/fes/form.php:225 app/features/ix.php:2743
843
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
844
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
1016
  msgstr "Bilet Adı"
1017
 
1018
  #: app/features/events.php:1584 app/features/events.php:1805
1019
+ #: app/features/events.php:3265 app/features/events.php:3307
1020
  #: app/features/ix.php:2743 app/features/ix.php:2784
1021
  msgid "Start Time"
1022
  msgstr ""
1023
 
1024
  #: app/features/events.php:1626 app/features/events.php:1829
1025
+ #: app/features/events.php:3265 app/features/events.php:3307
1026
  #: app/features/ix.php:2743 app/features/ix.php:2784
1027
  msgid "End Time"
1028
  msgstr ""
1144
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1145
  msgstr ""
1146
 
1147
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1148
  #: app/libraries/main.php:2523
1149
  #, fuzzy
1150
  #| msgid "Name"
1151
  msgid "MEC Name"
1152
  msgstr "İsim"
1153
 
1154
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1155
  #: app/libraries/main.php:2552
1156
  #, fuzzy
1157
  #| msgid "Email"
1158
  msgid "MEC Email"
1159
  msgstr "E-Posta"
1160
 
1161
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1162
  #: app/libraries/main.php:2493
1163
  msgid "Text"
1164
  msgstr "Metin"
1165
 
1166
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1167
  #: app/features/organizers.php:103 app/features/organizers.php:148
1168
  #: app/features/speakers.php:116 app/features/speakers.php:180
1169
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1170
  msgid "Tel"
1171
  msgstr "Tel"
1172
 
1173
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1174
  #: app/libraries/main.php:2611
1175
  msgid "File"
1176
  msgstr ""
1177
 
1178
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1179
  #: app/libraries/main.php:2698
1180
  msgid "Textarea"
1181
  msgstr "Metin Alanı"
1182
 
1183
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1184
  #: app/libraries/main.php:2751
1185
  msgid "Checkboxes"
1186
  msgstr "Onay kutuları"
1187
 
1188
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1189
  #: app/libraries/main.php:2795
1190
  msgid "Radio Buttons"
1191
  msgstr "Radyo Düğmeleri"
1192
 
1193
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1194
  #: app/features/mec/meta_boxes/search_form.php:34
1195
  #: app/features/mec/meta_boxes/search_form.php:41
1196
  #: app/features/mec/meta_boxes/search_form.php:48
1263
  msgid "Dropdown"
1264
  msgstr "Açılır"
1265
 
1266
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1267
  #: app/libraries/main.php:2886
1268
  msgid "Agreement"
1269
  msgstr ""
1270
 
1271
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1272
  #: app/libraries/main.php:2727
1273
  msgid "Paragraph"
1274
  msgstr "Paragraf"
1275
 
1276
+ #: app/features/events.php:2992 app/features/events.php:3009
1277
+ #: app/features/events.php:3026 app/features/events.php:3043
1278
  #, php-format
1279
  msgid "Show all %s"
1280
  msgstr ""
1281
 
1282
+ #: app/features/events.php:2992
1283
  msgid "labels"
1284
  msgstr "etiketler"
1285
 
1286
+ #: app/features/events.php:3009
1287
  msgid "locations"
1288
  msgstr ""
1289
 
1290
+ #: app/features/events.php:3026
1291
  msgid "organizers"
1292
  msgstr ""
1293
 
1294
+ #: app/features/events.php:3073 app/features/events.php:3265
1295
+ #: app/features/events.php:3307 app/features/ix.php:2743
1296
  #: app/features/ix.php:2784 app/features/locations.php:58
1297
  #: app/features/locations.php:230 app/features/locations.php:287
1298
  #: app/features/locations.php:289 app/features/locations.php:298
1316
  msgid "Location"
1317
  msgstr "Yer"
1318
 
1319
+ #: app/features/events.php:3074 app/features/events.php:3265
1320
+ #: app/features/events.php:3307 app/features/ix.php:2743
1321
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1322
  #: app/features/mec/meta_boxes/search_form.php:45
1323
  #: app/features/mec/meta_boxes/search_form.php:107
1340
  msgid "Organizer"
1341
  msgstr "Organizatör"
1342
 
1343
+ #: app/features/events.php:3078
1344
  msgid "Repeat"
1345
  msgstr "Tekrar Et"
1346
 
1347
+ #: app/features/events.php:3079
1348
  msgid "Author"
1349
  msgstr "Yazar"
1350
 
1351
+ #: app/features/events.php:3200 app/features/events.php:3201
1352
  msgid "iCal Export"
1353
  msgstr "iCal Çıktısı"
1354
 
1355
+ #: app/features/events.php:3203 app/features/events.php:3204
1356
  msgid "CSV Export"
1357
  msgstr "CSV Çıktısı"
1358
 
1359
+ #: app/features/events.php:3206 app/features/events.php:3207
1360
  msgid "MS Excel Export"
1361
  msgstr "MS Excel Çıktısı"
1362
 
1363
+ #: app/features/events.php:3209 app/features/events.php:3210
1364
  msgid "XML Export"
1365
  msgstr ""
1366
 
1367
+ #: app/features/events.php:3212 app/features/events.php:3213
1368
  msgid "JSON Export"
1369
  msgstr ""
1370
 
1371
+ #: app/features/events.php:3215 app/features/events.php:3216
1372
+ #: app/features/events.php:3397
1373
  msgid "Duplicate"
1374
  msgstr "İkili"
1375
 
1376
+ #: app/features/events.php:3265 app/features/events.php:3307
1377
  #: app/features/ix.php:2743 app/features/ix.php:2784
1378
  #: app/features/labels.php:177 app/features/locations.php:229
1379
  #: app/features/organizers.php:203 app/features/speakers.php:246
1380
  msgid "ID"
1381
  msgstr "ID"
1382
 
1383
+ #: app/features/events.php:3265 app/features/events.php:3307
1384
  #: app/features/ix.php:2743 app/features/ix.php:2784
1385
  msgid "Link"
1386
  msgstr ""
1387
 
1388
+ #: app/features/events.php:3265 app/features/events.php:3307
1389
  #, php-format
1390
  msgid "%s Tel"
1391
  msgstr ""
1392
 
1393
+ #: app/features/events.php:3265 app/features/events.php:3307
1394
  #, php-format
1395
  msgid "%s Email"
1396
  msgstr ""
1886
  msgid "Import all of your Facebook events into MEC."
1887
  msgstr ""
1888
 
1889
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1890
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1891
  msgid "Documentation"
1892
  msgstr "Belgeler"
2250
  msgstr ""
2251
 
2252
  #: app/features/locations.php:59 app/features/mec.php:337
2253
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2254
  #: app/libraries/main.php:4838
2255
  msgid "Locations"
2256
  msgstr "Konumlar"
2417
  msgid "Support"
2418
  msgstr "Destek"
2419
 
2420
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2421
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2422
  #: app/libraries/main.php:4840
2423
  msgid "Organizers"
2424
  msgstr "Organizatörler"
2425
 
2426
  #: app/features/mec.php:346 app/features/mec.php:366
2427
+ #: app/features/mec/dashboard.php:236
2428
  msgid "Shortcodes"
2429
  msgstr "Kısa Kodlar"
2430
 
2773
  msgid "Update"
2774
  msgstr "Etiketi Güncelle"
2775
 
2776
+ #: app/features/mec/dashboard.php:92
2777
  #, php-format
2778
  msgid ""
2779
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2780
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2781
+ "Spots, etc you should upgrade to the Pro version."
2782
  msgstr ""
2783
 
2784
+ #: app/features/mec/dashboard.php:92
2785
  msgid "lite"
2786
  msgstr ""
2787
 
2788
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2789
+ msgid "GO PREMIUM"
2790
+ msgstr ""
2791
+
2792
+ #: app/features/mec/dashboard.php:98
2793
+ #, php-format
2794
+ msgid ""
2795
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2796
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2797
  msgstr ""
2798
 
2799
+ #: app/features/mec/dashboard.php:98
2800
+ #, fuzzy
2801
+ #| msgid "Address"
2802
+ msgid "WordPress"
2803
+ msgstr "Adres"
2804
+
2805
+ #: app/features/mec/dashboard.php:98
2806
+ msgid "Copouns!"
2807
+ msgstr ""
2808
+
2809
+ #: app/features/mec/dashboard.php:127
2810
  #, fuzzy
2811
  #| msgid "Modern Events Calendar"
2812
  msgid "Getting started with Modern Events Calendar"
2813
  msgstr "Modern Etkinlik Takvimi"
2814
 
2815
+ #: app/features/mec/dashboard.php:128
2816
  msgid ""
2817
  "In this short video, you can learn how to make an event and put a calendar "
2818
  "on your website. Please watch this 2 minutes video to the end."
2819
  msgstr ""
2820
 
2821
+ #: app/features/mec/dashboard.php:144
2822
  #, fuzzy
2823
  #| msgid "MEC Activation"
2824
  msgid "MEC Activate"
2825
  msgstr "MEC Etkinleştirme"
2826
 
2827
+ #: app/features/mec/dashboard.php:150
2828
  msgid ""
2829
  "In order to use all plugin features and options, please enter your purchase "
2830
  "code."
2831
  msgstr ""
2832
 
2833
+ #: app/features/mec/dashboard.php:208
2834
  #, fuzzy
2835
  #| msgid "MEC Activation"
2836
  msgid "Activate Addons"
2837
  msgstr "MEC Etkinleştirme"
2838
 
2839
+ #: app/features/mec/dashboard.php:217
2840
  msgid "You cannot access this section."
2841
  msgstr ""
2842
 
2843
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2844
  msgid "Upcoming Events"
2845
  msgstr ""
2846
 
2847
+ #: app/features/mec/dashboard.php:285
2848
  msgid "Popular Gateways"
2849
  msgstr ""
2850
 
2851
+ #: app/features/mec/dashboard.php:339
2852
  msgid "Total Bookings"
2853
  msgstr ""
2854
 
2855
+ #: app/features/mec/dashboard.php:366
2856
  msgid "This Month"
2857
  msgstr ""
2858
 
2859
+ #: app/features/mec/dashboard.php:367
2860
  msgid "Last Month"
2861
  msgstr ""
2862
 
2863
+ #: app/features/mec/dashboard.php:368
2864
  msgid "This Year"
2865
  msgstr ""
2866
 
2867
+ #: app/features/mec/dashboard.php:369
2868
  msgid "Last Year"
2869
  msgstr ""
2870
 
2871
+ #: app/features/mec/dashboard.php:381
2872
  msgid "Bar"
2873
  msgstr ""
2874
 
2875
+ #: app/features/mec/dashboard.php:382
2876
  msgid "Line"
2877
  msgstr ""
2878
 
2879
+ #: app/features/mec/dashboard.php:384
2880
  msgid "Filter"
2881
  msgstr ""
2882
 
2883
+ #: app/features/mec/dashboard.php:400
2884
  #, php-format
2885
  msgid "Total Sells (%s)"
2886
  msgstr ""
2887
 
2888
+ #: app/features/mec/dashboard.php:421
2889
  msgid "Change Log"
2890
  msgstr "Günlüğü Değiştir"
2891
 
4291
  msgstr "Yeni bir rezervasyon alındığında yöneticiye bildirim gönder."
4292
 
4293
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4294
+ #: app/libraries/notifications.php:478
4295
  msgid "Booking Reminder"
4296
  msgstr ""
4297
 
5480
  "yazardır. Herhangi bir sorunuz varsa lütfen bizimle iletişime geçmekten "
5481
  "çekinmeyin, en kısa zamanda cevap vereceğiz."
5482
 
 
 
 
 
5483
  #: app/features/mec/support.php:128
5484
  msgid "OPEN A TICKET"
5485
  msgstr "Destek Aç"
5650
  msgstr ""
5651
 
5652
  #: app/features/search_bar/search_result.php:11
5653
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5654
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5655
  #: app/skins/single.php:160 app/skins/single.php:708
5656
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
6244
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
6245
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
6246
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
6247
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
6248
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
6249
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
6250
  #: app/skins/single.php:729 app/skins/single/default.php:233
6264
 
6265
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
6266
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
6267
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
6268
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
6269
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
6270
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
6271
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
6330
  msgid "Skin controller does not exist."
6331
  msgstr "Tema kontrolü mevcut değil."
6332
 
6333
+ #: app/libraries/notifications.php:60
6334
  msgid "Please verify your email."
6335
  msgstr "Lütfen e-postanızı doğrulayın."
6336
 
6337
+ #: app/libraries/notifications.php:139
6338
  msgid "Your booking is received."
6339
  msgstr ""
6340
 
6341
+ #: app/libraries/notifications.php:224
6342
  msgid "Your booking is confirmed."
6343
  msgstr "Rezervasyonunuz teyit edildi."
6344
 
6345
+ #: app/libraries/notifications.php:349
6346
  #, fuzzy
6347
  #| msgid "Your booking cannot be canceled."
6348
  msgid "booking canceled."
6349
  msgstr "Rezervasyonunuz iptal edilemez."
6350
 
6351
+ #: app/libraries/notifications.php:410
6352
  msgid "A new booking is received."
6353
  msgstr "Yeni bir rezervasyon alındı."
6354
 
6355
+ #: app/libraries/notifications.php:561
6356
  msgid "A new event is added."
6357
  msgstr "Yeni bir etkinlik eklendi."
6358
 
6359
+ #: app/libraries/notifications.php:746
6360
  msgid "to"
6361
  msgstr ""
6362
 
6363
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6364
  msgid "+ Add to Google Calendar"
6365
  msgstr "Google Takvim'e ekle"
6366
 
6367
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6368
  msgid "+ iCal export"
6369
  msgstr "iCal Çıktısı"
6370
 
6371
+ #: app/libraries/notifications.php:821
6372
  msgid "Yes"
6373
  msgstr ""
6374
 
6375
+ #: app/libraries/notifications.php:821
6376
  msgid "No"
6377
  msgstr ""
6378
 
6775
  #~ msgid "Book Date"
6776
  #~ msgstr "Rezervasyon Tarihi"
6777
 
6778
+ #, fuzzy
6779
+ #~| msgid "Ticket"
6780
+ #~ msgid " - Ticket"
6781
+ #~ msgstr "Bilet"
6782
+
6783
  #~ msgid "Confirm"
6784
  #~ msgstr "Onayla"
6785
 
languages/modern-events-calendar-lite.pot CHANGED
@@ -3,8 +3,8 @@ msgid ""
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Modern Events Calendar Lite\n"
6
- "POT-Creation-Date: 2019-09-04 15:57+0430\n"
7
- "PO-Revision-Date: 2019-09-04 15:57+0430\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
@@ -67,7 +67,7 @@ msgid "Event Color"
67
  msgstr ""
68
 
69
  #: app/features/contextual.php:55 app/features/mec.php:347
70
- #: app/features/mec/dashboard.php:108 app/features/mec/support-page.php:168
71
  #: app/features/mec/support.php:20 app/libraries/main.php:587
72
  msgid "Settings"
73
  msgstr ""
@@ -243,7 +243,7 @@ msgid "MEC Activation"
243
  msgstr ""
244
 
245
  #: app/features/events.php:148 app/features/ix/export.php:34
246
- #: app/features/mec/dashboard.php:202 app/skins/daily_view/tpl.php:79
247
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
248
  msgid "Events"
249
  msgstr ""
@@ -261,7 +261,7 @@ msgstr ""
261
  msgid "Add Event"
262
  msgstr ""
263
 
264
- #: app/features/events.php:151 app/features/mec/dashboard.php:107
265
  msgid "Add New Event"
266
  msgstr ""
267
 
@@ -286,7 +286,7 @@ msgstr ""
286
  msgid "No events found in Trash!"
287
  msgstr ""
288
 
289
- #: app/features/events.php:173 app/features/events.php:3078
290
  #: app/features/mec/meta_boxes/display_options.php:828
291
  #: app/features/mec/meta_boxes/search_form.php:31
292
  #: app/features/mec/meta_boxes/search_form.php:93
@@ -306,7 +306,7 @@ msgstr ""
306
  msgid "Category"
307
  msgstr ""
308
 
309
- #: app/features/events.php:174 app/features/events.php:3049
310
  #: app/features/fes/form.php:745 app/features/mec.php:335
311
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
312
  msgid "Categories"
@@ -380,8 +380,8 @@ msgstr ""
380
  msgid "Event Details"
381
  msgstr ""
382
 
383
- #: app/features/events.php:333 app/features/events.php:3271
384
- #: app/features/events.php:3313 app/features/fes/form.php:706
385
  #: app/features/ix.php:2743 app/features/ix.php:2784
386
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
387
  #: app/widgets/single.php:103
@@ -406,19 +406,19 @@ msgstr ""
406
  #: app/features/events.php:443 app/features/events.php:2261
407
  #: app/features/fes/form.php:668 app/features/labels.php:178
408
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
409
- #: app/features/profile/profile.php:90 app/libraries/notifications.php:736
410
  #: app/modules/booking/steps/form.php:37
411
  msgid "Name"
412
  msgstr ""
413
 
414
  #: app/features/events.php:444 app/features/events.php:2272
415
- #: app/features/events.php:2350 app/features/fes/form.php:664
416
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
417
  #: app/features/organizers.php:111 app/features/organizers.php:152
418
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
419
  #: app/features/speakers.php:184 app/libraries/main.php:1471
420
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
421
- #: app/libraries/notifications.php:737 app/modules/booking/steps/form.php:46
422
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
423
  #: app/skins/single.php:836 app/skins/single/default.php:212
424
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
@@ -431,11 +431,11 @@ msgid "Date and Time"
431
  msgstr ""
432
 
433
  #: app/features/events.php:452 app/features/events.php:458
434
- #: app/features/events.php:3081 app/features/events.php:3271
435
- #: app/features/events.php:3313 app/features/fes/form.php:236
436
  #: app/features/fes/form.php:240 app/features/ix.php:2743
437
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
438
- #: app/features/mec/dashboard.php:346
439
  #: app/features/mec/meta_boxes/display_options.php:44
440
  #: app/features/mec/meta_boxes/display_options.php:185
441
  #: app/features/mec/meta_boxes/display_options.php:337
@@ -467,11 +467,11 @@ msgid "PM"
467
  msgstr ""
468
 
469
  #: app/features/events.php:544 app/features/events.php:549
470
- #: app/features/events.php:3082 app/features/events.php:3271
471
- #: app/features/events.php:3313 app/features/fes/form.php:276
472
  #: app/features/fes/form.php:280 app/features/ix.php:2743
473
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
474
- #: app/features/mec/dashboard.php:347
475
  msgid "End Date"
476
  msgstr ""
477
 
@@ -582,7 +582,7 @@ msgid "Repeats"
582
  msgstr ""
583
 
584
  #: app/features/events.php:703 app/features/fes/form.php:338
585
- #: app/features/mec/dashboard.php:349 app/skins/full_calendar/tpl.php:109
586
  msgid "Daily"
587
  msgstr ""
588
 
@@ -604,12 +604,12 @@ msgid "Weekly"
604
  msgstr ""
605
 
606
  #: app/features/events.php:738 app/features/fes/form.php:343
607
- #: app/features/mec/dashboard.php:350 app/skins/full_calendar/tpl.php:107
608
  msgid "Monthly"
609
  msgstr ""
610
 
611
  #: app/features/events.php:745 app/features/fes/form.php:344
612
- #: app/features/mec/dashboard.php:351 app/skins/full_calendar/tpl.php:106
613
  msgid "Yearly"
614
  msgstr ""
615
 
@@ -760,7 +760,7 @@ msgstr ""
760
  msgid "Exclude certain days"
761
  msgstr ""
762
 
763
- #: app/features/events.php:1141 app/features/events.php:2351
764
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
765
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
766
  #: app/modules/booking/steps/tickets.php:22
@@ -804,8 +804,8 @@ msgstr ""
804
  #: app/features/events.php:1239 app/features/events.php:1278
805
  #: app/features/events.php:1313 app/features/events.php:1345
806
  #: app/features/events.php:1374 app/features/events.php:2130
807
- #: app/features/events.php:2177 app/features/events.php:3077
808
- #: app/features/events.php:3271 app/features/events.php:3313
809
  #: app/features/fes/form.php:225 app/features/ix.php:2743
810
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
811
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
@@ -973,13 +973,13 @@ msgid "Ticket Name"
973
  msgstr ""
974
 
975
  #: app/features/events.php:1584 app/features/events.php:1805
976
- #: app/features/events.php:3271 app/features/events.php:3313
977
  #: app/features/ix.php:2743 app/features/ix.php:2784
978
  msgid "Start Time"
979
  msgstr ""
980
 
981
  #: app/features/events.php:1626 app/features/events.php:1829
982
- #: app/features/events.php:3271 app/features/events.php:3313
983
  #: app/features/ix.php:2743 app/features/ix.php:2784
984
  msgid "End Time"
985
  msgstr ""
@@ -1093,49 +1093,49 @@ msgstr ""
1093
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1094
  msgstr ""
1095
 
1096
- #: app/features/events.php:2346 app/features/mec/booking.php:446
1097
  #: app/libraries/main.php:2523
1098
  msgid "MEC Name"
1099
  msgstr ""
1100
 
1101
- #: app/features/events.php:2348 app/features/mec/booking.php:447
1102
  #: app/libraries/main.php:2552
1103
  msgid "MEC Email"
1104
  msgstr ""
1105
 
1106
- #: app/features/events.php:2349 app/features/mec/booking.php:448
1107
  #: app/libraries/main.php:2493
1108
  msgid "Text"
1109
  msgstr ""
1110
 
1111
- #: app/features/events.php:2352 app/features/mec/booking.php:451
1112
  #: app/features/organizers.php:103 app/features/organizers.php:148
1113
  #: app/features/speakers.php:116 app/features/speakers.php:180
1114
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1115
  msgid "Tel"
1116
  msgstr ""
1117
 
1118
- #: app/features/events.php:2353 app/features/mec/booking.php:452
1119
  #: app/libraries/main.php:2611
1120
  msgid "File"
1121
  msgstr ""
1122
 
1123
- #: app/features/events.php:2355 app/features/mec/booking.php:453
1124
  #: app/libraries/main.php:2698
1125
  msgid "Textarea"
1126
  msgstr ""
1127
 
1128
- #: app/features/events.php:2357 app/features/mec/booking.php:454
1129
  #: app/libraries/main.php:2751
1130
  msgid "Checkboxes"
1131
  msgstr ""
1132
 
1133
- #: app/features/events.php:2359 app/features/mec/booking.php:455
1134
  #: app/libraries/main.php:2795
1135
  msgid "Radio Buttons"
1136
  msgstr ""
1137
 
1138
- #: app/features/events.php:2360 app/features/mec/booking.php:456
1139
  #: app/features/mec/meta_boxes/search_form.php:34
1140
  #: app/features/mec/meta_boxes/search_form.php:41
1141
  #: app/features/mec/meta_boxes/search_form.php:48
@@ -1208,36 +1208,36 @@ msgstr ""
1208
  msgid "Dropdown"
1209
  msgstr ""
1210
 
1211
- #: app/features/events.php:2362 app/features/mec/booking.php:457
1212
  #: app/libraries/main.php:2886
1213
  msgid "Agreement"
1214
  msgstr ""
1215
 
1216
- #: app/features/events.php:2363 app/features/mec/booking.php:458
1217
  #: app/libraries/main.php:2727
1218
  msgid "Paragraph"
1219
  msgstr ""
1220
 
1221
- #: app/features/events.php:2998 app/features/events.php:3015
1222
- #: app/features/events.php:3032 app/features/events.php:3049
1223
  #, php-format
1224
  msgid "Show all %s"
1225
  msgstr ""
1226
 
1227
- #: app/features/events.php:2998
1228
  msgid "labels"
1229
  msgstr ""
1230
 
1231
- #: app/features/events.php:3015
1232
  msgid "locations"
1233
  msgstr ""
1234
 
1235
- #: app/features/events.php:3032
1236
  msgid "organizers"
1237
  msgstr ""
1238
 
1239
- #: app/features/events.php:3079 app/features/events.php:3271
1240
- #: app/features/events.php:3313 app/features/ix.php:2743
1241
  #: app/features/ix.php:2784 app/features/locations.php:58
1242
  #: app/features/locations.php:230 app/features/locations.php:287
1243
  #: app/features/locations.php:289 app/features/locations.php:298
@@ -1261,8 +1261,8 @@ msgstr ""
1261
  msgid "Location"
1262
  msgstr ""
1263
 
1264
- #: app/features/events.php:3080 app/features/events.php:3271
1265
- #: app/features/events.php:3313 app/features/ix.php:2743
1266
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1267
  #: app/features/mec/meta_boxes/search_form.php:45
1268
  #: app/features/mec/meta_boxes/search_form.php:107
@@ -1285,57 +1285,57 @@ msgstr ""
1285
  msgid "Organizer"
1286
  msgstr ""
1287
 
1288
- #: app/features/events.php:3084
1289
  msgid "Repeat"
1290
  msgstr ""
1291
 
1292
- #: app/features/events.php:3085
1293
  msgid "Author"
1294
  msgstr ""
1295
 
1296
- #: app/features/events.php:3206 app/features/events.php:3207
1297
  msgid "iCal Export"
1298
  msgstr ""
1299
 
1300
- #: app/features/events.php:3209 app/features/events.php:3210
1301
  msgid "CSV Export"
1302
  msgstr ""
1303
 
1304
- #: app/features/events.php:3212 app/features/events.php:3213
1305
  msgid "MS Excel Export"
1306
  msgstr ""
1307
 
1308
- #: app/features/events.php:3215 app/features/events.php:3216
1309
  msgid "XML Export"
1310
  msgstr ""
1311
 
1312
- #: app/features/events.php:3218 app/features/events.php:3219
1313
  msgid "JSON Export"
1314
  msgstr ""
1315
 
1316
- #: app/features/events.php:3221 app/features/events.php:3222
1317
- #: app/features/events.php:3403
1318
  msgid "Duplicate"
1319
  msgstr ""
1320
 
1321
- #: app/features/events.php:3271 app/features/events.php:3313
1322
  #: app/features/ix.php:2743 app/features/ix.php:2784
1323
  #: app/features/labels.php:177 app/features/locations.php:229
1324
  #: app/features/organizers.php:203 app/features/speakers.php:246
1325
  msgid "ID"
1326
  msgstr ""
1327
 
1328
- #: app/features/events.php:3271 app/features/events.php:3313
1329
  #: app/features/ix.php:2743 app/features/ix.php:2784
1330
  msgid "Link"
1331
  msgstr ""
1332
 
1333
- #: app/features/events.php:3271 app/features/events.php:3313
1334
  #, php-format
1335
  msgid "%s Tel"
1336
  msgstr ""
1337
 
1338
- #: app/features/events.php:3271 app/features/events.php:3313
1339
  #, php-format
1340
  msgid "%s Email"
1341
  msgstr ""
@@ -1827,7 +1827,7 @@ msgstr ""
1827
  msgid "Import all of your Facebook events into MEC."
1828
  msgstr ""
1829
 
1830
- #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:109
1831
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1832
  msgid "Documentation"
1833
  msgstr ""
@@ -2176,7 +2176,7 @@ msgid "Event %s"
2176
  msgstr ""
2177
 
2178
  #: app/features/locations.php:59 app/features/mec.php:337
2179
- #: app/features/mec/dashboard.php:216 app/features/mec/meta_boxes/filter.php:87
2180
  #: app/libraries/main.php:4838
2181
  msgid "Locations"
2182
  msgstr ""
@@ -2332,14 +2332,14 @@ msgstr ""
2332
  msgid "Support"
2333
  msgstr ""
2334
 
2335
- #: app/features/mec.php:338 app/features/mec/dashboard.php:223
2336
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2337
  #: app/libraries/main.php:4840
2338
  msgid "Organizers"
2339
  msgstr ""
2340
 
2341
  #: app/features/mec.php:346 app/features/mec.php:366
2342
- #: app/features/mec/dashboard.php:209
2343
  msgid "Shortcodes"
2344
  msgstr ""
2345
 
@@ -2667,96 +2667,111 @@ msgstr ""
2667
  msgid "Update"
2668
  msgstr ""
2669
 
2670
- #: app/features/mec/dashboard.php:90
2671
  #, php-format
2672
  msgid ""
2673
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2674
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2675
- "Spots, etc you should %s to the Pro version."
2676
  msgstr ""
2677
 
2678
- #: app/features/mec/dashboard.php:90
2679
  msgid "lite"
2680
  msgstr ""
2681
 
2682
- #: app/features/mec/dashboard.php:90
2683
- msgid "upgrade"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2684
  msgstr ""
2685
 
2686
- #: app/features/mec/dashboard.php:100
2687
  msgid "Getting started with Modern Events Calendar"
2688
  msgstr ""
2689
 
2690
- #: app/features/mec/dashboard.php:101
2691
  msgid ""
2692
  "In this short video, you can learn how to make an event and put a calendar "
2693
  "on your website. Please watch this 2 minutes video to the end."
2694
  msgstr ""
2695
 
2696
- #: app/features/mec/dashboard.php:117
2697
  msgid "MEC Activate"
2698
  msgstr ""
2699
 
2700
- #: app/features/mec/dashboard.php:123
2701
  msgid ""
2702
  "In order to use all plugin features and options, please enter your purchase "
2703
  "code."
2704
  msgstr ""
2705
 
2706
- #: app/features/mec/dashboard.php:181
2707
  msgid "Activate Addons"
2708
  msgstr ""
2709
 
2710
- #: app/features/mec/dashboard.php:190
2711
  msgid "You cannot access this section."
2712
  msgstr ""
2713
 
2714
- #: app/features/mec/dashboard.php:234 app/features/mec/settings.php:347
2715
  msgid "Upcoming Events"
2716
  msgstr ""
2717
 
2718
- #: app/features/mec/dashboard.php:258
2719
  msgid "Popular Gateways"
2720
  msgstr ""
2721
 
2722
- #: app/features/mec/dashboard.php:312
2723
  msgid "Total Bookings"
2724
  msgstr ""
2725
 
2726
- #: app/features/mec/dashboard.php:339
2727
  msgid "This Month"
2728
  msgstr ""
2729
 
2730
- #: app/features/mec/dashboard.php:340
2731
  msgid "Last Month"
2732
  msgstr ""
2733
 
2734
- #: app/features/mec/dashboard.php:341
2735
  msgid "This Year"
2736
  msgstr ""
2737
 
2738
- #: app/features/mec/dashboard.php:342
2739
  msgid "Last Year"
2740
  msgstr ""
2741
 
2742
- #: app/features/mec/dashboard.php:354
2743
  msgid "Bar"
2744
  msgstr ""
2745
 
2746
- #: app/features/mec/dashboard.php:355
2747
  msgid "Line"
2748
  msgstr ""
2749
 
2750
- #: app/features/mec/dashboard.php:357
2751
  msgid "Filter"
2752
  msgstr ""
2753
 
2754
- #: app/features/mec/dashboard.php:373
2755
  #, php-format
2756
  msgid "Total Sells (%s)"
2757
  msgstr ""
2758
 
2759
- #: app/features/mec/dashboard.php:394
2760
  msgid "Change Log"
2761
  msgstr ""
2762
 
@@ -4090,7 +4105,7 @@ msgid "It sends to admin to notify him/her that a new booking received."
4090
  msgstr ""
4091
 
4092
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4093
- #: app/libraries/notifications.php:405
4094
  msgid "Booking Reminder"
4095
  msgstr ""
4096
 
@@ -5158,10 +5173,6 @@ msgid ""
5158
  "soon as possible."
5159
  msgstr ""
5160
 
5161
- #: app/features/mec/support.php:126
5162
- msgid "GO PREMIUM"
5163
- msgstr ""
5164
-
5165
  #: app/features/mec/support.php:128
5166
  msgid "OPEN A TICKET"
5167
  msgstr ""
@@ -5320,7 +5331,7 @@ msgid "No search result."
5320
  msgstr ""
5321
 
5322
  #: app/features/search_bar/search_result.php:11
5323
- #: app/libraries/notifications.php:598 app/libraries/render.php:437
5324
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5325
  #: app/skins/single.php:160 app/skins/single.php:708
5326
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
@@ -5876,7 +5887,7 @@ msgstr ""
5876
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
5877
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5878
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5879
- #: app/skins/grid/render.php:205 app/skins/grid/render.php:233
5880
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5881
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
5882
  #: app/skins/single.php:729 app/skins/single/default.php:233
@@ -5896,8 +5907,8 @@ msgstr ""
5896
 
5897
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
5898
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5899
- #: app/skins/grid/render.php:164 app/skins/grid/render.php:205
5900
- #: app/skins/grid/render.php:233 app/skins/list/render.php:107
5901
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
5902
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
5903
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
@@ -5961,47 +5972,47 @@ msgstr ""
5961
  msgid "Skin controller does not exist."
5962
  msgstr ""
5963
 
5964
- #: app/libraries/notifications.php:61
5965
  msgid "Please verify your email."
5966
  msgstr ""
5967
 
5968
- #: app/libraries/notifications.php:125
5969
  msgid "Your booking is received."
5970
  msgstr ""
5971
 
5972
- #: app/libraries/notifications.php:193
5973
  msgid "Your booking is confirmed."
5974
  msgstr ""
5975
 
5976
- #: app/libraries/notifications.php:282
5977
  msgid "booking canceled."
5978
  msgstr ""
5979
 
5980
- #: app/libraries/notifications.php:337
5981
  msgid "A new booking is received."
5982
  msgstr ""
5983
 
5984
- #: app/libraries/notifications.php:488
5985
  msgid "A new event is added."
5986
  msgstr ""
5987
 
5988
- #: app/libraries/notifications.php:674
5989
  msgid "to"
5990
  msgstr ""
5991
 
5992
- #: app/libraries/notifications.php:687 app/modules/export/details.php:27
5993
  msgid "+ Add to Google Calendar"
5994
  msgstr ""
5995
 
5996
- #: app/libraries/notifications.php:688 app/modules/export/details.php:28
5997
  msgid "+ iCal export"
5998
  msgstr ""
5999
 
6000
- #: app/libraries/notifications.php:752
6001
  msgid "Yes"
6002
  msgstr ""
6003
 
6004
- #: app/libraries/notifications.php:752
6005
  msgid "No"
6006
  msgstr ""
6007
 
3
  msgstr ""
4
  "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
5
  "Project-Id-Version: Modern Events Calendar Lite\n"
6
+ "POT-Creation-Date: 2019-09-11 13:21+0430\n"
7
+ "PO-Revision-Date: 2019-09-11 13:21+0430\n"
8
  "Last-Translator: \n"
9
  "Language-Team: \n"
10
  "MIME-Version: 1.0\n"
67
  msgstr ""
68
 
69
  #: app/features/contextual.php:55 app/features/mec.php:347
70
+ #: app/features/mec/dashboard.php:135 app/features/mec/support-page.php:168
71
  #: app/features/mec/support.php:20 app/libraries/main.php:587
72
  msgid "Settings"
73
  msgstr ""
243
  msgstr ""
244
 
245
  #: app/features/events.php:148 app/features/ix/export.php:34
246
+ #: app/features/mec/dashboard.php:229 app/skins/daily_view/tpl.php:79
247
  #: app/skins/monthly_view/tpl.php:70 app/skins/yearly_view/tpl.php:68
248
  msgid "Events"
249
  msgstr ""
261
  msgid "Add Event"
262
  msgstr ""
263
 
264
+ #: app/features/events.php:151 app/features/mec/dashboard.php:134
265
  msgid "Add New Event"
266
  msgstr ""
267
 
286
  msgid "No events found in Trash!"
287
  msgstr ""
288
 
289
+ #: app/features/events.php:173 app/features/events.php:3072
290
  #: app/features/mec/meta_boxes/display_options.php:828
291
  #: app/features/mec/meta_boxes/search_form.php:31
292
  #: app/features/mec/meta_boxes/search_form.php:93
306
  msgid "Category"
307
  msgstr ""
308
 
309
+ #: app/features/events.php:174 app/features/events.php:3043
310
  #: app/features/fes/form.php:745 app/features/mec.php:335
311
  #: app/features/mec/meta_boxes/filter.php:70 app/libraries/main.php:4834
312
  msgid "Categories"
380
  msgid "Event Details"
381
  msgstr ""
382
 
383
+ #: app/features/events.php:333 app/features/events.php:3265
384
+ #: app/features/events.php:3307 app/features/fes/form.php:706
385
  #: app/features/ix.php:2743 app/features/ix.php:2784
386
  #: app/features/mec/settings.php:573 app/libraries/main.php:4867
387
  #: app/widgets/single.php:103
406
  #: app/features/events.php:443 app/features/events.php:2261
407
  #: app/features/fes/form.php:668 app/features/labels.php:178
408
  #: app/features/mec/booking.php:45 app/features/organizers.php:279
409
+ #: app/features/profile/profile.php:90 app/libraries/notifications.php:805
410
  #: app/modules/booking/steps/form.php:37
411
  msgid "Name"
412
  msgstr ""
413
 
414
  #: app/features/events.php:444 app/features/events.php:2272
415
+ #: app/features/events.php:2348 app/features/fes/form.php:664
416
  #: app/features/mec/booking.php:57 app/features/mec/booking.php:449
417
  #: app/features/organizers.php:111 app/features/organizers.php:152
418
  #: app/features/profile/profile.php:93 app/features/speakers.php:124
419
  #: app/features/speakers.php:184 app/libraries/main.php:1471
420
  #: app/libraries/main.php:1537 app/libraries/main.php:2582
421
+ #: app/libraries/notifications.php:806 app/modules/booking/steps/form.php:46
422
  #: app/modules/booking/steps/form.php:84 app/skins/single.php:781
423
  #: app/skins/single.php:836 app/skins/single/default.php:212
424
  #: app/skins/single/default.php:424 app/skins/single/m1.php:107
431
  msgstr ""
432
 
433
  #: app/features/events.php:452 app/features/events.php:458
434
+ #: app/features/events.php:3075 app/features/events.php:3265
435
+ #: app/features/events.php:3307 app/features/fes/form.php:236
436
  #: app/features/fes/form.php:240 app/features/ix.php:2743
437
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:38
438
+ #: app/features/mec/dashboard.php:373
439
  #: app/features/mec/meta_boxes/display_options.php:44
440
  #: app/features/mec/meta_boxes/display_options.php:185
441
  #: app/features/mec/meta_boxes/display_options.php:337
467
  msgstr ""
468
 
469
  #: app/features/events.php:544 app/features/events.php:549
470
+ #: app/features/events.php:3076 app/features/events.php:3265
471
+ #: app/features/events.php:3307 app/features/fes/form.php:276
472
  #: app/features/fes/form.php:280 app/features/ix.php:2743
473
  #: app/features/ix.php:2784 app/features/ix/import_g_calendar.php:44
474
+ #: app/features/mec/dashboard.php:374
475
  msgid "End Date"
476
  msgstr ""
477
 
582
  msgstr ""
583
 
584
  #: app/features/events.php:703 app/features/fes/form.php:338
585
+ #: app/features/mec/dashboard.php:376 app/skins/full_calendar/tpl.php:109
586
  msgid "Daily"
587
  msgstr ""
588
 
604
  msgstr ""
605
 
606
  #: app/features/events.php:738 app/features/fes/form.php:343
607
+ #: app/features/mec/dashboard.php:377 app/skins/full_calendar/tpl.php:107
608
  msgid "Monthly"
609
  msgstr ""
610
 
611
  #: app/features/events.php:745 app/features/fes/form.php:344
612
+ #: app/features/mec/dashboard.php:378 app/skins/full_calendar/tpl.php:106
613
  msgid "Yearly"
614
  msgstr ""
615
 
760
  msgid "Exclude certain days"
761
  msgstr ""
762
 
763
+ #: app/features/events.php:1141 app/features/events.php:2349
764
  #: app/features/mec/booking.php:450 app/features/profile/profile.php:31
765
  #: app/libraries/main.php:2030 app/libraries/main.php:2640
766
  #: app/modules/booking/steps/tickets.php:22
804
  #: app/features/events.php:1239 app/features/events.php:1278
805
  #: app/features/events.php:1313 app/features/events.php:1345
806
  #: app/features/events.php:1374 app/features/events.php:2130
807
+ #: app/features/events.php:2177 app/features/events.php:3071
808
+ #: app/features/events.php:3265 app/features/events.php:3307
809
  #: app/features/fes/form.php:225 app/features/ix.php:2743
810
  #: app/features/ix.php:2784 app/features/mec/booking.php:334
811
  #: app/features/mec/booking.php:366 app/features/mec/styling.php:111
973
  msgstr ""
974
 
975
  #: app/features/events.php:1584 app/features/events.php:1805
976
+ #: app/features/events.php:3265 app/features/events.php:3307
977
  #: app/features/ix.php:2743 app/features/ix.php:2784
978
  msgid "Start Time"
979
  msgstr ""
980
 
981
  #: app/features/events.php:1626 app/features/events.php:1829
982
+ #: app/features/events.php:3265 app/features/events.php:3307
983
  #: app/features/ix.php:2743 app/features/ix.php:2784
984
  msgid "End Time"
985
  msgstr ""
1093
  msgid "Maximum Per Ticket. Leave it blank for unlimited."
1094
  msgstr ""
1095
 
1096
+ #: app/features/events.php:2345 app/features/mec/booking.php:446
1097
  #: app/libraries/main.php:2523
1098
  msgid "MEC Name"
1099
  msgstr ""
1100
 
1101
+ #: app/features/events.php:2346 app/features/mec/booking.php:447
1102
  #: app/libraries/main.php:2552
1103
  msgid "MEC Email"
1104
  msgstr ""
1105
 
1106
+ #: app/features/events.php:2347 app/features/mec/booking.php:448
1107
  #: app/libraries/main.php:2493
1108
  msgid "Text"
1109
  msgstr ""
1110
 
1111
+ #: app/features/events.php:2350 app/features/mec/booking.php:451
1112
  #: app/features/organizers.php:103 app/features/organizers.php:148
1113
  #: app/features/speakers.php:116 app/features/speakers.php:180
1114
  #: app/features/speakers.php:249 app/libraries/main.php:2669
1115
  msgid "Tel"
1116
  msgstr ""
1117
 
1118
+ #: app/features/events.php:2351 app/features/mec/booking.php:452
1119
  #: app/libraries/main.php:2611
1120
  msgid "File"
1121
  msgstr ""
1122
 
1123
+ #: app/features/events.php:2352 app/features/mec/booking.php:453
1124
  #: app/libraries/main.php:2698
1125
  msgid "Textarea"
1126
  msgstr ""
1127
 
1128
+ #: app/features/events.php:2353 app/features/mec/booking.php:454
1129
  #: app/libraries/main.php:2751
1130
  msgid "Checkboxes"
1131
  msgstr ""
1132
 
1133
+ #: app/features/events.php:2354 app/features/mec/booking.php:455
1134
  #: app/libraries/main.php:2795
1135
  msgid "Radio Buttons"
1136
  msgstr ""
1137
 
1138
+ #: app/features/events.php:2355 app/features/mec/booking.php:456
1139
  #: app/features/mec/meta_boxes/search_form.php:34
1140
  #: app/features/mec/meta_boxes/search_form.php:41
1141
  #: app/features/mec/meta_boxes/search_form.php:48
1208
  msgid "Dropdown"
1209
  msgstr ""
1210
 
1211
+ #: app/features/events.php:2356 app/features/mec/booking.php:457
1212
  #: app/libraries/main.php:2886
1213
  msgid "Agreement"
1214
  msgstr ""
1215
 
1216
+ #: app/features/events.php:2357 app/features/mec/booking.php:458
1217
  #: app/libraries/main.php:2727
1218
  msgid "Paragraph"
1219
  msgstr ""
1220
 
1221
+ #: app/features/events.php:2992 app/features/events.php:3009
1222
+ #: app/features/events.php:3026 app/features/events.php:3043
1223
  #, php-format
1224
  msgid "Show all %s"
1225
  msgstr ""
1226
 
1227
+ #: app/features/events.php:2992
1228
  msgid "labels"
1229
  msgstr ""
1230
 
1231
+ #: app/features/events.php:3009
1232
  msgid "locations"
1233
  msgstr ""
1234
 
1235
+ #: app/features/events.php:3026
1236
  msgid "organizers"
1237
  msgstr ""
1238
 
1239
+ #: app/features/events.php:3073 app/features/events.php:3265
1240
+ #: app/features/events.php:3307 app/features/ix.php:2743
1241
  #: app/features/ix.php:2784 app/features/locations.php:58
1242
  #: app/features/locations.php:230 app/features/locations.php:287
1243
  #: app/features/locations.php:289 app/features/locations.php:298
1261
  msgid "Location"
1262
  msgstr ""
1263
 
1264
+ #: app/features/events.php:3074 app/features/events.php:3265
1265
+ #: app/features/events.php:3307 app/features/ix.php:2743
1266
  #: app/features/ix.php:2784 app/features/mec/meta_boxes/display_options.php:831
1267
  #: app/features/mec/meta_boxes/search_form.php:45
1268
  #: app/features/mec/meta_boxes/search_form.php:107
1285
  msgid "Organizer"
1286
  msgstr ""
1287
 
1288
+ #: app/features/events.php:3078
1289
  msgid "Repeat"
1290
  msgstr ""
1291
 
1292
+ #: app/features/events.php:3079
1293
  msgid "Author"
1294
  msgstr ""
1295
 
1296
+ #: app/features/events.php:3200 app/features/events.php:3201
1297
  msgid "iCal Export"
1298
  msgstr ""
1299
 
1300
+ #: app/features/events.php:3203 app/features/events.php:3204
1301
  msgid "CSV Export"
1302
  msgstr ""
1303
 
1304
+ #: app/features/events.php:3206 app/features/events.php:3207
1305
  msgid "MS Excel Export"
1306
  msgstr ""
1307
 
1308
+ #: app/features/events.php:3209 app/features/events.php:3210
1309
  msgid "XML Export"
1310
  msgstr ""
1311
 
1312
+ #: app/features/events.php:3212 app/features/events.php:3213
1313
  msgid "JSON Export"
1314
  msgstr ""
1315
 
1316
+ #: app/features/events.php:3215 app/features/events.php:3216
1317
+ #: app/features/events.php:3397
1318
  msgid "Duplicate"
1319
  msgstr ""
1320
 
1321
+ #: app/features/events.php:3265 app/features/events.php:3307
1322
  #: app/features/ix.php:2743 app/features/ix.php:2784
1323
  #: app/features/labels.php:177 app/features/locations.php:229
1324
  #: app/features/organizers.php:203 app/features/speakers.php:246
1325
  msgid "ID"
1326
  msgstr ""
1327
 
1328
+ #: app/features/events.php:3265 app/features/events.php:3307
1329
  #: app/features/ix.php:2743 app/features/ix.php:2784
1330
  msgid "Link"
1331
  msgstr ""
1332
 
1333
+ #: app/features/events.php:3265 app/features/events.php:3307
1334
  #, php-format
1335
  msgid "%s Tel"
1336
  msgstr ""
1337
 
1338
+ #: app/features/events.php:3265 app/features/events.php:3307
1339
  #, php-format
1340
  msgid "%s Email"
1341
  msgstr ""
1827
  msgid "Import all of your Facebook events into MEC."
1828
  msgstr ""
1829
 
1830
+ #: app/features/ix/import_f_calendar.php:27 app/features/mec/dashboard.php:136
1831
  #: app/features/mec/support-page.php:11 app/features/mec/support.php:100
1832
  msgid "Documentation"
1833
  msgstr ""
2176
  msgstr ""
2177
 
2178
  #: app/features/locations.php:59 app/features/mec.php:337
2179
+ #: app/features/mec/dashboard.php:243 app/features/mec/meta_boxes/filter.php:87
2180
  #: app/libraries/main.php:4838
2181
  msgid "Locations"
2182
  msgstr ""
2332
  msgid "Support"
2333
  msgstr ""
2334
 
2335
+ #: app/features/mec.php:338 app/features/mec/dashboard.php:250
2336
  #: app/features/mec/meta_boxes/filter.php:104 app/features/organizers.php:59
2337
  #: app/libraries/main.php:4840
2338
  msgid "Organizers"
2339
  msgstr ""
2340
 
2341
  #: app/features/mec.php:346 app/features/mec.php:366
2342
+ #: app/features/mec/dashboard.php:236
2343
  msgid "Shortcodes"
2344
  msgstr ""
2345
 
2667
  msgid "Update"
2668
  msgstr ""
2669
 
2670
+ #: app/features/mec/dashboard.php:92
2671
  #, php-format
2672
  msgid ""
2673
  "You're using %s version of Modern Events Calendar. To use advanced booking "
2674
  "system, modern skins like Agenda, Timetable, Masonry, Yearly View, Available "
2675
+ "Spots, etc you should upgrade to the Pro version."
2676
  msgstr ""
2677
 
2678
+ #: app/features/mec/dashboard.php:92
2679
  msgid "lite"
2680
  msgstr ""
2681
 
2682
+ #: app/features/mec/dashboard.php:95 app/features/mec/support.php:126
2683
+ msgid "GO PREMIUM"
2684
+ msgstr ""
2685
+
2686
+ #: app/features/mec/dashboard.php:98
2687
+ #, php-format
2688
+ msgid ""
2689
+ "Easily get a discount coupon by rating us on %s or following and reposting "
2690
+ "us on social media. Just send a screenshot to %s and you'll receive the %s"
2691
+ msgstr ""
2692
+
2693
+ #: app/features/mec/dashboard.php:98
2694
+ msgid "WordPress"
2695
+ msgstr ""
2696
+
2697
+ #: app/features/mec/dashboard.php:98
2698
+ msgid "Copouns!"
2699
  msgstr ""
2700
 
2701
+ #: app/features/mec/dashboard.php:127
2702
  msgid "Getting started with Modern Events Calendar"
2703
  msgstr ""
2704
 
2705
+ #: app/features/mec/dashboard.php:128
2706
  msgid ""
2707
  "In this short video, you can learn how to make an event and put a calendar "
2708
  "on your website. Please watch this 2 minutes video to the end."
2709
  msgstr ""
2710
 
2711
+ #: app/features/mec/dashboard.php:144
2712
  msgid "MEC Activate"
2713
  msgstr ""
2714
 
2715
+ #: app/features/mec/dashboard.php:150
2716
  msgid ""
2717
  "In order to use all plugin features and options, please enter your purchase "
2718
  "code."
2719
  msgstr ""
2720
 
2721
+ #: app/features/mec/dashboard.php:208
2722
  msgid "Activate Addons"
2723
  msgstr ""
2724
 
2725
+ #: app/features/mec/dashboard.php:217
2726
  msgid "You cannot access this section."
2727
  msgstr ""
2728
 
2729
+ #: app/features/mec/dashboard.php:261 app/features/mec/settings.php:347
2730
  msgid "Upcoming Events"
2731
  msgstr ""
2732
 
2733
+ #: app/features/mec/dashboard.php:285
2734
  msgid "Popular Gateways"
2735
  msgstr ""
2736
 
2737
+ #: app/features/mec/dashboard.php:339
2738
  msgid "Total Bookings"
2739
  msgstr ""
2740
 
2741
+ #: app/features/mec/dashboard.php:366
2742
  msgid "This Month"
2743
  msgstr ""
2744
 
2745
+ #: app/features/mec/dashboard.php:367
2746
  msgid "Last Month"
2747
  msgstr ""
2748
 
2749
+ #: app/features/mec/dashboard.php:368
2750
  msgid "This Year"
2751
  msgstr ""
2752
 
2753
+ #: app/features/mec/dashboard.php:369
2754
  msgid "Last Year"
2755
  msgstr ""
2756
 
2757
+ #: app/features/mec/dashboard.php:381
2758
  msgid "Bar"
2759
  msgstr ""
2760
 
2761
+ #: app/features/mec/dashboard.php:382
2762
  msgid "Line"
2763
  msgstr ""
2764
 
2765
+ #: app/features/mec/dashboard.php:384
2766
  msgid "Filter"
2767
  msgstr ""
2768
 
2769
+ #: app/features/mec/dashboard.php:400
2770
  #, php-format
2771
  msgid "Total Sells (%s)"
2772
  msgstr ""
2773
 
2774
+ #: app/features/mec/dashboard.php:421
2775
  msgid "Change Log"
2776
  msgstr ""
2777
 
4105
  msgstr ""
4106
 
4107
  #: app/features/mec/notifications.php:327 app/libraries/main.php:575
4108
+ #: app/libraries/notifications.php:478
4109
  msgid "Booking Reminder"
4110
  msgstr ""
4111
 
5173
  "soon as possible."
5174
  msgstr ""
5175
 
 
 
 
 
5176
  #: app/features/mec/support.php:128
5177
  msgid "OPEN A TICKET"
5178
  msgstr ""
5331
  msgstr ""
5332
 
5333
  #: app/features/search_bar/search_result.php:11
5334
+ #: app/libraries/notifications.php:671 app/libraries/render.php:437
5335
  #: app/modules/local-time/details.php:47 app/modules/next-event/details.php:101
5336
  #: app/skins/single.php:160 app/skins/single.php:708
5337
  #: app/skins/single/default.php:86 app/skins/single/default.php:298
5887
  #: app/libraries/main.php:4862 app/skins/available_spot/tpl.php:210
5888
  #: app/skins/carousel/render.php:156 app/skins/carousel/render.php:192
5889
  #: app/skins/grid/render.php:118 app/skins/grid/render.php:164
5890
+ #: app/skins/grid/render.php:206 app/skins/grid/render.php:234
5891
  #: app/skins/list/render.php:107 app/skins/list/render.php:195
5892
  #: app/skins/masonry/render.php:178 app/skins/single.php:726
5893
  #: app/skins/single.php:729 app/skins/single/default.php:233
5907
 
5908
  #: app/libraries/main.php:4863 app/skins/carousel/render.php:156
5909
  #: app/skins/carousel/render.php:192 app/skins/grid/render.php:118
5910
+ #: app/skins/grid/render.php:164 app/skins/grid/render.php:206
5911
+ #: app/skins/grid/render.php:234 app/skins/list/render.php:107
5912
  #: app/skins/list/render.php:195 app/skins/masonry/render.php:178
5913
  #: app/skins/slider/render.php:112 app/skins/slider/render.php:160
5914
  #: app/skins/slider/render.php:207 app/skins/slider/render.php:255
5972
  msgid "Skin controller does not exist."
5973
  msgstr ""
5974
 
5975
+ #: app/libraries/notifications.php:60
5976
  msgid "Please verify your email."
5977
  msgstr ""
5978
 
5979
+ #: app/libraries/notifications.php:139
5980
  msgid "Your booking is received."
5981
  msgstr ""
5982
 
5983
+ #: app/libraries/notifications.php:224
5984
  msgid "Your booking is confirmed."
5985
  msgstr ""
5986
 
5987
+ #: app/libraries/notifications.php:349
5988
  msgid "booking canceled."
5989
  msgstr ""
5990
 
5991
+ #: app/libraries/notifications.php:410
5992
  msgid "A new booking is received."
5993
  msgstr ""
5994
 
5995
+ #: app/libraries/notifications.php:561
5996
  msgid "A new event is added."
5997
  msgstr ""
5998
 
5999
+ #: app/libraries/notifications.php:746
6000
  msgid "to"
6001
  msgstr ""
6002
 
6003
+ #: app/libraries/notifications.php:759 app/modules/export/details.php:27
6004
  msgid "+ Add to Google Calendar"
6005
  msgstr ""
6006
 
6007
+ #: app/libraries/notifications.php:760 app/modules/export/details.php:28
6008
  msgid "+ iCal export"
6009
  msgstr ""
6010
 
6011
+ #: app/libraries/notifications.php:821
6012
  msgid "Yes"
6013
  msgstr ""
6014
 
6015
+ #: app/libraries/notifications.php:821
6016
  msgid "No"
6017
  msgstr ""
6018
 
modern-events-calendar-lite.php CHANGED
@@ -4,7 +4,7 @@
4
  Plugin URI: http://webnus.net/modern-events-calendar/
5
  Description: An awesome plugin for events calendar
6
  Author: Webnus Team
7
- Version: 4.5.0
8
  Text Domain: modern-events-calendar-lite
9
  Domain Path: /languages
10
  Author URI: http://webnus.net
@@ -31,7 +31,7 @@ if(!defined('MECEXEC'))
31
  define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
32
 
33
  /** Plugin Version **/
34
- define('MEC_VERSION', '4.5.0');
35
 
36
  /** Include Webnus MEC class if not included before **/
37
  if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
4
  Plugin URI: http://webnus.net/modern-events-calendar/
5
  Description: An awesome plugin for events calendar
6
  Author: Webnus Team
7
+ Version: 4.5.1
8
  Text Domain: modern-events-calendar-lite
9
  Domain Path: /languages
10
  Author URI: http://webnus.net
31
  define('MEC_BASENAME', plugin_basename(__FILE__)); // modern-events-calendar/mec.php
32
 
33
  /** Plugin Version **/
34
+ define('MEC_VERSION', '4.5.1');
35
 
36
  /** Include Webnus MEC class if not included before **/
37
  if(!class_exists('MEC')) require_once MEC_ABSPATH.'mec-init.php';
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: webnus
3
  Donate link: https://webnus.net
4
  Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
5
  Requires at least: 4.0.0
6
- Tested up to: 5.2.2
7
- Stable tag: 4.5.0
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -314,7 +314,19 @@ You can see [plugin documentation here](https://webnus.net/dox/modern-events-cal
314
 
315
  == Changelog ==
316
 
317
- v 4.5.0 - 4 September 2019
 
 
 
 
 
 
 
 
 
 
 
 
318
  - Added: SCA compatibility for Stripe Payment Gateways (pro)
319
  - Added: Google Maps option in list and Grid skins (pro)
320
  - Added: A feature to update booking dates when event date is updated (pro)
@@ -323,7 +335,7 @@ v 4.5.0 - 4 September 2019
323
  - Fixed: Global limit for bookers (pro)
324
  - Fixed: Twin search strings in backend
325
 
326
- v 4.4.9 - 27 August 2019
327
  - Fixed: Ajax live search
328
  - Fixed: Some minor issue
329
 
3
  Donate link: https://webnus.net
4
  Tags: Event, Events, Calendar, Booking, Schedule, Organizer, Venue
5
  Requires at least: 4.0.0
6
+ Tested up to: 5.2.3
7
+ Stable tag: 4.5.1
8
  License: GPLv2 or later
9
  License URI: https://www.gnu.org/licenses/gpl-2.0.html
10
 
314
 
315
  == Changelog ==
316
 
317
+ = 4.5.1 - 11 September 2019
318
+ - Compatibility: WordPress 5.2.3
319
+ - Fixed: Showing multiple names and emails in backend booking form (pro)
320
+ - Fixed: Date field in backend of booking form (pro)
321
+ - Fixed: Local time module regarding hour
322
+ - Fixed: Maximum year number in date fields in frontend and backend forms (pro)
323
+ - Fixed: Location, saving latitude and longitude
324
+ - Fixed: Send emails to all attendees instead of main attendees (pro)
325
+ - Fixed: Displaying Google Recaptcha in modals
326
+ - Fixed: Showing registration form data in backend (pro)
327
+ - Fixed: Ticket filter in booking management menu (pro)
328
+
329
+ = 4.5.0 - 4 September 2019
330
  - Added: SCA compatibility for Stripe Payment Gateways (pro)
331
  - Added: Google Maps option in list and Grid skins (pro)
332
  - Added: A feature to update booking dates when event date is updated (pro)
335
  - Fixed: Global limit for bookers (pro)
336
  - Fixed: Twin search strings in backend
337
 
338
+ = 4.4.9 - 27 August 2019
339
  - Fixed: Ajax live search
340
  - Fixed: Some minor issue
341