WordPress Online Booking and Scheduling Plugin – Bookly - Version 17.7

Version Description

Download this release

Release Info

Developer Ladela
Plugin Icon 128x128 WordPress Online Booking and Scheduling Plugin – Bookly
Version 17.7
Comparing to
See all releases

Code changes from version 17.6 to 17.7

Files changed (44) hide show
  1. backend/components/dialogs/appointment/edit/resources/js/ng-appointment.js +35 -32
  2. backend/components/dialogs/appointment/edit/templates/edit.php +6 -1
  3. backend/components/dialogs/customer/edit/resources/js/ng-customer.js +1 -1
  4. backend/components/dialogs/service/edit/templates/dialog.php +1 -1
  5. backend/components/dialogs/staff/edit/Ajax.php +17 -0
  6. backend/components/dialogs/staff/edit/resources/js/staff-schedule.js +4 -4
  7. backend/modules/appointments/Ajax.php +5 -0
  8. backend/modules/appointments/Page.php +8 -1
  9. backend/modules/appointments/proxy/GroupBooking.php +1 -2
  10. backend/modules/appointments/proxy/Locations.php +17 -0
  11. backend/modules/appointments/resources/js/appointments.js +10 -1
  12. backend/modules/appointments/templates/index.php +2 -1
  13. backend/modules/customers/Ajax.php +5 -1
  14. backend/modules/debug/Ajax.php +62 -0
  15. backend/modules/debug/Page.php +22 -2
  16. backend/modules/debug/lib/QueryBuilder.php +1 -1
  17. backend/modules/debug/lib/tests/Base.php +66 -0
  18. backend/modules/debug/lib/tests/Session.php +53 -0
  19. backend/modules/debug/lib/tests/Slug.php +35 -0
  20. backend/modules/debug/lib/tests/Socket.php +42 -0
  21. backend/modules/debug/lib/tools/Base.php +85 -0
  22. backend/modules/debug/lib/tools/Plugins.php +139 -0
  23. backend/modules/debug/resources/js/debug.js +69 -7
  24. backend/modules/debug/templates/index.php +11 -1
  25. backend/modules/notifications/templates/_test_email_modal.php +1 -1
  26. backend/modules/payments/resources/js/payments.js +3 -1
  27. backend/modules/payments/templates/index.php +1 -1
  28. backend/modules/services/templates/time.php +1 -1
  29. backend/modules/settings/Ajax.php +2 -2
  30. backend/modules/settings/Page.php +1 -0
  31. backend/modules/settings/proxy/Pro.php +1 -0
  32. backend/modules/settings/templates/_customers.php +1 -1
  33. backend/modules/settings/templates/_generalForm.php +3 -3
  34. backend/modules/sms/Ajax.php +7 -3
  35. backend/modules/staff/proxy/Shared.php +1 -1
  36. backend/modules/staff/resources/js/staff-list.js +1 -0
  37. backend/resources/bootstrap/css/bootstrap-theme.min.css +2 -2
  38. backend/resources/js/plugins.js +36 -0
  39. frontend/modules/booking/Ajax.php +1 -1
  40. frontend/resources/css/bookly-main.css +6 -1
  41. languages/bookly-de_DE.mo +0 -0
  42. languages/bookly-de_DE.po +5678 -5585
  43. languages/bookly-es_ES.mo +0 -0
  44. languages/bookly-es_ES.po +1179 -614
backend/components/dialogs/appointment/edit/resources/js/ng-appointment.js CHANGED
@@ -274,7 +274,7 @@
274
  start_time = moment(ds.form.start_time.value, 'HH:mm');
275
  for (var units = units_min; units <= units_max; units++) {
276
  var end_time = moment(start_time).add(units * ds.form.service.duration, 'seconds'),
277
- end_hour = parseInt(moment(end_time).format('HH')) + Math.floor((end_time.diff(start_time)) / 3600 / 24000) * 24;
278
  jQuery.each(ds.data.end_time, function (key, item) {
279
  if (item.value == (end_hour < 10 ? '0' + end_hour : end_hour) + ':' + moment(end_time).format('mm')) {
280
  unit_item = jQuery.extend({}, item);
@@ -310,7 +310,7 @@
310
  }
311
  return result;
312
  },
313
- setEndTimeBasedOnService : function() {
314
  ds.form.end_time_data = ds.getDataForEndTime();
315
  var d = ds.form.service ? ds.form.service.duration * ds.form.service.units_min : ds.data.time_interval;
316
  if (d < 86400 || parseInt(ds.form.service.units_max) > 1) {
@@ -323,35 +323,36 @@
323
  start_date: null,
324
  end_date : null
325
  }
326
- }
327
- var start_date = moment(ds.form.date.getTime()),
328
- end_date = moment(ds.form.date.getTime()),
329
- start_time = [0,0],
330
- end_time = [0,0]
331
- ;
332
- if (ds.form.service && ds.form.service.duration >= 86400) {
333
- if (ds.form.end_time) {
334
- var _start_time = ds.form.start_time.value.split(':');
335
- var _end_time = ds.form.end_time.value.split(':');
336
- var duration = Math.max(ds.form.service.duration, 60 * (_end_time[0] * 60 + parseInt(_end_time[1]) - _start_time[0] * 60 - parseInt(_start_time[1])));
337
- end_date.add(duration, 'seconds');
338
- } else if (ds.form.service && ds.form.service.units_max > 1) {
339
- end_date.add(ds.form.service.duration * ds.form.service.units_min, 'seconds');
 
 
 
340
  } else {
341
- end_date.add(ds.form.service.duration, 'seconds');
 
342
  }
343
- } else {
344
- start_time = ds.form.start_time.value.split(':');
345
- end_time = ds.form.end_time.value.split(':');
 
 
 
 
 
346
  }
347
- start_date.hours(start_time[0]);
348
- start_date.minutes(start_time[1]);
349
- end_date.hours(end_time[0]);
350
- end_date.minutes(end_time[1]);
351
- return {
352
- start_date : start_date.format('YYYY-MM-DD HH:mm:00'),
353
- end_date : end_date.format('YYYY-MM-DD HH:mm:00')
354
- };
355
  },
356
  getTotalNumberOfPersons : function () {
357
  var result = 0;
@@ -596,7 +597,7 @@
596
 
597
  var checkErrorsXhr = null;
598
  var checkAppointmentErrors = function() {
599
- if ($scope.form.staff) {
600
  var dates = $scope.dataSource.getStartAndEndDates(),
601
  customers = [];
602
 
@@ -699,9 +700,11 @@
699
  checkAppointmentErrors();
700
  };
701
 
702
- $scope.onDateChange = function() {
703
- checkAppointmentErrors();
704
- $scope.onRepeatChange();
 
 
705
  };
706
 
707
  $scope.onCustomersChange = function() {
274
  start_time = moment(ds.form.start_time.value, 'HH:mm');
275
  for (var units = units_min; units <= units_max; units++) {
276
  var end_time = moment(start_time).add(units * ds.form.service.duration, 'seconds'),
277
+ end_hour = moment(end_time).diff(moment('00:00', 'HH:mm')) / 3600 / 1000;
278
  jQuery.each(ds.data.end_time, function (key, item) {
279
  if (item.value == (end_hour < 10 ? '0' + end_hour : end_hour) + ':' + moment(end_time).format('mm')) {
280
  unit_item = jQuery.extend({}, item);
310
  }
311
  return result;
312
  },
313
+ setEndTimeBasedOnService : function () {
314
  ds.form.end_time_data = ds.getDataForEndTime();
315
  var d = ds.form.service ? ds.form.service.duration * ds.form.service.units_min : ds.data.time_interval;
316
  if (d < 86400 || parseInt(ds.form.service.units_max) > 1) {
323
  start_date: null,
324
  end_date : null
325
  }
326
+ } else if (ds.form.date) {
327
+ var start_date = moment(ds.form.date.getTime()),
328
+ end_date = moment(ds.form.date.getTime()),
329
+ start_time = [0,0],
330
+ end_time = [0,0]
331
+ ;
332
+ if (ds.form.service && ds.form.service.duration >= 86400) {
333
+ if (ds.form.end_time) {
334
+ var _start_time = ds.form.start_time.value.split(':');
335
+ var _end_time = ds.form.end_time.value.split(':');
336
+ var duration = Math.max(ds.form.service.duration, 60 * (_end_time[0] * 60 + parseInt(_end_time[1]) - _start_time[0] * 60 - parseInt(_start_time[1])));
337
+ end_date.add(duration, 'seconds');
338
+ } else if (ds.form.service && ds.form.service.units_max > 1) {
339
+ end_date.add(ds.form.service.duration * ds.form.service.units_min, 'seconds');
340
+ } else {
341
+ end_date.add(ds.form.service.duration, 'seconds');
342
+ }
343
  } else {
344
+ start_time = ds.form.start_time.value.split(':');
345
+ end_time = ds.form.end_time.value.split(':');
346
  }
347
+ start_date.hours(start_time[0]);
348
+ start_date.minutes(start_time[1]);
349
+ end_date.hours(end_time[0]);
350
+ end_date.minutes(end_time[1]);
351
+ return {
352
+ start_date: start_date.format('YYYY-MM-DD HH:mm:00'),
353
+ end_date: end_date.format('YYYY-MM-DD HH:mm:00')
354
+ };
355
  }
 
 
 
 
 
 
 
 
356
  },
357
  getTotalNumberOfPersons : function () {
358
  var result = 0;
597
 
598
  var checkErrorsXhr = null;
599
  var checkAppointmentErrors = function() {
600
+ if ($scope.form.staff && $scope.form.date) {
601
  var dates = $scope.dataSource.getStartAndEndDates(),
602
  customers = [];
603
 
700
  checkAppointmentErrors();
701
  };
702
 
703
+ $scope.onDateChange = function () {
704
+ if ($scope.form.date) {
705
+ checkAppointmentErrors();
706
+ $scope.onRepeatChange();
707
+ }
708
  };
709
 
710
  $scope.onCustomersChange = function() {
backend/components/dialogs/appointment/edit/templates/edit.php CHANGED
@@ -263,7 +263,12 @@ use Bookly\Lib\Entities\CustomerAppointment;
263
  <div class="modal-footer">
264
  <div ng-hide=loading>
265
  <?php Proxy\Shared::renderAppointmentDialogFooter() ?>
266
- <?php Buttons::renderSubmit( null, null, null, array( 'ng-hide' => 'form.screen == \'queue\' || (form.repeat.enabled && !form.skip_date && form.screen == \'main\')', 'ng-disabled' => '!form.skip_date && form.repeat.enabled && schIsScheduleEmpty()', 'formnovalidate' => '' ) ) ?>
 
 
 
 
 
267
  <?php Buttons::renderSubmit( null, 'bookly-js-queue-send', esc_html__( 'Send', 'bookly' ), array( 'ng-show' => 'form.screen == \'queue\'' ) ) ?>
268
  <?php Buttons::renderCustom( null, 'btn-lg btn-default', esc_html__( 'Cancel', 'bookly' ), array( 'ng-click' => 'closeDialog()', 'data-dismiss' => 'modal' ) ) ?>
269
  </div>
263
  <div class="modal-footer">
264
  <div ng-hide=loading>
265
  <?php Proxy\Shared::renderAppointmentDialogFooter() ?>
266
+ <?php Buttons::renderSubmit( null, null, null,
267
+ array(
268
+ 'ng-hide' => 'form.screen == \'queue\' || (form.repeat.enabled && !form.skip_date && form.screen == \'main\')',
269
+ 'ng-disabled' => '!form.skip_date && form.repeat.enabled && schIsScheduleEmpty() || (!form.date && !form.skip_date)',
270
+ 'formnovalidate' => '',
271
+ ) ) ?>
272
  <?php Buttons::renderSubmit( null, 'bookly-js-queue-send', esc_html__( 'Send', 'bookly' ), array( 'ng-show' => 'form.screen == \'queue\'' ) ) ?>
273
  <?php Buttons::renderCustom( null, 'btn-lg btn-default', esc_html__( 'Cancel', 'bookly' ), array( 'ng-click' => 'closeDialog()', 'data-dismiss' => 'modal' ) ) ?>
274
  </div>
backend/components/dialogs/customer/edit/resources/js/ng-customer.js CHANGED
@@ -72,7 +72,7 @@
72
  width: '100%',
73
  theme: 'bootstrap',
74
  allowClear: true,
75
- dropdownParent: jQuery('#bookly-customer-dialog'),
76
  language: {
77
  noResults: function () {
78
  return BooklyL10nCustDialog.noResultFound;
72
  width: '100%',
73
  theme: 'bootstrap',
74
  allowClear: true,
75
+ placeholder: '',
76
  language: {
77
  noResults: function () {
78
  return BooklyL10nCustDialog.noResultFound;
backend/components/dialogs/service/edit/templates/dialog.php CHANGED
@@ -20,7 +20,7 @@ use Bookly\Lib;
20
  <span class="bookly-nav-tabs-title"><?php esc_html_e( 'General', 'bookly' ) ?></span>
21
  </a>
22
  </li>
23
- <li class="bookly-js-service bookly-js-service-simple bookly-js-service-compound bookly-js-service-collaborative">
24
  <a id="bookly-services-time-tab" href="#bookly-services-time" data-toggle="tab">
25
  <i class="fa fa-clock fa-fw"></i>
26
  <span class="bookly-nav-tabs-title"><?php esc_html_e( 'Time', 'bookly' ) ?></span>
20
  <span class="bookly-nav-tabs-title"><?php esc_html_e( 'General', 'bookly' ) ?></span>
21
  </a>
22
  </li>
23
+ <li class="bookly-js-service bookly-js-service-simple bookly-js-service-collaborative">
24
  <a id="bookly-services-time-tab" href="#bookly-services-time" data-toggle="tab">
25
  <i class="fa fa-clock fa-fw"></i>
26
  <span class="bookly-nav-tabs-title"><?php esc_html_e( 'Time', 'bookly' ) ?></span>
backend/components/dialogs/staff/edit/Ajax.php CHANGED
@@ -161,6 +161,16 @@ class Ajax extends Lib\Base\Ajax
161
  if ( self::$staff ) {
162
  if ( self::parameter( 'holiday' ) == 'true' ) {
163
  $repeat = (int) ( self::parameter( 'repeat' ) == 'true' );
 
 
 
 
 
 
 
 
 
 
164
  $holidays = Lib\Entities\Holiday::query()
165
  ->whereBetween( 'date', $range->start()->value()->format( 'Y-m-d' ), $range->end()->value()->format( 'Y-m-d' ) )
166
  ->where( 'staff_id', self::$staff->getId() )
@@ -180,6 +190,13 @@ class Ajax extends Lib\Base\Ajax
180
  ->save();
181
  }
182
  } else {
 
 
 
 
 
 
 
183
  Lib\Entities\Holiday::query()
184
  ->delete()
185
  ->whereBetween( 'date', $range->start()->value()->format( 'Y-m-d' ), $range->end()->value()->format( 'Y-m-d' ) )
161
  if ( self::$staff ) {
162
  if ( self::parameter( 'holiday' ) == 'true' ) {
163
  $repeat = (int) ( self::parameter( 'repeat' ) == 'true' );
164
+ if ( ! $repeat ) {
165
+ Lib\Entities\Holiday::query( 'h' )
166
+ ->update()
167
+ ->set( 'h.repeat_event', 0 )
168
+ ->where( 'h.staff_id', self::$staff->getId() )
169
+ ->where( 'h.repeat_event', 1 )
170
+ ->whereRaw( 'CONVERT(DATE_FORMAT(h.date, \'1%%m%%d\'),UNSIGNED INTEGER) BETWEEN %d AND %d', array( $range->start()->value()->format( '1md' ), $range->end()->value()->format( '1md' ) ) )
171
+ ->execute();
172
+ }
173
+
174
  $holidays = Lib\Entities\Holiday::query()
175
  ->whereBetween( 'date', $range->start()->value()->format( 'Y-m-d' ), $range->end()->value()->format( 'Y-m-d' ) )
176
  ->where( 'staff_id', self::$staff->getId() )
190
  ->save();
191
  }
192
  } else {
193
+ Lib\Entities\Holiday::query( 'h' )
194
+ ->delete()
195
+ ->where( 'h.staff_id', self::$staff->getId() )
196
+ ->where( 'h.repeat_event', 1 )
197
+ ->whereRaw( 'CONVERT(DATE_FORMAT(h.date, \'1%%m%%d\'),UNSIGNED INTEGER) BETWEEN %d AND %d', array( $range->start()->value()->format( '1md' ), $range->end()->value()->format( '1md' ) ) )
198
+ ->execute();
199
+
200
  Lib\Entities\Holiday::query()
201
  ->delete()
202
  ->whereBetween( 'date', $range->start()->value()->format( 'Y-m-d' ), $range->end()->value()->format( 'Y-m-d' ) )
backend/components/dialogs/staff/edit/resources/js/staff-schedule.js CHANGED
@@ -65,7 +65,7 @@ jQuery(function ($) {
65
  hideInaccessibleBreaks($break_start, $break_end);
66
 
67
  $popover.find('.bookly-popover-close').on('click', function () {
68
- $popover.popover('hide');
69
  });
70
  });
71
 
@@ -125,7 +125,7 @@ jQuery(function ($) {
125
 
126
  .on('click', '.break-interval', function () {
127
  var $button = $(this);
128
- $('.popover').popover('hide');
129
  var break_id = $button.closest('.bookly-intervals-wrapper').data('break_id');
130
  $(this).popover({
131
  html: true,
@@ -152,7 +152,7 @@ jQuery(function ($) {
152
  hideInaccessibleBreaks($break_start, $break_end, true);
153
 
154
  $popover.find('.bookly-popover-close').on('click', function () {
155
- $popover.popover('hide');
156
  });
157
  })
158
 
@@ -193,7 +193,7 @@ jQuery(function ($) {
193
  .find('.break-interval')
194
  .text(response.data.interval);
195
  }
196
- $('.popover').popover('hide');
197
  } else {
198
  obj.options.booklyAlert({error: [response.data.message]});
199
  }
65
  hideInaccessibleBreaks($break_start, $break_end);
66
 
67
  $popover.find('.bookly-popover-close').on('click', function () {
68
+ $popover.prev('.bookly-js-toggle-popover').popover('toggle');
69
  });
70
  });
71
 
125
 
126
  .on('click', '.break-interval', function () {
127
  var $button = $(this);
128
+ $('.popover').prev('.bookly-js-toggle-popover').popover('toggle');
129
  var break_id = $button.closest('.bookly-intervals-wrapper').data('break_id');
130
  $(this).popover({
131
  html: true,
152
  hideInaccessibleBreaks($break_start, $break_end, true);
153
 
154
  $popover.find('.bookly-popover-close').on('click', function () {
155
+ $popover.prev('.bookly-js-toggle-popover').popover('toggle');
156
  });
157
  })
158
 
193
  .find('.break-interval')
194
  .text(response.data.interval);
195
  }
196
+ $('.popover').prev('.bookly-js-toggle-popover').popover('toggle');
197
  } else {
198
  obj.options.booklyAlert({error: [response.data.message]});
199
  }
backend/modules/appointments/Ajax.php CHANGED
@@ -152,6 +152,8 @@ class Ajax extends Lib\Base\Ajax
152
  }
153
  $query->addSelect( '(' . $sub_query . ') AS attachment' );
154
 
 
 
155
  if ( $filter['id'] != '' ) {
156
  $query->where( 'a.id', $filter['id'] );
157
  }
@@ -205,6 +207,8 @@ class Ajax extends Lib\Base\Ajax
205
  $query->limit( $limits['length'] )->offset( $limits['start'] );
206
  }
207
 
 
 
208
  $data = array();
209
  foreach ( $query->fetchArray() as $row ) {
210
  // Service duration.
@@ -268,6 +272,7 @@ class Ajax extends Lib\Base\Ajax
268
  'extras' => $extras,
269
  ),
270
  'status' => $row['status'],
 
271
  'payment' => $payment_title,
272
  'payment_raw_title' => $payment_raw_title,
273
  'notes' => $row['notes'],
152
  }
153
  $query->addSelect( '(' . $sub_query . ') AS attachment' );
154
 
155
+ Lib\Proxy\Locations::prepareAppointmentsQuery( $query );
156
+
157
  if ( $filter['id'] != '' ) {
158
  $query->where( 'a.id', $filter['id'] );
159
  }
207
  $query->limit( $limits['length'] )->offset( $limits['start'] );
208
  }
209
 
210
+ $locations_active = Lib\Config::locationsActive();
211
+
212
  $data = array();
213
  foreach ( $query->fetchArray() as $row ) {
214
  // Service duration.
272
  'extras' => $extras,
273
  ),
274
  'status' => $row['status'],
275
+ 'location' => $locations_active ? $row['location'] : '',
276
  'payment' => $payment_title,
277
  'payment_raw_title' => $payment_raw_title,
278
  'notes' => $row['notes'],
backend/modules/appointments/Page.php CHANGED
@@ -56,12 +56,19 @@ class Page extends Lib\Base\Component
56
  'zeroRecords' => __( 'No appointments for selected period.', 'bookly' ),
57
  'processing' => __( 'Processing...', 'bookly' ),
58
  'edit' => __( 'Edit', 'bookly' ),
59
- 'add_columns' => array( 'ratings' => Lib\Config::ratingsActive(), 'number_of_persons' => Lib\Config::groupBookingActive(), 'notes' => Lib\Config::showNotes(), 'attachments' => $show_attachments, ),
 
 
 
 
 
 
60
  'cf_columns' => $cf_columns,
61
  'filter' => (array) get_user_meta( get_current_user_id(), 'bookly_filter_appointments_list', true ),
62
  'no_result_found' => __( 'No result found', 'bookly' ),
63
  'searching' => __( 'Searching', 'bookly' ),
64
  'attachments' => __( 'Attachments', 'bookly' ),
 
65
  'tasks' => array(
66
  'enabled' => Lib\Config::tasksActive(),
67
  'title' => Proxy\Tasks::getFilterText(),
56
  'zeroRecords' => __( 'No appointments for selected period.', 'bookly' ),
57
  'processing' => __( 'Processing...', 'bookly' ),
58
  'edit' => __( 'Edit', 'bookly' ),
59
+ 'add_columns' => array(
60
+ 'ratings' => Lib\Config::ratingsActive(),
61
+ 'number_of_persons' => Lib\Config::groupBookingActive(),
62
+ 'notes' => Lib\Config::showNotes(),
63
+ 'attachments' => $show_attachments,
64
+ 'location' => Lib\Config::locationsActive(),
65
+ ),
66
  'cf_columns' => $cf_columns,
67
  'filter' => (array) get_user_meta( get_current_user_id(), 'bookly_filter_appointments_list', true ),
68
  'no_result_found' => __( 'No result found', 'bookly' ),
69
  'searching' => __( 'Searching', 'bookly' ),
70
  'attachments' => __( 'Attachments', 'bookly' ),
71
+ 'location' => __( 'Location', 'bookly' ),
72
  'tasks' => array(
73
  'enabled' => Lib\Config::tasksActive(),
74
  'title' => Proxy\Tasks::getFilterText(),
backend/modules/appointments/proxy/GroupBooking.php CHANGED
@@ -4,13 +4,12 @@ namespace Bookly\Backend\Modules\Appointments\Proxy;
4
  use Bookly\Lib;
5
 
6
  /**
7
- * Class Ratings
8
  * @package Bookly\Backend\Modules\Appointments\Proxy
9
  *
10
  * @method static array prepareExportTitles( array $titles ) Prepare titles for export.
11
  * @method static void renderExport() Render option title for export Appointments modal.
12
  * @method static void renderTableHeader() Render column title for Appointments table.
13
-
14
  */
15
  abstract class GroupBooking extends Lib\Base\Proxy
16
  {
4
  use Bookly\Lib;
5
 
6
  /**
7
+ * Class GroupBooking
8
  * @package Bookly\Backend\Modules\Appointments\Proxy
9
  *
10
  * @method static array prepareExportTitles( array $titles ) Prepare titles for export.
11
  * @method static void renderExport() Render option title for export Appointments modal.
12
  * @method static void renderTableHeader() Render column title for Appointments table.
 
13
  */
14
  abstract class GroupBooking extends Lib\Base\Proxy
15
  {
backend/modules/appointments/proxy/Locations.php ADDED
@@ -0,0 +1,17 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Bookly\Backend\Modules\Appointments\Proxy;
3
+
4
+ use Bookly\Lib;
5
+
6
+ /**
7
+ * Class Locations
8
+ * @package Bookly\Backend\Modules\Appointments\Proxy
9
+ *
10
+ * @method static array prepareExportTitles( array $titles ) Prepare titles for export.
11
+ * @method static void renderExport() Render option title for export Appointments modal.
12
+ * @method static void renderTableHeader() Render column title for Appointments table.
13
+ */
14
+ abstract class Locations extends Lib\Base\Proxy
15
+ {
16
+
17
+ }
backend/modules/appointments/resources/js/appointments.js CHANGED
@@ -116,6 +116,13 @@ jQuery(function($) {
116
  responsivePriority: 3
117
  });
118
  }
 
 
 
 
 
 
 
119
  columns = columns.concat([
120
  {
121
  data: 'service.title',
@@ -494,6 +501,7 @@ jQuery(function($) {
494
  width: '100%',
495
  theme: 'bootstrap',
496
  allowClear: true,
 
497
  language : {
498
  noResults: function() { return BooklyL10n.no_result_found; }
499
  }
@@ -504,6 +512,7 @@ jQuery(function($) {
504
  width: '100%',
505
  theme: 'bootstrap',
506
  allowClear: true,
 
507
  language : {
508
  noResults: function() { return BooklyL10n.no_result_found; },
509
  searching: function () { return BooklyL10n.searching; }
@@ -515,7 +524,7 @@ jQuery(function($) {
515
  data: function (params) {
516
  params.page = params.page || 1;
517
  return {
518
- action: $(this).data('action'),
519
  filter: params.term,
520
  page: params.page,
521
  csrf_token : BooklyL10n.csrf_token
116
  responsivePriority: 3
117
  });
118
  }
119
+ if (BooklyL10n.add_columns.location) {
120
+ columns.push({
121
+ data: 'location',
122
+ render: $.fn.dataTable.render.text(),
123
+ responsivePriority: 3
124
+ });
125
+ }
126
  columns = columns.concat([
127
  {
128
  data: 'service.title',
501
  width: '100%',
502
  theme: 'bootstrap',
503
  allowClear: true,
504
+ placeholder: '',
505
  language : {
506
  noResults: function() { return BooklyL10n.no_result_found; }
507
  }
512
  width: '100%',
513
  theme: 'bootstrap',
514
  allowClear: true,
515
+ placeholder: '',
516
  language : {
517
  noResults: function() { return BooklyL10n.no_result_found; },
518
  searching: function () { return BooklyL10n.searching; }
524
  data: function (params) {
525
  params.page = params.page || 1;
526
  return {
527
+ action: this.action === undefined ? $(this).data('ajax--action') : this.action,
528
  filter: params.term,
529
  page: params.page,
530
  csrf_token : BooklyL10n.csrf_token
backend/modules/appointments/templates/index.php CHANGED
@@ -65,7 +65,7 @@ use Bookly\Lib\Utils\DateTime;
65
  <div class="clearfix visible-md-block"></div>
66
  <div class="col-md-3 col-lg-2">
67
  <div class="form-group">
68
- <select class="form-control <?php echo $customers === false ? 'bookly-js-select-ajax' : 'bookly-js-select' ?>" id="bookly-filter-customer" data-placeholder="<?php esc_attr_e( 'Customer', 'bookly' ) ?>" data-action="bookly_get_customers_list">
69
  <?php if ( $customers !== false ) : ?>
70
  <?php foreach ( $customers as $customer ) : ?>
71
  <option value="<?php echo $customer['id'] ?>"><?php echo esc_html( $customer['full_name'] ) ?></option>
@@ -105,6 +105,7 @@ use Bookly\Lib\Utils\DateTime;
105
  <th><?php esc_html_e( 'Customer Phone', 'bookly' ) ?></th>
106
  <th><?php esc_html_e( 'Customer Email', 'bookly' ) ?></th>
107
  <?php Proxy\GroupBooking::renderTableHeader() ?>
 
108
  <th><?php echo esc_html( Common::getTranslatedOption( 'bookly_l10n_label_service' ) ) ?></th>
109
  <th><?php esc_html_e( 'Duration', 'bookly' ) ?></th>
110
  <th><?php esc_html_e( 'Status', 'bookly' ) ?></th>
65
  <div class="clearfix visible-md-block"></div>
66
  <div class="col-md-3 col-lg-2">
67
  <div class="form-group">
68
+ <select class="form-control <?php echo $customers === false ? 'bookly-js-select-ajax' : 'bookly-js-select' ?>" id="bookly-filter-customer" data-placeholder="<?php esc_attr_e( 'Customer', 'bookly' ) ?>" <?php echo $customers === false ? 'data-ajax--action' : 'data-action' ?>="bookly_get_customers_list">
69
  <?php if ( $customers !== false ) : ?>
70
  <?php foreach ( $customers as $customer ) : ?>
71
  <option value="<?php echo $customer['id'] ?>"><?php echo esc_html( $customer['full_name'] ) ?></option>
105
  <th><?php esc_html_e( 'Customer Phone', 'bookly' ) ?></th>
106
  <th><?php esc_html_e( 'Customer Email', 'bookly' ) ?></th>
107
  <?php Proxy\GroupBooking::renderTableHeader() ?>
108
+ <?php Proxy\Locations::renderTableHeader() ?>
109
  <th><?php echo esc_html( Common::getTranslatedOption( 'bookly_l10n_label_service' ) ) ?></th>
110
  <th><?php esc_html_e( 'Duration', 'bookly' ) ?></th>
111
  <th><?php esc_html_e( 'Status', 'bookly' ) ?></th>
backend/modules/customers/Ajax.php CHANGED
@@ -140,7 +140,10 @@ class Ajax extends Lib\Base\Ajax
140
  if ( $filter != '' ) {
141
  $search_value = Lib\Query::escape( $filter );
142
  $query
143
- ->whereLike( 'c.full_name', "%{$search_value}%" );
 
 
 
144
  }
145
 
146
  $query->limit( $max_results )->offset( ( $page - 1 ) * $max_results );
@@ -258,6 +261,7 @@ class Ajax extends Lib\Base\Ajax
258
  if ( ! Lib\Utils\Common::isCurrentUserSupervisor() ) {
259
  switch ( $action ) {
260
  case 'getCustomers':
 
261
  return Lib\Entities\Staff::query()
262
  ->where( 'wp_user_id', get_current_user_id() )
263
  ->count() > 0;
140
  if ( $filter != '' ) {
141
  $search_value = Lib\Query::escape( $filter );
142
  $query
143
+ ->whereLike( 'c.full_name', "%{$search_value}%" )
144
+ ->whereLike( 'c.phone', "%{$search_value}%", 'OR' )
145
+ ->whereLike( 'c.email', "%{$search_value}%", 'OR' )
146
+ ;
147
  }
148
 
149
  $query->limit( $max_results )->offset( ( $page - 1 ) * $max_results );
261
  if ( ! Lib\Utils\Common::isCurrentUserSupervisor() ) {
262
  switch ( $action ) {
263
  case 'getCustomers':
264
+ case 'getCustomersList':
265
  return Lib\Entities\Staff::query()
266
  ->where( 'wp_user_id', get_current_user_id() )
267
  ->count() > 0;
backend/modules/debug/Ajax.php CHANGED
@@ -11,6 +11,14 @@ use Bookly\Backend\Modules\Debug\Lib\Schema;
11
  */
12
  class Ajax extends Lib\Base\Ajax
13
  {
 
 
 
 
 
 
 
 
14
  /**
15
  * Export database data.
16
  */
@@ -26,6 +34,7 @@ class Ajax extends Lib\Base\Ajax
26
  $installer_class = $plugin::getRootNamespace() . '\Lib\Installer';
27
  /** @var Lib\Base\Installer $installer */
28
  $installer = new $installer_class();
 
29
 
30
  foreach ( $plugin::getEntityClasses() as $entity_class ) {
31
  $table_name = $entity_class::getTableName();
@@ -70,6 +79,14 @@ class Ajax extends Lib\Base\Ajax
70
  $data = json_decode( $json, true );
71
  /** @var Lib\Base\Plugin[] $bookly_plugins */
72
  $bookly_plugins = apply_filters( 'bookly_plugins', array() );
 
 
 
 
 
 
 
 
73
  foreach ( array_merge( array( 'bookly-responsive-appointment-booking-tool', 'bookly-addon-pro' ), array_keys( $bookly_plugins ) ) as $slug ) {
74
  if ( ! array_key_exists( $slug, $bookly_plugins ) ) {
75
  continue;
@@ -768,4 +785,49 @@ class Ajax extends Lib\Base\Ajax
768
 
769
  return $result !== false ? true : $wpdb->last_error;
770
  }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
771
  }
11
  */
12
  class Ajax extends Lib\Base\Ajax
13
  {
14
+ /**
15
+ * @inheritdoc
16
+ */
17
+ protected static function permissions()
18
+ {
19
+ return array( 'runTest' => 'anonymous' );
20
+ }
21
+
22
  /**
23
  * Export database data.
24
  */
34
  $installer_class = $plugin::getRootNamespace() . '\Lib\Installer';
35
  /** @var Lib\Base\Installer $installer */
36
  $installer = new $installer_class();
37
+ $result['plugins'][ $plugin::getBasename() ] = $plugin::getVersion();
38
 
39
  foreach ( $plugin::getEntityClasses() as $entity_class ) {
40
  $table_name = $entity_class::getTableName();
79
  $data = json_decode( $json, true );
80
  /** @var Lib\Base\Plugin[] $bookly_plugins */
81
  $bookly_plugins = apply_filters( 'bookly_plugins', array() );
82
+ /** @since Bookly 17.7 */
83
+ if ( isset( $data['plugins'] ) ) {
84
+ foreach ( $bookly_plugins as $plugin ) {
85
+ if ( ! array_key_exists( $plugin::getBasename(), $data['plugins'] ) ) {
86
+ deactivate_plugins( $plugin::getBasename(), true, is_network_admin() );
87
+ }
88
+ }
89
+ }
90
  foreach ( array_merge( array( 'bookly-responsive-appointment-booking-tool', 'bookly-addon-pro' ), array_keys( $bookly_plugins ) ) as $slug ) {
91
  if ( ! array_key_exists( $slug, $bookly_plugins ) ) {
92
  continue;
785
 
786
  return $result !== false ? true : $wpdb->last_error;
787
  }
788
+
789
+ public static function runTest()
790
+ {
791
+ $test_name = self::parameter( 'test_name' );
792
+ $test_class = '\Bookly\Backend\Modules\Debug\Lib\Tests\\' . $test_name;
793
+ /** @var \Bookly\Backend\Modules\Debug\Lib\Tests\Base $test */
794
+ $test = new $test_class( self::parameter( 'test_data' ) );
795
+ if ( $test->execute() ) {
796
+ wp_send_json_success();
797
+ } else {
798
+ wp_send_json_error( array( 'test_name' => $test->getName(), 'error' => $test->error() ) );
799
+ }
800
+ }
801
+
802
+ /**
803
+ *
804
+ */
805
+ public static function runTool()
806
+ {
807
+ $tool_name = self::parameter( 'tool_name' );
808
+ $tool_class = '\Bookly\Backend\Modules\Debug\Lib\Tools\\' . $tool_name;
809
+ /** @var \Bookly\Backend\Modules\Debug\Lib\Tools\Base $tool */
810
+ $tool = new $tool_class( self::parameter( 'tool_data' ) );
811
+ if ( $tool->execute() ) {
812
+ wp_send_json_success( array( 'test_name' => $tool->getName(), 'alerts' => $tool->alerts() ) );
813
+ } else {
814
+ wp_send_json_error( array( 'test_name' => $tool->getName(), 'alerts' => $tool->alerts() ) );
815
+ }
816
+
817
+ }
818
+
819
+ /**
820
+ * Override parent method to exclude actions from CSRF token verification.
821
+ *
822
+ * @param string $action
823
+ * @return bool
824
+ */
825
+ protected static function csrfTokenValid( $action = null )
826
+ {
827
+ $excluded_actions = array(
828
+ 'runTest',
829
+ );
830
+
831
+ return in_array( $action, $excluded_actions ) || parent::csrfTokenValid( $action );
832
+ }
833
  }
backend/modules/debug/Page.php CHANGED
@@ -99,15 +99,23 @@ class Page extends Lib\Base\Component
99
  $debug[ $table_name ]['status'] = self::TABLE_STATUS_WARNING;
100
  }
101
  }
102
-
103
  } else {
104
  $debug[ $table_name ]['status'] = self::TABLE_STATUS_ERROR;
105
  }
106
  }
107
  }
108
 
 
 
 
 
 
 
 
 
109
  wp_localize_script( 'bookly-debug.js', 'BooklyL10n', array(
110
  'csrfToken' => Lib\Utils\Common::getCsrfToken(),
 
111
  'charsetCollate' => $wpdb->has_cap( 'collation' )
112
  ? $wpdb->get_charset_collate()
113
  : 'DEFAULT CHARACTER SET = utf8 COLLATE = utf8_general_ci'
@@ -115,6 +123,18 @@ class Page extends Lib\Base\Component
115
 
116
  ksort( $debug );
117
  $import_status = self::parameter( 'status' );
118
- self::renderTemplate( 'index', compact( 'debug', 'import_status' ) );
 
 
 
 
 
 
 
 
 
 
 
 
119
  }
120
  }
99
  $debug[ $table_name ]['status'] = self::TABLE_STATUS_WARNING;
100
  }
101
  }
 
102
  } else {
103
  $debug[ $table_name ]['status'] = self::TABLE_STATUS_ERROR;
104
  }
105
  }
106
  }
107
 
108
+ $tests = array();
109
+ foreach ( glob( __DIR__ . '/lib/tests/*.php' ) as $path ) {
110
+ $test = basename( $path, '.php' );
111
+ if ( $test !== 'Base' ) {
112
+ $tests[] = $test;
113
+ }
114
+ }
115
+
116
  wp_localize_script( 'bookly-debug.js', 'BooklyL10n', array(
117
  'csrfToken' => Lib\Utils\Common::getCsrfToken(),
118
+ 'tests' => $tests,
119
  'charsetCollate' => $wpdb->has_cap( 'collation' )
120
  ? $wpdb->get_charset_collate()
121
  : 'DEFAULT CHARACTER SET = utf8 COLLATE = utf8_general_ci'
123
 
124
  ksort( $debug );
125
  $import_status = self::parameter( 'status' );
126
+ $tools = '';
127
+ foreach ( glob( __DIR__ . '/lib/tools/*.php' ) as $path ) {
128
+ $tool = basename( $path, '.php' );
129
+ if ( $tool !== 'Base' ) {
130
+ $tool_class = '\Bookly\Backend\Modules\Debug\Lib\Tools\\' . $tool;
131
+ if ( class_exists( $tool_class, true ) ) {
132
+ /** @var \Bookly\Backend\Modules\Debug\Lib\Tools\Base $tool */
133
+ $tool = new $tool_class;
134
+ $tools .= $tool->getMenu();
135
+ }
136
+ }
137
+ }
138
+ self::renderTemplate( 'index', compact( 'debug', 'import_status', 'tools' ) );
139
  }
140
  }
backend/modules/debug/lib/QueryBuilder.php CHANGED
@@ -490,7 +490,7 @@ class QueryBuilder
490
  LEFT JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS kcu ON ( rc.CONSTRAINT_NAME = kcu.CONSTRAINT_NAME )
491
  WHERE unique_CONSTRAINT_SCHEMA = SCHEMA()
492
  AND rc.CONSTRAINT_NAME LIKE 'wp_bookly_%'
493
- GROUP BY rc.CONSTRAINT_NAME
494
  */
495
 
496
  $rules = array (
490
  LEFT JOIN INFORMATION_SCHEMA.KEY_COLUMN_USAGE AS kcu ON ( rc.CONSTRAINT_NAME = kcu.CONSTRAINT_NAME )
491
  WHERE unique_CONSTRAINT_SCHEMA = SCHEMA()
492
  AND rc.CONSTRAINT_NAME LIKE 'wp_bookly_%'
493
+ ORDER BY rc.CONSTRAINT_NAME
494
  */
495
 
496
  $rules = array (
backend/modules/debug/lib/tests/Base.php ADDED
@@ -0,0 +1,66 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Bookly\Backend\Modules\Debug\Lib\Tests;
3
+
4
+ /**
5
+ * Class Base
6
+ * @package Bookly\Backend\Modules\Debug\Lib\Tests
7
+ */
8
+ abstract class Base
9
+ {
10
+ /** @var array */
11
+ protected $errors = array();
12
+ /** @var mixed */
13
+ protected $data;
14
+ /** @var string */
15
+ protected $name;
16
+
17
+ /**
18
+ * Base constructor.
19
+ *
20
+ * @param array|string|null $data
21
+ */
22
+ public function __construct( $data = null )
23
+ {
24
+ $this->data = $data;
25
+ }
26
+
27
+ /**
28
+ * Execute test
29
+ *
30
+ * @return bool
31
+ */
32
+ public function execute()
33
+ {
34
+ return true;
35
+ }
36
+
37
+ /**
38
+ * Get test error.
39
+ *
40
+ * @return string
41
+ */
42
+ public function error()
43
+ {
44
+ return implode( '<br>', $this->errors );
45
+ }
46
+
47
+ /**
48
+ * Add error.
49
+ *
50
+ * @param string $error
51
+ */
52
+ public function addError($error)
53
+ {
54
+ $this->errors[] = $error;
55
+ }
56
+
57
+ /**
58
+ * Get test name.
59
+ *
60
+ * @return string
61
+ */
62
+ public function getName()
63
+ {
64
+ return $this->name;
65
+ }
66
+ }
backend/modules/debug/lib/tests/Session.php ADDED
@@ -0,0 +1,53 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Bookly\Backend\Modules\Debug\Lib\Tests;
3
+
4
+ /**
5
+ * Class Session
6
+ * @package Bookly\Backend\Modules\Debug\Lib\Tests
7
+ */
8
+ class Session extends Base
9
+ {
10
+ protected $name = 'Check php session';
11
+
12
+ /** @inheritDoc */
13
+ public function execute()
14
+ {
15
+ if ( $this->data === null ) {
16
+ $params = array(
17
+ 'action' => 'bookly_run_test',
18
+ 'test_name' => 'Session',
19
+ 'test_data' => 'init',
20
+ );
21
+
22
+ $url = add_query_arg( $params, admin_url( 'admin-ajax.php' ) );
23
+ $response = wp_remote_get( $url, array(
24
+ 'timeout' => 60,
25
+ ) );
26
+ $json = json_decode( wp_remote_retrieve_body( $response ), true );
27
+ if ( isset( $json['success'] ) && $json['success'] ) {
28
+ $params['test_data'] = 'check';
29
+ $url = add_query_arg( $params, admin_url( 'admin-ajax.php' ) );
30
+ $response = wp_remote_get( $url, array(
31
+ 'timeout' => 60,
32
+ 'cookies' => wp_remote_retrieve_cookies( $response ),
33
+ ) );
34
+ $json = json_decode( wp_remote_retrieve_body( $response ), true );
35
+ if ( isset( $json['success'] ) && $json['success'] ) {
36
+ return true;
37
+ }
38
+ }
39
+ $this->addError( 'Failed' );
40
+ return false;
41
+ } elseif ( $this->data === 'init' ) {
42
+ $_SESSION['bookly-test-session'] = 2;
43
+ wp_send_json_success();
44
+ } elseif ( $this->data === 'check' ) {
45
+ $_SESSION['bookly-test-session'] === 2
46
+ ? wp_send_json_success()
47
+ : wp_send_json_error();
48
+ }
49
+
50
+ return false;
51
+ }
52
+
53
+ }
backend/modules/debug/lib/tests/Slug.php ADDED
@@ -0,0 +1,35 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Bookly\Backend\Modules\Debug\Lib\Tests;
3
+
4
+ use Bookly\Lib;
5
+
6
+ /**
7
+ * Class Slug
8
+ * @package Bookly\Backend\Modules\Debug\Lib\Tests
9
+ */
10
+ class Slug extends Base
11
+ {
12
+ protected $name = 'Check plugins dirrectories';
13
+
14
+ /** @inheritDoc */
15
+ public function execute()
16
+ {
17
+ /**
18
+ * @var Lib\Base\Plugin $plugin
19
+ */
20
+ foreach ( apply_filters( 'bookly_plugins', array() ) as $slug => $plugin ) {
21
+ $slug = strtolower( preg_replace( '([A-Z\d])', '-$0', $plugin::getRootNamespace() ) );
22
+ if ( $slug === '-bookly' ) {
23
+ $slug = 'bookly-responsive-appointment-booking-tool';
24
+ } else {
25
+ $slug = str_replace( '-bookly-', 'bookly-addon-', $slug );
26
+ }
27
+
28
+ if ( $slug !== $plugin::getSlug() ) {
29
+ $this->addError( $plugin::getTitle() . ' incorrect slug<br>expected=' . $slug . '<br> real=' . $plugin::getSlug() );
30
+ }
31
+ }
32
+
33
+ return empty( $this->errors );
34
+ }
35
+ }
backend/modules/debug/lib/tests/Socket.php ADDED
@@ -0,0 +1,42 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Bookly\Backend\Modules\Debug\Lib\Tests;
3
+
4
+ use Bookly\Lib\API;
5
+ use Bookly\Lib\SMS;
6
+
7
+ /**
8
+ * Class Socket
9
+ * @package Bookly\Backend\Modules\Debug\Lib\Tests
10
+ */
11
+ class Socket extends Base
12
+ {
13
+ protected $name = 'Check API servers availability';
14
+
15
+ /** @inheritDoc */
16
+ public function execute()
17
+ {
18
+ $port = 443;
19
+ $timeout = 1;
20
+ $hosts = array( parse_url( API::API_URL, PHP_URL_HOST ), parse_url( SMS::API_URL, PHP_URL_HOST ) );
21
+ $available = true;
22
+ foreach ( $hosts as $host ) {
23
+ $fp = fsockopen( $host, $port, $errno, $errstr, $timeout );
24
+ if ( ! $fp ) {
25
+ $available = false;
26
+ $this->addError( $host . ' ' . $errstr );
27
+ }
28
+ }
29
+
30
+ if ( $available ) {
31
+ return true;
32
+ } else {
33
+ foreach ( array( 'www.google.com', 'www.amazon.com' ) as $host ) {
34
+ $time = microtime( true );
35
+ fsockopen( $host, $port, $errno, $errstr, $timeout );
36
+ $this->addError( $host . "\t time=" . round( ( ( microtime( true ) - $time ) * 1000 ), 0 ) . ' ms' );
37
+ }
38
+ }
39
+ return false;
40
+ }
41
+
42
+ }
backend/modules/debug/lib/tools/Base.php ADDED
@@ -0,0 +1,85 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Bookly\Backend\Modules\Debug\Lib\Tools;
3
+
4
+ /**
5
+ * Class Base
6
+ * @package Bookly\Backend\Modules\Debug\Lib\Tools
7
+ */
8
+ abstract class Base
9
+ {
10
+ /** @var mixed */
11
+ protected $data;
12
+ /** @var string */
13
+ protected $name;
14
+ /** @var string */
15
+ protected $tool;
16
+ /** @var array */
17
+ protected $alerts = array( 'success' => array(), 'error' => array() );
18
+
19
+ /**
20
+ * Base constructor.
21
+ * @param string $data
22
+ */
23
+ public function __construct( $data = null )
24
+ {
25
+ $this->data = $data;
26
+ $path = explode('\\', get_called_class());
27
+ $this->tool = array_pop($path);
28
+ }
29
+
30
+ /**
31
+ * Execute tool.
32
+ *
33
+ * @return bool
34
+ */
35
+ public function execute()
36
+ {
37
+ return true;
38
+ }
39
+
40
+ /**
41
+ * Get allerts.
42
+ *
43
+ * @return array
44
+ */
45
+ public function alerts()
46
+ {
47
+ return $this->alerts;
48
+ }
49
+
50
+ /**
51
+ * Add error.
52
+ *
53
+ * @param string $error
54
+ */
55
+ public function addError($error)
56
+ {
57
+ $this->alerts['error'][] = $error;
58
+ }
59
+
60
+ /**
61
+ * Add success info.
62
+ *
63
+ * @param string $info
64
+ */
65
+ public function addInfo($info)
66
+ {
67
+ $this->alerts['success'][] = $info;
68
+ }
69
+
70
+ /**
71
+ * Get tool name.
72
+ *
73
+ * @return string
74
+ */
75
+ public function getName()
76
+ {
77
+ return $this->name;
78
+ }
79
+
80
+ /** @inheritDoc */
81
+ public function getMenu()
82
+ {
83
+ return '';
84
+ }
85
+ }
backend/modules/debug/lib/tools/Plugins.php ADDED
@@ -0,0 +1,139 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+ namespace Bookly\Backend\Modules\Debug\Lib\Tools;
3
+
4
+ /**
5
+ * Class Plugins
6
+ * @package Bookly\Backend\Modules\Debug\Lib\Tools
7
+ */
8
+ class Plugins extends Base
9
+ {
10
+ protected $plugins = array(
11
+ 'ari-adminer' => array(
12
+ 'name' => 'ARI',
13
+ 'source' => 'https://downloads.wordpress.org/plugin/ari-adminer.zip',
14
+ 'basename' => 'ari-adminer/ari-adminer.php',
15
+ ),
16
+ 'wp-file-manager' => array(
17
+ 'name' => 'File Manager',
18
+ 'source' => 'wordpress',
19
+ 'basename' => 'wp-file-manager/file_folder_manager.php',
20
+ ),
21
+ 'wp-mail-logging' => array(
22
+ 'name' => 'WP Mail Logging',
23
+ 'source' => 'wordpress',
24
+ 'basename' => 'wp-mail-logging/wp-mail-logging.php',
25
+ ),
26
+ 'code-snippets' => array(
27
+ 'name' => 'Code Snippets',
28
+ 'source' => 'wordpress',
29
+ 'basename' => 'code-snippets/code-snippets.php',
30
+ ),
31
+ );
32
+
33
+ protected $name = 'Plugin manager';
34
+
35
+ /** @inheritDoc */
36
+ public function getMenu()
37
+ {
38
+ $menu = '';
39
+ foreach ( $this->plugins as $slug => $data ) {
40
+ if ( is_plugin_active( $data['basename'] ) ) {
41
+ $action = 'delete';
42
+ } else {
43
+ if ( file_exists( WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . $data['basename'] ) ) {
44
+ $action = 'activate';
45
+ } else {
46
+ $action = 'install';
47
+ }
48
+ }
49
+
50
+ $menu .= sprintf( '<li><a href="#" data-tool="%s" data-plugin="%s" data-action="%s">%s (%s)</li>', $this->tool, $slug, $action, $data['name'], $action );
51
+ }
52
+
53
+ return $menu;
54
+ }
55
+
56
+ /** @inheritDoc */
57
+ public function execute()
58
+ {
59
+ $plugin = $this->data['plugin'];
60
+ switch ( $this->data['action'] ) {
61
+ case 'activate':
62
+ $state = activate_plugin( $this->getBasename( $plugin ) );
63
+ if ( $state === null ) {
64
+ $this->addInfo( 'Plugin ' . $this->plugins[ $plugin ]['name'] . ' activated successfully' );
65
+ } elseif ( $state instanceof \WP_Error ) {
66
+ $this->addError( implode( '<br>', $state->get_error_messages() ) );
67
+ } else {
68
+ $this->addError( 'Plugin ' . $this->plugins[ $plugin ]['name'] . ' not activated' );
69
+ }
70
+ return $state === null;
71
+ case 'delete':
72
+ deactivate_plugins( array( $this->getBasename( $plugin ) ) );
73
+ $state = delete_plugins( array( $this->getBasename( $plugin ) ) );
74
+ if ( $state === true ) {
75
+ $this->addInfo( 'Plugin ' . $this->plugins[ $plugin ]['name'] . ' deleted successfully' );
76
+ } elseif ( $state instanceof \WP_Error ) {
77
+ $this->addError( implode( '<br>', $state->get_error_messages() ) );
78
+ } else {
79
+ $this->addError( 'Plugin ' . $this->plugins[ $plugin ]['name'] . ' not deleted' );
80
+ }
81
+ return $state === null;
82
+ case 'install':
83
+ $version = '';
84
+ if ( ! file_exists( WP_PLUGIN_DIR . DIRECTORY_SEPARATOR . $this->getBasename( $plugin ) ) ) {
85
+ if ( ! class_exists( 'Plugin_Upgrader', false ) ) {
86
+ require_once ABSPATH . 'wp-admin/includes/class-wp-upgrader.php';
87
+ }
88
+ $upgrader = new \Plugin_Upgrader( new \Automatic_Upgrader_Skin() );
89
+ if ( $this->plugins[ $plugin ]['source'] == 'wordpress' ) {
90
+ if ( ! function_exists( 'plugins_api' ) ) {
91
+ require_once ABSPATH . 'wp-admin/includes/plugin-install.php';
92
+ }
93
+ $response = plugins_api(
94
+ 'plugin_information',
95
+ array(
96
+ 'slug' => $plugin,
97
+ )
98
+ );
99
+ if ( $response instanceof \WP_Error ) {
100
+ $this->addError( implode( '<br>', $response->get_error_messages() ) );
101
+
102
+ return false;
103
+ }
104
+ $source = $response->download_link;
105
+ $version = ' v' . $response->version;
106
+ } else {
107
+ $source = $this->plugins[ $plugin ]['source'];
108
+ }
109
+
110
+ $state = $upgrader->install( $source );
111
+ } else {
112
+ $state = true;
113
+ }
114
+
115
+ if ( $state === true ) {
116
+ activate_plugin( $this->getBasename( $plugin ) );
117
+ $this->addInfo( 'Plugin ' . $this->plugins[ $plugin ]['name'] . $version . ' installed successfully' );
118
+ } elseif ( $state instanceof \WP_Error ) {
119
+ $this->addError( implode( '<br>', $state->get_error_messages() ) );
120
+ } else {
121
+ $this->addError( 'Plugin ' . $this->plugins[ $plugin ]['name'] . ' not installed' );
122
+ }
123
+ return $state === true;
124
+ }
125
+
126
+ $this->addError( 'Unknown action' );
127
+ return false;
128
+ }
129
+
130
+ /**
131
+ * @param string $slug
132
+ * @return mixed
133
+ */
134
+ private function getBasename( $slug )
135
+ {
136
+ return $this->plugins[ $slug ]['basename'];
137
+ }
138
+
139
+ }
backend/modules/debug/resources/js/debug.js CHANGED
@@ -3,8 +3,10 @@ jQuery(function($) {
3
  $dropConstraintModal = $('#bookly-js-drop-constraint'),
4
  $columnModal = $('#bookly-js-add-field'),
5
  $tableModal = $('#bookly-js-create-table'),
 
 
6
  $status,
7
- $create;
8
 
9
  $('.collapse').collapse('hide');
10
 
@@ -92,6 +94,7 @@ jQuery(function($) {
92
  $('[data-action=drop-constraint]')
93
  .on('click', function (e) {
94
  e.preventDefault();
 
95
  $status = $(this).closest('td');
96
  let $tr = $(this).closest('tr'),
97
  table = $tr.closest('.panel-collapse').attr('id'),
@@ -269,8 +272,8 @@ jQuery(function($) {
269
  $('[data-action=fix-create-table]')
270
  .on('click', function (e) {
271
  e.preventDefault();
272
- $create = $(this);
273
- let table = $create.closest('.panel').find('.panel-collapse').attr('id');
274
  $('.bookly-js-loading:first-child', $tableModal).addClass('bookly-loading').removeClass('collapse');
275
  $('.bookly-js-loading:last-child', $tableModal).addClass('collapse');
276
  $tableModal.modal();
@@ -318,8 +321,8 @@ jQuery(function($) {
318
  if (response.success) {
319
  booklyAlert({success: [response.data.message]});
320
  $tableModal.modal('hide');
321
- $create.closest('.panel').find('.panel-body').html('Refresh the current page');
322
- $create.remove();
323
  } else {
324
  booklyAlert({error : [response.data.message]});
325
  }
@@ -351,8 +354,7 @@ jQuery(function($) {
351
  if (response.success) {
352
  booklyAlert({success: [response.data.message]});
353
  $dropConstraintModal.modal('hide');
354
- $create.closest('.panel').find('.panel-body').html('Refresh the current page');
355
- $create.remove();
356
  } else {
357
  booklyAlert({error : [response.data.message]});
358
  }
@@ -364,4 +366,64 @@ jQuery(function($) {
364
  }
365
  });
366
  });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
367
  });
3
  $dropConstraintModal = $('#bookly-js-drop-constraint'),
4
  $columnModal = $('#bookly-js-add-field'),
5
  $tableModal = $('#bookly-js-create-table'),
6
+ $tools = $('.bookly-js-tools'),
7
+ $toolsDropDown = $('#tools-dropdown'),
8
  $status,
9
+ $buttonAction;
10
 
11
  $('.collapse').collapse('hide');
12
 
94
  $('[data-action=drop-constraint]')
95
  .on('click', function (e) {
96
  e.preventDefault();
97
+ $buttonAction = $(this);
98
  $status = $(this).closest('td');
99
  let $tr = $(this).closest('tr'),
100
  table = $tr.closest('.panel-collapse').attr('id'),
272
  $('[data-action=fix-create-table]')
273
  .on('click', function (e) {
274
  e.preventDefault();
275
+ $buttonAction = $(this);
276
+ let table = $buttonAction.closest('.panel').find('.panel-collapse').attr('id');
277
  $('.bookly-js-loading:first-child', $tableModal).addClass('bookly-loading').removeClass('collapse');
278
  $('.bookly-js-loading:last-child', $tableModal).addClass('collapse');
279
  $tableModal.modal();
321
  if (response.success) {
322
  booklyAlert({success: [response.data.message]});
323
  $tableModal.modal('hide');
324
+ $buttonAction.closest('.panel').find('.panel-body').html('Refresh the current page');
325
+ $buttonAction.remove();
326
  } else {
327
  booklyAlert({error : [response.data.message]});
328
  }
354
  if (response.success) {
355
  booklyAlert({success: [response.data.message]});
356
  $dropConstraintModal.modal('hide');
357
+ $buttonAction.closest('tr').remove();
 
358
  } else {
359
  booklyAlert({error : [response.data.message]});
360
  }
366
  }
367
  });
368
  });
369
+
370
+ $tools.on('click', '[data-action]', function (e) {
371
+ e.preventDefault();
372
+ let ladda = Ladda.create($toolsDropDown[0]),
373
+ data = $(this).data();
374
+ ladda.start();
375
+ $.ajax({
376
+ url: ajaxurl,
377
+ type: 'POST',
378
+ data: {
379
+ action: 'bookly_run_tool',
380
+ tool_data: data,
381
+ tool_name: data.tool,
382
+ csrf_token: BooklyL10n.csrfToken
383
+ },
384
+ dataType: 'json',
385
+ error: function () {
386
+ booklyAlert({error: [test + ' error: in query execution.']});
387
+ }
388
+ }).then(response => {
389
+ booklyAlert(response.data.alerts);
390
+ ladda.stop();
391
+ });
392
+ });
393
+
394
+ $('#bookly-all-test').on('click', function () {
395
+ let ladda = Ladda.create(this),
396
+ count = BooklyL10n.tests.length,
397
+ error_count = 0,
398
+ errors = []
399
+ ladda.start();
400
+ ladda.setProgress(0.03);
401
+
402
+ BooklyL10n.tests.forEach(test => {
403
+ $.ajax({
404
+ url: ajaxurl,
405
+ type: 'POST',
406
+ data: {
407
+ action: 'bookly_run_test',
408
+ test_name: test
409
+ },
410
+ dataType: 'json',
411
+ error: function () {
412
+ booklyAlert({error: [test + ' error: in query execution.']});
413
+ }
414
+ }).then(response => {
415
+ if (!response.success) {
416
+ error_count += 1;
417
+ booklyAlert({error: ['Test: ' + response.data.test_name + '<p><pre>' + response.data.error + '</pre></p>']});
418
+ }
419
+
420
+ count -= 1;
421
+ ladda.setProgress(1 - count / BooklyL10n.tests.length);
422
+ if (count <= 0) {
423
+ ladda.stop();
424
+ booklyAlert({success: [(BooklyL10n.tests.length - error_count) + '/' + BooklyL10n.tests.length + ' tests complete successfully']});
425
+ }
426
+ });
427
+ })
428
+ }).trigger('click');
429
  });
backend/modules/debug/templates/index.php CHANGED
@@ -33,7 +33,17 @@ use Bookly\Backend\Components\Controls\Buttons;
33
  </div>
34
  </form>
35
  </div>
36
- <div class="bookly-data-button pull-right">
 
 
 
 
 
 
 
 
 
 
37
  <?php Bookly\Backend\Components\Controls\Buttons::renderCustom( 'bookly-fix-all-silent', 'btn-success btn-lg', 'Fix database schema ...' ) ?>
38
  </div>
39
  </div>
33
  </div>
34
  </form>
35
  </div>
36
+ <div class="bookly-data-button pull-right" >
37
+ <div class="dropdown pull-left bookly-margin-right-xs">
38
+ <button class="btn btn-lg btn-default dropdown-toggle" type="button" data-spinner-size="40" data-style="zoom-in" data-spinner-color="rgb(62, 66, 74)" id="tools-dropdown" data-toggle="dropdown" aria-haspopup="true" aria-expanded="true">
39
+ <span class="ladda-label">Tools</span>
40
+ <span class="caret"></span>
41
+ </button>
42
+ <ul class="dropdown-menu bookly-js-tools" aria-labelledby="dropdownMenu1">
43
+ <?php echo $tools ?>
44
+ </ul>
45
+ </div>
46
+ <?php Bookly\Backend\Components\Controls\Buttons::renderCustom( 'bookly-all-test', 'btn-default btn-lg', 'Tests', array( 'data-spinner-color' => 'rgb(62, 66, 74)' ) ) ?>
47
  <?php Bookly\Backend\Components\Controls\Buttons::renderCustom( 'bookly-fix-all-silent', 'btn-success btn-lg', 'Fix database schema ...' ) ?>
48
  </div>
49
  </div>
backend/modules/notifications/templates/_test_email_modal.php CHANGED
@@ -15,7 +15,7 @@ use Bookly\Backend\Components\Controls\Inputs;
15
  <div class="col-md-12">
16
  <div class="form-group">
17
  <label for="bookly_test_to_email"><?php esc_html_e( 'To email', 'bookly' ) ?></label>
18
- <input id="bookly_test_to_email" class="form-control" type="text" name="to_email" value="admin@example.com"/>
19
  </div>
20
  </div>
21
  </div>
15
  <div class="col-md-12">
16
  <div class="form-group">
17
  <label for="bookly_test_to_email"><?php esc_html_e( 'To email', 'bookly' ) ?></label>
18
+ <input id="bookly_test_to_email" class="form-control" type="text" name="to_email" value="admin@bookly.local.com"/>
19
  </div>
20
  </div>
21
  </div>
backend/modules/payments/resources/js/payments.js CHANGED
@@ -42,6 +42,7 @@ jQuery(function($) {
42
  .val(null)
43
  .select2({
44
  allowClear: true,
 
45
  theme: 'bootstrap',
46
  language: {
47
  noResults: function() { return BooklyL10n.noResultFound; }
@@ -53,6 +54,7 @@ jQuery(function($) {
53
  width: '100%',
54
  theme: 'bootstrap',
55
  allowClear: true,
 
56
  language : {
57
  noResults: function() { return BooklyL10n.no_result_found; },
58
  searching: function () { return BooklyL10n.searching; }
@@ -64,7 +66,7 @@ jQuery(function($) {
64
  data: function (params) {
65
  params.page = params.page || 1;
66
  return {
67
- action: $(this).data('action'),
68
  filter: params.term,
69
  page: params.page,
70
  csrf_token : BooklyL10n.csrfToken
42
  .val(null)
43
  .select2({
44
  allowClear: true,
45
+ placeholder: '',
46
  theme: 'bootstrap',
47
  language: {
48
  noResults: function() { return BooklyL10n.noResultFound; }
54
  width: '100%',
55
  theme: 'bootstrap',
56
  allowClear: true,
57
+ placeholder: '',
58
  language : {
59
  noResults: function() { return BooklyL10n.no_result_found; },
60
  searching: function () { return BooklyL10n.searching; }
66
  data: function (params) {
67
  params.page = params.page || 1;
68
  return {
69
+ action: this.action === undefined ? $(this).data('ajax--action') : this.action,
70
  filter: params.term,
71
  page: params.page,
72
  csrf_token : BooklyL10n.csrfToken
backend/modules/payments/templates/index.php CHANGED
@@ -42,7 +42,7 @@ use Bookly\Backend\Modules\Payments\Proxy;
42
  </div>
43
  <div class="col-md-1 col-lg-2">
44
  <div class="form-group">
45
- <select class="form-control <?php echo $customers === false ? 'bookly-js-select-ajax' : 'bookly-js-select' ?>" id="bookly-filter-customer" data-placeholder="<?php esc_attr_e( 'Customer', 'bookly' ) ?>" data-action="bookly_get_customers_list">
46
  <?php if ( $customers !== false ) : ?>
47
  <?php foreach ( $customers as $customer ) : ?>
48
  <option value="<?php echo $customer['id'] ?>"><?php echo esc_html( $customer['full_name'] ) ?></option>
42
  </div>
43
  <div class="col-md-1 col-lg-2">
44
  <div class="form-group">
45
+ <select class="form-control <?php echo $customers === false ? 'bookly-js-select-ajax' : 'bookly-js-select' ?>" id="bookly-filter-customer" data-placeholder="<?php esc_attr_e( 'Customer', 'bookly' ) ?>" <?php echo $customers === false ? 'data-ajax--action' : 'data-action' ?>="bookly_get_customers_list">
46
  <?php if ( $customers !== false ) : ?>
47
  <?php foreach ( $customers as $customer ) : ?>
48
  <option value="<?php echo $customer['id'] ?>"><?php echo esc_html( $customer['full_name'] ) ?></option>
backend/modules/services/templates/time.php CHANGED
@@ -35,7 +35,7 @@ use Bookly\Backend\Modules\Services\Proxy;
35
  </div>
36
  </div>
37
  </div>
38
- <div class="form-group">
39
  <label for="bookly-service-slot-length">
40
  <?php esc_html_e( 'Time slot length', 'bookly' ) ?>
41
  </label>
35
  </div>
36
  </div>
37
  </div>
38
+ <div class="form-group bookly-js-service bookly-js-service-simple bookly-js-service-collaborative">
39
  <label for="bookly-service-slot-length">
40
  <?php esc_html_e( 'Time slot length', 'bookly' ) ?>
41
  </label>
backend/modules/settings/Ajax.php CHANGED
@@ -58,8 +58,8 @@ class Ajax extends Page
58
  }
59
  }
60
  } else {
61
- $ids = Lib\Entities\Holiday::query()
62
- ->whereBetween( 'date', $range->start()->value()->format( 'Y-m-d' ), $range->end()->value()->format( 'Y-m-d' ) )
63
  ->where( 'staff_id', null )
64
  ->fetchCol( 'id' );
65
  Lib\Entities\Holiday::query()
58
  }
59
  }
60
  } else {
61
+ $ids = Lib\Entities\Holiday::query( 'h' )
62
+ ->whereRaw( 'CONVERT(DATE_FORMAT(h.date, \'1%%m%%d\'),UNSIGNED INTEGER) BETWEEN %d AND %d', array( $range->start()->value()->format( '1md' ), $range->end()->value()->format( '1md' ) ) )
63
  ->where( 'staff_id', null )
64
  ->fetchCol( 'id' );
65
  Lib\Entities\Holiday::query()
backend/modules/settings/Page.php CHANGED
@@ -75,6 +75,7 @@ class Page extends Lib\Base\Ajax
75
  update_option( 'bookly_gen_use_client_time_zone', (int) self::parameter( 'bookly_gen_use_client_time_zone' ) );
76
  update_option( 'bookly_gen_collect_stats', self::parameter( 'bookly_gen_collect_stats' ) );
77
  update_option( 'bookly_app_show_powered_by', self::parameter( 'bookly_app_show_powered_by' ) );
 
78
  $alert['success'][] = __( 'Settings saved.', 'bookly' );
79
  break;
80
  case 'url': // URL settings form.
75
  update_option( 'bookly_gen_use_client_time_zone', (int) self::parameter( 'bookly_gen_use_client_time_zone' ) );
76
  update_option( 'bookly_gen_collect_stats', self::parameter( 'bookly_gen_collect_stats' ) );
77
  update_option( 'bookly_app_show_powered_by', self::parameter( 'bookly_app_show_powered_by' ) );
78
+ update_option( 'bookly_app_prevent_caching', (int) self::parameter( 'bookly_app_prevent_caching' ) );
79
  $alert['success'][] = __( 'Settings saved.', 'bookly' );
80
  break;
81
  case 'url': // URL settings form.
backend/modules/settings/proxy/Pro.php CHANGED
@@ -11,6 +11,7 @@ use Bookly\Lib;
11
  * @method static void renderCancellationConfirmationUrl() Render cancellation confirmation URL setting.
12
  * @method static void renderCreateWordPressUser() Render Create WordPress user account for customers.
13
  * @method static void renderCustomersAddress() Render address settings in the customers tab.
 
14
  * @method static void renderCustomersBirthday() Render birthday settings in the customers tab.
15
  * @method static void renderFinalStepUrl() Render final step URL setting.
16
  * @method static void renderGoogleCalendarMenuItem() Render 'Google Calendar' menu item.
11
  * @method static void renderCancellationConfirmationUrl() Render cancellation confirmation URL setting.
12
  * @method static void renderCreateWordPressUser() Render Create WordPress user account for customers.
13
  * @method static void renderCustomersAddress() Render address settings in the customers tab.
14
+ * @method static void renderCustomersAddressTemplate() Customer address template.
15
  * @method static void renderCustomersBirthday() Render birthday settings in the customers tab.
16
  * @method static void renderFinalStepUrl() Render final step URL setting.
17
  * @method static void renderGoogleCalendarMenuItem() Render 'Google Calendar' menu item.
backend/modules/settings/templates/_customers.php CHANGED
@@ -14,9 +14,9 @@ use Bookly\Backend\Modules\Settings\Proxy;
14
 
15
  Proxy\Pro::renderCustomersBirthday();
16
  Proxy\Pro::renderCustomersAddress();
 
17
 
18
  Proxy\Pro::renderCancelAppointmentAction();
19
- Proxy\Pro::renderCombinedNotifications();
20
  Selects::renderSingle( 'bookly_cst_remember_in_cookie', __( 'Remember personal information in cookies', 'bookly' ), __( 'If this setting is enabled then returning customers will have their personal information fields filled in at the Details step with the data previously saved in cookies.', 'bookly' ) );
21
  Selects::renderSingle( 'bookly_cst_allow_duplicates', __( 'Allow duplicate customers', 'bookly' ), __( 'If enabled, a new user will be created if any of the registration data during the booking is different.', 'bookly' ) );
22
  Selects::renderSingle( 'bookly_cst_show_update_details_dialog', __( 'Show confirmation dialog before updating customer\'s data', 'bookly' ), __( 'If this option is enabled and customer enters contact info different from the previous order, a warning message will appear asking to update the data.', 'bookly' ) );
14
 
15
  Proxy\Pro::renderCustomersBirthday();
16
  Proxy\Pro::renderCustomersAddress();
17
+ Proxy\Pro::renderCustomersAddressTemplate();
18
 
19
  Proxy\Pro::renderCancelAppointmentAction();
 
20
  Selects::renderSingle( 'bookly_cst_remember_in_cookie', __( 'Remember personal information in cookies', 'bookly' ), __( 'If this setting is enabled then returning customers will have their personal information fields filled in at the Details step with the data previously saved in cookies.', 'bookly' ) );
21
  Selects::renderSingle( 'bookly_cst_allow_duplicates', __( 'Allow duplicate customers', 'bookly' ), __( 'If enabled, a new user will be created if any of the registration data during the booking is different.', 'bookly' ) );
22
  Selects::renderSingle( 'bookly_cst_show_update_details_dialog', __( 'Show confirmation dialog before updating customer\'s data', 'bookly' ), __( 'If this option is enabled and customer enters contact info different from the previous order, a warning message will appear asking to update the data.', 'bookly' ) );
backend/modules/settings/templates/_generalForm.php CHANGED
@@ -8,8 +8,7 @@ use Bookly\Backend\Modules\Settings\Proxy;
8
  ?>
9
  <form method="post" action="<?php echo esc_url( add_query_arg( 'tab', 'general' ) ) ?>">
10
  <?php
11
- Selects::renderSingle( 'bookly_gen_time_slot_length', __( 'Time slot length', 'bookly' ), __( 'Select a time interval which will be used as a step when building all time slots in the system.', 'bookly' ),
12
- $values['bookly_gen_time_slot_length'] );
13
  Selects::renderSingle( 'bookly_gen_service_duration_as_slot_length', __( 'Set slot length as service duration', 'bookly' ), __( 'Enable this option to make slot length equal to service duration at the Time step of booking form.', 'bookly' ) );
14
  Selects::renderSingle( 'bookly_gen_default_appointment_status', __( 'Default appointment status', 'bookly' ), __( 'Select status for newly booked appointments.', 'bookly' ), array( array( CustomerAppointment::STATUS_PENDING, __( 'Pending', 'bookly' ) ), array( CustomerAppointment::STATUS_APPROVED, __( 'Approved', 'bookly' ) ), ) );
15
  Proxy\Pro::renderMinimumTimeRequirement();
@@ -18,7 +17,8 @@ use Bookly\Backend\Modules\Settings\Proxy;
18
  Selects::renderSingle( 'bookly_gen_allow_staff_edit_profile', __( 'Allow staff members to edit their profiles', 'bookly' ), __( 'If this option is enabled then all staff members who are associated with WordPress users will be able to edit their own profiles, services, schedule and days off.', 'bookly' ) );
19
  Selects::renderSingle( 'bookly_gen_link_assets_method', __( 'Method to include Bookly JavaScript and CSS files on the page', 'bookly' ), __( 'With "Enqueue" method the JavaScript and CSS files of Bookly will be included on all pages of your website. This method should work with all themes. With "Print" method the files will be included only on the pages which contain Bookly booking form. This method may not work with all themes.', 'bookly' ), array( array( 'enqueue', 'Enqueue' ), array( 'print', 'Print' ) ) );
20
  Selects::renderSingle( 'bookly_gen_collect_stats', __( 'Help us improve Bookly by sending anonymous usage stats', 'bookly' ) );
21
- Selects::renderSingle( 'bookly_app_show_powered_by', __( 'Allow the plugin to set a Powered by Bookly notice on the booking widget to spread information about the plugin. This will allow the team to improve the product and enhance its functionality.', 'bookly' ) );
 
22
  ?>
23
  <div class="panel-footer">
24
  <?php ControlInputs::renderCsrf() ?>
8
  ?>
9
  <form method="post" action="<?php echo esc_url( add_query_arg( 'tab', 'general' ) ) ?>">
10
  <?php
11
+ Selects::renderSingle( 'bookly_gen_time_slot_length', __( 'Time slot length', 'bookly' ), __( 'Select a time interval which will be used as a step when building all time slots in the system.', 'bookly' ), $values['bookly_gen_time_slot_length'] );
 
12
  Selects::renderSingle( 'bookly_gen_service_duration_as_slot_length', __( 'Set slot length as service duration', 'bookly' ), __( 'Enable this option to make slot length equal to service duration at the Time step of booking form.', 'bookly' ) );
13
  Selects::renderSingle( 'bookly_gen_default_appointment_status', __( 'Default appointment status', 'bookly' ), __( 'Select status for newly booked appointments.', 'bookly' ), array( array( CustomerAppointment::STATUS_PENDING, __( 'Pending', 'bookly' ) ), array( CustomerAppointment::STATUS_APPROVED, __( 'Approved', 'bookly' ) ), ) );
14
  Proxy\Pro::renderMinimumTimeRequirement();
17
  Selects::renderSingle( 'bookly_gen_allow_staff_edit_profile', __( 'Allow staff members to edit their profiles', 'bookly' ), __( 'If this option is enabled then all staff members who are associated with WordPress users will be able to edit their own profiles, services, schedule and days off.', 'bookly' ) );
18
  Selects::renderSingle( 'bookly_gen_link_assets_method', __( 'Method to include Bookly JavaScript and CSS files on the page', 'bookly' ), __( 'With "Enqueue" method the JavaScript and CSS files of Bookly will be included on all pages of your website. This method should work with all themes. With "Print" method the files will be included only on the pages which contain Bookly booking form. This method may not work with all themes.', 'bookly' ), array( array( 'enqueue', 'Enqueue' ), array( 'print', 'Print' ) ) );
19
  Selects::renderSingle( 'bookly_gen_collect_stats', __( 'Help us improve Bookly by sending anonymous usage stats', 'bookly' ) );
20
+ Selects::renderSingle( 'bookly_app_show_powered_by', __( 'Allow the plugin to set a Powered by Bookly notice on the booking widget to spread information about the plugin. This will allow the team to improve the product and enhance its functionality', 'bookly' ) );
21
+ Selects::renderSingle( 'bookly_app_prevent_caching', __( 'Caching of pages with booking form', 'bookly' ), __( 'Select "Prevent" if you want Bookly to prevent caching by third-party caching plugins by adding a DONOTCACHEPAGE constant on pages with booking form.', 'bookly' ), array( array( 0, __( 'Allow', 'bookly' ) ), array( 1, __( 'Prevent', 'bookly' ) ), ) );
22
  ?>
23
  <div class="panel-footer">
24
  <?php ControlInputs::renderCsrf() ?>
backend/modules/sms/Ajax.php CHANGED
@@ -14,12 +14,16 @@ class Ajax extends Lib\Base\Ajax
14
  */
15
  protected static function permissions()
16
  {
17
- $permissions = get_option( 'bookly_gen_allow_staff_edit_profile' ) ? array( '_default' => 'user' ) : array();
18
  if ( Lib\Config::staffCabinetActive() ) {
19
- $permissions = array( '_default' => 'user' );
20
  }
21
 
22
- return $permissions;
 
 
 
 
23
  }
24
 
25
  /**
14
  */
15
  protected static function permissions()
16
  {
17
+ $permissions = get_option( 'bookly_gen_allow_staff_edit_profile' ) ? 'user' : null;
18
  if ( Lib\Config::staffCabinetActive() ) {
19
+ $permissions = 'user';
20
  }
21
 
22
+ return array(
23
+ '_default' => $permissions,
24
+ 'sendQueue' => 'user',
25
+ 'clearAttachments' => 'user',
26
+ );
27
  }
28
 
29
  /**
backend/modules/staff/proxy/Shared.php CHANGED
@@ -10,7 +10,7 @@ use Bookly\Lib;
10
  * @method static array editStaff( array $data, Lib\Entities\Staff $staff ) Prepare edit staff form.
11
  * @method static void enqueueStaffProfileScripts() Enqueue scripts for page Staff.
12
  * @method static void enqueueStaffProfileStyles() Enqueue styles for page Staff.
13
- * @method static string getAffectedAppointmentsFilter( string $filter_url, int $staff_id ) Get link with filter for appointments page.
14
  * @method static void preUpdateStaff( Lib\Entities\Staff $staff, array $params ) Do stuff before staff update.
15
  * @method static void renderStaffForm( Lib\Entities\Staff $staff ) Render Staff form tab details.
16
  * @method static int renderStaffPage( array $params ) Do stuff on staff page render.
10
  * @method static array editStaff( array $data, Lib\Entities\Staff $staff ) Prepare edit staff form.
11
  * @method static void enqueueStaffProfileScripts() Enqueue scripts for page Staff.
12
  * @method static void enqueueStaffProfileStyles() Enqueue styles for page Staff.
13
+ * @method static string getAffectedAppointmentsFilter( string $filter_url, int[] $staff_id ) Get link with filter for appointments page.
14
  * @method static void preUpdateStaff( Lib\Entities\Staff $staff, array $params ) Do stuff before staff update.
15
  * @method static void renderStaffForm( Lib\Entities\Staff $staff ) Render Staff form tab details.
16
  * @method static int renderStaffPage( array $params ) Do stuff on staff page render.
backend/modules/staff/resources/js/staff-list.js CHANGED
@@ -250,6 +250,7 @@ jQuery(function ($) {
250
  width: '100%',
251
  theme: 'bootstrap',
252
  allowClear: true,
 
253
  language : {
254
  noResults: function() { return BooklyL10n.no_result_found; }
255
  }
250
  width: '100%',
251
  theme: 'bootstrap',
252
  allowClear: true,
253
+ placeholder: '',
254
  language : {
255
  noResults: function() { return BooklyL10n.no_result_found; }
256
  }
backend/resources/bootstrap/css/bootstrap-theme.min.css CHANGED
@@ -1,3 +1,3 @@
1
  #bookly-tbs{
2
-
3
- }#bookly-tbs html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}#bookly-tbs body{margin:0}#bookly-tbs article,#bookly-tbs aside,#bookly-tbs details,#bookly-tbs figcaption,#bookly-tbs figure,#bookly-tbs footer,#bookly-tbs header,#bookly-tbs hgroup,#bookly-tbs main,#bookly-tbs menu,#bookly-tbs nav,#bookly-tbs section,#bookly-tbs summary{display:block}#bookly-tbs audio,#bookly-tbs canvas,#bookly-tbs progress,#bookly-tbs video{display:inline-block;vertical-align:baseline}#bookly-tbs audio:not([controls]){display:none;height:0}#bookly-tbs [hidden],#bookly-tbs template{display:none}#bookly-tbs a{background-color:transparent}#bookly-tbs a:active,#bookly-tbs a:hover{outline:0}#bookly-tbs abbr[title]{border-bottom:1px dotted}#bookly-tbs b,#bookly-tbs strong{font-weight:700}#bookly-tbs dfn{font-style:italic}#bookly-tbs h1{margin:.67em 0;font-size:2em}#bookly-tbs mark{color:#000;background:#ff0}#bookly-tbs small{font-size:80%}#bookly-tbs sub,#bookly-tbs sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}#bookly-tbs sup{top:-.5em}#bookly-tbs sub{bottom:-.25em}#bookly-tbs img{border:0}#bookly-tbs svg:not(:root){overflow:hidden}#bookly-tbs figure{margin:1em 40px}#bookly-tbs hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs pre{overflow:auto}#bookly-tbs code,#bookly-tbs kbd,#bookly-tbs pre,#bookly-tbs samp{font-family:monospace,monospace;font-size:1em}#bookly-tbs button,#bookly-tbs input,#bookly-tbs optgroup,#bookly-tbs select,#bookly-tbs textarea{margin:0;font:inherit;color:inherit}#bookly-tbs button{overflow:visible}#bookly-tbs button,#bookly-tbs select{text-transform:none}#bookly-tbs button,#bookly-tbs html input[type=button],#bookly-tbs input[type=reset],#bookly-tbs input[type=submit]{-webkit-appearance:button;cursor:pointer}#bookly-tbs button[disabled],#bookly-tbs html input[disabled]{cursor:default}#bookly-tbs button::-moz-focus-inner,#bookly-tbs input::-moz-focus-inner{padding:0;border:0}#bookly-tbs input{line-height:normal}#bookly-tbs input[type=checkbox],#bookly-tbs input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}#bookly-tbs input[type=number]::-webkit-inner-spin-button,#bookly-tbs input[type=number]::-webkit-outer-spin-button{height:auto}#bookly-tbs input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}#bookly-tbs input[type=search]::-webkit-search-cancel-button,#bookly-tbs input[type=search]::-webkit-search-decoration{-webkit-appearance:none}#bookly-tbs fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}#bookly-tbs legend{padding:0;border:0}#bookly-tbs textarea{overflow:auto}#bookly-tbs optgroup{font-weight:700}#bookly-tbs table{border-spacing:0;border-collapse:collapse}#bookly-tbs td,#bookly-tbs th{padding:0}@media print{#bookly-tbs *,#bookly-tbs :after,#bookly-tbs :before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}#bookly-tbs a,#bookly-tbs a:visited{text-decoration:underline}#bookly-tbs a[href]:after{content:" (" attr(href) ")"}#bookly-tbs abbr[title]:after{content:" (" attr(title) ")"}#bookly-tbs a[href^="javascript:"]:after,#bookly-tbs a[href^="#"]:after{content:""}#bookly-tbs blockquote,#bookly-tbs pre{border:1px solid #999;page-break-inside:avoid}#bookly-tbs thead{display:table-header-group}#bookly-tbs img,#bookly-tbs tr{page-break-inside:avoid}#bookly-tbs img{max-width:100%!important}#bookly-tbs h2,#bookly-tbs h3,#bookly-tbs p{orphans:3;widows:3}#bookly-tbs h2,#bookly-tbs h3{page-break-after:avoid}#bookly-tbs .navbar{display:none}#bookly-tbs .btn>.caret,#bookly-tbs .dropup>.btn>.caret{border-top-color:#000!important}#bookly-tbs .label{border:1px solid #000}#bookly-tbs .table{border-collapse:collapse!important}#bookly-tbs .table td,#bookly-tbs .table th{background-color:#fff!important}#bookly-tbs .table-bordered td,#bookly-tbs .table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}#bookly-tbs .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bookly-tbs .glyphicon-asterisk:before{content:"\002a"}#bookly-tbs .glyphicon-plus:before{content:"\002b"}#bookly-tbs .glyphicon-eur:before,#bookly-tbs .glyphicon-euro:before{content:"\20ac"}#bookly-tbs .glyphicon-minus:before{content:"\2212"}#bookly-tbs .glyphicon-cloud:before{content:"\2601"}#bookly-tbs .glyphicon-envelope:before{content:"\2709"}#bookly-tbs .glyphicon-pencil:before{content:"\270f"}#bookly-tbs .glyphicon-glass:before{content:"\e001"}#bookly-tbs .glyphicon-music:before{content:"\e002"}#bookly-tbs .glyphicon-search:before{content:"\e003"}#bookly-tbs .glyphicon-heart:before{content:"\e005"}#bookly-tbs .glyphicon-star:before{content:"\e006"}#bookly-tbs .glyphicon-star-empty:before{content:"\e007"}#bookly-tbs .glyphicon-user:before{content:"\e008"}#bookly-tbs .glyphicon-film:before{content:"\e009"}#bookly-tbs .glyphicon-th-large:before{content:"\e010"}#bookly-tbs .glyphicon-th:before{content:"\e011"}#bookly-tbs .glyphicon-th-list:before{content:"\e012"}#bookly-tbs .glyphicon-ok:before{content:"\e013"}#bookly-tbs .glyphicon-remove:before{content:"\e014"}#bookly-tbs .glyphicon-zoom-in:before{content:"\e015"}#bookly-tbs .glyphicon-zoom-out:before{content:"\e016"}#bookly-tbs .glyphicon-off:before{content:"\e017"}#bookly-tbs .glyphicon-signal:before{content:"\e018"}#bookly-tbs .glyphicon-cog:before{content:"\e019"}#bookly-tbs .glyphicon-trash:before{content:"\e020"}#bookly-tbs .glyphicon-home:before{content:"\e021"}#bookly-tbs .glyphicon-file:before{content:"\e022"}#bookly-tbs .glyphicon-time:before{content:"\e023"}#bookly-tbs .glyphicon-road:before{content:"\e024"}#bookly-tbs .glyphicon-download-alt:before{content:"\e025"}#bookly-tbs .glyphicon-download:before{content:"\e026"}#bookly-tbs .glyphicon-upload:before{content:"\e027"}#bookly-tbs .glyphicon-inbox:before{content:"\e028"}#bookly-tbs .glyphicon-play-circle:before{content:"\e029"}#bookly-tbs .glyphicon-repeat:before{content:"\e030"}#bookly-tbs .glyphicon-refresh:before{content:"\e031"}#bookly-tbs .glyphicon-list-alt:before{content:"\e032"}#bookly-tbs .glyphicon-lock:before{content:"\e033"}#bookly-tbs .glyphicon-flag:before{content:"\e034"}#bookly-tbs .glyphicon-headphones:before{content:"\e035"}#bookly-tbs .glyphicon-volume-off:before{content:"\e036"}#bookly-tbs .glyphicon-volume-down:before{content:"\e037"}#bookly-tbs .glyphicon-volume-up:before{content:"\e038"}#bookly-tbs .glyphicon-qrcode:before{content:"\e039"}#bookly-tbs .glyphicon-barcode:before{content:"\e040"}#bookly-tbs .glyphicon-tag:before{content:"\e041"}#bookly-tbs .glyphicon-tags:before{content:"\e042"}#bookly-tbs .glyphicon-book:before{content:"\e043"}#bookly-tbs .glyphicon-bookmark:before{content:"\e044"}#bookly-tbs .glyphicon-print:before{content:"\e045"}#bookly-tbs .glyphicon-camera:before{content:"\e046"}#bookly-tbs .glyphicon-font:before{content:"\e047"}#bookly-tbs .glyphicon-bold:before{content:"\e048"}#bookly-tbs .glyphicon-italic:before{content:"\e049"}#bookly-tbs .glyphicon-text-height:before{content:"\e050"}#bookly-tbs .glyphicon-text-width:before{content:"\e051"}#bookly-tbs .glyphicon-align-left:before{content:"\e052"}#bookly-tbs .glyphicon-align-center:before{content:"\e053"}#bookly-tbs .glyphicon-align-right:before{content:"\e054"}#bookly-tbs .glyphicon-align-justify:before{content:"\e055"}#bookly-tbs .glyphicon-list:before{content:"\e056"}#bookly-tbs .glyphicon-indent-left:before{content:"\e057"}#bookly-tbs .glyphicon-indent-right:before{content:"\e058"}#bookly-tbs .glyphicon-facetime-video:before{content:"\e059"}#bookly-tbs .glyphicon-picture:before{content:"\e060"}#bookly-tbs .glyphicon-map-marker:before{content:"\e062"}#bookly-tbs .glyphicon-adjust:before{content:"\e063"}#bookly-tbs .glyphicon-tint:before{content:"\e064"}#bookly-tbs .glyphicon-edit:before{content:"\e065"}#bookly-tbs .glyphicon-share:before{content:"\e066"}#bookly-tbs .glyphicon-check:before{content:"\e067"}#bookly-tbs .glyphicon-move:before{content:"\e068"}#bookly-tbs .glyphicon-step-backward:before{content:"\e069"}#bookly-tbs .glyphicon-fast-backward:before{content:"\e070"}#bookly-tbs .glyphicon-backward:before{content:"\e071"}#bookly-tbs .glyphicon-play:before{content:"\e072"}#bookly-tbs .glyphicon-pause:before{content:"\e073"}#bookly-tbs .glyphicon-stop:before{content:"\e074"}#bookly-tbs .glyphicon-forward:before{content:"\e075"}#bookly-tbs .glyphicon-fast-forward:before{content:"\e076"}#bookly-tbs .glyphicon-step-forward:before{content:"\e077"}#bookly-tbs .glyphicon-eject:before{content:"\e078"}#bookly-tbs .glyphicon-chevron-left:before{content:"\e079"}#bookly-tbs .glyphicon-chevron-right:before{content:"\e080"}#bookly-tbs .glyphicon-plus-sign:before{content:"\e081"}#bookly-tbs .glyphicon-minus-sign:before{content:"\e082"}#bookly-tbs .glyphicon-remove-sign:before{content:"\e083"}#bookly-tbs .glyphicon-ok-sign:before{content:"\e084"}#bookly-tbs .glyphicon-question-sign:before{content:"\e085"}#bookly-tbs .glyphicon-info-sign:before{content:"\e086"}#bookly-tbs .glyphicon-screenshot:before{content:"\e087"}#bookly-tbs .glyphicon-remove-circle:before{content:"\e088"}#bookly-tbs .glyphicon-ok-circle:before{content:"\e089"}#bookly-tbs .glyphicon-ban-circle:before{content:"\e090"}#bookly-tbs .glyphicon-arrow-left:before{content:"\e091"}#bookly-tbs .glyphicon-arrow-right:before{content:"\e092"}#bookly-tbs .glyphicon-arrow-up:before{content:"\e093"}#bookly-tbs .glyphicon-arrow-down:before{content:"\e094"}#bookly-tbs .glyphicon-share-alt:before{content:"\e095"}#bookly-tbs .glyphicon-resize-full:before{content:"\e096"}#bookly-tbs .glyphicon-resize-small:before{content:"\e097"}#bookly-tbs .glyphicon-exclamation-sign:before{content:"\e101"}#bookly-tbs .glyphicon-gift:before{content:"\e102"}#bookly-tbs .glyphicon-leaf:before{content:"\e103"}#bookly-tbs .glyphicon-fire:before{content:"\e104"}#bookly-tbs .glyphicon-eye-open:before{content:"\e105"}#bookly-tbs .glyphicon-eye-close:before{content:"\e106"}#bookly-tbs .glyphicon-warning-sign:before{content:"\e107"}#bookly-tbs .glyphicon-plane:before{content:"\e108"}#bookly-tbs .glyphicon-calendar:before{content:"\e109"}#bookly-tbs .glyphicon-random:before{content:"\e110"}#bookly-tbs .glyphicon-comment:before{content:"\e111"}#bookly-tbs .glyphicon-magnet:before{content:"\e112"}#bookly-tbs .glyphicon-chevron-up:before{content:"\e113"}#bookly-tbs .glyphicon-chevron-down:before{content:"\e114"}#bookly-tbs .glyphicon-retweet:before{content:"\e115"}#bookly-tbs .glyphicon-shopping-cart:before{content:"\e116"}#bookly-tbs .glyphicon-folder-close:before{content:"\e117"}#bookly-tbs .glyphicon-folder-open:before{content:"\e118"}#bookly-tbs .glyphicon-resize-vertical:before{content:"\e119"}#bookly-tbs .glyphicon-resize-horizontal:before{content:"\e120"}#bookly-tbs .glyphicon-hdd:before{content:"\e121"}#bookly-tbs .glyphicon-bullhorn:before{content:"\e122"}#bookly-tbs .glyphicon-bell:before{content:"\e123"}#bookly-tbs .glyphicon-certificate:before{content:"\e124"}#bookly-tbs .glyphicon-thumbs-up:before{content:"\e125"}#bookly-tbs .glyphicon-thumbs-down:before{content:"\e126"}#bookly-tbs .glyphicon-hand-right:before{content:"\e127"}#bookly-tbs .glyphicon-hand-left:before{content:"\e128"}#bookly-tbs .glyphicon-hand-up:before{content:"\e129"}#bookly-tbs .glyphicon-hand-down:before{content:"\e130"}#bookly-tbs .glyphicon-circle-arrow-right:before{content:"\e131"}#bookly-tbs .glyphicon-circle-arrow-left:before{content:"\e132"}#bookly-tbs .glyphicon-circle-arrow-up:before{content:"\e133"}#bookly-tbs .glyphicon-circle-arrow-down:before{content:"\e134"}#bookly-tbs .glyphicon-globe:before{content:"\e135"}#bookly-tbs .glyphicon-wrench:before{content:"\e136"}#bookly-tbs .glyphicon-tasks:before{content:"\e137"}#bookly-tbs .glyphicon-filter:before{content:"\e138"}#bookly-tbs .glyphicon-briefcase:before{content:"\e139"}#bookly-tbs .glyphicon-fullscreen:before{content:"\e140"}#bookly-tbs .glyphicon-dashboard:before{content:"\e141"}#bookly-tbs .glyphicon-paperclip:before{content:"\e142"}#bookly-tbs .glyphicon-heart-empty:before{content:"\e143"}#bookly-tbs .glyphicon-link:before{content:"\e144"}#bookly-tbs .glyphicon-phone:before{content:"\e145"}#bookly-tbs .glyphicon-pushpin:before{content:"\e146"}#bookly-tbs .glyphicon-usd:before{content:"\e148"}#bookly-tbs .glyphicon-gbp:before{content:"\e149"}#bookly-tbs .glyphicon-sort:before{content:"\e150"}#bookly-tbs .glyphicon-sort-by-alphabet:before{content:"\e151"}#bookly-tbs .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}#bookly-tbs .glyphicon-sort-by-order:before{content:"\e153"}#bookly-tbs .glyphicon-sort-by-order-alt:before{content:"\e154"}#bookly-tbs .glyphicon-sort-by-attributes:before{content:"\e155"}#bookly-tbs .glyphicon-sort-by-attributes-alt:before{content:"\e156"}#bookly-tbs .glyphicon-unchecked:before{content:"\e157"}#bookly-tbs .glyphicon-expand:before{content:"\e158"}#bookly-tbs .glyphicon-collapse-down:before{content:"\e159"}#bookly-tbs .glyphicon-collapse-up:before{content:"\e160"}#bookly-tbs .glyphicon-log-in:before{content:"\e161"}#bookly-tbs .glyphicon-flash:before{content:"\e162"}#bookly-tbs .glyphicon-log-out:before{content:"\e163"}#bookly-tbs .glyphicon-new-window:before{content:"\e164"}#bookly-tbs .glyphicon-record:before{content:"\e165"}#bookly-tbs .glyphicon-save:before{content:"\e166"}#bookly-tbs .glyphicon-open:before{content:"\e167"}#bookly-tbs .glyphicon-saved:before{content:"\e168"}#bookly-tbs .glyphicon-import:before{content:"\e169"}#bookly-tbs .glyphicon-export:before{content:"\e170"}#bookly-tbs .glyphicon-send:before{content:"\e171"}#bookly-tbs .glyphicon-floppy-disk:before{content:"\e172"}#bookly-tbs .glyphicon-floppy-saved:before{content:"\e173"}#bookly-tbs .glyphicon-floppy-remove:before{content:"\e174"}#bookly-tbs .glyphicon-floppy-save:before{content:"\e175"}#bookly-tbs .glyphicon-floppy-open:before{content:"\e176"}#bookly-tbs .glyphicon-credit-card:before{content:"\e177"}#bookly-tbs .glyphicon-transfer:before{content:"\e178"}#bookly-tbs .glyphicon-cutlery:before{content:"\e179"}#bookly-tbs .glyphicon-header:before{content:"\e180"}#bookly-tbs .glyphicon-compressed:before{content:"\e181"}#bookly-tbs .glyphicon-earphone:before{content:"\e182"}#bookly-tbs .glyphicon-phone-alt:before{content:"\e183"}#bookly-tbs .glyphicon-tower:before{content:"\e184"}#bookly-tbs .glyphicon-stats:before{content:"\e185"}#bookly-tbs .glyphicon-sd-video:before{content:"\e186"}#bookly-tbs .glyphicon-hd-video:before{content:"\e187"}#bookly-tbs .glyphicon-subtitles:before{content:"\e188"}#bookly-tbs .glyphicon-sound-stereo:before{content:"\e189"}#bookly-tbs .glyphicon-sound-dolby:before{content:"\e190"}#bookly-tbs .glyphicon-sound-5-1:before{content:"\e191"}#bookly-tbs .glyphicon-sound-6-1:before{content:"\e192"}#bookly-tbs .glyphicon-sound-7-1:before{content:"\e193"}#bookly-tbs .glyphicon-copyright-mark:before{content:"\e194"}#bookly-tbs .glyphicon-registration-mark:before{content:"\e195"}#bookly-tbs .glyphicon-cloud-download:before{content:"\e197"}#bookly-tbs .glyphicon-cloud-upload:before{content:"\e198"}#bookly-tbs .glyphicon-tree-conifer:before{content:"\e199"}#bookly-tbs .glyphicon-tree-deciduous:before{content:"\e200"}#bookly-tbs .glyphicon-cd:before{content:"\e201"}#bookly-tbs .glyphicon-save-file:before{content:"\e202"}#bookly-tbs .glyphicon-open-file:before{content:"\e203"}#bookly-tbs .glyphicon-level-up:before{content:"\e204"}#bookly-tbs .glyphicon-copy:before{content:"\e205"}#bookly-tbs .glyphicon-paste:before{content:"\e206"}#bookly-tbs .glyphicon-alert:before{content:"\e209"}#bookly-tbs .glyphicon-equalizer:before{content:"\e210"}#bookly-tbs .glyphicon-king:before{content:"\e211"}#bookly-tbs .glyphicon-queen:before{content:"\e212"}#bookly-tbs .glyphicon-pawn:before{content:"\e213"}#bookly-tbs .glyphicon-bishop:before{content:"\e214"}#bookly-tbs .glyphicon-knight:before{content:"\e215"}#bookly-tbs .glyphicon-baby-formula:before{content:"\e216"}#bookly-tbs .glyphicon-tent:before{content:"\26fa"}#bookly-tbs .glyphicon-blackboard:before{content:"\e218"}#bookly-tbs .glyphicon-bed:before{content:"\e219"}#bookly-tbs .glyphicon-apple:before{content:"\f8ff"}#bookly-tbs .glyphicon-erase:before{content:"\e221"}#bookly-tbs .glyphicon-hourglass:before{content:"\231b"}#bookly-tbs .glyphicon-lamp:before{content:"\e223"}#bookly-tbs .glyphicon-duplicate:before{content:"\e224"}#bookly-tbs .glyphicon-piggy-bank:before{content:"\e225"}#bookly-tbs .glyphicon-scissors:before{content:"\e226"}#bookly-tbs .glyphicon-bitcoin:before{content:"\e227"}#bookly-tbs .glyphicon-btc:before{content:"\e227"}#bookly-tbs .glyphicon-xbt:before{content:"\e227"}#bookly-tbs .glyphicon-yen:before{content:"\00a5"}#bookly-tbs .glyphicon-jpy:before{content:"\00a5"}#bookly-tbs .glyphicon-ruble:before{content:"\20bd"}#bookly-tbs .glyphicon-rub:before{content:"\20bd"}#bookly-tbs .glyphicon-scale:before{content:"\e230"}#bookly-tbs .glyphicon-ice-lolly:before{content:"\e231"}#bookly-tbs .glyphicon-ice-lolly-tasted:before{content:"\e232"}#bookly-tbs .glyphicon-education:before{content:"\e233"}#bookly-tbs .glyphicon-option-horizontal:before{content:"\e234"}#bookly-tbs .glyphicon-option-vertical:before{content:"\e235"}#bookly-tbs .glyphicon-menu-hamburger:before{content:"\e236"}#bookly-tbs .glyphicon-modal-window:before{content:"\e237"}#bookly-tbs .glyphicon-oil:before{content:"\e238"}#bookly-tbs .glyphicon-grain:before{content:"\e239"}#bookly-tbs .glyphicon-sunglasses:before{content:"\e240"}#bookly-tbs .glyphicon-text-size:before{content:"\e241"}#bookly-tbs .glyphicon-text-color:before{content:"\e242"}#bookly-tbs .glyphicon-text-background:before{content:"\e243"}#bookly-tbs .glyphicon-object-align-top:before{content:"\e244"}#bookly-tbs .glyphicon-object-align-bottom:before{content:"\e245"}#bookly-tbs .glyphicon-object-align-horizontal:before{content:"\e246"}#bookly-tbs .glyphicon-object-align-left:before{content:"\e247"}#bookly-tbs .glyphicon-object-align-vertical:before{content:"\e248"}#bookly-tbs .glyphicon-object-align-right:before{content:"\e249"}#bookly-tbs .glyphicon-triangle-right:before{content:"\e250"}#bookly-tbs .glyphicon-triangle-left:before{content:"\e251"}#bookly-tbs .glyphicon-triangle-bottom:before{content:"\e252"}#bookly-tbs .glyphicon-triangle-top:before{content:"\e253"}#bookly-tbs .glyphicon-console:before{content:"\e254"}#bookly-tbs .glyphicon-superscript:before{content:"\e255"}#bookly-tbs .glyphicon-subscript:before{content:"\e256"}#bookly-tbs .glyphicon-menu-left:before{content:"\e257"}#bookly-tbs .glyphicon-menu-right:before{content:"\e258"}#bookly-tbs .glyphicon-menu-down:before{content:"\e259"}#bookly-tbs .glyphicon-menu-up:before{content:"\e260"}#bookly-tbs *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bookly-tbs :after,#bookly-tbs :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bookly-tbs .bookly-tbs-body{font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-size:15px;line-height:1.4;color:#3e424a;background-color:transparent;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bookly-tbs button,#bookly-tbs input,#bookly-tbs select,#bookly-tbs textarea{font-family:inherit;font-size:inherit;line-height:inherit}#bookly-tbs a{color:#08c;text-decoration:none}#bookly-tbs a:focus,#bookly-tbs a:hover{color:#005580;text-decoration:none}#bookly-tbs a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bookly-tbs figure{margin:0}#bookly-tbs img{vertical-align:middle}#bookly-tbs .carousel-inner>.item>a>img,#bookly-tbs .carousel-inner>.item>img,#bookly-tbs .img-responsive,#bookly-tbs .thumbnail a>img,#bookly-tbs .thumbnail>img{display:block;max-width:100%;height:auto}#bookly-tbs .img-rounded{border-radius:6px}#bookly-tbs .img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.4;background-color:transparent;border:1px solid #e8ebf0;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#bookly-tbs .img-circle{border-radius:50%}#bookly-tbs hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid #d9dee4}#bookly-tbs .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}#bookly-tbs .sr-only-focusable:active,#bookly-tbs .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}#bookly-tbs [role=button]{cursor:pointer}#bookly-tbs .h1,#bookly-tbs .h2,#bookly-tbs .h3,#bookly-tbs .h4,#bookly-tbs .h5,#bookly-tbs .h6,#bookly-tbs h1,#bookly-tbs h2,#bookly-tbs h3,#bookly-tbs h4,#bookly-tbs h5,#bookly-tbs h6{font-family:inherit;font-weight:400;line-height:1.1;color:inherit}#bookly-tbs .h1 .small,#bookly-tbs .h1 small,#bookly-tbs .h2 .small,#bookly-tbs .h2 small,#bookly-tbs .h3 .small,#bookly-tbs .h3 small,#bookly-tbs .h4 .small,#bookly-tbs .h4 small,#bookly-tbs .h5 .small,#bookly-tbs .h5 small,#bookly-tbs .h6 .small,#bookly-tbs .h6 small,#bookly-tbs h1 .small,#bookly-tbs h1 small,#bookly-tbs h2 .small,#bookly-tbs h2 small,#bookly-tbs h3 .small,#bookly-tbs h3 small,#bookly-tbs h4 .small,#bookly-tbs h4 small,#bookly-tbs h5 .small,#bookly-tbs h5 small,#bookly-tbs h6 .small,#bookly-tbs h6 small{font-weight:400;line-height:1;color:#d9dee4}#bookly-tbs .h1,#bookly-tbs .h2,#bookly-tbs .h3,#bookly-tbs h1,#bookly-tbs h2,#bookly-tbs h3{margin-top:21px;margin-bottom:10.5px}#bookly-tbs .h1 .small,#bookly-tbs .h1 small,#bookly-tbs .h2 .small,#bookly-tbs .h2 small,#bookly-tbs .h3 .small,#bookly-tbs .h3 small,#bookly-tbs h1 .small,#bookly-tbs h1 small,#bookly-tbs h2 .small,#bookly-tbs h2 small,#bookly-tbs h3 .small,#bookly-tbs h3 small{font-size:65%}#bookly-tbs .h4,#bookly-tbs .h5,#bookly-tbs .h6,#bookly-tbs h4,#bookly-tbs h5,#bookly-tbs h6{margin-top:10.5px;margin-bottom:10.5px}#bookly-tbs .h4 .small,#bookly-tbs .h4 small,#bookly-tbs .h5 .small,#bookly-tbs .h5 small,#bookly-tbs .h6 .small,#bookly-tbs .h6 small,#bookly-tbs h4 .small,#bookly-tbs h4 small,#bookly-tbs h5 .small,#bookly-tbs h5 small,#bookly-tbs h6 .small,#bookly-tbs h6 small{font-size:75%}#bookly-tbs .h1,#bookly-tbs h1{font-size:27px}#bookly-tbs .h2,#bookly-tbs h2{font-size:24px}#bookly-tbs .h3,#bookly-tbs h3{font-size:21px}#bookly-tbs .h4,#bookly-tbs h4{font-size:18px}#bookly-tbs .h5,#bookly-tbs h5{font-size:15px}#bookly-tbs .h6,#bookly-tbs h6{font-size:13px}#bookly-tbs p{margin:0 0 10.5px}#bookly-tbs .lead{margin-bottom:21px;font-size:17px;font-weight:300;line-height:1.4}@media (min-width:768px){#bookly-tbs .lead{font-size:22.5px}}#bookly-tbs .small,#bookly-tbs small{font-size:86%}#bookly-tbs .mark,#bookly-tbs mark{padding:.2em;background-color:#fcf8e3}#bookly-tbs .text-left{text-align:left}#bookly-tbs .text-right{text-align:right}#bookly-tbs .text-center{text-align:center}#bookly-tbs .text-justify{text-align:justify}#bookly-tbs .text-nowrap{white-space:nowrap}#bookly-tbs .text-lowercase{text-transform:lowercase}#bookly-tbs .text-uppercase{text-transform:uppercase}#bookly-tbs .text-capitalize{text-transform:capitalize}#bookly-tbs .text-muted{color:#d9dee4}#bookly-tbs .text-primary{color:#08c}#bookly-tbs a.text-primary:focus,#bookly-tbs a.text-primary:hover{color:#069}#bookly-tbs .text-success{color:#3c763d}#bookly-tbs a.text-success:focus,#bookly-tbs a.text-success:hover{color:#2b542c}#bookly-tbs .text-info{color:#31708f}#bookly-tbs a.text-info:focus,#bookly-tbs a.text-info:hover{color:#245269}#bookly-tbs .text-warning{color:#8a6d3b}#bookly-tbs a.text-warning:focus,#bookly-tbs a.text-warning:hover{color:#66512c}#bookly-tbs .text-danger{color:#a94442}#bookly-tbs a.text-danger:focus,#bookly-tbs a.text-danger:hover{color:#843534}#bookly-tbs .bg-primary{color:#fff;background-color:#08c}#bookly-tbs a.bg-primary:focus,#bookly-tbs a.bg-primary:hover{background-color:#069}#bookly-tbs .bg-success{background-color:#dff0d8}#bookly-tbs a.bg-success:focus,#bookly-tbs a.bg-success:hover{background-color:#c1e2b3}#bookly-tbs .bg-info{background-color:#d9edf7}#bookly-tbs a.bg-info:focus,#bookly-tbs a.bg-info:hover{background-color:#afd9ee}#bookly-tbs .bg-warning{background-color:#fcf8e3}#bookly-tbs a.bg-warning:focus,#bookly-tbs a.bg-warning:hover{background-color:#f7ecb5}#bookly-tbs .bg-danger{background-color:#f2dede}#bookly-tbs a.bg-danger:focus,#bookly-tbs a.bg-danger:hover{background-color:#e4b9b9}#bookly-tbs .page-header{padding-bottom:9.5px;margin:42px 0 10.5px;border-bottom:1px solid transparent}#bookly-tbs ol,#bookly-tbs ul{margin-top:0;margin-bottom:10.5px}#bookly-tbs ol ol,#bookly-tbs ol ul,#bookly-tbs ul ol,#bookly-tbs ul ul{margin-bottom:0}#bookly-tbs .list-unstyled{padding-left:0;list-style:none}#bookly-tbs .list-inline{padding-left:0;margin-left:-5px;list-style:none}#bookly-tbs .list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}#bookly-tbs dl{margin-top:0;margin-bottom:21px}#bookly-tbs dd,#bookly-tbs dt{line-height:1.4}#bookly-tbs dt{font-weight:700}#bookly-tbs dd{margin-left:0}@media (min-width:768px){#bookly-tbs .dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .dl-horizontal dd{margin-left:180px}}#bookly-tbs abbr[data-original-title],#bookly-tbs abbr[title]{cursor:help;border-bottom:1px dotted #d9dee4}#bookly-tbs .initialism{font-size:90%;text-transform:uppercase}#bookly-tbs blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:18.75px;border-left:5px solid #e8ebf0}#bookly-tbs blockquote ol:last-child,#bookly-tbs blockquote p:last-child,#bookly-tbs blockquote ul:last-child{margin-bottom:0}#bookly-tbs blockquote .small,#bookly-tbs blockquote footer,#bookly-tbs blockquote small{display:block;font-size:80%;line-height:1.4;color:#d9dee4}#bookly-tbs blockquote .small:before,#bookly-tbs blockquote footer:before,#bookly-tbs blockquote small:before{content:'\2014 \00A0'}#bookly-tbs .blockquote-reverse,#bookly-tbs blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #e8ebf0;border-left:0}#bookly-tbs .blockquote-reverse .small:before,#bookly-tbs .blockquote-reverse footer:before,#bookly-tbs .blockquote-reverse small:before,#bookly-tbs blockquote.pull-right .small:before,#bookly-tbs blockquote.pull-right footer:before,#bookly-tbs blockquote.pull-right small:before{content:''}#bookly-tbs .blockquote-reverse .small:after,#bookly-tbs .blockquote-reverse footer:after,#bookly-tbs .blockquote-reverse small:after,#bookly-tbs blockquote.pull-right .small:after,#bookly-tbs blockquote.pull-right footer:after,#bookly-tbs blockquote.pull-right small:after{content:'\00A0 \2014'}#bookly-tbs address{margin-bottom:21px;font-style:normal;line-height:1.4}#bookly-tbs code,#bookly-tbs kbd,#bookly-tbs pre,#bookly-tbs samp{font-family:menlo,monaco,consolas,"courier new",monospace}#bookly-tbs code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}#bookly-tbs kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}#bookly-tbs kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs pre{display:block;padding:10px;margin:0 0 10.5px;font-size:14px;line-height:1.4;color:#5b6470;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}#bookly-tbs pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}#bookly-tbs .pre-scrollable{max-height:340px;overflow-y:scroll}#bookly-tbs .container{padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:768px){#bookly-tbs .container{width:740px}}@media (min-width:992px){#bookly-tbs .container{width:960px}}@media (min-width:1200px){#bookly-tbs .container{width:1160px}}#bookly-tbs .container-fluid{padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}#bookly-tbs .row{margin-right:-10px;margin-left:-10px}#bookly-tbs .col-lg-1,#bookly-tbs .col-lg-10,#bookly-tbs .col-lg-11,#bookly-tbs .col-lg-12,#bookly-tbs .col-lg-2,#bookly-tbs .col-lg-3,#bookly-tbs .col-lg-4,#bookly-tbs .col-lg-5,#bookly-tbs .col-lg-6,#bookly-tbs .col-lg-7,#bookly-tbs .col-lg-8,#bookly-tbs .col-lg-9,#bookly-tbs .col-md-1,#bookly-tbs .col-md-10,#bookly-tbs .col-md-11,#bookly-tbs .col-md-12,#bookly-tbs .col-md-2,#bookly-tbs .col-md-3,#bookly-tbs .col-md-4,#bookly-tbs .col-md-5,#bookly-tbs .col-md-6,#bookly-tbs .col-md-7,#bookly-tbs .col-md-8,#bookly-tbs .col-md-9,#bookly-tbs .col-sm-1,#bookly-tbs .col-sm-10,#bookly-tbs .col-sm-11,#bookly-tbs .col-sm-12,#bookly-tbs .col-sm-2,#bookly-tbs .col-sm-3,#bookly-tbs .col-sm-4,#bookly-tbs .col-sm-5,#bookly-tbs .col-sm-6,#bookly-tbs .col-sm-7,#bookly-tbs .col-sm-8,#bookly-tbs .col-sm-9,#bookly-tbs .col-xs-1,#bookly-tbs .col-xs-10,#bookly-tbs .col-xs-11,#bookly-tbs .col-xs-12,#bookly-tbs .col-xs-2,#bookly-tbs .col-xs-3,#bookly-tbs .col-xs-4,#bookly-tbs .col-xs-5,#bookly-tbs .col-xs-6,#bookly-tbs .col-xs-7,#bookly-tbs .col-xs-8,#bookly-tbs .col-xs-9{position:relative;min-height:1px;padding-right:10px;padding-left:10px}#bookly-tbs .col-xs-1,#bookly-tbs .col-xs-10,#bookly-tbs .col-xs-11,#bookly-tbs .col-xs-12,#bookly-tbs .col-xs-2,#bookly-tbs .col-xs-3,#bookly-tbs .col-xs-4,#bookly-tbs .col-xs-5,#bookly-tbs .col-xs-6,#bookly-tbs .col-xs-7,#bookly-tbs .col-xs-8,#bookly-tbs .col-xs-9{float:left}#bookly-tbs .col-xs-12{width:100%}#bookly-tbs .col-xs-11{width:91.66666667%}#bookly-tbs .col-xs-10{width:83.33333333%}#bookly-tbs .col-xs-9{width:75%}#bookly-tbs .col-xs-8{width:66.66666667%}#bookly-tbs .col-xs-7{width:58.33333333%}#bookly-tbs .col-xs-6{width:50%}#bookly-tbs .col-xs-5{width:41.66666667%}#bookly-tbs .col-xs-4{width:33.33333333%}#bookly-tbs .col-xs-3{width:25%}#bookly-tbs .col-xs-2{width:16.66666667%}#bookly-tbs .col-xs-1{width:8.33333333%}#bookly-tbs .col-xs-pull-12{right:100%}#bookly-tbs .col-xs-pull-11{right:91.66666667%}#bookly-tbs .col-xs-pull-10{right:83.33333333%}#bookly-tbs .col-xs-pull-9{right:75%}#bookly-tbs .col-xs-pull-8{right:66.66666667%}#bookly-tbs .col-xs-pull-7{right:58.33333333%}#bookly-tbs .col-xs-pull-6{right:50%}#bookly-tbs .col-xs-pull-5{right:41.66666667%}#bookly-tbs .col-xs-pull-4{right:33.33333333%}#bookly-tbs .col-xs-pull-3{right:25%}#bookly-tbs .col-xs-pull-2{right:16.66666667%}#bookly-tbs .col-xs-pull-1{right:8.33333333%}#bookly-tbs .col-xs-pull-0{right:auto}#bookly-tbs .col-xs-push-12{left:100%}#bookly-tbs .col-xs-push-11{left:91.66666667%}#bookly-tbs .col-xs-push-10{left:83.33333333%}#bookly-tbs .col-xs-push-9{left:75%}#bookly-tbs .col-xs-push-8{left:66.66666667%}#bookly-tbs .col-xs-push-7{left:58.33333333%}#bookly-tbs .col-xs-push-6{left:50%}#bookly-tbs .col-xs-push-5{left:41.66666667%}#bookly-tbs .col-xs-push-4{left:33.33333333%}#bookly-tbs .col-xs-push-3{left:25%}#bookly-tbs .col-xs-push-2{left:16.66666667%}#bookly-tbs .col-xs-push-1{left:8.33333333%}#bookly-tbs .col-xs-push-0{left:auto}#bookly-tbs .col-xs-offset-12{margin-left:100%}#bookly-tbs .col-xs-offset-11{margin-left:91.66666667%}#bookly-tbs .col-xs-offset-10{margin-left:83.33333333%}#bookly-tbs .col-xs-offset-9{margin-left:75%}#bookly-tbs .col-xs-offset-8{margin-left:66.66666667%}#bookly-tbs .col-xs-offset-7{margin-left:58.33333333%}#bookly-tbs .col-xs-offset-6{margin-left:50%}#bookly-tbs .col-xs-offset-5{margin-left:41.66666667%}#bookly-tbs .col-xs-offset-4{margin-left:33.33333333%}#bookly-tbs .col-xs-offset-3{margin-left:25%}#bookly-tbs .col-xs-offset-2{margin-left:16.66666667%}#bookly-tbs .col-xs-offset-1{margin-left:8.33333333%}#bookly-tbs .col-xs-offset-0{margin-left:0}@media (min-width:768px){#bookly-tbs .col-sm-1,#bookly-tbs .col-sm-10,#bookly-tbs .col-sm-11,#bookly-tbs .col-sm-12,#bookly-tbs .col-sm-2,#bookly-tbs .col-sm-3,#bookly-tbs .col-sm-4,#bookly-tbs .col-sm-5,#bookly-tbs .col-sm-6,#bookly-tbs .col-sm-7,#bookly-tbs .col-sm-8,#bookly-tbs .col-sm-9{float:left}#bookly-tbs .col-sm-12{width:100%}#bookly-tbs .col-sm-11{width:91.66666667%}#bookly-tbs .col-sm-10{width:83.33333333%}#bookly-tbs .col-sm-9{width:75%}#bookly-tbs .col-sm-8{width:66.66666667%}#bookly-tbs .col-sm-7{width:58.33333333%}#bookly-tbs .col-sm-6{width:50%}#bookly-tbs .col-sm-5{width:41.66666667%}#bookly-tbs .col-sm-4{width:33.33333333%}#bookly-tbs .col-sm-3{width:25%}#bookly-tbs .col-sm-2{width:16.66666667%}#bookly-tbs .col-sm-1{width:8.33333333%}#bookly-tbs .col-sm-pull-12{right:100%}#bookly-tbs .col-sm-pull-11{right:91.66666667%}#bookly-tbs .col-sm-pull-10{right:83.33333333%}#bookly-tbs .col-sm-pull-9{right:75%}#bookly-tbs .col-sm-pull-8{right:66.66666667%}#bookly-tbs .col-sm-pull-7{right:58.33333333%}#bookly-tbs .col-sm-pull-6{right:50%}#bookly-tbs .col-sm-pull-5{right:41.66666667%}#bookly-tbs .col-sm-pull-4{right:33.33333333%}#bookly-tbs .col-sm-pull-3{right:25%}#bookly-tbs .col-sm-pull-2{right:16.66666667%}#bookly-tbs .col-sm-pull-1{right:8.33333333%}#bookly-tbs .col-sm-pull-0{right:auto}#bookly-tbs .col-sm-push-12{left:100%}#bookly-tbs .col-sm-push-11{left:91.66666667%}#bookly-tbs .col-sm-push-10{left:83.33333333%}#bookly-tbs .col-sm-push-9{left:75%}#bookly-tbs .col-sm-push-8{left:66.66666667%}#bookly-tbs .col-sm-push-7{left:58.33333333%}#bookly-tbs .col-sm-push-6{left:50%}#bookly-tbs .col-sm-push-5{left:41.66666667%}#bookly-tbs .col-sm-push-4{left:33.33333333%}#bookly-tbs .col-sm-push-3{left:25%}#bookly-tbs .col-sm-push-2{left:16.66666667%}#bookly-tbs .col-sm-push-1{left:8.33333333%}#bookly-tbs .col-sm-push-0{left:auto}#bookly-tbs .col-sm-offset-12{margin-left:100%}#bookly-tbs .col-sm-offset-11{margin-left:91.66666667%}#bookly-tbs .col-sm-offset-10{margin-left:83.33333333%}#bookly-tbs .col-sm-offset-9{margin-left:75%}#bookly-tbs .col-sm-offset-8{margin-left:66.66666667%}#bookly-tbs .col-sm-offset-7{margin-left:58.33333333%}#bookly-tbs .col-sm-offset-6{margin-left:50%}#bookly-tbs .col-sm-offset-5{margin-left:41.66666667%}#bookly-tbs .col-sm-offset-4{margin-left:33.33333333%}#bookly-tbs .col-sm-offset-3{margin-left:25%}#bookly-tbs .col-sm-offset-2{margin-left:16.66666667%}#bookly-tbs .col-sm-offset-1{margin-left:8.33333333%}#bookly-tbs .col-sm-offset-0{margin-left:0}}@media (min-width:992px){#bookly-tbs .col-md-1,#bookly-tbs .col-md-10,#bookly-tbs .col-md-11,#bookly-tbs .col-md-12,#bookly-tbs .col-md-2,#bookly-tbs .col-md-3,#bookly-tbs .col-md-4,#bookly-tbs .col-md-5,#bookly-tbs .col-md-6,#bookly-tbs .col-md-7,#bookly-tbs .col-md-8,#bookly-tbs .col-md-9{float:left}#bookly-tbs .col-md-12{width:100%}#bookly-tbs .col-md-11{width:91.66666667%}#bookly-tbs .col-md-10{width:83.33333333%}#bookly-tbs .col-md-9{width:75%}#bookly-tbs .col-md-8{width:66.66666667%}#bookly-tbs .col-md-7{width:58.33333333%}#bookly-tbs .col-md-6{width:50%}#bookly-tbs .col-md-5{width:41.66666667%}#bookly-tbs .col-md-4{width:33.33333333%}#bookly-tbs .col-md-3{width:25%}#bookly-tbs .col-md-2{width:16.66666667%}#bookly-tbs .col-md-1{width:8.33333333%}#bookly-tbs .col-md-pull-12{right:100%}#bookly-tbs .col-md-pull-11{right:91.66666667%}#bookly-tbs .col-md-pull-10{right:83.33333333%}#bookly-tbs .col-md-pull-9{right:75%}#bookly-tbs .col-md-pull-8{right:66.66666667%}#bookly-tbs .col-md-pull-7{right:58.33333333%}#bookly-tbs .col-md-pull-6{right:50%}#bookly-tbs .col-md-pull-5{right:41.66666667%}#bookly-tbs .col-md-pull-4{right:33.33333333%}#bookly-tbs .col-md-pull-3{right:25%}#bookly-tbs .col-md-pull-2{right:16.66666667%}#bookly-tbs .col-md-pull-1{right:8.33333333%}#bookly-tbs .col-md-pull-0{right:auto}#bookly-tbs .col-md-push-12{left:100%}#bookly-tbs .col-md-push-11{left:91.66666667%}#bookly-tbs .col-md-push-10{left:83.33333333%}#bookly-tbs .col-md-push-9{left:75%}#bookly-tbs .col-md-push-8{left:66.66666667%}#bookly-tbs .col-md-push-7{left:58.33333333%}#bookly-tbs .col-md-push-6{left:50%}#bookly-tbs .col-md-push-5{left:41.66666667%}#bookly-tbs .col-md-push-4{left:33.33333333%}#bookly-tbs .col-md-push-3{left:25%}#bookly-tbs .col-md-push-2{left:16.66666667%}#bookly-tbs .col-md-push-1{left:8.33333333%}#bookly-tbs .col-md-push-0{left:auto}#bookly-tbs .col-md-offset-12{margin-left:100%}#bookly-tbs .col-md-offset-11{margin-left:91.66666667%}#bookly-tbs .col-md-offset-10{margin-left:83.33333333%}#bookly-tbs .col-md-offset-9{margin-left:75%}#bookly-tbs .col-md-offset-8{margin-left:66.66666667%}#bookly-tbs .col-md-offset-7{margin-left:58.33333333%}#bookly-tbs .col-md-offset-6{margin-left:50%}#bookly-tbs .col-md-offset-5{margin-left:41.66666667%}#bookly-tbs .col-md-offset-4{margin-left:33.33333333%}#bookly-tbs .col-md-offset-3{margin-left:25%}#bookly-tbs .col-md-offset-2{margin-left:16.66666667%}#bookly-tbs .col-md-offset-1{margin-left:8.33333333%}#bookly-tbs .col-md-offset-0{margin-left:0}}@media (min-width:1200px){#bookly-tbs .col-lg-1,#bookly-tbs .col-lg-10,#bookly-tbs .col-lg-11,#bookly-tbs .col-lg-12,#bookly-tbs .col-lg-2,#bookly-tbs .col-lg-3,#bookly-tbs .col-lg-4,#bookly-tbs .col-lg-5,#bookly-tbs .col-lg-6,#bookly-tbs .col-lg-7,#bookly-tbs .col-lg-8,#bookly-tbs .col-lg-9{float:left}#bookly-tbs .col-lg-12{width:100%}#bookly-tbs .col-lg-11{width:91.66666667%}#bookly-tbs .col-lg-10{width:83.33333333%}#bookly-tbs .col-lg-9{width:75%}#bookly-tbs .col-lg-8{width:66.66666667%}#bookly-tbs .col-lg-7{width:58.33333333%}#bookly-tbs .col-lg-6{width:50%}#bookly-tbs .col-lg-5{width:41.66666667%}#bookly-tbs .col-lg-4{width:33.33333333%}#bookly-tbs .col-lg-3{width:25%}#bookly-tbs .col-lg-2{width:16.66666667%}#bookly-tbs .col-lg-1{width:8.33333333%}#bookly-tbs .col-lg-pull-12{right:100%}#bookly-tbs .col-lg-pull-11{right:91.66666667%}#bookly-tbs .col-lg-pull-10{right:83.33333333%}#bookly-tbs .col-lg-pull-9{right:75%}#bookly-tbs .col-lg-pull-8{right:66.66666667%}#bookly-tbs .col-lg-pull-7{right:58.33333333%}#bookly-tbs .col-lg-pull-6{right:50%}#bookly-tbs .col-lg-pull-5{right:41.66666667%}#bookly-tbs .col-lg-pull-4{right:33.33333333%}#bookly-tbs .col-lg-pull-3{right:25%}#bookly-tbs .col-lg-pull-2{right:16.66666667%}#bookly-tbs .col-lg-pull-1{right:8.33333333%}#bookly-tbs .col-lg-pull-0{right:auto}#bookly-tbs .col-lg-push-12{left:100%}#bookly-tbs .col-lg-push-11{left:91.66666667%}#bookly-tbs .col-lg-push-10{left:83.33333333%}#bookly-tbs .col-lg-push-9{left:75%}#bookly-tbs .col-lg-push-8{left:66.66666667%}#bookly-tbs .col-lg-push-7{left:58.33333333%}#bookly-tbs .col-lg-push-6{left:50%}#bookly-tbs .col-lg-push-5{left:41.66666667%}#bookly-tbs .col-lg-push-4{left:33.33333333%}#bookly-tbs .col-lg-push-3{left:25%}#bookly-tbs .col-lg-push-2{left:16.66666667%}#bookly-tbs .col-lg-push-1{left:8.33333333%}#bookly-tbs .col-lg-push-0{left:auto}#bookly-tbs .col-lg-offset-12{margin-left:100%}#bookly-tbs .col-lg-offset-11{margin-left:91.66666667%}#bookly-tbs .col-lg-offset-10{margin-left:83.33333333%}#bookly-tbs .col-lg-offset-9{margin-left:75%}#bookly-tbs .col-lg-offset-8{margin-left:66.66666667%}#bookly-tbs .col-lg-offset-7{margin-left:58.33333333%}#bookly-tbs .col-lg-offset-6{margin-left:50%}#bookly-tbs .col-lg-offset-5{margin-left:41.66666667%}#bookly-tbs .col-lg-offset-4{margin-left:33.33333333%}#bookly-tbs .col-lg-offset-3{margin-left:25%}#bookly-tbs .col-lg-offset-2{margin-left:16.66666667%}#bookly-tbs .col-lg-offset-1{margin-left:8.33333333%}#bookly-tbs .col-lg-offset-0{margin-left:0}}#bookly-tbs table{background-color:transparent}#bookly-tbs caption{padding-top:8px;padding-bottom:8px;color:#d9dee4;text-align:left}#bookly-tbs th{text-align:left}#bookly-tbs .table{width:100%;max-width:100%;margin-bottom:21px}#bookly-tbs .table>tbody>tr>td,#bookly-tbs .table>tbody>tr>th,#bookly-tbs .table>tfoot>tr>td,#bookly-tbs .table>tfoot>tr>th,#bookly-tbs .table>thead>tr>td,#bookly-tbs .table>thead>tr>th{padding:8px;line-height:1.4;vertical-align:top;border-top:1px solid #d9dee4}#bookly-tbs .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #d9dee4}#bookly-tbs .table>caption+thead>tr:first-child>td,#bookly-tbs .table>caption+thead>tr:first-child>th,#bookly-tbs .table>colgroup+thead>tr:first-child>td,#bookly-tbs .table>colgroup+thead>tr:first-child>th,#bookly-tbs .table>thead:first-child>tr:first-child>td,#bookly-tbs .table>thead:first-child>tr:first-child>th{border-top:0}#bookly-tbs .table>tbody+tbody{border-top:2px solid #d9dee4}#bookly-tbs .table .table{background-color:transparent}#bookly-tbs .table-condensed>tbody>tr>td,#bookly-tbs .table-condensed>tbody>tr>th,#bookly-tbs .table-condensed>tfoot>tr>td,#bookly-tbs .table-condensed>tfoot>tr>th,#bookly-tbs .table-condensed>thead>tr>td,#bookly-tbs .table-condensed>thead>tr>th{padding:5px}#bookly-tbs .table-bordered{border:1px solid #d9dee4}#bookly-tbs .table-bordered>tbody>tr>td,#bookly-tbs .table-bordered>tbody>tr>th,#bookly-tbs .table-bordered>tfoot>tr>td,#bookly-tbs .table-bordered>tfoot>tr>th,#bookly-tbs .table-bordered>thead>tr>td,#bookly-tbs .table-bordered>thead>tr>th{border:1px solid #d9dee4}#bookly-tbs .table-bordered>thead>tr>td,#bookly-tbs .table-bordered>thead>tr>th{border-bottom-width:2px}#bookly-tbs .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}#bookly-tbs .table-hover>tbody>tr:hover{background-color:#f5f5f5}#bookly-tbs table col[class*=col-]{position:static;display:table-column;float:none}#bookly-tbs table td[class*=col-],#bookly-tbs table th[class*=col-]{position:static;display:table-cell;float:none}#bookly-tbs .table>tbody>tr.active>td,#bookly-tbs .table>tbody>tr.active>th,#bookly-tbs .table>tbody>tr>td.active,#bookly-tbs .table>tbody>tr>th.active,#bookly-tbs .table>tfoot>tr.active>td,#bookly-tbs .table>tfoot>tr.active>th,#bookly-tbs .table>tfoot>tr>td.active,#bookly-tbs .table>tfoot>tr>th.active,#bookly-tbs .table>thead>tr.active>td,#bookly-tbs .table>thead>tr.active>th,#bookly-tbs .table>thead>tr>td.active,#bookly-tbs .table>thead>tr>th.active{background-color:#f5f5f5}#bookly-tbs .table-hover>tbody>tr.active:hover>td,#bookly-tbs .table-hover>tbody>tr.active:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.active,#bookly-tbs .table-hover>tbody>tr>td.active:hover,#bookly-tbs .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}#bookly-tbs .table>tbody>tr.success>td,#bookly-tbs .table>tbody>tr.success>th,#bookly-tbs .table>tbody>tr>td.success,#bookly-tbs .table>tbody>tr>th.success,#bookly-tbs .table>tfoot>tr.success>td,#bookly-tbs .table>tfoot>tr.success>th,#bookly-tbs .table>tfoot>tr>td.success,#bookly-tbs .table>tfoot>tr>th.success,#bookly-tbs .table>thead>tr.success>td,#bookly-tbs .table>thead>tr.success>th,#bookly-tbs .table>thead>tr>td.success,#bookly-tbs .table>thead>tr>th.success{background-color:#dff0d8}#bookly-tbs .table-hover>tbody>tr.success:hover>td,#bookly-tbs .table-hover>tbody>tr.success:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.success,#bookly-tbs .table-hover>tbody>tr>td.success:hover,#bookly-tbs .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}#bookly-tbs .table>tbody>tr.info>td,#bookly-tbs .table>tbody>tr.info>th,#bookly-tbs .table>tbody>tr>td.info,#bookly-tbs .table>tbody>tr>th.info,#bookly-tbs .table>tfoot>tr.info>td,#bookly-tbs .table>tfoot>tr.info>th,#bookly-tbs .table>tfoot>tr>td.info,#bookly-tbs .table>tfoot>tr>th.info,#bookly-tbs .table>thead>tr.info>td,#bookly-tbs .table>thead>tr.info>th,#bookly-tbs .table>thead>tr>td.info,#bookly-tbs .table>thead>tr>th.info{background-color:#d9edf7}#bookly-tbs .table-hover>tbody>tr.info:hover>td,#bookly-tbs .table-hover>tbody>tr.info:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.info,#bookly-tbs .table-hover>tbody>tr>td.info:hover,#bookly-tbs .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}#bookly-tbs .table>tbody>tr.warning>td,#bookly-tbs .table>tbody>tr.warning>th,#bookly-tbs .table>tbody>tr>td.warning,#bookly-tbs .table>tbody>tr>th.warning,#bookly-tbs .table>tfoot>tr.warning>td,#bookly-tbs .table>tfoot>tr.warning>th,#bookly-tbs .table>tfoot>tr>td.warning,#bookly-tbs .table>tfoot>tr>th.warning,#bookly-tbs .table>thead>tr.warning>td,#bookly-tbs .table>thead>tr.warning>th,#bookly-tbs .table>thead>tr>td.warning,#bookly-tbs .table>thead>tr>th.warning{background-color:#fcf8e3}#bookly-tbs .table-hover>tbody>tr.warning:hover>td,#bookly-tbs .table-hover>tbody>tr.warning:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.warning,#bookly-tbs .table-hover>tbody>tr>td.warning:hover,#bookly-tbs .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}#bookly-tbs .table>tbody>tr.danger>td,#bookly-tbs .table>tbody>tr.danger>th,#bookly-tbs .table>tbody>tr>td.danger,#bookly-tbs .table>tbody>tr>th.danger,#bookly-tbs .table>tfoot>tr.danger>td,#bookly-tbs .table>tfoot>tr.danger>th,#bookly-tbs .table>tfoot>tr>td.danger,#bookly-tbs .table>tfoot>tr>th.danger,#bookly-tbs .table>thead>tr.danger>td,#bookly-tbs .table>thead>tr.danger>th,#bookly-tbs .table>thead>tr>td.danger,#bookly-tbs .table>thead>tr>th.danger{background-color:#f2dede}#bookly-tbs .table-hover>tbody>tr.danger:hover>td,#bookly-tbs .table-hover>tbody>tr.danger:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.danger,#bookly-tbs .table-hover>tbody>tr>td.danger:hover,#bookly-tbs .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}#bookly-tbs .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){#bookly-tbs .table-responsive{width:100%;margin-bottom:15.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d9dee4}#bookly-tbs .table-responsive>.table{margin-bottom:0}#bookly-tbs .table-responsive>.table>tbody>tr>td,#bookly-tbs .table-responsive>.table>tbody>tr>th,#bookly-tbs .table-responsive>.table>tfoot>tr>td,#bookly-tbs .table-responsive>.table>tfoot>tr>th,#bookly-tbs .table-responsive>.table>thead>tr>td,#bookly-tbs .table-responsive>.table>thead>tr>th{white-space:nowrap}#bookly-tbs .table-responsive>.table-bordered{border:0}#bookly-tbs .table-responsive>.table-bordered>tbody>tr>td:first-child,#bookly-tbs .table-responsive>.table-bordered>tbody>tr>th:first-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>td:first-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>th:first-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>td:first-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}#bookly-tbs .table-responsive>.table-bordered>tbody>tr>td:last-child,#bookly-tbs .table-responsive>.table-bordered>tbody>tr>th:last-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>td:last-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>th:last-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>td:last-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}#bookly-tbs .table-responsive>.table-bordered>tbody>tr:last-child>td,#bookly-tbs .table-responsive>.table-bordered>tbody>tr:last-child>th,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr:last-child>td,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}#bookly-tbs fieldset{min-width:0;padding:0;margin:0;border:0}#bookly-tbs legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:22.5px;line-height:inherit;color:#5b6470;border:0;border-bottom:1px solid #e8ebf0}#bookly-tbs label{display:inline-block;max-width:100%;margin-bottom:7px;font-weight:700}#bookly-tbs input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bookly-tbs input[type=checkbox],#bookly-tbs input[type=radio]{margin:3px 0 0;margin-top:1px\9;line-height:normal}#bookly-tbs input[type=file]{display:block}#bookly-tbs input[type=range]{display:block;width:100%}#bookly-tbs select[multiple],#bookly-tbs select[size]{height:auto}#bookly-tbs input[type=file]:focus,#bookly-tbs input[type=checkbox]:focus,#bookly-tbs input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bookly-tbs output{display:block;padding-top:7px;font-size:15px;line-height:1.4;color:#3e424a}#bookly-tbs .form-control{display:block;width:100%;height:35px;padding:6px 12px;font-size:15px;line-height:1.4;color:#3e424a;background-color:#fff;background-image:none;border:1px solid #d9dee4;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0);box-shadow:inset 0 1px 1px rgba(0,0,0,0);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}#bookly-tbs .form-control:focus{border-color:#08c;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0),0 0 8px rgba(0,136,204,0);box-shadow:inset 0 1px 1px rgba(0,0,0,0),0 0 8px rgba(0,136,204,0)}#bookly-tbs .form-control::-moz-placeholder{color:#8a929e;opacity:1}#bookly-tbs .form-control:-ms-input-placeholder{color:#8a929e}#bookly-tbs .form-control::-webkit-input-placeholder{color:#8a929e}#bookly-tbs .form-control::-ms-expand{background-color:transparent;border:0}#bookly-tbs .form-control[disabled],#bookly-tbs .form-control[readonly],#bookly-tbs fieldset[disabled] .form-control{background-color:rgba(232,235,240,.7);opacity:1}#bookly-tbs .form-control[disabled],#bookly-tbs fieldset[disabled] .form-control{cursor:not-allowed}#bookly-tbs textarea.form-control{height:auto}#bookly-tbs input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){#bookly-tbs input[type=date].form-control,#bookly-tbs input[type=time].form-control,#bookly-tbs input[type=datetime-local].form-control,#bookly-tbs input[type=month].form-control{line-height:35px}#bookly-tbs .input-group-sm input[type=date],#bookly-tbs .input-group-sm input[type=time],#bookly-tbs .input-group-sm input[type=datetime-local],#bookly-tbs .input-group-sm input[type=month],#bookly-tbs input[type=date].input-sm,#bookly-tbs input[type=time].input-sm,#bookly-tbs input[type=datetime-local].input-sm,#bookly-tbs input[type=month].input-sm{line-height:32px}#bookly-tbs .input-group-lg input[type=date],#bookly-tbs .input-group-lg input[type=time],#bookly-tbs .input-group-lg input[type=datetime-local],#bookly-tbs .input-group-lg input[type=month],#bookly-tbs input[type=date].input-lg,#bookly-tbs input[type=time].input-lg,#bookly-tbs input[type=datetime-local].input-lg,#bookly-tbs input[type=month].input-lg{line-height:46px}}#bookly-tbs .form-group{margin-bottom:20px}#bookly-tbs .checkbox,#bookly-tbs .radio{position:relative;display:block;margin-top:6px;margin-bottom:7px}#bookly-tbs .checkbox label,#bookly-tbs .radio label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}#bookly-tbs .checkbox input[type=checkbox],#bookly-tbs .checkbox-inline input[type=checkbox],#bookly-tbs .radio input[type=radio],#bookly-tbs .radio-inline input[type=radio]{position:absolute;margin-top:3px\9;margin-left:-20px}#bookly-tbs .checkbox+.checkbox,#bookly-tbs .radio+.radio{margin-top:-5px}#bookly-tbs .checkbox-inline,#bookly-tbs .radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}#bookly-tbs .checkbox-inline+.checkbox-inline,#bookly-tbs .radio-inline+.radio-inline{margin-top:0;margin-left:10px}#bookly-tbs fieldset[disabled] input[type=checkbox],#bookly-tbs fieldset[disabled] input[type=radio],#bookly-tbs input[type=checkbox].disabled,#bookly-tbs input[type=checkbox][disabled],#bookly-tbs input[type=radio].disabled,#bookly-tbs input[type=radio][disabled]{cursor:not-allowed}#bookly-tbs .checkbox-inline.disabled,#bookly-tbs .radio-inline.disabled,#bookly-tbs fieldset[disabled] .checkbox-inline,#bookly-tbs fieldset[disabled] .radio-inline{cursor:not-allowed}#bookly-tbs .checkbox.disabled label,#bookly-tbs .radio.disabled label,#bookly-tbs fieldset[disabled] .checkbox label,#bookly-tbs fieldset[disabled] .radio label{cursor:not-allowed}#bookly-tbs .form-control-static{min-height:36px;padding-top:7px;padding-bottom:7px;margin-bottom:0}#bookly-tbs .form-control-static.input-lg,#bookly-tbs .form-control-static.input-sm{padding-right:0;padding-left:0}#bookly-tbs .input-sm{height:32px;padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs select.input-sm{height:32px;line-height:32px}#bookly-tbs select[multiple].input-sm,#bookly-tbs textarea.input-sm{height:auto}#bookly-tbs .form-group-sm .form-control{height:32px;padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs .form-group-sm select.form-control{height:32px;line-height:32px}#bookly-tbs .form-group-sm select[multiple].form-control,#bookly-tbs .form-group-sm textarea.form-control{height:auto}#bookly-tbs .form-group-sm .form-control-static{height:32px;min-height:34px;padding:6px 10px;font-size:13px;line-height:1.53846154}#bookly-tbs .input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#bookly-tbs select.input-lg{height:46px;line-height:46px}#bookly-tbs select[multiple].input-lg,#bookly-tbs textarea.input-lg{height:auto}#bookly-tbs .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#bookly-tbs .form-group-lg select.form-control{height:46px;line-height:46px}#bookly-tbs .form-group-lg select[multiple].form-control,#bookly-tbs .form-group-lg textarea.form-control{height:auto}#bookly-tbs .form-group-lg .form-control-static{height:46px;min-height:39px;padding:11px 16px;font-size:18px;line-height:1.3333333}#bookly-tbs .has-feedback{position:relative}#bookly-tbs .has-feedback .form-control{padding-right:43.75px}#bookly-tbs .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:35px;height:35px;line-height:35px;text-align:center;pointer-events:none}#bookly-tbs .form-group-lg .form-control+.form-control-feedback,#bookly-tbs .input-group-lg+.form-control-feedback,#bookly-tbs .input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}#bookly-tbs .form-group-sm .form-control+.form-control-feedback,#bookly-tbs .input-group-sm+.form-control-feedback,#bookly-tbs .input-sm+.form-control-feedback{width:32px;height:32px;line-height:32px}#bookly-tbs .has-success .checkbox,#bookly-tbs .has-success .checkbox-inline,#bookly-tbs .has-success .control-label,#bookly-tbs .has-success .help-block,#bookly-tbs .has-success .radio,#bookly-tbs .has-success .radio-inline,#bookly-tbs .has-success.checkbox label,#bookly-tbs .has-success.checkbox-inline label,#bookly-tbs .has-success.radio label,#bookly-tbs .has-success.radio-inline label{color:#3c763d}#bookly-tbs .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}#bookly-tbs .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}#bookly-tbs .has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}#bookly-tbs .has-success .form-control-feedback{color:#3c763d}#bookly-tbs .has-warning .checkbox,#bookly-tbs .has-warning .checkbox-inline,#bookly-tbs .has-warning .control-label,#bookly-tbs .has-warning .help-block,#bookly-tbs .has-warning .radio,#bookly-tbs .has-warning .radio-inline,#bookly-tbs .has-warning.checkbox label,#bookly-tbs .has-warning.checkbox-inline label,#bookly-tbs .has-warning.radio label,#bookly-tbs .has-warning.radio-inline label{color:#8a6d3b}#bookly-tbs .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}#bookly-tbs .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}#bookly-tbs .has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}#bookly-tbs .has-warning .form-control-feedback{color:#8a6d3b}#bookly-tbs .has-error .checkbox,#bookly-tbs .has-error .checkbox-inline,#bookly-tbs .has-error .control-label,#bookly-tbs .has-error .help-block,#bookly-tbs .has-error .radio,#bookly-tbs .has-error .radio-inline,#bookly-tbs .has-error.checkbox label,#bookly-tbs .has-error.checkbox-inline label,#bookly-tbs .has-error.radio label,#bookly-tbs .has-error.radio-inline label{color:#a94442}#bookly-tbs .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}#bookly-tbs .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}#bookly-tbs .has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}#bookly-tbs .has-error .form-control-feedback{color:#a94442}#bookly-tbs .has-feedback label~.form-control-feedback{top:26px}#bookly-tbs .has-feedback label.sr-only~.form-control-feedback{top:0}#bookly-tbs .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#8a929e}@media (min-width:768px){#bookly-tbs .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#bookly-tbs .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}#bookly-tbs .form-inline .form-control-static{display:inline-block}#bookly-tbs .form-inline .input-group{display:inline-table;vertical-align:middle}#bookly-tbs .form-inline .input-group .form-control,#bookly-tbs .form-inline .input-group .input-group-addon,#bookly-tbs .form-inline .input-group .input-group-btn{width:auto}#bookly-tbs .form-inline .input-group>.form-control{width:100%}#bookly-tbs .form-inline .control-label{margin-bottom:0;vertical-align:middle}#bookly-tbs .form-inline .checkbox,#bookly-tbs .form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#bookly-tbs .form-inline .has-feedback .form-control-feedback{top:0}}#bookly-tbs .form-horizontal .checkbox,#bookly-tbs .form-horizontal .checkbox-inline,#bookly-tbs .form-horizontal .radio,#bookly-tbs .form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}#bookly-tbs .form-horizontal .checkbox,#bookly-tbs .form-horizontal .radio{min-height:28px}#bookly-tbs .form-horizontal .form-group{margin-right:-10px;margin-left:-10px}@media (min-width:768px){#bookly-tbs .form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}#bookly-tbs .form-horizontal .has-feedback .form-control-feedback{right:10px}@media (min-width:768px){#bookly-tbs .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){#bookly-tbs .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:13px}}#bookly-tbs .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:15px;font-weight:400;line-height:1.4;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}#bookly-tbs .btn.active.focus,#bookly-tbs .btn.active:focus,#bookly-tbs .btn.focus,#bookly-tbs .btn:active.focus,#bookly-tbs .btn:active:focus,#bookly-tbs .btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bookly-tbs .btn.focus,#bookly-tbs .btn:focus,#bookly-tbs .btn:hover{color:#3e424a;text-decoration:none}#bookly-tbs .btn.active,#bookly-tbs .btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#bookly-tbs .btn.disabled,#bookly-tbs .btn[disabled],#bookly-tbs fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}#bookly-tbs a.btn.disabled,#bookly-tbs fieldset[disabled] a.btn{pointer-events:none}#bookly-tbs .btn-default{color:#3e424a;background-color:#fff;border-color:#d9dee4}#bookly-tbs .btn-default.focus,#bookly-tbs .btn-default:focus{color:#3e424a;background-color:#e6e6e6;border-color:#8e9daf}#bookly-tbs .btn-default:hover{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .btn-default.active,#bookly-tbs .btn-default:active,#bookly-tbs .open>.dropdown-toggle.btn-default{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .btn-default.active.focus,#bookly-tbs .btn-default.active:focus,#bookly-tbs .btn-default.active:hover,#bookly-tbs .btn-default:active.focus,#bookly-tbs .btn-default:active:focus,#bookly-tbs .btn-default:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-default.focus,#bookly-tbs .open>.dropdown-toggle.btn-default:focus,#bookly-tbs .open>.dropdown-toggle.btn-default:hover{color:#3e424a;background-color:#d4d4d4;border-color:#8e9daf}#bookly-tbs .btn-default.active,#bookly-tbs .btn-default:active,#bookly-tbs .open>.dropdown-toggle.btn-default{background-image:none}#bookly-tbs .btn-default.disabled.focus,#bookly-tbs .btn-default.disabled:focus,#bookly-tbs .btn-default.disabled:hover,#bookly-tbs .btn-default[disabled].focus,#bookly-tbs .btn-default[disabled]:focus,#bookly-tbs .btn-default[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-default.focus,#bookly-tbs fieldset[disabled] .btn-default:focus,#bookly-tbs fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#d9dee4}#bookly-tbs .btn-default .badge{color:#fff;background-color:#3e424a}#bookly-tbs .btn-primary{color:#fff;background-color:#08c;border-color:#08c}#bookly-tbs .btn-primary.focus,#bookly-tbs .btn-primary:focus{color:#fff;background-color:#069;border-color:#00334d}#bookly-tbs .btn-primary:hover{color:#fff;background-color:#069;border-color:#005f8f}#bookly-tbs .btn-primary.active,#bookly-tbs .btn-primary:active,#bookly-tbs .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#069;border-color:#005f8f}#bookly-tbs .btn-primary.active.focus,#bookly-tbs .btn-primary.active:focus,#bookly-tbs .btn-primary.active:hover,#bookly-tbs .btn-primary:active.focus,#bookly-tbs .btn-primary:active:focus,#bookly-tbs .btn-primary:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-primary.focus,#bookly-tbs .open>.dropdown-toggle.btn-primary:focus,#bookly-tbs .open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#004e75;border-color:#00334d}#bookly-tbs .btn-primary.active,#bookly-tbs .btn-primary:active,#bookly-tbs .open>.dropdown-toggle.btn-primary{background-image:none}#bookly-tbs .btn-primary.disabled.focus,#bookly-tbs .btn-primary.disabled:focus,#bookly-tbs .btn-primary.disabled:hover,#bookly-tbs .btn-primary[disabled].focus,#bookly-tbs .btn-primary[disabled]:focus,#bookly-tbs .btn-primary[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-primary.focus,#bookly-tbs fieldset[disabled] .btn-primary:focus,#bookly-tbs fieldset[disabled] .btn-primary:hover{background-color:#08c;border-color:#08c}#bookly-tbs .btn-primary .badge{color:#08c;background-color:#fff}#bookly-tbs .btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}#bookly-tbs .btn-success.focus,#bookly-tbs .btn-success:focus{color:#fff;background-color:#449d44;border-color:#2d672d}#bookly-tbs .btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}#bookly-tbs .btn-success.active,#bookly-tbs .btn-success:active,#bookly-tbs .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#419641}#bookly-tbs .btn-success.active.focus,#bookly-tbs .btn-success.active:focus,#bookly-tbs .btn-success.active:hover,#bookly-tbs .btn-success:active.focus,#bookly-tbs .btn-success:active:focus,#bookly-tbs .btn-success:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-success.focus,#bookly-tbs .open>.dropdown-toggle.btn-success:focus,#bookly-tbs .open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#2d672d}#bookly-tbs .btn-success.active,#bookly-tbs .btn-success:active,#bookly-tbs .open>.dropdown-toggle.btn-success{background-image:none}#bookly-tbs .btn-success.disabled.focus,#bookly-tbs .btn-success.disabled:focus,#bookly-tbs .btn-success.disabled:hover,#bookly-tbs .btn-success[disabled].focus,#bookly-tbs .btn-success[disabled]:focus,#bookly-tbs .btn-success[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-success.focus,#bookly-tbs fieldset[disabled] .btn-success:focus,#bookly-tbs fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#5cb85c}#bookly-tbs .btn-success .badge{color:#5cb85c;background-color:#fff}#bookly-tbs .btn-info{color:#fff;background-color:#5bc0de;border-color:#31b0d5}#bookly-tbs .btn-info.focus,#bookly-tbs .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#175b70}#bookly-tbs .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2289a7}#bookly-tbs .btn-info.active,#bookly-tbs .btn-info:active,#bookly-tbs .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#2289a7}#bookly-tbs .btn-info.active.focus,#bookly-tbs .btn-info.active:focus,#bookly-tbs .btn-info.active:hover,#bookly-tbs .btn-info:active.focus,#bookly-tbs .btn-info:active:focus,#bookly-tbs .btn-info:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-info.focus,#bookly-tbs .open>.dropdown-toggle.btn-info:focus,#bookly-tbs .open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#175b70}#bookly-tbs .btn-info.active,#bookly-tbs .btn-info:active,#bookly-tbs .open>.dropdown-toggle.btn-info{background-image:none}#bookly-tbs .btn-info.disabled.focus,#bookly-tbs .btn-info.disabled:focus,#bookly-tbs .btn-info.disabled:hover,#bookly-tbs .btn-info[disabled].focus,#bookly-tbs .btn-info[disabled]:focus,#bookly-tbs .btn-info[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-info.focus,#bookly-tbs fieldset[disabled] .btn-info:focus,#bookly-tbs fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#31b0d5}#bookly-tbs .btn-info .badge{color:#5bc0de;background-color:#fff}#bookly-tbs .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}#bookly-tbs .btn-warning.focus,#bookly-tbs .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#b06d0f}#bookly-tbs .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}#bookly-tbs .btn-warning.active,#bookly-tbs .btn-warning:active,#bookly-tbs .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#eb9316}#bookly-tbs .btn-warning.active.focus,#bookly-tbs .btn-warning.active:focus,#bookly-tbs .btn-warning.active:hover,#bookly-tbs .btn-warning:active.focus,#bookly-tbs .btn-warning:active:focus,#bookly-tbs .btn-warning:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-warning.focus,#bookly-tbs .open>.dropdown-toggle.btn-warning:focus,#bookly-tbs .open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#b06d0f}#bookly-tbs .btn-warning.active,#bookly-tbs .btn-warning:active,#bookly-tbs .open>.dropdown-toggle.btn-warning{background-image:none}#bookly-tbs .btn-warning.disabled.focus,#bookly-tbs .btn-warning.disabled:focus,#bookly-tbs .btn-warning.disabled:hover,#bookly-tbs .btn-warning[disabled].focus,#bookly-tbs .btn-warning[disabled]:focus,#bookly-tbs .btn-warning[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-warning.focus,#bookly-tbs fieldset[disabled] .btn-warning:focus,#bookly-tbs fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#f0ad4e}#bookly-tbs .btn-warning .badge{color:#f0ad4e;background-color:#fff}#bookly-tbs .btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}#bookly-tbs .btn-danger.focus,#bookly-tbs .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#8b211e}#bookly-tbs .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}#bookly-tbs .btn-danger.active,#bookly-tbs .btn-danger:active,#bookly-tbs .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#c12e2a}#bookly-tbs .btn-danger.active.focus,#bookly-tbs .btn-danger.active:focus,#bookly-tbs .btn-danger.active:hover,#bookly-tbs .btn-danger:active.focus,#bookly-tbs .btn-danger:active:focus,#bookly-tbs .btn-danger:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-danger.focus,#bookly-tbs .open>.dropdown-toggle.btn-danger:focus,#bookly-tbs .open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}#bookly-tbs .btn-danger.active,#bookly-tbs .btn-danger:active,#bookly-tbs .open>.dropdown-toggle.btn-danger{background-image:none}#bookly-tbs .btn-danger.disabled.focus,#bookly-tbs .btn-danger.disabled:focus,#bookly-tbs .btn-danger.disabled:hover,#bookly-tbs .btn-danger[disabled].focus,#bookly-tbs .btn-danger[disabled]:focus,#bookly-tbs .btn-danger[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-danger.focus,#bookly-tbs fieldset[disabled] .btn-danger:focus,#bookly-tbs fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d9534f}#bookly-tbs .btn-danger .badge{color:#d9534f;background-color:#fff}#bookly-tbs .btn-link{font-weight:400;color:#08c;border-radius:0}#bookly-tbs .btn-link,#bookly-tbs .btn-link.active,#bookly-tbs .btn-link:active,#bookly-tbs .btn-link[disabled],#bookly-tbs fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .btn-link,#bookly-tbs .btn-link:active,#bookly-tbs .btn-link:focus,#bookly-tbs .btn-link:hover{border-color:transparent}#bookly-tbs .btn-link:focus,#bookly-tbs .btn-link:hover{color:#005580;text-decoration:none;background-color:transparent}#bookly-tbs .btn-link[disabled]:focus,#bookly-tbs .btn-link[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-link:focus,#bookly-tbs fieldset[disabled] .btn-link:hover{color:#8a929e;text-decoration:none}#bookly-tbs .btn-group-lg>.btn,#bookly-tbs .btn-lg{padding:10px 16px;font-size:15px;line-height:1.3333333;border-radius:4px}#bookly-tbs .btn-group-sm>.btn,#bookly-tbs .btn-sm{padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs .btn-group-xs>.btn,#bookly-tbs .btn-xs{padding:1px 5px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs .btn-block{display:block;width:100%}#bookly-tbs .btn-block+.btn-block{margin-top:5px}#bookly-tbs input[type=button].btn-block,#bookly-tbs input[type=reset].btn-block,#bookly-tbs input[type=submit].btn-block{width:100%}#bookly-tbs .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}#bookly-tbs .fade.in{opacity:1}#bookly-tbs .collapse{display:none}#bookly-tbs .collapse.in{display:block}#bookly-tbs tr.collapse.in{display:table-row}#bookly-tbs tbody.collapse.in{display:table-row-group}#bookly-tbs .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}#bookly-tbs .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:5px dashed;border-top:5px solid\9;border-right:5px solid transparent;border-left:5px solid transparent}#bookly-tbs .dropdown,#bookly-tbs .dropup{position:relative}#bookly-tbs .dropdown-toggle:focus{outline:0}#bookly-tbs .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:15px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}#bookly-tbs .dropdown-menu.pull-right{right:0;left:auto}#bookly-tbs .dropdown-menu .divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}#bookly-tbs .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.4;color:#5b6470;white-space:nowrap}#bookly-tbs .dropdown-menu>li>a:focus,#bookly-tbs .dropdown-menu>li>a:hover{color:#505762;text-decoration:none;background-color:#f5f5f5}#bookly-tbs .dropdown-menu>.active>a,#bookly-tbs .dropdown-menu>.active>a:focus,#bookly-tbs .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#08c;outline:0}#bookly-tbs .dropdown-menu>.disabled>a,#bookly-tbs .dropdown-menu>.disabled>a:focus,#bookly-tbs .dropdown-menu>.disabled>a:hover{color:#d9dee4}#bookly-tbs .dropdown-menu>.disabled>a:focus,#bookly-tbs .dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}#bookly-tbs .open>.dropdown-menu{display:block}#bookly-tbs .open>a{outline:0}#bookly-tbs .dropdown-menu-right{right:0;left:auto}#bookly-tbs .dropdown-menu-left{right:auto;left:0}#bookly-tbs .dropdown-header{display:block;padding:3px 20px;font-size:13px;line-height:1.4;color:#d9dee4;white-space:nowrap}#bookly-tbs .dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}#bookly-tbs .pull-right>.dropdown-menu{right:0;left:auto}#bookly-tbs .dropup .caret,#bookly-tbs .navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:5px dashed;border-bottom:5px solid\9}#bookly-tbs .dropup .dropdown-menu,#bookly-tbs .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){#bookly-tbs .navbar-right .dropdown-menu{right:0;left:auto}#bookly-tbs .navbar-right .dropdown-menu-left{right:auto;left:0}}#bookly-tbs .btn-group,#bookly-tbs .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}#bookly-tbs .btn-group-vertical>.btn,#bookly-tbs .btn-group>.btn{position:relative;float:left}#bookly-tbs .btn-group-vertical>.btn.active,#bookly-tbs .btn-group-vertical>.btn:active,#bookly-tbs .btn-group-vertical>.btn:focus,#bookly-tbs .btn-group-vertical>.btn:hover,#bookly-tbs .btn-group>.btn.active,#bookly-tbs .btn-group>.btn:active,#bookly-tbs .btn-group>.btn:focus,#bookly-tbs .btn-group>.btn:hover{z-index:2}#bookly-tbs .btn-group .btn+.btn,#bookly-tbs .btn-group .btn+.btn-group,#bookly-tbs .btn-group .btn-group+.btn,#bookly-tbs .btn-group .btn-group+.btn-group{margin-left:-1px}#bookly-tbs .btn-toolbar{margin-left:-5px}#bookly-tbs .btn-toolbar .btn,#bookly-tbs .btn-toolbar .btn-group,#bookly-tbs .btn-toolbar .input-group{float:left}#bookly-tbs .btn-toolbar>.btn,#bookly-tbs .btn-toolbar>.btn-group,#bookly-tbs .btn-toolbar>.input-group{margin-left:5px}#bookly-tbs .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}#bookly-tbs .btn-group>.btn:first-child{margin-left:0}#bookly-tbs .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .btn-group>.btn:last-child:not(:first-child),#bookly-tbs .btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group>.btn-group{float:left}#bookly-tbs .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bookly-tbs .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,#bookly-tbs .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group .dropdown-toggle:active,#bookly-tbs .btn-group.open .dropdown-toggle{outline:0}#bookly-tbs .btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}#bookly-tbs .btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}#bookly-tbs .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#bookly-tbs .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .btn .caret{margin-left:0}#bookly-tbs .btn-lg .caret{border-width:6px 6px 0;border-bottom-width:0}#bookly-tbs .dropup .btn-lg .caret{border-width:0 6px 6px}#bookly-tbs .btn-group-vertical>.btn,#bookly-tbs .btn-group-vertical>.btn-group,#bookly-tbs .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}#bookly-tbs .btn-group-vertical>.btn-group>.btn{float:none}#bookly-tbs .btn-group-vertical>.btn+.btn,#bookly-tbs .btn-group-vertical>.btn+.btn-group,#bookly-tbs .btn-group-vertical>.btn-group+.btn,#bookly-tbs .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}#bookly-tbs .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}#bookly-tbs .btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#bookly-tbs .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bookly-tbs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,#bookly-tbs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}#bookly-tbs .btn-group-justified>.btn,#bookly-tbs .btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}#bookly-tbs .btn-group-justified>.btn-group .btn{width:100%}#bookly-tbs .btn-group-justified>.btn-group .dropdown-menu{left:auto}#bookly-tbs [data-toggle=buttons]>.btn input[type=checkbox],#bookly-tbs [data-toggle=buttons]>.btn input[type=radio],#bookly-tbs [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],#bookly-tbs [data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}#bookly-tbs .input-group{position:relative;display:table;border-collapse:separate}#bookly-tbs .input-group[class*=col-]{float:none;padding-right:0;padding-left:0}#bookly-tbs .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}#bookly-tbs .input-group .form-control:focus{z-index:3}#bookly-tbs .input-group-lg>.form-control,#bookly-tbs .input-group-lg>.input-group-addon,#bookly-tbs .input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#bookly-tbs select.input-group-lg>.form-control,#bookly-tbs select.input-group-lg>.input-group-addon,#bookly-tbs select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}#bookly-tbs select[multiple].input-group-lg>.form-control,#bookly-tbs select[multiple].input-group-lg>.input-group-addon,#bookly-tbs select[multiple].input-group-lg>.input-group-btn>.btn,#bookly-tbs textarea.input-group-lg>.form-control,#bookly-tbs textarea.input-group-lg>.input-group-addon,#bookly-tbs textarea.input-group-lg>.input-group-btn>.btn{height:auto}#bookly-tbs .input-group-sm>.form-control,#bookly-tbs .input-group-sm>.input-group-addon,#bookly-tbs .input-group-sm>.input-group-btn>.btn{height:32px;padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs select.input-group-sm>.form-control,#bookly-tbs select.input-group-sm>.input-group-addon,#bookly-tbs select.input-group-sm>.input-group-btn>.btn{height:32px;line-height:32px}#bookly-tbs select[multiple].input-group-sm>.form-control,#bookly-tbs select[multiple].input-group-sm>.input-group-addon,#bookly-tbs select[multiple].input-group-sm>.input-group-btn>.btn,#bookly-tbs textarea.input-group-sm>.form-control,#bookly-tbs textarea.input-group-sm>.input-group-addon,#bookly-tbs textarea.input-group-sm>.input-group-btn>.btn{height:auto}#bookly-tbs .input-group .form-control,#bookly-tbs .input-group-addon,#bookly-tbs .input-group-btn{display:table-cell}#bookly-tbs .input-group .form-control:not(:first-child):not(:last-child),#bookly-tbs .input-group-addon:not(:first-child):not(:last-child),#bookly-tbs .input-group-btn:not(:first-child):not(:last-child){border-radius:0}#bookly-tbs .input-group-addon,#bookly-tbs .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}#bookly-tbs .input-group-addon{padding:6px 12px;font-size:15px;font-weight:400;line-height:1;color:#3e424a;text-align:center;background-color:#e8ebf0;border:1px solid #d9dee4;border-radius:4px}#bookly-tbs .input-group-addon.input-sm{padding:5px 10px;font-size:13px;border-radius:3px}#bookly-tbs .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}#bookly-tbs .input-group-addon input[type=checkbox],#bookly-tbs .input-group-addon input[type=radio]{margin-top:0}#bookly-tbs .input-group .form-control:first-child,#bookly-tbs .input-group-addon:first-child,#bookly-tbs .input-group-btn:first-child>.btn,#bookly-tbs .input-group-btn:first-child>.btn-group>.btn,#bookly-tbs .input-group-btn:first-child>.dropdown-toggle,#bookly-tbs .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,#bookly-tbs .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .input-group-addon:first-child{border-right:0}#bookly-tbs .input-group .form-control:last-child,#bookly-tbs .input-group-addon:last-child,#bookly-tbs .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,#bookly-tbs .input-group-btn:first-child>.btn:not(:first-child),#bookly-tbs .input-group-btn:last-child>.btn,#bookly-tbs .input-group-btn:last-child>.btn-group>.btn,#bookly-tbs .input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .input-group-addon:last-child{border-left:0}#bookly-tbs .input-group-btn{position:relative;font-size:0;white-space:nowrap}#bookly-tbs .input-group-btn>.btn{position:relative}#bookly-tbs .input-group-btn>.btn+.btn{margin-left:-1px}#bookly-tbs .input-group-btn>.btn:active,#bookly-tbs .input-group-btn>.btn:focus,#bookly-tbs .input-group-btn>.btn:hover{z-index:2}#bookly-tbs .input-group-btn:first-child>.btn,#bookly-tbs .input-group-btn:first-child>.btn-group{margin-right:-1px}#bookly-tbs .input-group-btn:last-child>.btn,#bookly-tbs .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}#bookly-tbs .nav{padding-left:0;margin-bottom:0;list-style:none}#bookly-tbs .nav>li{position:relative;display:block}#bookly-tbs .nav>li>a{position:relative;display:block;padding:10px 15px}#bookly-tbs .nav>li>a:focus,#bookly-tbs .nav>li>a:hover{text-decoration:none;background-color:#e8ebf0}#bookly-tbs .nav>li.disabled>a{color:#d9dee4}#bookly-tbs .nav>li.disabled>a:focus,#bookly-tbs .nav>li.disabled>a:hover{color:#d9dee4;text-decoration:none;cursor:not-allowed;background-color:transparent}#bookly-tbs .nav .open>a,#bookly-tbs .nav .open>a:focus,#bookly-tbs .nav .open>a:hover{background-color:#e8ebf0;border-color:#08c}#bookly-tbs .nav .nav-divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}#bookly-tbs .nav>li>a>img{max-width:none}#bookly-tbs .nav-tabs{border-bottom:1px solid #d9dee4}#bookly-tbs .nav-tabs>li{float:left;margin-bottom:-1px}#bookly-tbs .nav-tabs>li>a{margin-right:2px;line-height:1.4;border:1px solid transparent;border-radius:4px 4px 0 0}#bookly-tbs .nav-tabs>li>a:hover{border-color:#e8ebf0 #e8ebf0 #d9dee4}#bookly-tbs .nav-tabs>li.active>a,#bookly-tbs .nav-tabs>li.active>a:focus,#bookly-tbs .nav-tabs>li.active>a:hover{color:#8a929e;cursor:default;background-color:transparent;border:1px solid transparent;border-bottom-color:transparent}#bookly-tbs .nav-tabs.nav-justified{width:100%;border-bottom:0}#bookly-tbs .nav-tabs.nav-justified>li{float:none}#bookly-tbs .nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}#bookly-tbs .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:1px){#bookly-tbs .nav-tabs.nav-justified>li{display:table-cell;width:1%}#bookly-tbs .nav-tabs.nav-justified>li>a{margin-bottom:0}}#bookly-tbs .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}#bookly-tbs .nav-tabs.nav-justified>.active>a,#bookly-tbs .nav-tabs.nav-justified>.active>a:focus,#bookly-tbs .nav-tabs.nav-justified>.active>a:hover{border:1px solid #08c}@media (min-width:768px){#bookly-tbs .nav-tabs.nav-justified>li>a{border-bottom:1px solid #d9dee4;border-radius:4px 4px 0 0}#bookly-tbs .nav-tabs.nav-justified>.active>a,#bookly-tbs .nav-tabs.nav-justified>.active>a:focus,#bookly-tbs .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#08c}}#bookly-tbs .nav-pills>li{float:left}#bookly-tbs .nav-pills>li>a{border-radius:4px}#bookly-tbs .nav-pills>li+li{margin-left:2px}#bookly-tbs .nav-pills>li.active>a,#bookly-tbs .nav-pills>li.active>a:focus,#bookly-tbs .nav-pills>li.active>a:hover{color:#fff;background-color:#08c}#bookly-tbs .nav-stacked>li{float:none}#bookly-tbs .nav-stacked>li+li{margin-top:2px;margin-left:0}#bookly-tbs .nav-justified{width:100%}#bookly-tbs .nav-justified>li{float:none}#bookly-tbs .nav-justified>li>a{margin-bottom:5px;text-align:center}#bookly-tbs .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:1px){#bookly-tbs .nav-justified>li{display:table-cell;width:1%}#bookly-tbs .nav-justified>li>a{margin-bottom:0}}#bookly-tbs .nav-tabs-justified{border-bottom:0}#bookly-tbs .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}#bookly-tbs .nav-tabs-justified>.active>a,#bookly-tbs .nav-tabs-justified>.active>a:focus,#bookly-tbs .nav-tabs-justified>.active>a:hover{border:1px solid #08c}@media (min-width:768px){#bookly-tbs .nav-tabs-justified>li>a{border-bottom:1px solid #d9dee4;border-radius:4px 4px 0 0}#bookly-tbs .nav-tabs-justified>.active>a,#bookly-tbs .nav-tabs-justified>.active>a:focus,#bookly-tbs .nav-tabs-justified>.active>a:hover{border-bottom-color:#08c}}#bookly-tbs .tab-content>.tab-pane{display:none}#bookly-tbs .tab-content>.active{display:block}#bookly-tbs .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .navbar{position:relative;min-height:50px;margin-bottom:21px;border:1px solid transparent}@media (min-width:768px){#bookly-tbs .navbar{border-radius:4px}}@media (min-width:768px){#bookly-tbs .navbar-header{float:left}}#bookly-tbs .navbar-collapse{padding-right:10px;padding-left:10px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}#bookly-tbs .navbar-collapse.in{overflow-y:auto}@media (min-width:768px){#bookly-tbs .navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}#bookly-tbs .navbar-collapse.in{overflow-y:visible}#bookly-tbs .navbar-fixed-bottom .navbar-collapse,#bookly-tbs .navbar-fixed-top .navbar-collapse,#bookly-tbs .navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}#bookly-tbs .navbar-fixed-bottom .navbar-collapse,#bookly-tbs .navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){#bookly-tbs .navbar-fixed-bottom .navbar-collapse,#bookly-tbs .navbar-fixed-top .navbar-collapse{max-height:200px}}#bookly-tbs .container-fluid>.navbar-collapse,#bookly-tbs .container-fluid>.navbar-header,#bookly-tbs .container>.navbar-collapse,#bookly-tbs .container>.navbar-header{margin-right:-10px;margin-left:-10px}@media (min-width:768px){#bookly-tbs .container-fluid>.navbar-collapse,#bookly-tbs .container-fluid>.navbar-header,#bookly-tbs .container>.navbar-collapse,#bookly-tbs .container>.navbar-header{margin-right:0;margin-left:0}}#bookly-tbs .navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){#bookly-tbs .navbar-static-top{border-radius:0}}#bookly-tbs .navbar-fixed-bottom,#bookly-tbs .navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){#bookly-tbs .navbar-fixed-bottom,#bookly-tbs .navbar-fixed-top{border-radius:0}}#bookly-tbs .navbar-fixed-top{top:0;border-width:0 0 1px}#bookly-tbs .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}#bookly-tbs .navbar-brand{float:left;height:50px;padding:14.5px 10px;font-size:18px;line-height:21px}#bookly-tbs .navbar-brand:focus,#bookly-tbs .navbar-brand:hover{text-decoration:none}#bookly-tbs .navbar-brand>img{display:block}@media (min-width:768px){#bookly-tbs .navbar>.container .navbar-brand,#bookly-tbs .navbar>.container-fluid .navbar-brand{margin-left:-10px}}#bookly-tbs .navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:10px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}#bookly-tbs .navbar-toggle:focus{outline:0}#bookly-tbs .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}#bookly-tbs .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){#bookly-tbs .navbar-toggle{display:none}}#bookly-tbs .navbar-nav{margin:7.25px -10px}#bookly-tbs .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media (max-width:767px){#bookly-tbs .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .navbar-nav .open .dropdown-menu .dropdown-header,#bookly-tbs .navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}#bookly-tbs .navbar-nav .open .dropdown-menu>li>a{line-height:21px}#bookly-tbs .navbar-nav .open .dropdown-menu>li>a:focus,#bookly-tbs .navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){#bookly-tbs .navbar-nav{float:left;margin:0}#bookly-tbs .navbar-nav>li{float:left}#bookly-tbs .navbar-nav>li>a{padding-top:14.5px;padding-bottom:14.5px}}#bookly-tbs .navbar-form{padding:10px 10px;margin-top:7.5px;margin-right:-10px;margin-bottom:7.5px;margin-left:-10px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){#bookly-tbs .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#bookly-tbs .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}#bookly-tbs .navbar-form .form-control-static{display:inline-block}#bookly-tbs .navbar-form .input-group{display:inline-table;vertical-align:middle}#bookly-tbs .navbar-form .input-group .form-control,#bookly-tbs .navbar-form .input-group .input-group-addon,#bookly-tbs .navbar-form .input-group .input-group-btn{width:auto}#bookly-tbs .navbar-form .input-group>.form-control{width:100%}#bookly-tbs .navbar-form .control-label{margin-bottom:0;vertical-align:middle}#bookly-tbs .navbar-form .checkbox,#bookly-tbs .navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#bookly-tbs .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){#bookly-tbs .navbar-form .form-group{margin-bottom:5px}#bookly-tbs .navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){#bookly-tbs .navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}#bookly-tbs .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}#bookly-tbs .navbar-btn{margin-top:7.5px;margin-bottom:7.5px}#bookly-tbs .navbar-btn.btn-sm{margin-top:9px;margin-bottom:9px}#bookly-tbs .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}#bookly-tbs .navbar-text{margin-top:14.5px;margin-bottom:14.5px}@media (min-width:768px){#bookly-tbs .navbar-text{float:left;margin-right:10px;margin-left:10px}}@media (min-width:768px){#bookly-tbs .navbar-left{float:left!important}#bookly-tbs .navbar-right{float:right!important;margin-right:-10px}#bookly-tbs .navbar-right~.navbar-right{margin-right:0}}#bookly-tbs .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-brand{color:#777}#bookly-tbs .navbar-default .navbar-brand:focus,#bookly-tbs .navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}#bookly-tbs .navbar-default .navbar-text{color:#777}#bookly-tbs .navbar-default .navbar-nav>li>a{color:#777}#bookly-tbs .navbar-default .navbar-nav>li>a:focus,#bookly-tbs .navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}#bookly-tbs .navbar-default .navbar-nav>.active>a,#bookly-tbs .navbar-default .navbar-nav>.active>a:focus,#bookly-tbs .navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-nav>.disabled>a,#bookly-tbs .navbar-default .navbar-nav>.disabled>a:focus,#bookly-tbs .navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}#bookly-tbs .navbar-default .navbar-toggle{border-color:#e8ebf0}#bookly-tbs .navbar-default .navbar-toggle:focus,#bookly-tbs .navbar-default .navbar-toggle:hover{background-color:#e8ebf0}#bookly-tbs .navbar-default .navbar-toggle .icon-bar{background-color:#8a929e}#bookly-tbs .navbar-default .navbar-collapse,#bookly-tbs .navbar-default .navbar-form{border-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-nav>.open>a,#bookly-tbs .navbar-default .navbar-nav>.open>a:focus,#bookly-tbs .navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.active>a,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}#bookly-tbs .navbar-default .navbar-link{color:#777}#bookly-tbs .navbar-default .navbar-link:hover{color:#333}#bookly-tbs .navbar-default .btn-link{color:#777}#bookly-tbs .navbar-default .btn-link:focus,#bookly-tbs .navbar-default .btn-link:hover{color:#333}#bookly-tbs .navbar-default .btn-link[disabled]:focus,#bookly-tbs .navbar-default .btn-link[disabled]:hover,#bookly-tbs fieldset[disabled] .navbar-default .btn-link:focus,#bookly-tbs fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}#bookly-tbs .navbar-inverse{background-color:#222;border-color:#080808}#bookly-tbs .navbar-inverse .navbar-brand{color:#fff}#bookly-tbs .navbar-inverse .navbar-brand:focus,#bookly-tbs .navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-text{color:#fff}#bookly-tbs .navbar-inverse .navbar-nav>li>a{color:#fff}#bookly-tbs .navbar-inverse .navbar-nav>li>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-nav>.active>a,#bookly-tbs .navbar-inverse .navbar-nav>.active>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav>.disabled>a,#bookly-tbs .navbar-inverse .navbar-nav>.disabled>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-toggle{border-color:#333}#bookly-tbs .navbar-inverse .navbar-toggle:focus,#bookly-tbs .navbar-inverse .navbar-toggle:hover{background-color:#333}#bookly-tbs .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}#bookly-tbs .navbar-inverse .navbar-collapse,#bookly-tbs .navbar-inverse .navbar-form{border-color:#101010}#bookly-tbs .navbar-inverse .navbar-nav>.open>a,#bookly-tbs .navbar-inverse .navbar-nav>.open>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}#bookly-tbs .navbar-inverse .navbar-link{color:#fff}#bookly-tbs .navbar-inverse .navbar-link:hover{color:#fff}#bookly-tbs .navbar-inverse .btn-link{color:#fff}#bookly-tbs .navbar-inverse .btn-link:focus,#bookly-tbs .navbar-inverse .btn-link:hover{color:#fff}#bookly-tbs .navbar-inverse .btn-link[disabled]:focus,#bookly-tbs .navbar-inverse .btn-link[disabled]:hover,#bookly-tbs fieldset[disabled] .navbar-inverse .btn-link:focus,#bookly-tbs fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}#bookly-tbs .breadcrumb{padding:8px 15px;margin-bottom:21px;list-style:none;background-color:#f5f5f5;border-radius:4px}#bookly-tbs .breadcrumb>li{display:inline-block}#bookly-tbs .breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}#bookly-tbs .breadcrumb>.active{color:#d9dee4}#bookly-tbs .pagination{display:inline-block;padding-left:0;margin:21px 0;border-radius:4px}#bookly-tbs .pagination>li{display:inline}#bookly-tbs .pagination>li>a,#bookly-tbs .pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.4;color:#08c;text-decoration:none;background-color:#fff;border:1px solid #e8ebf0}#bookly-tbs .pagination>li:first-child>a,#bookly-tbs .pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}#bookly-tbs .pagination>li:last-child>a,#bookly-tbs .pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}#bookly-tbs .pagination>li>a:focus,#bookly-tbs .pagination>li>a:hover,#bookly-tbs .pagination>li>span:focus,#bookly-tbs .pagination>li>span:hover{z-index:2;color:#005580;background-color:#e8ebf0;border-color:#e8ebf0}#bookly-tbs .pagination>.active>a,#bookly-tbs .pagination>.active>a:focus,#bookly-tbs .pagination>.active>a:hover,#bookly-tbs .pagination>.active>span,#bookly-tbs .pagination>.active>span:focus,#bookly-tbs .pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#08c;border-color:#08c}#bookly-tbs .pagination>.disabled>a,#bookly-tbs .pagination>.disabled>a:focus,#bookly-tbs .pagination>.disabled>a:hover,#bookly-tbs .pagination>.disabled>span,#bookly-tbs .pagination>.disabled>span:focus,#bookly-tbs .pagination>.disabled>span:hover{color:#d9dee4;pointer-events:none;cursor:not-allowed;background-color:#fff;border-color:#e8ebf0}#bookly-tbs .pagination-lg>li>a,#bookly-tbs .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}#bookly-tbs .pagination-lg>li:first-child>a,#bookly-tbs .pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}#bookly-tbs .pagination-lg>li:last-child>a,#bookly-tbs .pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}#bookly-tbs .pagination-sm>li>a,#bookly-tbs .pagination-sm>li>span{padding:5px 10px;font-size:13px;line-height:1.53846154}#bookly-tbs .pagination-sm>li:first-child>a,#bookly-tbs .pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .pagination-sm>li:last-child>a,#bookly-tbs .pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}#bookly-tbs .pager{padding-left:0;margin:21px 0;text-align:center;list-style:none}#bookly-tbs .pager li{display:inline}#bookly-tbs .pager li>a,#bookly-tbs .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #e8ebf0;border-radius:15px}#bookly-tbs .pager li>a:focus,#bookly-tbs .pager li>a:hover{text-decoration:none;background-color:#e8ebf0}#bookly-tbs .pager .next>a,#bookly-tbs .pager .next>span{float:right}#bookly-tbs .pager .previous>a,#bookly-tbs .pager .previous>span{float:left}#bookly-tbs .pager .disabled>a,#bookly-tbs .pager .disabled>a:focus,#bookly-tbs .pager .disabled>a:hover,#bookly-tbs .pager .disabled>span{color:#d9dee4;pointer-events:none;cursor:not-allowed;background-color:#fff}#bookly-tbs .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}#bookly-tbs a.label:focus,#bookly-tbs a.label:hover{color:#fff;text-decoration:none;cursor:pointer}#bookly-tbs .label:empty{display:none}#bookly-tbs .btn .label{position:relative;top:-1px}#bookly-tbs .label-default{background-color:#d9dee4}#bookly-tbs .label-default[href]:focus,#bookly-tbs .label-default[href]:hover{background-color:#bbc4cf}#bookly-tbs .label-primary{background-color:#08c}#bookly-tbs .label-primary[href]:focus,#bookly-tbs .label-primary[href]:hover{background-color:#069}#bookly-tbs .label-success{background-color:#5cb85c}#bookly-tbs .label-success[href]:focus,#bookly-tbs .label-success[href]:hover{background-color:#449d44}#bookly-tbs .label-info{background-color:#5bc0de}#bookly-tbs .label-info[href]:focus,#bookly-tbs .label-info[href]:hover{background-color:#31b0d5}#bookly-tbs .label-warning{background-color:#f0ad4e}#bookly-tbs .label-warning[href]:focus,#bookly-tbs .label-warning[href]:hover{background-color:#ec971f}#bookly-tbs .label-danger{background-color:#d9534f}#bookly-tbs .label-danger[href]:focus,#bookly-tbs .label-danger[href]:hover{background-color:#c9302c}#bookly-tbs .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:13px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#d9dee4;border-radius:10px}#bookly-tbs .badge:empty{display:none}#bookly-tbs .btn .badge{position:relative;top:-1px}#bookly-tbs .btn-group-xs>.btn .badge,#bookly-tbs .btn-xs .badge{top:0;padding:1px 5px}#bookly-tbs a.badge:focus,#bookly-tbs a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}#bookly-tbs .list-group-item.active>.badge,#bookly-tbs .nav-pills>.active>a>.badge{color:#08c;background-color:#fff}#bookly-tbs .list-group-item>.badge{float:right}#bookly-tbs .list-group-item>.badge+.badge{margin-right:5px}#bookly-tbs .nav-pills>li>a>.badge{margin-left:3px}#bookly-tbs .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#e8ebf0}#bookly-tbs .jumbotron .h1,#bookly-tbs .jumbotron h1{color:inherit}#bookly-tbs .jumbotron p{margin-bottom:15px;font-size:23px;font-weight:200}#bookly-tbs .jumbotron>hr{border-top-color:#c9d0dc}#bookly-tbs .container .jumbotron,#bookly-tbs .container-fluid .jumbotron{padding-right:10px;padding-left:10px;border-radius:6px}#bookly-tbs .jumbotron .container{max-width:100%}@media screen and (min-width:768px){#bookly-tbs .jumbotron{padding-top:48px;padding-bottom:48px}#bookly-tbs .container .jumbotron,#bookly-tbs .container-fluid .jumbotron{padding-right:60px;padding-left:60px}#bookly-tbs .jumbotron .h1,#bookly-tbs .jumbotron h1{font-size:68px}}#bookly-tbs .thumbnail{display:block;padding:4px;margin-bottom:21px;line-height:1.4;background-color:transparent;border:1px solid #e8ebf0;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}#bookly-tbs .thumbnail a>img,#bookly-tbs .thumbnail>img{margin-right:auto;margin-left:auto}#bookly-tbs a.thumbnail.active,#bookly-tbs a.thumbnail:focus,#bookly-tbs a.thumbnail:hover{border-color:#08c}#bookly-tbs .thumbnail .caption{padding:9px;color:#3e424a}#bookly-tbs .alert{padding:15px;margin-bottom:21px;border:1px solid transparent;border-radius:4px}#bookly-tbs .alert h4{margin-top:0;color:inherit}#bookly-tbs .alert .alert-link{font-weight:700}#bookly-tbs .alert>p,#bookly-tbs .alert>ul{margin-bottom:0}#bookly-tbs .alert>p+p{margin-top:5px}#bookly-tbs .alert-dismissable,#bookly-tbs .alert-dismissible{padding-right:35px}#bookly-tbs .alert-dismissable .close,#bookly-tbs .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}#bookly-tbs .alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}#bookly-tbs .alert-success hr{border-top-color:#c9e2b3}#bookly-tbs .alert-success .alert-link{color:#2b542c}#bookly-tbs .alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}#bookly-tbs .alert-info hr{border-top-color:#a6e1ec}#bookly-tbs .alert-info .alert-link{color:#245269}#bookly-tbs .alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}#bookly-tbs .alert-warning hr{border-top-color:#f7e1b5}#bookly-tbs .alert-warning .alert-link{color:#66512c}#bookly-tbs .alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}#bookly-tbs .alert-danger hr{border-top-color:#e4b9c0}#bookly-tbs .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}#bookly-tbs .progress{height:21px;margin-bottom:21px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}#bookly-tbs .progress-bar{float:left;width:0;height:100%;font-size:13px;line-height:21px;color:#fff;text-align:center;background-color:#08c;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}#bookly-tbs .progress-bar-striped,#bookly-tbs .progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}#bookly-tbs .progress-bar.active,#bookly-tbs .progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}#bookly-tbs .progress-bar-success{background-color:#5cb85c}#bookly-tbs .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .progress-bar-info{background-color:#5bc0de}#bookly-tbs .progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .progress-bar-warning{background-color:#f0ad4e}#bookly-tbs .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .progress-bar-danger{background-color:#d9534f}#bookly-tbs .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .media{margin-top:15px}#bookly-tbs .media:first-child{margin-top:0}#bookly-tbs .media,#bookly-tbs .media-body{overflow:hidden;zoom:1}#bookly-tbs .media-body{width:10000px}#bookly-tbs .media-object{display:block}#bookly-tbs .media-object.img-thumbnail{max-width:none}#bookly-tbs .media-right,#bookly-tbs .media>.pull-right{padding-left:10px}#bookly-tbs .media-left,#bookly-tbs .media>.pull-left{padding-right:10px}#bookly-tbs .media-body,#bookly-tbs .media-left,#bookly-tbs .media-right{display:table-cell;vertical-align:top}#bookly-tbs .media-middle{vertical-align:middle}#bookly-tbs .media-bottom{vertical-align:bottom}#bookly-tbs .media-heading{margin-top:0;margin-bottom:5px}#bookly-tbs .media-list{padding-left:0;list-style:none}#bookly-tbs .list-group{padding-left:0;margin-bottom:20px}#bookly-tbs .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #e8ebf0}#bookly-tbs .list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}#bookly-tbs .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#bookly-tbs a.list-group-item,#bookly-tbs button.list-group-item{color:#555}#bookly-tbs a.list-group-item .list-group-item-heading,#bookly-tbs button.list-group-item .list-group-item-heading{color:#333}#bookly-tbs a.list-group-item:focus,#bookly-tbs a.list-group-item:hover,#bookly-tbs button.list-group-item:focus,#bookly-tbs button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}#bookly-tbs button.list-group-item{width:100%;text-align:left}#bookly-tbs .list-group-item.disabled,#bookly-tbs .list-group-item.disabled:focus,#bookly-tbs .list-group-item.disabled:hover{color:#d9dee4;cursor:not-allowed;background-color:#e8ebf0}#bookly-tbs .list-group-item.disabled .list-group-item-heading,#bookly-tbs .list-group-item.disabled:focus .list-group-item-heading,#bookly-tbs .list-group-item.disabled:hover .list-group-item-heading{color:inherit}#bookly-tbs .list-group-item.disabled .list-group-item-text,#bookly-tbs .list-group-item.disabled:focus .list-group-item-text,#bookly-tbs .list-group-item.disabled:hover .list-group-item-text{color:#d9dee4}#bookly-tbs .list-group-item.active,#bookly-tbs .list-group-item.active:focus,#bookly-tbs .list-group-item.active:hover{z-index:2;color:#fff;background-color:#08c;border-color:#08c}#bookly-tbs .list-group-item.active .list-group-item-heading,#bookly-tbs .list-group-item.active .list-group-item-heading>.small,#bookly-tbs .list-group-item.active .list-group-item-heading>small,#bookly-tbs .list-group-item.active:focus .list-group-item-heading,#bookly-tbs .list-group-item.active:focus .list-group-item-heading>.small,#bookly-tbs .list-group-item.active:focus .list-group-item-heading>small,#bookly-tbs .list-group-item.active:hover .list-group-item-heading,#bookly-tbs .list-group-item.active:hover .list-group-item-heading>.small,#bookly-tbs .list-group-item.active:hover .list-group-item-heading>small{color:inherit}#bookly-tbs .list-group-item.active .list-group-item-text,#bookly-tbs .list-group-item.active:focus .list-group-item-text,#bookly-tbs .list-group-item.active:hover .list-group-item-text{color:#9df}#bookly-tbs .list-group-item-success{color:#3c763d;background-color:#dff0d8}#bookly-tbs a.list-group-item-success,#bookly-tbs button.list-group-item-success{color:#3c763d}#bookly-tbs a.list-group-item-success .list-group-item-heading,#bookly-tbs button.list-group-item-success .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-success:focus,#bookly-tbs a.list-group-item-success:hover,#bookly-tbs button.list-group-item-success:focus,#bookly-tbs button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}#bookly-tbs a.list-group-item-success.active,#bookly-tbs a.list-group-item-success.active:focus,#bookly-tbs a.list-group-item-success.active:hover,#bookly-tbs button.list-group-item-success.active,#bookly-tbs button.list-group-item-success.active:focus,#bookly-tbs button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}#bookly-tbs .list-group-item-info{color:#31708f;background-color:#d9edf7}#bookly-tbs a.list-group-item-info,#bookly-tbs button.list-group-item-info{color:#31708f}#bookly-tbs a.list-group-item-info .list-group-item-heading,#bookly-tbs button.list-group-item-info .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-info:focus,#bookly-tbs a.list-group-item-info:hover,#bookly-tbs button.list-group-item-info:focus,#bookly-tbs button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}#bookly-tbs a.list-group-item-info.active,#bookly-tbs a.list-group-item-info.active:focus,#bookly-tbs a.list-group-item-info.active:hover,#bookly-tbs button.list-group-item-info.active,#bookly-tbs button.list-group-item-info.active:focus,#bookly-tbs button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}#bookly-tbs .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}#bookly-tbs a.list-group-item-warning,#bookly-tbs button.list-group-item-warning{color:#8a6d3b}#bookly-tbs a.list-group-item-warning .list-group-item-heading,#bookly-tbs button.list-group-item-warning .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-warning:focus,#bookly-tbs a.list-group-item-warning:hover,#bookly-tbs button.list-group-item-warning:focus,#bookly-tbs button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}#bookly-tbs a.list-group-item-warning.active,#bookly-tbs a.list-group-item-warning.active:focus,#bookly-tbs a.list-group-item-warning.active:hover,#bookly-tbs button.list-group-item-warning.active,#bookly-tbs button.list-group-item-warning.active:focus,#bookly-tbs button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}#bookly-tbs .list-group-item-danger{color:#a94442;background-color:#f2dede}#bookly-tbs a.list-group-item-danger,#bookly-tbs button.list-group-item-danger{color:#a94442}#bookly-tbs a.list-group-item-danger .list-group-item-heading,#bookly-tbs button.list-group-item-danger .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-danger:focus,#bookly-tbs a.list-group-item-danger:hover,#bookly-tbs button.list-group-item-danger:focus,#bookly-tbs button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}#bookly-tbs a.list-group-item-danger.active,#bookly-tbs a.list-group-item-danger.active:focus,#bookly-tbs a.list-group-item-danger.active:hover,#bookly-tbs button.list-group-item-danger.active,#bookly-tbs button.list-group-item-danger.active:focus,#bookly-tbs button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}#bookly-tbs .list-group-item-heading{margin-top:0;margin-bottom:5px}#bookly-tbs .list-group-item-text{margin-bottom:0;line-height:1.3}#bookly-tbs .panel{margin-bottom:21px;background-color:#fff;border:2px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}#bookly-tbs .panel-body{padding:15px}#bookly-tbs .panel-heading{padding:15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel-heading>.dropdown .dropdown-toggle{color:inherit}#bookly-tbs .panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}#bookly-tbs .panel-title>.small,#bookly-tbs .panel-title>.small>a,#bookly-tbs .panel-title>a,#bookly-tbs .panel-title>small,#bookly-tbs .panel-title>small>a{color:inherit}#bookly-tbs .panel-footer{padding:15px;background-color:#e8ebf0;border-top:1px solid #e8ebf0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.list-group,#bookly-tbs .panel>.panel-collapse>.list-group{margin-bottom:0}#bookly-tbs .panel>.list-group .list-group-item,#bookly-tbs .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}#bookly-tbs .panel>.list-group:first-child .list-group-item:first-child,#bookly-tbs .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel>.list-group:last-child .list-group-item:last-child,#bookly-tbs .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}#bookly-tbs .list-group+.panel-footer{border-top-width:0}#bookly-tbs .panel>.panel-collapse>.table,#bookly-tbs .panel>.table,#bookly-tbs .panel>.table-responsive>.table{margin-bottom:0}#bookly-tbs .panel>.panel-collapse>.table caption,#bookly-tbs .panel>.table caption,#bookly-tbs .panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child,#bookly-tbs .panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child,#bookly-tbs .panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}#bookly-tbs .panel>.panel-body+.table,#bookly-tbs .panel>.panel-body+.table-responsive,#bookly-tbs .panel>.table+.panel-body,#bookly-tbs .panel>.table-responsive+.panel-body{border-top:1px solid #d9dee4}#bookly-tbs .panel>.table>tbody:first-child>tr:first-child td,#bookly-tbs .panel>.table>tbody:first-child>tr:first-child th{border-top:0}#bookly-tbs .panel>.table-bordered,#bookly-tbs .panel>.table-responsive>.table-bordered{border:0}#bookly-tbs .panel>.table-bordered>tbody>tr>td:first-child,#bookly-tbs .panel>.table-bordered>tbody>tr>th:first-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>td:first-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>th:first-child,#bookly-tbs .panel>.table-bordered>thead>tr>td:first-child,#bookly-tbs .panel>.table-bordered>thead>tr>th:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}#bookly-tbs .panel>.table-bordered>tbody>tr>td:last-child,#bookly-tbs .panel>.table-bordered>tbody>tr>th:last-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>td:last-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>th:last-child,#bookly-tbs .panel>.table-bordered>thead>tr>td:last-child,#bookly-tbs .panel>.table-bordered>thead>tr>th:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}#bookly-tbs .panel>.table-bordered>tbody>tr:first-child>td,#bookly-tbs .panel>.table-bordered>tbody>tr:first-child>th,#bookly-tbs .panel>.table-bordered>thead>tr:first-child>td,#bookly-tbs .panel>.table-bordered>thead>tr:first-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}#bookly-tbs .panel>.table-bordered>tbody>tr:last-child>td,#bookly-tbs .panel>.table-bordered>tbody>tr:last-child>th,#bookly-tbs .panel>.table-bordered>tfoot>tr:last-child>td,#bookly-tbs .panel>.table-bordered>tfoot>tr:last-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}#bookly-tbs .panel>.table-responsive{margin-bottom:0;border:0}#bookly-tbs .panel-group{margin-bottom:21px}#bookly-tbs .panel-group .panel{margin-bottom:0;border-radius:4px}#bookly-tbs .panel-group .panel+.panel{margin-top:10px}#bookly-tbs .panel-group .panel-heading{border-bottom:0}#bookly-tbs .panel-group .panel-heading+.panel-collapse>.list-group,#bookly-tbs .panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #e8ebf0}#bookly-tbs .panel-group .panel-footer{border-top:0}#bookly-tbs .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #e8ebf0}#bookly-tbs .panel-default{border-color:#e8ebf0}#bookly-tbs .panel-default>.panel-heading{color:#3e424a;background-color:#e8ebf0;border-color:#e8ebf0}#bookly-tbs .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e8ebf0}#bookly-tbs .panel-default>.panel-heading .badge{color:#e8ebf0;background-color:#3e424a}#bookly-tbs .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#e8ebf0}#bookly-tbs .panel-primary{border-color:#08c}#bookly-tbs .panel-primary>.panel-heading{color:#fff;background-color:#08c;border-color:#08c}#bookly-tbs .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#08c}#bookly-tbs .panel-primary>.panel-heading .badge{color:#08c;background-color:#fff}#bookly-tbs .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#08c}#bookly-tbs .panel-success{border-color:#d6e9c6}#bookly-tbs .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}#bookly-tbs .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}#bookly-tbs .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}#bookly-tbs .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}#bookly-tbs .panel-info{border-color:#bce8f1}#bookly-tbs .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}#bookly-tbs .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}#bookly-tbs .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}#bookly-tbs .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}#bookly-tbs .panel-warning{border-color:#faebcc}#bookly-tbs .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}#bookly-tbs .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}#bookly-tbs .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}#bookly-tbs .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}#bookly-tbs .panel-danger{border-color:#ebccd1}#bookly-tbs .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}#bookly-tbs .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}#bookly-tbs .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}#bookly-tbs .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}#bookly-tbs .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}#bookly-tbs .embed-responsive .embed-responsive-item,#bookly-tbs .embed-responsive embed,#bookly-tbs .embed-responsive iframe,#bookly-tbs .embed-responsive object,#bookly-tbs .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}#bookly-tbs .embed-responsive-16by9{padding-bottom:56.25%}#bookly-tbs .embed-responsive-4by3{padding-bottom:75%}#bookly-tbs .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}#bookly-tbs .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}#bookly-tbs .well-lg{padding:24px;border-radius:6px}#bookly-tbs .well-sm{padding:9px;border-radius:3px}#bookly-tbs .close{float:right;font-size:22.5px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}#bookly-tbs .close:focus,#bookly-tbs .close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}#bookly-tbs button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}#bookly-tbs .modal-open{overflow:hidden}#bookly-tbs .modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}#bookly-tbs .modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}#bookly-tbs .modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}#bookly-tbs .modal-open .modal{overflow-x:hidden;overflow-y:auto}#bookly-tbs .modal-dialog{position:relative;width:auto;margin:10px}#bookly-tbs .modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}#bookly-tbs .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}#bookly-tbs .modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}#bookly-tbs .modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}#bookly-tbs .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}#bookly-tbs .modal-header .close{margin-top:-2px}#bookly-tbs .modal-title{margin:0;line-height:1.4}#bookly-tbs .modal-body{position:relative;padding:15px}#bookly-tbs .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}#bookly-tbs .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}#bookly-tbs .modal-footer .btn-group .btn+.btn{margin-left:-1px}#bookly-tbs .modal-footer .btn-block+.btn-block{margin-left:0}#bookly-tbs .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){#bookly-tbs .modal-dialog{width:600px;margin:30px auto}#bookly-tbs .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}#bookly-tbs .modal-sm{width:300px}}@media (min-width:992px){#bookly-tbs .modal-lg{width:900px}}#bookly-tbs .tooltip{position:absolute;z-index:1070;display:block;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-size:13px;font-style:normal;font-weight:400;line-height:1.4;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}#bookly-tbs .tooltip.in{filter:alpha(opacity=90);opacity:.9}#bookly-tbs .tooltip.top{padding:5px 0;margin-top:-3px}#bookly-tbs .tooltip.right{padding:0 5px;margin-left:3px}#bookly-tbs .tooltip.bottom{padding:5px 0;margin-top:3px}#bookly-tbs .tooltip.left{padding:0 5px;margin-left:-3px}#bookly-tbs .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}#bookly-tbs .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}#bookly-tbs .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}#bookly-tbs .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}#bookly-tbs .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}#bookly-tbs .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}#bookly-tbs .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}#bookly-tbs .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}#bookly-tbs .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}#bookly-tbs .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}#bookly-tbs .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:600px;padding:1px;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.4;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}#bookly-tbs .popover.top{margin-top:-10px}#bookly-tbs .popover.right{margin-left:10px}#bookly-tbs .popover.bottom{margin-top:10px}#bookly-tbs .popover.left{margin-left:-10px}#bookly-tbs .popover-title{padding:8px 14px;margin:0;font-size:15px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}#bookly-tbs .popover-content{padding:14px 20px}#bookly-tbs .popover>.popover-arrow,#bookly-tbs .popover>.popover-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}#bookly-tbs .popover>.popover-arrow{border-width:11px}#bookly-tbs .popover>.popover-arrow:after{content:"";border-width:10px}#bookly-tbs .popover.top>.popover-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}#bookly-tbs .popover.top>.popover-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}#bookly-tbs .popover.right>.popover-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}#bookly-tbs .popover.right>.popover-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}#bookly-tbs .popover.bottom>.popover-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}#bookly-tbs .popover.bottom>.popover-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}#bookly-tbs .popover.left>.popover-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}#bookly-tbs .popover.left>.popover-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}#bookly-tbs .carousel{position:relative}#bookly-tbs .carousel-inner{position:relative;width:100%;overflow:hidden}#bookly-tbs .carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}#bookly-tbs .carousel-inner>.item>a>img,#bookly-tbs .carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){#bookly-tbs .carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}#bookly-tbs .carousel-inner>.item.active.right,#bookly-tbs .carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}#bookly-tbs .carousel-inner>.item.active.left,#bookly-tbs .carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}#bookly-tbs .carousel-inner>.item.active,#bookly-tbs .carousel-inner>.item.next.left,#bookly-tbs .carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}#bookly-tbs .carousel-inner>.active,#bookly-tbs .carousel-inner>.next,#bookly-tbs .carousel-inner>.prev{display:block}#bookly-tbs .carousel-inner>.active{left:0}#bookly-tbs .carousel-inner>.next,#bookly-tbs .carousel-inner>.prev{position:absolute;top:0;width:100%}#bookly-tbs .carousel-inner>.next{left:100%}#bookly-tbs .carousel-inner>.prev{left:-100%}#bookly-tbs .carousel-inner>.next.left,#bookly-tbs .carousel-inner>.prev.right{left:0}#bookly-tbs .carousel-inner>.active.left{left:-100%}#bookly-tbs .carousel-inner>.active.right{left:100%}#bookly-tbs .carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}#bookly-tbs .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}#bookly-tbs .carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}#bookly-tbs .carousel-control:focus,#bookly-tbs .carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next,#bookly-tbs .carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .icon-prev{left:50%;margin-left:-10px}#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next{right:50%;margin-right:-10px}#bookly-tbs .carousel-control .icon-next,#bookly-tbs .carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}#bookly-tbs .carousel-control .icon-prev:before{content:'\2039'}#bookly-tbs .carousel-control .icon-next:before{content:'\203a'}#bookly-tbs .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}#bookly-tbs .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}#bookly-tbs .carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}#bookly-tbs .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}#bookly-tbs .carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next,#bookly-tbs .carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .icon-prev{margin-left:-10px}#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next{margin-right:-10px}#bookly-tbs .carousel-caption{right:20%;left:20%;padding-bottom:30px}#bookly-tbs .carousel-indicators{bottom:20px}}#bookly-tbs .btn-group-vertical>.btn-group:after,#bookly-tbs .btn-group-vertical>.btn-group:before,#bookly-tbs .btn-toolbar:after,#bookly-tbs .btn-toolbar:before,#bookly-tbs .clearfix:after,#bookly-tbs .clearfix:before,#bookly-tbs .container-fluid:after,#bookly-tbs .container-fluid:before,#bookly-tbs .container:after,#bookly-tbs .container:before,#bookly-tbs .dl-horizontal dd:after,#bookly-tbs .dl-horizontal dd:before,#bookly-tbs .form-horizontal .form-group:after,#bookly-tbs .form-horizontal .form-group:before,#bookly-tbs .modal-footer:after,#bookly-tbs .modal-footer:before,#bookly-tbs .modal-header:after,#bookly-tbs .modal-header:before,#bookly-tbs .nav:after,#bookly-tbs .nav:before,#bookly-tbs .navbar-collapse:after,#bookly-tbs .navbar-collapse:before,#bookly-tbs .navbar-header:after,#bookly-tbs .navbar-header:before,#bookly-tbs .navbar:after,#bookly-tbs .navbar:before,#bookly-tbs .pager:after,#bookly-tbs .pager:before,#bookly-tbs .panel-body:after,#bookly-tbs .panel-body:before,#bookly-tbs .row:after,#bookly-tbs .row:before{display:table;content:" "}#bookly-tbs .btn-group-vertical>.btn-group:after,#bookly-tbs .btn-toolbar:after,#bookly-tbs .clearfix:after,#bookly-tbs .container-fluid:after,#bookly-tbs .container:after,#bookly-tbs .dl-horizontal dd:after,#bookly-tbs .form-horizontal .form-group:after,#bookly-tbs .modal-footer:after,#bookly-tbs .modal-header:after,#bookly-tbs .nav:after,#bookly-tbs .navbar-collapse:after,#bookly-tbs .navbar-header:after,#bookly-tbs .navbar:after,#bookly-tbs .pager:after,#bookly-tbs .panel-body:after,#bookly-tbs .row:after{clear:both}#bookly-tbs .center-block{display:block;margin-right:auto;margin-left:auto}#bookly-tbs .pull-right{float:right!important}#bookly-tbs .pull-left{float:left!important}#bookly-tbs .hide{display:none!important}#bookly-tbs .show{display:block!important}#bookly-tbs .invisible{visibility:hidden}#bookly-tbs .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}#bookly-tbs .hidden{display:none!important}#bookly-tbs .affix{position:fixed}@-ms-viewport{width:device-width}#bookly-tbs .visible-lg,#bookly-tbs .visible-md,#bookly-tbs .visible-sm,#bookly-tbs .visible-xs{display:none!important}#bookly-tbs .visible-lg-block,#bookly-tbs .visible-lg-inline,#bookly-tbs .visible-lg-inline-block,#bookly-tbs .visible-md-block,#bookly-tbs .visible-md-inline,#bookly-tbs .visible-md-inline-block,#bookly-tbs .visible-sm-block,#bookly-tbs .visible-sm-inline,#bookly-tbs .visible-sm-inline-block,#bookly-tbs .visible-xs-block,#bookly-tbs .visible-xs-inline,#bookly-tbs .visible-xs-inline-block{display:none!important}@media (max-width:767px){#bookly-tbs .visible-xs{display:block!important}#bookly-tbs table.visible-xs{display:table!important}#bookly-tbs tr.visible-xs{display:table-row!important}#bookly-tbs td.visible-xs,#bookly-tbs th.visible-xs{display:table-cell!important}}@media (max-width:767px){#bookly-tbs .visible-xs-block{display:block!important}}@media (max-width:767px){#bookly-tbs .visible-xs-inline{display:inline!important}}@media (max-width:767px){#bookly-tbs .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm{display:block!important}#bookly-tbs table.visible-sm{display:table!important}#bookly-tbs tr.visible-sm{display:table-row!important}#bookly-tbs td.visible-sm,#bookly-tbs th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md{display:block!important}#bookly-tbs table.visible-md{display:table!important}#bookly-tbs tr.visible-md{display:table-row!important}#bookly-tbs td.visible-md,#bookly-tbs th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){#bookly-tbs .visible-lg{display:block!important}#bookly-tbs table.visible-lg{display:table!important}#bookly-tbs tr.visible-lg{display:table-row!important}#bookly-tbs td.visible-lg,#bookly-tbs th.visible-lg{display:table-cell!important}}@media (min-width:1200px){#bookly-tbs .visible-lg-block{display:block!important}}@media (min-width:1200px){#bookly-tbs .visible-lg-inline{display:inline!important}}@media (min-width:1200px){#bookly-tbs .visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){#bookly-tbs .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .hidden-md{display:none!important}}@media (min-width:1200px){#bookly-tbs .hidden-lg{display:none!important}}#bookly-tbs .visible-print{display:none!important}@media print{#bookly-tbs .visible-print{display:block!important}#bookly-tbs table.visible-print{display:table!important}#bookly-tbs tr.visible-print{display:table-row!important}#bookly-tbs td.visible-print,#bookly-tbs th.visible-print{display:table-cell!important}}#bookly-tbs .visible-print-block{display:none!important}@media print{#bookly-tbs .visible-print-block{display:block!important}}#bookly-tbs .visible-print-inline{display:none!important}@media print{#bookly-tbs .visible-print-inline{display:inline!important}}#bookly-tbs .visible-print-inline-block{display:none!important}@media print{#bookly-tbs .visible-print-inline-block{display:inline-block!important}}@media print{#bookly-tbs .hidden-print{display:none!important}}#bookly-tbs [class*=block-grid-]{padding:0;margin:0;list-style:none;border:1px solid transparent;border-width:1px 0 0 1px}#bookly-tbs [class*=block-grid-]>*{display:block;float:left;height:auto;text-align:center;border:1px solid inherit;border-width:0 1px 1px 0}#bookly-tbs [class*=block-grid-]:after,#bookly-tbs [class*=block-grid-]:before{display:table;content:" "}#bookly-tbs .block-grid-16>:nth-of-type(16n+1),#bookly-tbs [class*=block-grid-]:after{clear:both}#bookly-tbs .block-grid-16>*{width:6.25%;line-height:49px}#bookly-tbs .btn-group-justified>.btn-group:not(:first-child) .btn,#bookly-tbs .btn-group-justified>.btn:not(:first-child){border-left:0}#bookly-tbs .btn-default-outline{color:#5b6470;background-color:transparent;border-color:#5b6470}#bookly-tbs .btn-default-outline.focus,#bookly-tbs .btn-default-outline:focus{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#22252a}#bookly-tbs .btn-default-outline:hover{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#40464e}#bookly-tbs .btn-default-outline.active,#bookly-tbs .btn-default-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-default-outline{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#40464e}#bookly-tbs .btn-default-outline.active.focus,#bookly-tbs .btn-default-outline.active:focus,#bookly-tbs .btn-default-outline.active:hover,#bookly-tbs .btn-default-outline:active.focus,#bookly-tbs .btn-default-outline:active:focus,#bookly-tbs .btn-default-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-default-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-default-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-default-outline:hover{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#22252a}#bookly-tbs .btn-default-outline.active,#bookly-tbs .btn-default-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-default-outline{background-image:none}#bookly-tbs .btn-default-outline.disabled.focus,#bookly-tbs .btn-default-outline.disabled:focus,#bookly-tbs .btn-default-outline.disabled:hover,#bookly-tbs .btn-default-outline[disabled].focus,#bookly-tbs .btn-default-outline[disabled]:focus,#bookly-tbs .btn-default-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-default-outline.focus,fieldset[disabled] #bookly-tbs .btn-default-outline:focus,fieldset[disabled] #bookly-tbs .btn-default-outline:hover{background-color:transparent;border-color:#5b6470}#bookly-tbs .btn-default-outline .badge{color:transparent;background-color:#5b6470}#bookly-tbs .btn-primary-outline{color:#08c;background-color:transparent;border-color:#08c}#bookly-tbs .btn-primary-outline.focus,#bookly-tbs .btn-primary-outline:focus{color:#08c;background-color:rgba(0,0,0,0);border-color:#00334d}#bookly-tbs .btn-primary-outline:hover{color:#08c;background-color:rgba(0,0,0,0);border-color:#005f8f}#bookly-tbs .btn-primary-outline.active,#bookly-tbs .btn-primary-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline{color:#08c;background-color:rgba(0,0,0,0);border-color:#005f8f}#bookly-tbs .btn-primary-outline.active.focus,#bookly-tbs .btn-primary-outline.active:focus,#bookly-tbs .btn-primary-outline.active:hover,#bookly-tbs .btn-primary-outline:active.focus,#bookly-tbs .btn-primary-outline:active:focus,#bookly-tbs .btn-primary-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline:hover{color:#08c;background-color:rgba(0,0,0,0);border-color:#00334d}#bookly-tbs .btn-primary-outline.active,#bookly-tbs .btn-primary-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline{background-image:none}#bookly-tbs .btn-primary-outline.disabled.focus,#bookly-tbs .btn-primary-outline.disabled:focus,#bookly-tbs .btn-primary-outline.disabled:hover,#bookly-tbs .btn-primary-outline[disabled].focus,#bookly-tbs .btn-primary-outline[disabled]:focus,#bookly-tbs .btn-primary-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-primary-outline.focus,fieldset[disabled] #bookly-tbs .btn-primary-outline:focus,fieldset[disabled] #bookly-tbs .btn-primary-outline:hover{background-color:transparent;border-color:#08c}#bookly-tbs .btn-primary-outline .badge{color:transparent;background-color:#08c}#bookly-tbs .btn-success-outline{color:#5cb85c;background-color:transparent;border-color:#5cb85c}#bookly-tbs .btn-success-outline.focus,#bookly-tbs .btn-success-outline:focus{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#2d672d}#bookly-tbs .btn-success-outline:hover{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#419641}#bookly-tbs .btn-success-outline.active,#bookly-tbs .btn-success-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-success-outline{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#419641}#bookly-tbs .btn-success-outline.active.focus,#bookly-tbs .btn-success-outline.active:focus,#bookly-tbs .btn-success-outline.active:hover,#bookly-tbs .btn-success-outline:active.focus,#bookly-tbs .btn-success-outline:active:focus,#bookly-tbs .btn-success-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-success-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-success-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-success-outline:hover{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#2d672d}#bookly-tbs .btn-success-outline.active,#bookly-tbs .btn-success-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-success-outline{background-image:none}#bookly-tbs .btn-success-outline.disabled.focus,#bookly-tbs .btn-success-outline.disabled:focus,#bookly-tbs .btn-success-outline.disabled:hover,#bookly-tbs .btn-success-outline[disabled].focus,#bookly-tbs .btn-success-outline[disabled]:focus,#bookly-tbs .btn-success-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-success-outline.focus,fieldset[disabled] #bookly-tbs .btn-success-outline:focus,fieldset[disabled] #bookly-tbs .btn-success-outline:hover{background-color:transparent;border-color:#5cb85c}#bookly-tbs .btn-success-outline .badge{color:transparent;background-color:#5cb85c}#bookly-tbs .btn-info-outline{color:#5bc0de;background-color:transparent;border-color:#5bc0de}#bookly-tbs .btn-info-outline.focus,#bookly-tbs .btn-info-outline:focus{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#1f7e9a}#bookly-tbs .btn-info-outline:hover{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#2aabd2}#bookly-tbs .btn-info-outline.active,#bookly-tbs .btn-info-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-info-outline{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#2aabd2}#bookly-tbs .btn-info-outline.active.focus,#bookly-tbs .btn-info-outline.active:focus,#bookly-tbs .btn-info-outline.active:hover,#bookly-tbs .btn-info-outline:active.focus,#bookly-tbs .btn-info-outline:active:focus,#bookly-tbs .btn-info-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-info-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-info-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-info-outline:hover{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#1f7e9a}#bookly-tbs .btn-info-outline.active,#bookly-tbs .btn-info-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-info-outline{background-image:none}#bookly-tbs .btn-info-outline.disabled.focus,#bookly-tbs .btn-info-outline.disabled:focus,#bookly-tbs .btn-info-outline.disabled:hover,#bookly-tbs .btn-info-outline[disabled].focus,#bookly-tbs .btn-info-outline[disabled]:focus,#bookly-tbs .btn-info-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-info-outline.focus,fieldset[disabled] #bookly-tbs .btn-info-outline:focus,fieldset[disabled] #bookly-tbs .btn-info-outline:hover{background-color:transparent;border-color:#5bc0de}#bookly-tbs .btn-info-outline .badge{color:transparent;background-color:#5bc0de}#bookly-tbs .btn-warning-outline{color:#f0ad4e;background-color:transparent;border-color:#f0ad4e}#bookly-tbs .btn-warning-outline.focus,#bookly-tbs .btn-warning-outline:focus{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#b06d0f}#bookly-tbs .btn-warning-outline:hover{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#eb9316}#bookly-tbs .btn-warning-outline.active,#bookly-tbs .btn-warning-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#eb9316}#bookly-tbs .btn-warning-outline.active.focus,#bookly-tbs .btn-warning-outline.active:focus,#bookly-tbs .btn-warning-outline.active:hover,#bookly-tbs .btn-warning-outline:active.focus,#bookly-tbs .btn-warning-outline:active:focus,#bookly-tbs .btn-warning-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline:hover{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#b06d0f}#bookly-tbs .btn-warning-outline.active,#bookly-tbs .btn-warning-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline{background-image:none}#bookly-tbs .btn-warning-outline.disabled.focus,#bookly-tbs .btn-warning-outline.disabled:focus,#bookly-tbs .btn-warning-outline.disabled:hover,#bookly-tbs .btn-warning-outline[disabled].focus,#bookly-tbs .btn-warning-outline[disabled]:focus,#bookly-tbs .btn-warning-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-warning-outline.focus,fieldset[disabled] #bookly-tbs .btn-warning-outline:focus,fieldset[disabled] #bookly-tbs .btn-warning-outline:hover{background-color:transparent;border-color:#f0ad4e}#bookly-tbs .btn-warning-outline .badge{color:transparent;background-color:#f0ad4e}#bookly-tbs .btn-danger-outline{color:#d9534f;background-color:transparent;border-color:#d9534f}#bookly-tbs .btn-danger-outline.focus,#bookly-tbs .btn-danger-outline:focus{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#8b211e}#bookly-tbs .btn-danger-outline:hover{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#c12e2a}#bookly-tbs .btn-danger-outline.active,#bookly-tbs .btn-danger-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#c12e2a}#bookly-tbs .btn-danger-outline.active.focus,#bookly-tbs .btn-danger-outline.active:focus,#bookly-tbs .btn-danger-outline.active:hover,#bookly-tbs .btn-danger-outline:active.focus,#bookly-tbs .btn-danger-outline:active:focus,#bookly-tbs .btn-danger-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline:hover{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#8b211e}#bookly-tbs .btn-danger-outline.active,#bookly-tbs .btn-danger-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline{background-image:none}#bookly-tbs .btn-danger-outline.disabled.focus,#bookly-tbs .btn-danger-outline.disabled:focus,#bookly-tbs .btn-danger-outline.disabled:hover,#bookly-tbs .btn-danger-outline[disabled].focus,#bookly-tbs .btn-danger-outline[disabled]:focus,#bookly-tbs .btn-danger-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-danger-outline.focus,fieldset[disabled] #bookly-tbs .btn-danger-outline:focus,fieldset[disabled] #bookly-tbs .btn-danger-outline:hover{background-color:transparent;border-color:#d9534f}#bookly-tbs .btn-danger-outline .badge{color:transparent;background-color:#d9534f}#bookly-tbs .btn-xlg{padding:11px 22px;font-size:15px;line-height:1.9;border-radius:4px}#bookly-tbs .callout{padding:10px;margin:21px 0;border:1px solid #e8ebf0;border-left-width:4px;border-radius:4px}#bookly-tbs .callout .callout-heading{margin-top:0;margin-bottom:5px}#bookly-tbs .callout p:last-child{margin-bottom:0}#bookly-tbs .callout+#bookly-tbs .callout{margin-top:-5px}#bookly-tbs .callout.callout-danger{border-left-color:#d9534f}#bookly-tbs .callout.callout-danger .callout-heading{color:#a94442}#bookly-tbs .callout.callout-warning{border-left-color:#f0ad4e}#bookly-tbs .callout.callout-warning .callout-heading{color:#8a6d3b}#bookly-tbs .callout.callout-info{border-left-color:#5bc0de}#bookly-tbs .callout.callout-info .callout-heading{color:#31708f}#bookly-tbs .close{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}#bookly-tbs .caret{margin-bottom:2px}#bookly-tbs .checkbox,#bookly-tbs .radio{line-height:1.4}#bookly-tbs input[type=checkbox],#bookly-tbs input[type=radio]{width:16px;height:16px}#bookly-tbs input[type=checkbox]:checked:before{margin:-3px 0 0 -4px;font:400 21px/1 dashicons}#bookly-tbs input[type=radio]:checked:before{width:8px;height:8px;margin:3px}#bookly-tbs input[type=checkbox]:not(:checked)+.bookly-toggle-label,#bookly-tbs input[type=radio]:not(:checked)+.bookly-toggle-label{color:#8a929e}#bookly-tbs select.form-control{z-index:5;height:36px;-webkit-appearance:none;padding-right:22px;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDIwbDEwIDEwIDEwLTEweiIvPjxwYXRoIGQ9Ik0wIDBoNDh2NDhoLTQ4eiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==);background-repeat:no-repeat;background-position:-webkit-calc(100% - 4px) 50%;background-position:calc(100% - 4px) 50%;-webkit-background-size:24px 24px;background-size:24px 24px;-moz-appearance:none;appearance:none}@media screen and (min-width:0\0){#bookly-tbs select.form-control{padding:5px}}#bookly-tbs select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #000}#bookly-tbs .form-horizontal .form-inline .checkbox-inline,#bookly-tbs .form-horizontal .form-inline .radio-inline{padding-top:0}#bookly-tbs .form-horizontal .form-group .help-block{margin-bottom:0}#bookly-tbs button:active,#bookly-tbs button:focus,#bookly-tbs button:hover,#bookly-tbs input:active,#bookly-tbs input:focus,#bookly-tbs input:hover,#bookly-tbs textarea:active,#bookly-tbs textarea:focus,#bookly-tbs textarea:hover{outline:0}#bookly-tbs .help-block{margin-top:0;font-size:13px;line-height:1.3}#bookly-tbs .bookly-pretty input[type=file]{position:absolute;top:0;left:0;z-index:-1;width:.1px;height:.1px;overflow:hidden;opacity:0}#bookly-tbs .bookly-pretty input[type=file]~.bookly-pretty-indicator{display:inline-block;font-weight:400}#bookly-tbs .input-group-btn:first-child>.btn,#bookly-tbs .input-group-btn:first-child>.btn-group{border-right:0}#bookly-tbs .input-group-btn:first-child>.btn:last-child{margin-right:-1px}#bookly-tbs .input-group-btn:last-child>.btn,#bookly-tbs .input-group-btn:last-child>.btn-group{border-left:0}#bookly-tbs .list-group-item .badge{margin-top:2px}#bookly-tbs .navbar-nav>li>.dropdown-menu{border-top-width:0}#bookly-tbs .navbar-text{line-height:21px}#bookly-tbs .nav-tabs>li{margin-bottom:0}#bookly-tbs .nav-tabs>li>a{margin-right:0;color:#8a929e;border:0}#bookly-tbs .nav-tabs>li>a:after{position:absolute;right:0;bottom:0;left:0;width:100%;height:0;content:" ";border-bottom:3px solid transparent}#bookly-tbs .nav-tabs>li>a:focus,#bookly-tbs .nav-tabs>li>a:hover{background-color:transparent;outline:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .nav-tabs>li>a:focus:after,#bookly-tbs .nav-tabs>li>a:hover:after{border-bottom-color:#d9dee4}#bookly-tbs .nav-tabs.nav-justified>li.active>a,#bookly-tbs .nav-tabs.nav-justified>li.active>a:focus,#bookly-tbs .nav-tabs.nav-justified>li.active>a:hover,#bookly-tbs .nav-tabs>li.active>a,#bookly-tbs .nav-tabs>li.active>a:focus,#bookly-tbs .nav-tabs>li.active>a:hover{color:#08c;border-width:0 0 1px 0}#bookly-tbs .nav-tabs.nav-justified>li.active>a:after,#bookly-tbs .nav-tabs>li.active>a:after{border-bottom-color:#08c}#bookly-tbs .nav-tabs .dropdown-menu{margin-top:0}#bookly-tbs .pager li>a,#bookly-tbs .pager li>span{line-height:1.4;color:#5b6470}#bookly-tbs .pager li>a:focus,#bookly-tbs .pager li>a:hover{color:#8a929e}#bookly-tbs .panel{-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .panel>.panel-collapse>.table td,#bookly-tbs .panel>.panel-collapse>.table th,#bookly-tbs .panel>.table td,#bookly-tbs .panel>.table th,#bookly-tbs .panel>.table-responsive>.table td,#bookly-tbs .panel>.table-responsive>.table th{border-color:#d9dee4}#bookly-tbs .panel-title{font-weight:700;line-height:1.5}#bookly-tbs .btn.btn-pill{border-radius:24px}#bookly-tbs .btn.btn-pill-left{border-top-left-radius:24px;border-bottom-left-radius:24px}#bookly-tbs .btn.btn-pill-right{border-top-right-radius:24px;border-bottom-right-radius:24px}#bookly-tbs .form-control.input-pill{border-radius:24px}#bookly-tbs .form-control.input-pill-left{border-top-left-radius:24px;border-bottom-left-radius:24px}#bookly-tbs .form-control.input-pill-right{border-top-right-radius:24px;border-bottom-right-radius:24px}#bookly-tbs .label.label-pill{border-radius:.9em}#bookly-tbs .label.label-pill-left{border-top-left-radius:.9em;border-bottom-left-radius:.9em}#bookly-tbs .label.label-pill-right{border-top-right-radius:.9em;border-bottom-right-radius:.9em}#bookly-tbs .progress-lg{height:42px;border-radius:6px}#bookly-tbs .progress-lg .progress-bar{line-height:42px}#bookly-tbs .progress-sm{height:10.5px;border-radius:3px}#bookly-tbs .progress-sm .progress-bar{line-height:10.5px}#bookly-tbs .progress-xs{height:5.25px;border-radius:3px}#bookly-tbs .progress-xs .progress-bar{line-height:5.25px}#bookly-tbs a:focus,#bookly-tbs a:hover{-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .social-behance{color:#1769ff!important}#bookly-tbs .social-fivehundredpix{color:#0a0100!important}#bookly-tbs .social-dribbble{color:#ea4c89!important}#bookly-tbs .social-dropbox{color:#1f8ce6!important}#bookly-tbs .social-email{color:#7f7f7f!important}#bookly-tbs .social-facebook{color:#3b5998!important}#bookly-tbs .social-flickr{color:#ff0084!important}#bookly-tbs .social-foursquare{color:#0072b1!important}#bookly-tbs .social-github{color:#4183c4!important}#bookly-tbs .social-google{color:#dd4b39!important}#bookly-tbs .social-instagram{color:#517fa4!important}#bookly-tbs .social-linkedin{color:#007bb6!important}#bookly-tbs .social-pinterest{color:#cb2027!important}#bookly-tbs .social-skype{color:#00aff0!important}#bookly-tbs .social-smugmug{color:#8cca1e!important}#bookly-tbs .social-tumblr{color:#32506d!important}#bookly-tbs .social-twitter{color:#00aced!important}#bookly-tbs .social-vimeo{color:#1ab7ea!important}#bookly-tbs .social-vk{color:#45668e!important}#bookly-tbs .social-youtube{color:#f33!important}#bookly-tbs .social-behance:hover{color:#4a8aff!important}#bookly-tbs .social-fivehundredpix:hover{color:#3d0600!important}#bookly-tbs .social-dribbble:hover{color:#ef7aa7!important}#bookly-tbs .social-dropbox:hover{color:#4da4eb!important}#bookly-tbs .social-email:hover{color:#999!important}#bookly-tbs .social-facebook:hover{color:#4c70ba!important}#bookly-tbs .social-flickr:hover{color:#ff339d!important}#bookly-tbs .social-foursquare:hover{color:#0093e4!important}#bookly-tbs .social-github:hover{color:#689cd0!important}#bookly-tbs .social-google:hover{color:#e47365!important}#bookly-tbs .social-instagram:hover{color:#7098b8!important}#bookly-tbs .social-linkedin:hover{color:#009de9!important}#bookly-tbs .social-pinterest:hover{color:#e03e44!important}#bookly-tbs .social-skype:hover{color:#24c4ff!important}#bookly-tbs .social-smugmug:hover{color:#a5e239!important}#bookly-tbs .social-tumblr:hover{color:#426a90!important}#bookly-tbs .social-twitter:hover{color:#21c2ff!important}#bookly-tbs .social-vimeo:hover{color:#49c6ee!important}#bookly-tbs .social-vk:hover{color:#587fae!important}#bookly-tbs .social-youtube:hover{color:#f66!important}#bookly-tbs .thumbnail{overflow:auto;-webkit-box-shadow:inset 0 0 0 2px #e8ebf0;box-shadow:inset 0 0 0 2px #e8ebf0}#bookly-tbs .thumbnail .caption p:last-child{margin-bottom:0}#bookly-tbs .thumbnail .caption .heading{margin:0 0 5px}#bookly-tbs blockquote p{font-family:georgia,"times new roman",times,serif;font-size:18px}#bookly-tbs p{font-size:15px}#bookly-tbs .bookly-letter-spacing-sm{letter-spacing:.05em}#bookly-tbs .bookly-letter-spacing-md{letter-spacing:.1em}#bookly-tbs .bookly-letter-spacing-lg{letter-spacing:.2em}#bookly-tbs .bookly-line-height-sm{line-height:1.53846154}#bookly-tbs .bookly-line-height-base{line-height:1.4}#bookly-tbs .bookly-line-height-lg{line-height:1.3333333}#bookly-tbs .bookly-line-height-computed{line-height:21px}#bookly-tbs .bookly-font-xs{font-size:12px}#bookly-tbs .bookly-font-sm{font-size:14px}#bookly-tbs .bookly-font-md{font-size:15px}#bookly-tbs .bookly-font-lg{font-size:20px}#bookly-tbs .bookly-font-smaller{font-size:13px;text-transform:uppercase}#bookly-tbs .bookly-font-lighter{font-weight:lighter}#bookly-tbs .bookly-font-normal{font-weight:400}#bookly-tbs .bookly-font-bold{font-weight:700}#bookly-tbs .bookly-font-serif{font-family:georgia,"times new roman",times,serif}#bookly-tbs .bookly-font-italic{font-style:italic}#bookly-tbs .bookly-text-wrap{word-wrap:break-word;white-space:normal}#bookly-tbs .bookly-inline{display:inline}#bookly-tbs .bookly-bl-ock{display:block}#bookly-tbs .bookly-inline-block{display:inline-block}#bookly-tbs .bookly-nowrap{white-space:nowrap}#bookly-tbs .bookly-break-word{word-wrap:break-word}#bookly-tbs .bookly-truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .bookly-bottom-left,#bookly-tbs .bookly-bottom-right,#bookly-tbs .bookly-top-left,#bookly-tbs .bookly-top-right{position:absolute}#bookly-tbs .bookly-top-left,#bookly-tbs .bookly-top-right{top:0}#bookly-tbs .bookly-bottom-left,#bookly-tbs .bookly-bottom-right{bottom:0}#bookly-tbs .bookly-bottom-left,#bookly-tbs .bookly-top-left{left:0}#bookly-tbs .bookly-bottom-right,#bookly-tbs .bookly-top-right{right:0}#bookly-tbs .bookly-relative{position:relative}#bookly-tbs .bookly-fixed{position:fixed}#bookly-tbs .bookly-vertical-top{vertical-align:top}#bookly-tbs .bookly-vertical-middle{vertical-align:middle}#bookly-tbs .bookly-vertical-bottom{vertical-align:bottom}#bookly-tbs .bookly-margin-horizontal-remove,#bookly-tbs .bookly-margin-left-remove,#bookly-tbs .bookly-margin-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-remove,#bookly-tbs .bookly-margin-remove,#bookly-tbs .bookly-margin-right-remove{margin-right:0!important}#bookly-tbs .bookly-margin-remove,#bookly-tbs .bookly-margin-top-remove,#bookly-tbs .bookly-margin-vertical-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-remove,#bookly-tbs .bookly-margin-remove,#bookly-tbs .bookly-margin-vertical-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-xs,#bookly-tbs .bookly-margin-left-xs,#bookly-tbs .bookly-margin-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-xs,#bookly-tbs .bookly-margin-right-xs,#bookly-tbs .bookly-margin-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-top-xs,#bookly-tbs .bookly-margin-vertical-xs,#bookly-tbs .bookly-margin-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-xs,#bookly-tbs .bookly-margin-vertical-xs,#bookly-tbs .bookly-margin-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-sm,#bookly-tbs .bookly-margin-left-sm,#bookly-tbs .bookly-margin-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-sm,#bookly-tbs .bookly-margin-right-sm,#bookly-tbs .bookly-margin-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-sm,#bookly-tbs .bookly-margin-top-sm,#bookly-tbs .bookly-margin-vertical-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-sm,#bookly-tbs .bookly-margin-sm,#bookly-tbs .bookly-margin-vertical-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-md,#bookly-tbs .bookly-margin-left-md,#bookly-tbs .bookly-margin-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-md,#bookly-tbs .bookly-margin-md,#bookly-tbs .bookly-margin-right-md{margin-right:12px!important}#bookly-tbs .bookly-margin-md,#bookly-tbs .bookly-margin-top-md,#bookly-tbs .bookly-margin-vertical-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-md,#bookly-tbs .bookly-margin-md,#bookly-tbs .bookly-margin-vertical-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-lg,#bookly-tbs .bookly-margin-left-lg,#bookly-tbs .bookly-margin-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-lg,#bookly-tbs .bookly-margin-lg,#bookly-tbs .bookly-margin-right-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-lg,#bookly-tbs .bookly-margin-top-lg,#bookly-tbs .bookly-margin-vertical-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-lg,#bookly-tbs .bookly-margin-lg,#bookly-tbs .bookly-margin-vertical-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-xlg,#bookly-tbs .bookly-margin-left-xlg,#bookly-tbs .bookly-margin-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-xlg,#bookly-tbs .bookly-margin-right-xlg,#bookly-tbs .bookly-margin-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-top-xlg,#bookly-tbs .bookly-margin-vertical-xlg,#bookly-tbs .bookly-margin-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-xlg,#bookly-tbs .bookly-margin-vertical-xlg,#bookly-tbs .bookly-margin-xlg{margin-bottom:32px!important}@media (max-width:767px){#bookly-tbs .bookly-margin-horizontal-screenxs-remove,#bookly-tbs .bookly-margin-left-screenxs-remove,#bookly-tbs .bookly-margin-screenxs-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-screenxs-remove,#bookly-tbs .bookly-margin-right-screenxs-remove,#bookly-tbs .bookly-margin-screenxs-remove{margin-right:0!important}#bookly-tbs .bookly-margin-screenxs-remove,#bookly-tbs .bookly-margin-top-screenxs-remove,#bookly-tbs .bookly-margin-vertical-screenxs-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-screenxs-remove,#bookly-tbs .bookly-margin-screenxs-remove,#bookly-tbs .bookly-margin-vertical-screenxs-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xs,#bookly-tbs .bookly-margin-left-screenxs-xs,#bookly-tbs .bookly-margin-screenxs-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xs,#bookly-tbs .bookly-margin-right-screenxs-xs,#bookly-tbs .bookly-margin-screenxs-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-screenxs-xs,#bookly-tbs .bookly-margin-top-screenxs-xs,#bookly-tbs .bookly-margin-vertical-screenxs-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-screenxs-xs,#bookly-tbs .bookly-margin-screenxs-xs,#bookly-tbs .bookly-margin-vertical-screenxs-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-sm,#bookly-tbs .bookly-margin-left-screenxs-sm,#bookly-tbs .bookly-margin-screenxs-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-sm,#bookly-tbs .bookly-margin-right-screenxs-sm,#bookly-tbs .bookly-margin-screenxs-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-screenxs-sm,#bookly-tbs .bookly-margin-top-screenxs-sm,#bookly-tbs .bookly-margin-vertical-screenxs-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-screenxs-sm,#bookly-tbs .bookly-margin-screenxs-sm,#bookly-tbs .bookly-margin-vertical-screenxs-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-md,#bookly-tbs .bookly-margin-left-screenxs-md,#bookly-tbs .bookly-margin-screenxs-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-md,#bookly-tbs .bookly-margin-right-screenxs-md,#bookly-tbs .bookly-margin-screenxs-md{margin-right:12px!important}#bookly-tbs .bookly-margin-screenxs-md,#bookly-tbs .bookly-margin-top-screenxs-md,#bookly-tbs .bookly-margin-vertical-screenxs-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-screenxs-md,#bookly-tbs .bookly-margin-screenxs-md,#bookly-tbs .bookly-margin-vertical-screenxs-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-lg,#bookly-tbs .bookly-margin-left-screenxs-lg,#bookly-tbs .bookly-margin-screenxs-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-lg,#bookly-tbs .bookly-margin-right-screenxs-lg,#bookly-tbs .bookly-margin-screenxs-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-screenxs-lg,#bookly-tbs .bookly-margin-top-screenxs-lg,#bookly-tbs .bookly-margin-vertical-screenxs-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-screenxs-lg,#bookly-tbs .bookly-margin-screenxs-lg,#bookly-tbs .bookly-margin-vertical-screenxs-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xlg,#bookly-tbs .bookly-margin-left-screenxs-xlg,#bookly-tbs .bookly-margin-screenxs-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xlg,#bookly-tbs .bookly-margin-right-screenxs-xlg,#bookly-tbs .bookly-margin-screenxs-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-screenxs-xlg,#bookly-tbs .bookly-margin-top-screenxs-xlg,#bookly-tbs .bookly-margin-vertical-screenxs-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-screenxs-xlg,#bookly-tbs .bookly-margin-screenxs-xlg,#bookly-tbs .bookly-margin-vertical-screenxs-xlg{margin-bottom:32px!important}}@media (min-width:768px){#bookly-tbs .bookly-margin-horizontal-screensm-remove,#bookly-tbs .bookly-margin-left-screensm-remove,#bookly-tbs .bookly-margin-screensm-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-screensm-remove,#bookly-tbs .bookly-margin-right-screensm-remove,#bookly-tbs .bookly-margin-screensm-remove{margin-right:0!important}#bookly-tbs .bookly-margin-screensm-remove,#bookly-tbs .bookly-margin-top-screensm-remove,#bookly-tbs .bookly-margin-vertical-screensm-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-screensm-remove,#bookly-tbs .bookly-margin-screensm-remove,#bookly-tbs .bookly-margin-vertical-screensm-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-screensm-xs,#bookly-tbs .bookly-margin-left-screensm-xs,#bookly-tbs .bookly-margin-screensm-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-screensm-xs,#bookly-tbs .bookly-margin-right-screensm-xs,#bookly-tbs .bookly-margin-screensm-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-screensm-xs,#bookly-tbs .bookly-margin-top-screensm-xs,#bookly-tbs .bookly-margin-vertical-screensm-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-screensm-xs,#bookly-tbs .bookly-margin-screensm-xs,#bookly-tbs .bookly-margin-vertical-screensm-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-screensm-sm,#bookly-tbs .bookly-margin-left-screensm-sm,#bookly-tbs .bookly-margin-screensm-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-screensm-sm,#bookly-tbs .bookly-margin-right-screensm-sm,#bookly-tbs .bookly-margin-screensm-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-screensm-sm,#bookly-tbs .bookly-margin-top-screensm-sm,#bookly-tbs .bookly-margin-vertical-screensm-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-screensm-sm,#bookly-tbs .bookly-margin-screensm-sm,#bookly-tbs .bookly-margin-vertical-screensm-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-screensm-md,#bookly-tbs .bookly-margin-left-screensm-md,#bookly-tbs .bookly-margin-screensm-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-screensm-md,#bookly-tbs .bookly-margin-right-screensm-md,#bookly-tbs .bookly-margin-screensm-md{margin-right:12px!important}#bookly-tbs .bookly-margin-screensm-md,#bookly-tbs .bookly-margin-top-screensm-md,#bookly-tbs .bookly-margin-vertical-screensm-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-screensm-md,#bookly-tbs .bookly-margin-screensm-md,#bookly-tbs .bookly-margin-vertical-screensm-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-screensm-lg,#bookly-tbs .bookly-margin-left-screensm-lg,#bookly-tbs .bookly-margin-screensm-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-screensm-lg,#bookly-tbs .bookly-margin-right-screensm-lg,#bookly-tbs .bookly-margin-screensm-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-screensm-lg,#bookly-tbs .bookly-margin-top-screensm-lg,#bookly-tbs .bookly-margin-vertical-screensm-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-screensm-lg,#bookly-tbs .bookly-margin-screensm-lg,#bookly-tbs .bookly-margin-vertical-screensm-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-screensm-xlg,#bookly-tbs .bookly-margin-left-screensm-xlg,#bookly-tbs .bookly-margin-screensm-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-screensm-xlg,#bookly-tbs .bookly-margin-right-screensm-xlg,#bookly-tbs .bookly-margin-screensm-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-screensm-xlg,#bookly-tbs .bookly-margin-top-screensm-xlg,#bookly-tbs .bookly-margin-vertical-screensm-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-screensm-xlg,#bookly-tbs .bookly-margin-screensm-xlg,#bookly-tbs .bookly-margin-vertical-screensm-xlg{margin-bottom:32px!important}}@media (min-width:992px){#bookly-tbs .bookly-margin-horizontal-screenmd-remove,#bookly-tbs .bookly-margin-left-screenmd-remove,#bookly-tbs .bookly-margin-screenmd-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-screenmd-remove,#bookly-tbs .bookly-margin-right-screenmd-remove,#bookly-tbs .bookly-margin-screenmd-remove{margin-right:0!important}#bookly-tbs .bookly-margin-screenmd-remove,#bookly-tbs .bookly-margin-top-screenmd-remove,#bookly-tbs .bookly-margin-vertical-screenmd-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-screenmd-remove,#bookly-tbs .bookly-margin-screenmd-remove,#bookly-tbs .bookly-margin-vertical-screenmd-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xs,#bookly-tbs .bookly-margin-left-screenmd-xs,#bookly-tbs .bookly-margin-screenmd-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xs,#bookly-tbs .bookly-margin-right-screenmd-xs,#bookly-tbs .bookly-margin-screenmd-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-screenmd-xs,#bookly-tbs .bookly-margin-top-screenmd-xs,#bookly-tbs .bookly-margin-vertical-screenmd-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-screenmd-xs,#bookly-tbs .bookly-margin-screenmd-xs,#bookly-tbs .bookly-margin-vertical-screenmd-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-sm,#bookly-tbs .bookly-margin-left-screenmd-sm,#bookly-tbs .bookly-margin-screenmd-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-sm,#bookly-tbs .bookly-margin-right-screenmd-sm,#bookly-tbs .bookly-margin-screenmd-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-screenmd-sm,#bookly-tbs .bookly-margin-top-screenmd-sm,#bookly-tbs .bookly-margin-vertical-screenmd-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-screenmd-sm,#bookly-tbs .bookly-margin-screenmd-sm,#bookly-tbs .bookly-margin-vertical-screenmd-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-md,#bookly-tbs .bookly-margin-left-screenmd-md,#bookly-tbs .bookly-margin-screenmd-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-md,#bookly-tbs .bookly-margin-right-screenmd-md,#bookly-tbs .bookly-margin-screenmd-md{margin-right:12px!important}#bookly-tbs .bookly-margin-screenmd-md,#bookly-tbs .bookly-margin-top-screenmd-md,#bookly-tbs .bookly-margin-vertical-screenmd-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-screenmd-md,#bookly-tbs .bookly-margin-screenmd-md,#bookly-tbs .bookly-margin-vertical-screenmd-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-lg,#bookly-tbs .bookly-margin-left-screenmd-lg,#bookly-tbs .bookly-margin-screenmd-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-lg,#bookly-tbs .bookly-margin-right-screenmd-lg,#bookly-tbs .bookly-margin-screenmd-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-screenmd-lg,#bookly-tbs .bookly-margin-top-screenmd-lg,#bookly-tbs .bookly-margin-vertical-screenmd-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-screenmd-lg,#bookly-tbs .bookly-margin-screenmd-lg,#bookly-tbs .bookly-margin-vertical-screenmd-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xlg,#bookly-tbs .bookly-margin-left-screenmd-xlg,#bookly-tbs .bookly-margin-screenmd-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xlg,#bookly-tbs .bookly-margin-right-screenmd-xlg,#bookly-tbs .bookly-margin-screenmd-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-screenmd-xlg,#bookly-tbs .bookly-margin-top-screenmd-xlg,#bookly-tbs .bookly-margin-vertical-screenmd-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-screenmd-xlg,#bookly-tbs .bookly-margin-screenmd-xlg,#bookly-tbs .bookly-margin-vertical-screenmd-xlg{margin-bottom:32px!important}}#bookly-tbs .bookly-padding-horizontal-remove,#bookly-tbs .bookly-padding-left-remove,#bookly-tbs .bookly-padding-remove{padding-left:0!important}#bookly-tbs .bookly-padding-horizontal-remove,#bookly-tbs .bookly-padding-remove,#bookly-tbs .bookly-padding-right-remove{padding-right:0!important}#bookly-tbs .bookly-padding-remove,#bookly-tbs .bookly-padding-top-remove,#bookly-tbs .bookly-padding-vertical-remove{padding-top:0!important}#bookly-tbs .bookly-padding-bottom-remove,#bookly-tbs .bookly-padding-remove,#bookly-tbs .bookly-padding-vertical-remove{padding-bottom:0!important}#bookly-tbs .bookly-padding-horizontal-xs,#bookly-tbs .bookly-padding-left-xs,#bookly-tbs .bookly-padding-xs{padding-left:5px!important}#bookly-tbs .bookly-padding-horizontal-xs,#bookly-tbs .bookly-padding-right-xs,#bookly-tbs .bookly-padding-xs{padding-right:5px!important}#bookly-tbs .bookly-padding-top-xs,#bookly-tbs .bookly-padding-vertical-xs,#bookly-tbs .bookly-padding-xs{padding-top:5px!important}#bookly-tbs .bookly-padding-bottom-xs,#bookly-tbs .bookly-padding-vertical-xs,#bookly-tbs .bookly-padding-xs{padding-bottom:5px!important}#bookly-tbs .bookly-padding-horizontal-sm,#bookly-tbs .bookly-padding-left-sm,#bookly-tbs .bookly-padding-sm{padding-left:10px!important}#bookly-tbs .bookly-padding-horizontal-sm,#bookly-tbs .bookly-padding-right-sm,#bookly-tbs .bookly-padding-sm{padding-right:10px!important}#bookly-tbs .bookly-padding-sm,#bookly-tbs .bookly-padding-top-sm,#bookly-tbs .bookly-padding-vertical-sm{padding-top:10px!important}#bookly-tbs .bookly-padding-bottom-sm,#bookly-tbs .bookly-padding-sm,#bookly-tbs .bookly-padding-vertical-sm{padding-bottom:10px!important}#bookly-tbs .bookly-padding-horizontal-md,#bookly-tbs .bookly-padding-left-md,#bookly-tbs .bookly-padding-md{padding-left:12px!important}#bookly-tbs .bookly-padding-horizontal-md,#bookly-tbs .bookly-padding-md,#bookly-tbs .bookly-padding-right-md{padding-right:12px!important}#bookly-tbs .bookly-padding-md,#bookly-tbs .bookly-padding-top-md,#bookly-tbs .bookly-padding-vertical-md{padding-top:12px!important}#bookly-tbs .bookly-padding-bottom-md,#bookly-tbs .bookly-padding-md,#bookly-tbs .bookly-padding-vertical-md{padding-bottom:12px!important}#bookly-tbs .bookly-padding-horizontal-lg,#bookly-tbs .bookly-padding-left-lg,#bookly-tbs .bookly-padding-lg{padding-left:16px!important}#bookly-tbs .bookly-padding-horizontal-lg,#bookly-tbs .bookly-padding-lg,#bookly-tbs .bookly-padding-right-lg{padding-right:16px!important}#bookly-tbs .bookly-padding-lg,#bookly-tbs .bookly-padding-top-lg,#bookly-tbs .bookly-padding-vertical-lg{padding-top:16px!important}#bookly-tbs .bookly-padding-bottom-lg,#bookly-tbs .bookly-padding-lg,#bookly-tbs .bookly-padding-vertical-lg{padding-bottom:16px!important}#bookly-tbs .bookly-padding-horizontal-xlg,#bookly-tbs .bookly-padding-left-xlg,#bookly-tbs .bookly-padding-xlg{padding-left:32px!important}#bookly-tbs .bookly-padding-horizontal-xlg,#bookly-tbs .bookly-padding-right-xlg,#bookly-tbs .bookly-padding-xlg{padding-right:32px!important}#bookly-tbs .bookly-padding-top-xlg,#bookly-tbs .bookly-padding-vertical-xlg,#bookly-tbs .bookly-padding-xlg{padding-top:32px!important}#bookly-tbs .bookly-padding-bottom-xlg,#bookly-tbs .bookly-padding-vertical-xlg,#bookly-tbs .bookly-padding-xlg{padding-bottom:32px!important}#bookly-tbs .bookly-flexbox{display:table;width:100%;max-width:100%;height:100%}#bookly-tbs .bookly-flexbox .bookly-flex-row{display:table-row}#bookly-tbs .bookly-flexbox .bookly-flex-cell{display:table-cell;height:100%;word-wrap:break-word}@media (min-width:992px){#bookly-tbs .bookly-flexbox .bookly-flex-cell-sm{display:table-cell;height:100%;word-wrap:break-word}}#bookly-tbs .bookly-bg-transparent{background-color:transparent}#bookly-tbs .bookly-bg-white{background-color:#fff}#bookly-tbs .bookly-color-white{color:#fff}#bookly-tbs .bookly-bg-black{background-color:#000}#bookly-tbs .bookly-color-black{color:#000}#bookly-tbs .bookly-bg-gray{background-color:#8a929e}#bookly-tbs .bookly-color-gray{color:#8a929e}#bookly-tbs .bookly-bg-light{background-color:#d9dee4}#bookly-tbs .bookly-color-light{color:#d9dee4}#bookly-tbs .bookly-bg-brand-primary{background-color:#08c}#bookly-tbs .bookly-color-brand-primary{color:#08c}#bookly-tbs .bookly-bg-brand-success{background-color:#5cb85c}#bookly-tbs .bookly-color-brand-success{color:#5cb85c}#bookly-tbs .bookly-bg-brand-info{background-color:#5bc0de}#bookly-tbs .bookly-color-brand-info{color:#5bc0de}#bookly-tbs .bookly-bg-brand-warning{background-color:#f0ad4e}#bookly-tbs .bookly-color-brand-warning{color:#f0ad4e}#bookly-tbs .bookly-bg-brand-danger{background-color:#d9534f}#bookly-tbs .bookly-color-brand-danger{color:#d9534f}#bookly-tbs .bookly-cursor-pointer{cursor:pointer}#bookly-tbs .bookly-cursor-move{cursor:move}@media (max-width:767px){#bookly-tbs .bookly-text-xs-center{text-align:center!important}#bookly-tbs .bookly-text-xs-left{text-align:left!important}#bookly-tbs .bookly-text-xs-right{text-align:right!important}#bookly-tbs .bookly-btn-block-xs{display:block;width:100%}}#bookly-tbs table.dataTable{max-width:none!important;margin-top:6px!important;margin-bottom:6px!important;clear:both;border-collapse:separate!important}#bookly-tbs table.dataTable td,#bookly-tbs table.dataTable th{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs table.dataTable td.dataTables_empty,#bookly-tbs table.dataTable th.dataTables_empty{text-align:center}#bookly-tbs table.dataTable.nowrap td,#bookly-tbs table.dataTable.nowrap th{white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_length label{font-weight:400;text-align:left;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_length select{display:inline-block;width:75px}#bookly-tbs div.dataTables_wrapper div.dataTables_filter{text-align:right}#bookly-tbs div.dataTables_wrapper div.dataTables_filter label{font-weight:400;text-align:left;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_filter input{display:inline-block;width:auto;margin-left:.5em}#bookly-tbs div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_paginate{margin:0;text-align:right;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;padding:1em 0;margin-top:-26px;margin-left:-100px;text-align:center}#bookly-tbs table.dataTable thead>tr>td.sorting,#bookly-tbs table.dataTable thead>tr>td.sorting_asc,#bookly-tbs table.dataTable thead>tr>td.sorting_desc,#bookly-tbs table.dataTable thead>tr>th.sorting,#bookly-tbs table.dataTable thead>tr>th.sorting_asc,#bookly-tbs table.dataTable thead>tr>th.sorting_desc{padding-right:30px}#bookly-tbs table.dataTable thead>tr>td:active,#bookly-tbs table.dataTable thead>tr>th:active{outline:0}#bookly-tbs table.dataTable thead .sorting,#bookly-tbs table.dataTable thead .sorting_asc,#bookly-tbs table.dataTable thead .sorting_asc_disabled,#bookly-tbs table.dataTable thead .sorting_desc,#bookly-tbs table.dataTable thead .sorting_desc_disabled{position:relative;cursor:pointer}#bookly-tbs table.dataTable thead .sorting:after,#bookly-tbs table.dataTable thead .sorting_asc:after,#bookly-tbs table.dataTable thead .sorting_asc_disabled:after,#bookly-tbs table.dataTable thead .sorting_desc:after,#bookly-tbs table.dataTable thead .sorting_desc_disabled:after{position:absolute;right:8px;bottom:-webkit-calc(50% - 9px);bottom:calc(50% - 9px);display:block;font-family:'Glyphicons Halflings';font-size:12px;opacity:.5}#bookly-tbs table.dataTable thead .sorting:after{content:"\e150";opacity:.2}#bookly-tbs table.dataTable thead .sorting_asc:after{content:"\e155"}#bookly-tbs table.dataTable thead .sorting_desc:after{content:"\e156"}#bookly-tbs table.dataTable thead .sorting_asc_disabled:after,#bookly-tbs table.dataTable thead .sorting_desc_disabled:after{color:#eee}#bookly-tbs div.dataTables_scrollHead table.dataTable{margin-bottom:0!important}#bookly-tbs div.dataTables_scrollBody table{margin-top:0!important;margin-bottom:0!important;border-top:none}#bookly-tbs div.dataTables_scrollBody table thead .sorting:after,#bookly-tbs div.dataTables_scrollBody table thead .sorting_asc:after,#bookly-tbs div.dataTables_scrollBody table thead .sorting_desc:after{display:none}#bookly-tbs div.dataTables_scrollBody table tbody tr:first-child td,#bookly-tbs div.dataTables_scrollBody table tbody tr:first-child th{border-top:none}#bookly-tbs div.dataTables_scrollFoot table{margin-top:0!important;border-top:none}@media screen and (max-width:767px){#bookly-tbs div.dataTables_wrapper div.dataTables_filter,#bookly-tbs div.dataTables_wrapper div.dataTables_info,#bookly-tbs div.dataTables_wrapper div.dataTables_length,#bookly-tbs div.dataTables_wrapper div.dataTables_paginate{text-align:center}}#bookly-tbs table.dataTable.table-condensed>thead>tr>th{padding-right:20px}#bookly-tbs table.dataTable.table-condensed .sorting:after,#bookly-tbs table.dataTable.table-condensed .sorting_asc:after,#bookly-tbs table.dataTable.table-condensed .sorting_desc:after{top:6px;right:6px}#bookly-tbs table.table-bordered.dataTable td,#bookly-tbs table.table-bordered.dataTable th{border-left-width:0}#bookly-tbs table.table-bordered.dataTable td:last-child,#bookly-tbs table.table-bordered.dataTable th:last-child{border-right-width:0}#bookly-tbs table.table-bordered.dataTable tbody td,#bookly-tbs table.table-bordered.dataTable tbody th{border-bottom-width:0}#bookly-tbs div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}#bookly-tbs div.table-responsive>div.dataTables_wrapper>div.row{margin:0}#bookly-tbs div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0}#bookly-tbs div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0}#bookly-tbs div.dt-button-info{position:fixed;top:50%;left:50%;z-index:21;width:400px;margin-top:-100px;margin-left:-200px;text-align:center;background-color:#fff;border:2px solid #111;border-radius:3px;-webkit-box-shadow:3px 3px 8px rgba(0,0,0,.3);box-shadow:3px 3px 8px rgba(0,0,0,.3)}#bookly-tbs div.dt-button-info h2{padding:.5em;margin:0;font-weight:400;background-color:#f3f3f3;border-bottom:1px solid #ddd}#bookly-tbs div.dt-button-info>div{padding:1em}#bookly-tbs ul.dt-button-collection.dropdown-menu{z-index:2002;display:block;-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed.two-column{margin-left:-150px}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed.three-column{margin-left:-225px}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed.four-column{margin-left:-300px}#bookly-tbs ul.dt-button-collection.dropdown-menu>*{-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid}#bookly-tbs ul.dt-button-collection.dropdown-menu.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}#bookly-tbs ul.dt-button-collection.dropdown-menu.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}#bookly-tbs ul.dt-button-collection.dropdown-menu.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}#bookly-tbs div.dt-button-background{position:fixed;top:0;left:0;z-index:2001;width:100%;height:100%}@media screen and (max-width:767px){#bookly-tbs div.dt-buttons{float:none;width:100%;margin-bottom:.5em;text-align:center}#bookly-tbs div.dt-buttons a.btn{float:none}}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th.child{cursor:default!important}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before{display:none!important}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child{position:relative;padding-left:30px;cursor:pointer}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before{position:absolute;top:9px;left:4px;display:block;width:18px;height:18px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;font-family:'Courier New',Courier,monospace;font-size:18px;font-weight:700;line-height:18px;color:#5b6470;text-align:center;content:'+';background-color:transparent;border:0;border-radius:18px;-webkit-box-shadow:0 0 2px #5b6470;box-shadow:0 0 2px #5b6470}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:'-';background-color:transparent}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr.child td:before{display:none}#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;width:14px;height:14px;line-height:14px;text-indent:3px;border-radius:14px}#bookly-tbs table.dataTable.dtr-column>tbody>tr>td.control,#bookly-tbs table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}#bookly-tbs table.dataTable.dtr-column>tbody>tr>td.control:before,#bookly-tbs table.dataTable.dtr-column>tbody>tr>th.control:before{position:absolute;top:50%;left:50%;display:block;width:16px;height:16px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;margin-top:-10px;margin-left:-10px;font-family:'Courier New',Courier,monospace;line-height:14px;color:#fff;text-align:center;content:'+';background-color:#337ab7;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444}#bookly-tbs table.dataTable.dtr-column>tbody>tr.parent td.control:before,#bookly-tbs table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:'-';background-color:#d33333}#bookly-tbs table.dataTable>tbody>tr.child{padding:.5em 1em}#bookly-tbs table.dataTable>tbody>tr.child:hover{background:0 0!important}#bookly-tbs table.dataTable>tbody>tr.child ul{display:inline-block;width:100%;padding:0;margin:0;list-style-type:none}#bookly-tbs table.dataTable>tbody>tr.child ul li{padding:.3em 0;margin-bottom:.3em;border-bottom:1px solid #efefef}#bookly-tbs table.dataTable>tbody>tr.child ul li:first-child{padding-top:0}#bookly-tbs table.dataTable>tbody>tr.child ul li:last-child{border-bottom:none}#bookly-tbs table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:700}#bookly-tbs div.dtr-modal{position:fixed;top:0;left:0;z-index:100;width:100%;height:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:10em 1em}#bookly-tbs div.dtr-modal div.dtr-modal-display{position:absolute;top:0;right:0;bottom:0;left:0;z-index:102;width:50%;height:50%;margin:auto;overflow:auto;background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;-webkit-box-shadow:0 12px 30px rgba(0,0,0,.6);box-shadow:0 12px 30px rgba(0,0,0,.6)}#bookly-tbs div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}#bookly-tbs div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;z-index:12;width:22px;height:22px;text-align:center;cursor:pointer;background-color:#f9f9f9;border:1px solid #eaeaea;border-radius:3px}#bookly-tbs div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}#bookly-tbs div.dtr-modal div.dtr-modal-background{position:fixed;top:0;right:0;bottom:0;left:0;z-index:101;background:rgba(0,0,0,.6)}@media screen and (max-width:767px){#bookly-tbs div.dtr-modal div.dtr-modal-display{width:95%}}#bookly-tbs div.dtr-bs-modal table.table tr:first-child td{border-top:none}#bookly-tbs table.dt-rowReorder-float{position:absolute!important;z-index:2001;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;opacity:.8}#bookly-tbs tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}#bookly-tbs body.dt-rowReorder-noOverflow{overflow-x:hidden}#bookly-tbs table.dataTable td.reorder{text-align:center;cursor:move}#bookly-tbs .jCal-wrap{margin-right:-10px;margin-left:-10px}#bookly-tbs .jCal{position:relative;width:100%}#bookly-tbs .jCalMo{position:relative;display:block;padding:0 15px;margin-bottom:15px;white-space:nowrap}@media (min-width:768px){#bookly-tbs .jCalMo{height:257px}}#bookly-tbs .jCal .month,#bookly-tbs .jCal .monthName,#bookly-tbs .jCal .monthSelect,#bookly-tbs .jCal .monthYear{float:left}#bookly-tbs .jCal .monthName{width:100%;padding:10px 0;font-weight:700;text-align:center}#bookly-tbs .jCal .monthYear{float:right;text-align:left}#bookly-tbs .jCal .month{width:100%}#bookly-tbs .jCal .monthSelect{background:#e8ebf0}#bookly-tbs .jCal .monthSelector{position:absolute}#bookly-tbs .jCal .monthSelectorShadow{position:absolute;padding:0;background:#8a929e}#bookly-tbs .jCal .monthNameHover,#bookly-tbs .jCal .monthYearHover{color:#8a929e;background:#e8ebf0}#bookly-tbs .jCal .monthSelectHover{color:#fff;background:#08c}#bookly-tbs .jCalMo .aday,#bookly-tbs .jCalMo .day,#bookly-tbs .jCalMo .dow,#bookly-tbs .jCalMo .invday,#bookly-tbs .jCalMo .overDay,#bookly-tbs .jCalMo .pday,#bookly-tbs .jCalMo .selectedDay{position:relative;float:left;width:-webkit-calc(14.2857% + 1px);width:calc(14.2857% + 1px);margin-right:-1px;text-align:center;cursor:default;border:1px solid #e8ebf0;border-width:0 1px 1px 1px}#bookly-tbs .jCalMo .dow{font-size:12px;line-height:30px;background:#e8ebf0;border-bottom:0}#bookly-tbs .jCalMo .day{font-size:13px;line-height:30px;cursor:pointer;background:#fff}#bookly-tbs .jCalMo .invday{color:#8a929e;text-decoration:line-through;background:#e8ebf0}#bookly-tbs .jCalMo .aday,#bookly-tbs .jCalMo .pday{font-size:13px;line-height:30px;color:#d9dee4;background:rgba(232,235,240,.3)}#bookly-tbs .jCalMo .overDay{color:#3e424a;background:rgba(0,136,204,.2)}#bookly-tbs .jCalMo .holidayDay{color:#fff;background:#f0ad4e}#bookly-tbs .jCalMo .holidayDay.repeatDay{color:#fff;background:#d9534f}#bookly-tbs .jCalMo .selectedDay,#bookly-tbs .jCalMo .selectedDay.repeatDay{color:#fff;background:#08c}#bookly-tbs .jCal .left,#bookly-tbs .jCal .right{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}#bookly-tbs .jCalMask,#bookly-tbs .jCalMove{position:absolute;width:700px;height:930px;overflow:hidden}@media (min-width:768px){#bookly-tbs .jCalMo{float:left;width:50%}}@media (min-width:1200px){#bookly-tbs .jCalMo{float:left;width:33.33333333%}}#bookly-tbs .bookly-loading{position:relative;height:100px}#bookly-tbs .bookly-loading:before{position:absolute;top:-webkit-calc(50% - 16px);top:calc(50% - 16px);left:-webkit-calc(50% - 16px);left:calc(50% - 16px);width:32px;height:32px;content:'';background:url(../../images/ajax_loader_32x32.gif) no-repeat;-webkit-background-size:contain;background-size:contain}#bookly-tbs .bookly-loading-16{position:relative;display:inline-block;min-width:16px;min-height:16px}#bookly-tbs .bookly-loading-16:before{position:absolute;top:-webkit-calc(50% - 8px);top:calc(50% - 8px);left:-webkit-calc(50% - 8px);left:calc(50% - 8px);width:16px;height:16px;content:'';background:url(../../images/loading.gif) no-repeat;-webkit-background-size:contain;background-size:contain}#bookly-tbs .select2 .select2-selection{height:35px!important;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .select2 .select2-selection__choice{display:none}#bookly-tbs .select2 .select2-selection ul{padding:0 16px;margin-bottom:0}#bookly-tbs .select2 .select2-search{float:none;margin:6px 0}#bookly-tbs .select2 .select2-search__field{width:100%!important;padding:0;margin:0;border:0;-webkit-box-shadow:none!important;box-shadow:none!important}#bookly-tbs .select2 .select2-selection__clear{top:-2px}#bookly-tbs .select2 .select2-selection__arrow{top:-4px}#bookly-tbs .bookly-no-borders,#bookly-tbs .bookly-no-borders td{border:0!important}#bookly-tbs .panel.bookly-main{border-color:#d9dee4;border-width:1px}@media (min-width:992px){#bookly-tbs .panel.bookly-main>.panel-body{padding:25px}}#bookly-tbs .panel.bookly-main .panel-body+.panel-footer{margin:0 15px 15px}@media (min-width:992px){#bookly-tbs .panel.bookly-main .panel-body+.panel-footer{margin:0 25px 25px}}#bookly-tbs .panel.bookly-panel-unborder,#bookly-tbs .panel.bookly-panel-unborder .panel-heading,#bookly-tbs .panel.bookly-panel-unborder>.list-group .list-group-item,#bookly-tbs .panel.bookly-panel-unborder>.panel-collapse>.list-group .list-group-item{border-width:0}#bookly-tbs .panel.bookly-panel-unborder .panel-heading{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel .panel-heading .bookly-font-smaller{padding-top:4px}#bookly-tbs .panel .panel-footer{padding:21px 0 0 0;background-color:transparent}@media (min-width:768px){#bookly-tbs .panel .panel-footer{text-align:right}}@media (max-width:767px){#bookly-tbs .panel .panel-footer .btn{float:none!important}}#bookly-tbs .panel .panel-body .bookly-codes input{width:242px;border:none}#bookly-tbs .panel .panel-body #bookly-prices tr td:nth-child(4),#bookly-tbs .panel .panel-body #bookly-prices tr td:nth-child(5){text-align:right}#bookly-tbs .panel .padding-lr-none{padding-right:0;padding-left:0}#bookly-tbs .panel .panel-group .panel-footer{border-top:1px solid #e8ebf0}#bookly-tbs .bookly-collapse{margin-bottom:16px!important}#bookly-tbs .bookly-collapse a[data-toggle=collapse]{padding-right:25px;vertical-align:middle;background:url(../../../resources/images/notifications-arrow-up.png) 100% 50% no-repeat;-webkit-background-size:17px 17px!important;background-size:17px 17px!important;outline:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .bookly-collapse a[data-toggle=collapse].collapsed{background:url(../../../resources/images/notifications-arrow-down.png) 100% 50% no-repeat}#bookly-tbs .help-block{margin-top:-5px;margin-bottom:7px}@media (min-width:768px){#bookly-tbs .form-inline .form-group+.form-group,#bookly-tbs .modal-footer .btn+.btn,#bookly-tbs .page-header .bookly-support-panel>*+*,#bookly-tbs .page-header .popover+.btn,#bookly-tbs .panel-footer .btn+.btn:not(.bookly-btn-unborder){margin-left:12px}}#bookly-tbs .bookly-block-head{margin-bottom:20px}#bookly-tbs .intl-tel-input{display:block}#bookly-tbs .intl-tel-input .flag-container{right:0;left:0}#bookly-tbs .intl-tel-input .selected-flag{width:42px;padding:0 0 0 8px}#bookly-tbs .intl-tel-input .selected-flag .arrow{right:4px;left:auto;border-top:4px solid #000;border-right:3px solid transparent;border-left:3px solid transparent}#bookly-tbs .intl-tel-input .iti-flag{background-image:url(../../../../frontend/resources/images/flags.png)}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-resolution:2dppx){#bookly-tbs .intl-tel-input .iti-flag{background-image:url(../../../../frontend/resources/images/flags@2x.png)}}#bookly-tbs .intl-tel-input .form-control{padding-left:45px}#bookly-tbs .intl-tel-input .country-list{max-width:100%}#bookly-tbs .form-inline label{margin-bottom:0}#bookly-tbs .form-inline .intl-tel-input{display:inline-block}#bookly-tbs .form-inline .bookly-checkbox-text{font-weight:400;vertical-align:middle}#bookly-tbs .page-header{margin-top:0}#bookly-tbs .page-header .bookly-support-panel #bookly-bell+.badge{position:absolute;top:-17px;right:7px;background-color:red}#bookly-tbs .page-header .bookly-support-panel .dropdown-menu-right{margin-top:10px;margin-right:3px}#bookly-tbs .bookly-nav-justified.nav-justified{display:table;margin-bottom:30px;table-layout:fixed}#bookly-tbs .bookly-nav-justified.nav-justified>li{display:table-cell;width:100%}#bookly-tbs .bookly-nav-justified.nav-justified>li>a{padding:15px 5px;margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-bottom:1px solid #d9dee4;border-radius:0}#bookly-tbs .bookly-nav-justified.nav-justified>li>.active>a,#bookly-tbs .bookly-nav-justified.nav-justified>li>.active>a:focus,#bookly-tbs .bookly-nav-justified.nav-justified>li>.active>a:hover{border-bottom:1px solid #08c}#bookly-tbs .bookly-nav-justified.nav-justified>li .bookly-icon{margin:0 3px;vertical-align:bottom}#bookly-tbs .bookly-nav-tabs-title{font-size:17px}@media (max-width:991px){#bookly-tbs .bookly-nav-tabs-title{display:none}}#bookly-tbs .bookly-thumb{position:relative;display:block;width:76px;height:76px;overflow:hidden;background-color:#e8ebf0;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat;background-position:-106px 0;border:1px solid #d9dee4;border-radius:4px}#bookly-tbs .bookly-thumb.bookly-thumb-sm{width:36px;height:36px;background-position:-182px 0}@media (min-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg{width:106px;height:106px;background-position:0 0}}@media (max-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg{background-position:0 0}}#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{background-color:rgba(0,0,0,.05);background-image:none}@media (min-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{width:106px;height:106px;background-position:0 0}}@media (max-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{background-position:0 0}}@media (min-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{width:100%}}#bookly-tbs .bookly-thumb .bookly-thumb-delete{position:absolute;top:5px;right:5px}#bookly-tbs .bookly-thumb .bookly-thumb-edit{position:absolute;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.4)}#bookly-tbs .bookly-thumb .bookly-thumb-edit .bookly-thumb-edit-btn{width:100%;padding:0 3px;margin:0;overflow:hidden;font-size:13px;line-height:25px;color:#fff;text-align:center;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .bookly-staff-archived{background:rgba(232,235,240,.7)!important}#bookly-tbs .bookly-staff-archived .bookly-flex-cell{color:#d9dee4}#bookly-tbs .bookly-staff-archived .bookly-rating-right{color:#d9dee4}#bookly-tbs .btn{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .btn.btn-lg{padding-right:32px;padding-left:32px}#bookly-tbs .btn.btn-xlg .dashicons,#bookly-tbs .btn.btn-xlg .dashicons-before:before{width:30px;height:30px;font-size:30px}#bookly-tbs .btn.bookly-btn-unborder{padding-right:0;padding-left:0;border-color:transparent}#bookly-tbs .bookly-nav{margin-bottom:20px;font-size:0}#bookly-tbs .bookly-nav.bookly-nav-pills .bookly-nav-item{display:inline-block;margin:6px 10px 6px 0}#bookly-tbs .bookly-nav.bookly-nav-tabs{z-index:10;border-bottom:1px solid #e8ebf0}@media (min-width:768px){#bookly-tbs .bookly-nav.bookly-nav-tabs{margin-bottom:0}}@media (min-width:768px){#bookly-tbs .bookly-nav.bookly-nav-tabs .bookly-nav-item{position:relative;display:inline-block;padding:12px 16px;margin:6px 10px -1px 0;border-bottom-right-radius:0;border-bottom-left-radius:0}}#bookly-tbs .bookly-nav .bookly-nav-item{position:relative;display:block;padding:10px 10px;margin-bottom:6px;font-size:15px;background:#fff;border:1px solid #e8ebf0;border-radius:4px}#bookly-tbs .bookly-nav .bookly-nav-item.active{color:#fff;background:#08c;border-color:#08c}#bookly-tbs .bookly-nav .bookly-nav-item.active a{color:#fff}#bookly-tbs .bookly-nav .bookly-nav-item.active a:focus,#bookly-tbs .bookly-nav .bookly-nav-item.active a:hover{color:#d9d9d9}#bookly-tbs .bookly-nav .bookly-nav-item:not(.active):focus,#bookly-tbs .bookly-nav .bookly-nav-item:not(.active):hover{cursor:pointer;background-color:#e8ebf0;border-color:#8a929e;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2)}#bookly-tbs .board-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100%;height:100%;overflow:auto;background-color:#000;background-color:rgba(0,0,0,.5)}#bookly-tbs .board-backdrop .bookly-board{width:50%;padding:20px;margin:10% 25%;background-color:#fefefe;border:1px solid rgba(0,0,0,.2)}@media (max-width:991px){#bookly-tbs .board-backdrop .bookly-board{width:90%;margin:10% 5%}}#bookly-tbs .board-backdrop .bookly-board .btn-group-vertical.align-left .btn{padding-left:6px;text-align:left}#bookly-tbs .board-backdrop .bookly-board ul{margin-left:15px!important;list-style:inside!important}#bookly-tbs .bookly-dropdown-menu>li:first-child{margin-left:0}#bookly-tbs .bookly-dropdown-menu li{margin-left:20px}#bookly-tbs .bookly-dropdown-menu ul>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.4;color:#5b6470;white-space:nowrap}#bookly-tbs .bookly-dropdown-menu ul>li>a:focus,#bookly-tbs .bookly-dropdown-menu ul>li>a:hover{color:#505762;text-decoration:none;background-color:#f5f5f5}#bookly-tbs .bookly-dropdown-block{display:block;width:100%;height:36px;line-height:1.4}#bookly-tbs .bookly-dropdown-block .bookly-flex-cell:last-child{position:absolute;top:7px;left:-webkit-calc(100% - 32px);left:calc(100% - 32px)}#bookly-tbs .bookly-service-color{display:inline-block;width:21px;height:21px;margin-left:-25px;border:2px solid #fff;border-radius:50%}#bookly-tbs .bookly-vertical-colors .bookly-service-color{position:absolute}#bookly-tbs .bookly-vertical-colors .bookly-service-color:nth-child(1){margin-top:-15px}#bookly-tbs .bookly-vertical-colors .bookly-service-color:nth-child(2){margin-top:-5px}#bookly-tbs .bookly-max-height-xs{max-height:200px!important;overflow:auto}#bookly-tbs .bookly-max-height-sm{max-height:300px!important;overflow:auto}#bookly-tbs .bookly-max-height-md{max-height:400px!important;overflow:auto}#bookly-tbs .bookly-max-height-lg{max-height:500px!important;overflow:auto}#bookly-tbs .bookly-holidays-nav{display:block;width:200px;margin:0 auto}#bookly-tbs .bookly-holidays-nav .btn-default,#bookly-tbs .bookly-holidays-nav .form-control{background-color:#eff1f4;border-color:transparent}#bookly-tbs .modal-body textarea.wp-editor-area{width:-webkit-calc(100% - 20px);width:calc(100% - 20px)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-day{cursor:pointer}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-day.bookly-fc-day-active{background-color:#eafcff}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group{position:relative;display:inline-block;vertical-align:middle}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group .fc-button+.fc-button{margin-left:-1px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:not(.fc-corner-left):not(.fc-corner-right){border-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:first-child{margin-left:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:first-child:not(.fc-corner-right){border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:not(.fc-corner-left){border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group:not(:last-child){margin-right:16px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button{display:inline-block;height:auto;padding:6px 12px;margin-bottom:0;overflow:hidden;font-size:15px;font-weight:400;line-height:1.4;text-align:center;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-pill{border-radius:24px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-pill-left{border-top-left-radius:24px;border-bottom-left-radius:24px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-pill-right{border-top-right-radius:24px;border-bottom-right-radius:24px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-lg{padding-right:32px;padding-left:32px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-xlg .dashicons,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-xlg .dashicons-before:before{width:30px;height:30px;font-size:30px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.bookly-btn-unborder{padding-right:0;padding-left:0;border-color:transparent}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default{color:#3e424a;text-shadow:none;background-color:#fff;background-image:none;border-color:#d9dee4;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:focus{color:#3e424a;background-color:#e6e6e6;border-color:#8e9daf}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:hover{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active:hover,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active:hover,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.focus,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:focus,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:hover{color:#3e424a;background-color:#d4d4d4;border-color:#8e9daf}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default{background-image:none}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.disabled.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.disabled:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.disabled:hover,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default[disabled].focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default[disabled]:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default[disabled]:hover,fieldset[disabled] #bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.focus,fieldset[disabled] #bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:focus,fieldset[disabled] #bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:hover{background-color:#fff;border-color:#d9dee4}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default .badge{color:#fff;background-color:#3e424a}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active{z-index:1;color:#3e424a;background-color:#e6e6e6;background-image:none;border-color:#b5bfcb;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active:hover{color:#3e424a;background-color:#d4d4d4;border-color:#8e9daf}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2{position:relative;margin:0;font-size:20px;line-height:32px;cursor:pointer}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2:hover{color:#005580}@media (min-width:768px){#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2{font-size:24px}}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2:after{display:inline-block;width:0;height:0;margin-left:12px;vertical-align:middle;content:" ";border-top:5px dashed;border-top:5px solid\9;border-right:5px solid transparent;border-left:5px solid transparent}@media (max-width:767px){#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-left,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-right{display:inline-block;float:none;margin:0 12px 6px 12px}}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-head{background-color:#e8ebf0}#bookly-tbs .bookly-fc-inner .bookly-calendar th.fc-widget-header{padding:10px 0}#bookly-tbs .bookly-fc-inner .bookly-calendar th.fc-day-header{text-align:center}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc .fc-axis{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;padding:0 4px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-view{min-height:.01%;overflow-x:auto}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-view>table{min-width:768px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-event{padding:3px 2px 3px 5px;margin-right:0;margin-left:0;color:#3e424a;cursor:pointer;border-width:0;border-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-event:after{position:absolute;top:0;right:0;width:-webkit-calc(100% - 2px);width:calc(100% - 2px);height:100%;content:'';background-color:rgba(255,255,255,.6);border-bottom:1px solid rgba(255,255,255,.4)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-event:hover:after{background-color:rgba(255,255,255,.7)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-time{font-size:inherit;font-weight:700}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-time .bookly-fc-icon{float:right;color:#3e424a;opacity:.8}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-time .bookly-fc-icon:hover{cursor:pointer;opacity:1}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-title{display:block;margin-top:3px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-ltr .fc-time-grid .fc-event-container,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-rtl .fc-time-grid .fc-event-container{margin:0}#bookly-tbs .bookly-fc-inner .fc-loading-inner{position:absolute;top:50px;right:0;bottom:0;left:0;z-index:9;background-color:rgba(255,255,255,.7)}#bookly-tbs .bookly-fc-inner .fc-loading-inner .fc-loading{position:absolute;top:50%;left:50%;width:auto;height:32px;padding-left:64px;background:rgba(255,0,0,0) url(../../images/ajax_loader_32x32.gif) no-repeat scroll 50% center}#bookly-tbs .bookly-fc-inner .bookly-margin-top-xlg{position:relative;min-height:.01%;overflow:visible}@media (min-width:768px){#bookly-tbs .daterangepicker.dropdown-menu.show-calendar{min-width:718px}}#bookly-tbs .daterangepicker .daterangepicker_input{margin-bottom:6px}#bookly-tbs .daterangepicker .daterangepicker_input .glyphicon{position:absolute;top:8px}#bookly-tbs .wp-editor-wrap *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs .wp-switch-editor+.wp-switch-editor{margin-left:5px}#bookly-tbs .editable-container.popover{z-index:9999}#bookly-tbs .editable-input,#bookly-tbs .editable-input .form-control{width:100%}#bookly-tbs .editable-input textarea{resize:both}#bookly-tbs .editable-buttons{display:block;margin:6px 0;text-align:right}#bookly-tbs .editable-clear-x,#bookly-tbs .editable-click{cursor:pointer}#bookly-tbs .table>thead>tr>th{padding:16px 8px;background-color:#e8ebf0}#bookly-tbs .bookly-table-sortable.table>thead>tr>th{position:relative;padding-left:16px!important}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class],#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by]{cursor:pointer}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class]:after,#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by]:after{position:absolute;bottom:22px;left:-4px;width:24px;height:15px;content:"";background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDIwbDEwIDEwIDEwLTEweiIvPjxwYXRoIGQ9Ik0wIDBoNDh2NDhoLTQ4eiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==);background-repeat:no-repeat;background-position:0 -webkit-calc(50% + 2px);background-position:0 calc(50% + 2px);-webkit-background-size:24px 24px;background-size:24px 24px;opacity:.1}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class].desc:after,#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by].desc:after{opacity:1;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class].asc:after,#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by].asc:after{opacity:1}#bookly-tbs .table thead>tr>th{vertical-align:middle}#bookly-tbs .table thead>tr>th:not(:first-child){border-left:1px solid #d9dee4}#bookly-tbs .table td>input[type=checkbox],#bookly-tbs .table th>input[type=checkbox]{margin:0}#bookly-tbs .table td ul.bookly-list,#bookly-tbs .table th ul.bookly-list{padding-left:13px;margin:0!important}#bookly-tbs .table td ul.bookly-list.list-dots,#bookly-tbs .table th ul.bookly-list.list-dots{list-style:disc outside!important}#bookly-tbs .table td ul.bookly-list li,#bookly-tbs .table th ul.bookly-list li{margin:0}#bookly-tbs .bookly-color-picker-wrapper{position:relative;min-height:35px}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container{position:absolute;z-index:10;padding:6px;margin-left:-6px;background-color:#fff}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container,#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container.wp-picker-active{-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container .wp-color-result{height:auto}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container .button{margin-left:6px}#bookly-tbs .page-header .bookly-page-title{float:left;font-size:24px;line-height:38px}@media (max-width:767px){#bookly-tbs .page-header .bookly-page-title{font-size:22px}#bookly-tbs h3{font-size:18px}}#bookly-tbs .modal{top:46px!important;font-size:15px}#bookly-tbs .modal table{font-family:Arial,Helvetica,sans-serif}#bookly-tbs .modal table th{word-break:normal}#bookly-tbs .modal table td{word-break:normal}#bookly-tbs .modal .bookly-codes input{width:242px;border:none}#bookly-tbs .modal-header .close{margin-top:4px}@media (max-width:767px){#bookly-tbs .bookly-form .bookly-progress-tracker{display:none!important}}#bookly-tbs .bookly-form .picker__nav--next,#bookly-tbs .bookly-form .picker__nav--prev{width:26px;height:26px}@media (max-width:991px){#bookly-tbs .bookly-form .bookly-user-coupon{width:135px}}#bookly-tbs .bookly-form .bookly-box{padding-bottom:1px}#bookly-tbs .bookly-form input[type=checkbox],#bookly-tbs .bookly-form input[type=radio]{width:16px!important;height:16px!important}#bookly-tbs .bookly-icon{display:inline-block;width:24px;height:24px;vertical-align:middle;background-color:transparent;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat}#bookly-tbs .bookly-icon.bookly-icon-draghandle{background-position:-154px -82px}#bookly-tbs .has-feedback .alert-icon{display:inline-block;width:24px;height:24px;margin:4px 6px 0 0;vertical-align:middle;background-color:transparent;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat}#bookly-tbs .has-feedback.has-success .alert-icon{background-position:-24px -113px}#bookly-tbs .has-feedback.has-error .alert-icon{background-position:-48px -113px}#bookly-tbs .has-feedback.has-warning .alert-icon{background-position:-72px -113px}#bookly-tbs .has-feedback.has-ajax .alert-icon{background-position:-72px -113px;-webkit-animation:spin 3s infinite;-o-animation:spin 3s infinite;animation:spin 3s infinite}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes spin{100%{-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}#bookly-tbs .alert{margin-top:30px}#bookly-tbs .alert .alert-icon,#bookly-tbs .alert .close{display:inline-block;width:24px;height:24px;vertical-align:top;background-color:transparent;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat}#bookly-tbs .alert .close{margin-top:-2px}#bookly-tbs .alert.alert-info .alert-icon{background-position:0 -113px}#bookly-tbs .alert.alert-success .alert-icon{background-position:-24px -113px}#bookly-tbs .alert.alert-danger .alert-icon{background-position:-48px -113px}#bookly-tbs .alert.alert-warning .alert-icon{background-position:-72px -113px}#bookly-tbs .bookly-alert{position:fixed;top:55px;right:13px;z-index:10000;text-align:left}@media (min-width:783px){#bookly-tbs .bookly-alert{right:21px}}#bookly-tbs .bookly-alert button{margin-left:10px}#bookly-tbs .pagination .next,#bookly-tbs .pagination .prev{position:inherit;width:inherit;height:inherit;padding:inherit}#bookly-tbs .pagination .next:before,#bookly-tbs .pagination .prev:before{position:inherit;width:inherit;height:inherit;padding:inherit;content:""}#bookly-tbs #bookly-appointments-list .popover .arrow{display:none}#bookly-tbs .bookly-rating-right{float:right}#bookly-tbs .bookly-rating-left{margin-left:10px}#bookly-tbs .bookly-rating-left i{margin-top:3px}#bookly-tbs .table.table-striped{border:1px solid #f4f4f4}#bookly-tbs .table.table-striped thead>tr>th{background-color:transparent;border-top:1px solid #f4f4f4}#bookly-tbs .table.table-striped thead>tr>th:not(:first-child){border-left:1px solid #f4f4f4}#bookly-tbs .table.table-striped thead>tr>th{border-bottom:none}#bookly-tbs .table.table-striped tbody>tr>td{border-top:1px solid #f4f4f4}#bookly-tbs .modal.fade.show{opacity:1}#bookly-tbs .modal .modal-header{display:block}#bookly-tbs ul{list-style:none}#bookly-tbs .modal.show .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}#bookly-tbs h2:before{content:none}#bookly-tbs .dataTables_wrapper{display:block}body.mobile.modal-open #wpwrap{position:inherit!important}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-backdrop+.modal-backdrop{display:none!important}.modal-open{overflow:hidden!important}.modal-open .modal{overflow-x:hidden!important;overflow-y:auto!important}.select2-container--bootstrap{display:block}.select2-container--bootstrap .select2-selection{font-size:15px;color:#3e424a;background-color:#fff;border:1px solid #d9dee4;border-radius:4px;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.select2-container--bootstrap .select2-selection.form-control{border-radius:4px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{font-size:15px;color:#3e424a;background-color:#fff;border:1px solid #d9dee4;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.select2-container--bootstrap .select2-search__field{outline:0}.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder{color:#8a929e}.select2-container--bootstrap .select2-search__field:-moz-placeholder{color:#8a929e}.select2-container--bootstrap .select2-search__field::-moz-placeholder{color:#8a929e;opacity:1}.select2-container--bootstrap .select2-search__field:-ms-input-placeholder{color:#8a929e}.select2-container--bootstrap .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option[role=group]{padding:0}.select2-container--bootstrap .select2-results__option[aria-disabled=true]{color:#d9dee4;cursor:not-allowed}.select2-container--bootstrap .select2-results__option[aria-selected=true]{color:#505762;background-color:#f5f5f5}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{color:#fff;background-color:#08c}.select2-container--bootstrap .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option{padding-left:12px*2;margin-left:-12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:12px*3;margin-left:-12px*2}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:12px*4;margin-left:-12px*3}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:12px*5;margin-left:-12px*4}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:12px*6;margin-left:-12px*5}.select2-container--bootstrap .select2-results__group{display:block;padding:6px 12px;font-size:13px;line-height:1.4;color:#d9dee4;white-space:nowrap}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection{border-color:#08c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,204,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,204,.6);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #8a929e transparent;border-width:0 5px 5px 5px}.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection{border-bottom-color:transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection{border-top-color:transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap .select2-selection__clear{float:right;margin-right:10px;font-weight:700;color:#8a929e;cursor:pointer}.select2-container--bootstrap .select2-selection__clear:hover{color:#3e424a}.select2-container--bootstrap.select2-container--disabled .select2-selection{border-color:#d9dee4;-webkit-box-shadow:none;box-shadow:none}.select2-container--bootstrap.select2-container--disabled .select2-search__field,.select2-container--bootstrap.select2-container--disabled .select2-selection{cursor:not-allowed}.select2-container--bootstrap.select2-container--disabled .select2-selection,.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:rgba(232,235,240,.7)}.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,.select2-container--bootstrap.select2-container--disabled .select2-selection__clear{display:none}.select2-container--bootstrap .select2-dropdown{margin-top:-1px;overflow-x:hidden;border-color:#08c;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.select2-container--bootstrap .select2-dropdown--above{margin-top:1px;-webkit-box-shadow:0 -6px 12px rgba(0,0,0,.175);box-shadow:0 -6px 12px rgba(0,0,0,.175)}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--bootstrap .select2-selection--single{height:35px;padding:6px 27px 6px 12px;line-height:1.4}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow{position:absolute;top:0;right:12px;bottom:0;width:5px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b{position:absolute;top:50%;left:0;width:0;height:0;margin-top:-5px/2;margin-left:-5px;border-color:#8a929e transparent transparent transparent;border-style:solid;border-width:5px 5px 0 5px}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{padding:0;color:#3e424a}.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder{color:#8a929e}.select2-container--bootstrap .select2-selection--multiple{height:auto;min-height:35px;padding:0}.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered{display:block;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0;overflow:hidden;line-height:1.4;text-overflow:ellipsis;white-space:nowrap;list-style:none}.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder{float:left;margin-top:5px;color:#8a929e}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{float:left;padding:0 6px;margin:5px 0 0 12px/2;color:#3e424a;cursor:default;background:#fff;border:1px solid #d9dee4;border-radius:4px}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{min-width:5em;height:35px - 2;padding:0 12px;margin-top:0;line-height:1.4;background:0 0}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{display:inline-block;margin-right:6px/2;font-weight:700;color:#8a929e;cursor:pointer}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover{color:#3e424a}.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear{margin-top:6px}.form-group-sm .select2-container--bootstrap .select2-selection--single,.input-group-sm .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-sm{height:32px;padding:5px 10px + 5px*3 5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b{margin-left:-5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple,.input-group-sm .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-sm{min-height:32px;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice{padding:0 5px;margin:4px 0 0 10px/2;font-size:13px;line-height:1.53846154}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field{height:32px - 2;padding:0 10px;font-size:13px;line-height:1.53846154}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear{margin-top:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single,.input-group-lg .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-lg{height:46px;padding:10px 16px + 6px*3 10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow{width:6px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b{margin-top:-6px/2;margin-left:-6px;margin-left:-10px;border-width:6px 6px 0 6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple,.input-group-lg .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-lg{min-height:46px;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice{padding:0 10px;margin:9px 0 0 16px/2;font-size:18px;line-height:1.3333333;border-radius:4px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field{height:46px - 2;padding:0 16px;font-size:18px;line-height:1.3333333}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear{margin-top:10px}.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #8a929e transparent;border-width:0 6px 6px 6px}.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #8a929e transparent;border-width:0 6px 6px 6px}.select2-container--bootstrap[dir=rtl] .select2-selection--single{padding-right:12px;padding-left:12px + 5px*3}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow{right:auto;left:12px}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-right:12px/2;margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-right:auto;margin-left:2px}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#8a6d3b}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning.select2-drop-active{border-color:#66512c}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#66512c}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#a94442}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error.select2-drop-active{border-color:#843534}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#843534}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#3c763d}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success.select2-drop-active{border-color:#2b542c}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#2b542c}.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection,.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection.form-control{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection.form-control{border-radius:0}.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection.form-control{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container--bootstrap{position:relative;z-index:2;display:table;width:100%;margin-bottom:0;table-layout:fixed}.input-group>.select2-container--bootstrap>.selection>.select2-selection.form-control{float:none}.input-group>.select2-container--bootstrap.select2-container--focus,.input-group>.select2-container--bootstrap.select2-container--open{z-index:3}.input-group>.select2-container--bootstrap,.input-group>.select2-container--bootstrap .input-group-btn,.input-group>.select2-container--bootstrap .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute!important;width:1px!important}@media (min-width:768px){.form-inline .select2-container--bootstrap{display:inline-block}}.select2-results__option{padding:7px 12px;margin-bottom:1px!important}.select2-results__option[aria-selected=true]{color:#8a929e!important;background-color:inherit!important}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:400px}.select2-container--bootstrap .select2-results>.select2-results__options .select2-results__option{padding:2px 12px;margin-bottom:1px!important;font-size:15px;line-height:1.4em}.select2-container--bootstrap .select2-results>.select2-results__options .select2-results__option i{margin-right:5px}.select2-container--bootstrap .select2-results>.select2-results__options .select2-results__group{font-size:16px;color:#000}#select2-bookly-appointment-dialog-select2-results .select2-results__option[aria-selected=true]{color:#444!important}table.dt-rowReorder-float{position:absolute!important;outline:2px solid #888}
1
  #bookly-tbs{
2
+
3
+ }#bookly-tbs html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}#bookly-tbs body{margin:0}#bookly-tbs article,#bookly-tbs aside,#bookly-tbs details,#bookly-tbs figcaption,#bookly-tbs figure,#bookly-tbs footer,#bookly-tbs header,#bookly-tbs hgroup,#bookly-tbs main,#bookly-tbs menu,#bookly-tbs nav,#bookly-tbs section,#bookly-tbs summary{display:block}#bookly-tbs audio,#bookly-tbs canvas,#bookly-tbs progress,#bookly-tbs video{display:inline-block;vertical-align:baseline}#bookly-tbs audio:not([controls]){display:none;height:0}#bookly-tbs [hidden],#bookly-tbs template{display:none}#bookly-tbs a{background-color:transparent}#bookly-tbs a:active,#bookly-tbs a:hover{outline:0}#bookly-tbs abbr[title]{border-bottom:1px dotted}#bookly-tbs b,#bookly-tbs strong{font-weight:700}#bookly-tbs dfn{font-style:italic}#bookly-tbs h1{margin:.67em 0;font-size:2em}#bookly-tbs mark{color:#000;background:#ff0}#bookly-tbs small{font-size:80%}#bookly-tbs sub,#bookly-tbs sup{position:relative;font-size:75%;line-height:0;vertical-align:baseline}#bookly-tbs sup{top:-.5em}#bookly-tbs sub{bottom:-.25em}#bookly-tbs img{border:0}#bookly-tbs svg:not(:root){overflow:hidden}#bookly-tbs figure{margin:1em 40px}#bookly-tbs hr{height:0;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs pre{overflow:auto}#bookly-tbs code,#bookly-tbs kbd,#bookly-tbs pre,#bookly-tbs samp{font-family:monospace,monospace;font-size:1em}#bookly-tbs button,#bookly-tbs input,#bookly-tbs optgroup,#bookly-tbs select,#bookly-tbs textarea{margin:0;font:inherit;color:inherit}#bookly-tbs button{overflow:visible}#bookly-tbs button,#bookly-tbs select{text-transform:none}#bookly-tbs button,#bookly-tbs html input[type=button],#bookly-tbs input[type=reset],#bookly-tbs input[type=submit]{-webkit-appearance:button;cursor:pointer}#bookly-tbs button[disabled],#bookly-tbs html input[disabled]{cursor:default}#bookly-tbs button::-moz-focus-inner,#bookly-tbs input::-moz-focus-inner{padding:0;border:0}#bookly-tbs input{line-height:normal}#bookly-tbs input[type=checkbox],#bookly-tbs input[type=radio]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0}#bookly-tbs input[type=number]::-webkit-inner-spin-button,#bookly-tbs input[type=number]::-webkit-outer-spin-button{height:auto}#bookly-tbs input[type=search]{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;-webkit-appearance:textfield}#bookly-tbs input[type=search]::-webkit-search-cancel-button,#bookly-tbs input[type=search]::-webkit-search-decoration{-webkit-appearance:none}#bookly-tbs fieldset{padding:.35em .625em .75em;margin:0 2px;border:1px solid silver}#bookly-tbs legend{padding:0;border:0}#bookly-tbs textarea{overflow:auto}#bookly-tbs optgroup{font-weight:700}#bookly-tbs table{border-spacing:0;border-collapse:collapse}#bookly-tbs td,#bookly-tbs th{padding:0}@media print{#bookly-tbs *,#bookly-tbs :after,#bookly-tbs :before{color:#000!important;text-shadow:none!important;background:0 0!important;-webkit-box-shadow:none!important;box-shadow:none!important}#bookly-tbs a,#bookly-tbs a:visited{text-decoration:underline}#bookly-tbs a[href]:after{content:" (" attr(href) ")"}#bookly-tbs abbr[title]:after{content:" (" attr(title) ")"}#bookly-tbs a[href^="javascript:"]:after,#bookly-tbs a[href^="#"]:after{content:""}#bookly-tbs blockquote,#bookly-tbs pre{border:1px solid #999;page-break-inside:avoid}#bookly-tbs thead{display:table-header-group}#bookly-tbs img,#bookly-tbs tr{page-break-inside:avoid}#bookly-tbs img{max-width:100%!important}#bookly-tbs h2,#bookly-tbs h3,#bookly-tbs p{orphans:3;widows:3}#bookly-tbs h2,#bookly-tbs h3{page-break-after:avoid}#bookly-tbs .navbar{display:none}#bookly-tbs .btn>.caret,#bookly-tbs .dropup>.btn>.caret{border-top-color:#000!important}#bookly-tbs .label{border:1px solid #000}#bookly-tbs .table{border-collapse:collapse!important}#bookly-tbs .table td,#bookly-tbs .table th{background-color:#fff!important}#bookly-tbs .table-bordered td,#bookly-tbs .table-bordered th{border:1px solid #ddd!important}}@font-face{font-family:'Glyphicons Halflings';src:url(../fonts/glyphicons-halflings-regular.eot);src:url(../fonts/glyphicons-halflings-regular.eot?#iefix) format('embedded-opentype'),url(../fonts/glyphicons-halflings-regular.woff2) format('woff2'),url(../fonts/glyphicons-halflings-regular.woff) format('woff'),url(../fonts/glyphicons-halflings-regular.ttf) format('truetype'),url(../fonts/glyphicons-halflings-regular.svg#glyphicons_halflingsregular) format('svg')}#bookly-tbs .glyphicon{position:relative;top:1px;display:inline-block;font-family:'Glyphicons Halflings';font-style:normal;font-weight:400;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bookly-tbs .glyphicon-asterisk:before{content:"\002a"}#bookly-tbs .glyphicon-plus:before{content:"\002b"}#bookly-tbs .glyphicon-eur:before,#bookly-tbs .glyphicon-euro:before{content:"\20ac"}#bookly-tbs .glyphicon-minus:before{content:"\2212"}#bookly-tbs .glyphicon-cloud:before{content:"\2601"}#bookly-tbs .glyphicon-envelope:before{content:"\2709"}#bookly-tbs .glyphicon-pencil:before{content:"\270f"}#bookly-tbs .glyphicon-glass:before{content:"\e001"}#bookly-tbs .glyphicon-music:before{content:"\e002"}#bookly-tbs .glyphicon-search:before{content:"\e003"}#bookly-tbs .glyphicon-heart:before{content:"\e005"}#bookly-tbs .glyphicon-star:before{content:"\e006"}#bookly-tbs .glyphicon-star-empty:before{content:"\e007"}#bookly-tbs .glyphicon-user:before{content:"\e008"}#bookly-tbs .glyphicon-film:before{content:"\e009"}#bookly-tbs .glyphicon-th-large:before{content:"\e010"}#bookly-tbs .glyphicon-th:before{content:"\e011"}#bookly-tbs .glyphicon-th-list:before{content:"\e012"}#bookly-tbs .glyphicon-ok:before{content:"\e013"}#bookly-tbs .glyphicon-remove:before{content:"\e014"}#bookly-tbs .glyphicon-zoom-in:before{content:"\e015"}#bookly-tbs .glyphicon-zoom-out:before{content:"\e016"}#bookly-tbs .glyphicon-off:before{content:"\e017"}#bookly-tbs .glyphicon-signal:before{content:"\e018"}#bookly-tbs .glyphicon-cog:before{content:"\e019"}#bookly-tbs .glyphicon-trash:before{content:"\e020"}#bookly-tbs .glyphicon-home:before{content:"\e021"}#bookly-tbs .glyphicon-file:before{content:"\e022"}#bookly-tbs .glyphicon-time:before{content:"\e023"}#bookly-tbs .glyphicon-road:before{content:"\e024"}#bookly-tbs .glyphicon-download-alt:before{content:"\e025"}#bookly-tbs .glyphicon-download:before{content:"\e026"}#bookly-tbs .glyphicon-upload:before{content:"\e027"}#bookly-tbs .glyphicon-inbox:before{content:"\e028"}#bookly-tbs .glyphicon-play-circle:before{content:"\e029"}#bookly-tbs .glyphicon-repeat:before{content:"\e030"}#bookly-tbs .glyphicon-refresh:before{content:"\e031"}#bookly-tbs .glyphicon-list-alt:before{content:"\e032"}#bookly-tbs .glyphicon-lock:before{content:"\e033"}#bookly-tbs .glyphicon-flag:before{content:"\e034"}#bookly-tbs .glyphicon-headphones:before{content:"\e035"}#bookly-tbs .glyphicon-volume-off:before{content:"\e036"}#bookly-tbs .glyphicon-volume-down:before{content:"\e037"}#bookly-tbs .glyphicon-volume-up:before{content:"\e038"}#bookly-tbs .glyphicon-qrcode:before{content:"\e039"}#bookly-tbs .glyphicon-barcode:before{content:"\e040"}#bookly-tbs .glyphicon-tag:before{content:"\e041"}#bookly-tbs .glyphicon-tags:before{content:"\e042"}#bookly-tbs .glyphicon-book:before{content:"\e043"}#bookly-tbs .glyphicon-bookmark:before{content:"\e044"}#bookly-tbs .glyphicon-print:before{content:"\e045"}#bookly-tbs .glyphicon-camera:before{content:"\e046"}#bookly-tbs .glyphicon-font:before{content:"\e047"}#bookly-tbs .glyphicon-bold:before{content:"\e048"}#bookly-tbs .glyphicon-italic:before{content:"\e049"}#bookly-tbs .glyphicon-text-height:before{content:"\e050"}#bookly-tbs .glyphicon-text-width:before{content:"\e051"}#bookly-tbs .glyphicon-align-left:before{content:"\e052"}#bookly-tbs .glyphicon-align-center:before{content:"\e053"}#bookly-tbs .glyphicon-align-right:before{content:"\e054"}#bookly-tbs .glyphicon-align-justify:before{content:"\e055"}#bookly-tbs .glyphicon-list:before{content:"\e056"}#bookly-tbs .glyphicon-indent-left:before{content:"\e057"}#bookly-tbs .glyphicon-indent-right:before{content:"\e058"}#bookly-tbs .glyphicon-facetime-video:before{content:"\e059"}#bookly-tbs .glyphicon-picture:before{content:"\e060"}#bookly-tbs .glyphicon-map-marker:before{content:"\e062"}#bookly-tbs .glyphicon-adjust:before{content:"\e063"}#bookly-tbs .glyphicon-tint:before{content:"\e064"}#bookly-tbs .glyphicon-edit:before{content:"\e065"}#bookly-tbs .glyphicon-share:before{content:"\e066"}#bookly-tbs .glyphicon-check:before{content:"\e067"}#bookly-tbs .glyphicon-move:before{content:"\e068"}#bookly-tbs .glyphicon-step-backward:before{content:"\e069"}#bookly-tbs .glyphicon-fast-backward:before{content:"\e070"}#bookly-tbs .glyphicon-backward:before{content:"\e071"}#bookly-tbs .glyphicon-play:before{content:"\e072"}#bookly-tbs .glyphicon-pause:before{content:"\e073"}#bookly-tbs .glyphicon-stop:before{content:"\e074"}#bookly-tbs .glyphicon-forward:before{content:"\e075"}#bookly-tbs .glyphicon-fast-forward:before{content:"\e076"}#bookly-tbs .glyphicon-step-forward:before{content:"\e077"}#bookly-tbs .glyphicon-eject:before{content:"\e078"}#bookly-tbs .glyphicon-chevron-left:before{content:"\e079"}#bookly-tbs .glyphicon-chevron-right:before{content:"\e080"}#bookly-tbs .glyphicon-plus-sign:before{content:"\e081"}#bookly-tbs .glyphicon-minus-sign:before{content:"\e082"}#bookly-tbs .glyphicon-remove-sign:before{content:"\e083"}#bookly-tbs .glyphicon-ok-sign:before{content:"\e084"}#bookly-tbs .glyphicon-question-sign:before{content:"\e085"}#bookly-tbs .glyphicon-info-sign:before{content:"\e086"}#bookly-tbs .glyphicon-screenshot:before{content:"\e087"}#bookly-tbs .glyphicon-remove-circle:before{content:"\e088"}#bookly-tbs .glyphicon-ok-circle:before{content:"\e089"}#bookly-tbs .glyphicon-ban-circle:before{content:"\e090"}#bookly-tbs .glyphicon-arrow-left:before{content:"\e091"}#bookly-tbs .glyphicon-arrow-right:before{content:"\e092"}#bookly-tbs .glyphicon-arrow-up:before{content:"\e093"}#bookly-tbs .glyphicon-arrow-down:before{content:"\e094"}#bookly-tbs .glyphicon-share-alt:before{content:"\e095"}#bookly-tbs .glyphicon-resize-full:before{content:"\e096"}#bookly-tbs .glyphicon-resize-small:before{content:"\e097"}#bookly-tbs .glyphicon-exclamation-sign:before{content:"\e101"}#bookly-tbs .glyphicon-gift:before{content:"\e102"}#bookly-tbs .glyphicon-leaf:before{content:"\e103"}#bookly-tbs .glyphicon-fire:before{content:"\e104"}#bookly-tbs .glyphicon-eye-open:before{content:"\e105"}#bookly-tbs .glyphicon-eye-close:before{content:"\e106"}#bookly-tbs .glyphicon-warning-sign:before{content:"\e107"}#bookly-tbs .glyphicon-plane:before{content:"\e108"}#bookly-tbs .glyphicon-calendar:before{content:"\e109"}#bookly-tbs .glyphicon-random:before{content:"\e110"}#bookly-tbs .glyphicon-comment:before{content:"\e111"}#bookly-tbs .glyphicon-magnet:before{content:"\e112"}#bookly-tbs .glyphicon-chevron-up:before{content:"\e113"}#bookly-tbs .glyphicon-chevron-down:before{content:"\e114"}#bookly-tbs .glyphicon-retweet:before{content:"\e115"}#bookly-tbs .glyphicon-shopping-cart:before{content:"\e116"}#bookly-tbs .glyphicon-folder-close:before{content:"\e117"}#bookly-tbs .glyphicon-folder-open:before{content:"\e118"}#bookly-tbs .glyphicon-resize-vertical:before{content:"\e119"}#bookly-tbs .glyphicon-resize-horizontal:before{content:"\e120"}#bookly-tbs .glyphicon-hdd:before{content:"\e121"}#bookly-tbs .glyphicon-bullhorn:before{content:"\e122"}#bookly-tbs .glyphicon-bell:before{content:"\e123"}#bookly-tbs .glyphicon-certificate:before{content:"\e124"}#bookly-tbs .glyphicon-thumbs-up:before{content:"\e125"}#bookly-tbs .glyphicon-thumbs-down:before{content:"\e126"}#bookly-tbs .glyphicon-hand-right:before{content:"\e127"}#bookly-tbs .glyphicon-hand-left:before{content:"\e128"}#bookly-tbs .glyphicon-hand-up:before{content:"\e129"}#bookly-tbs .glyphicon-hand-down:before{content:"\e130"}#bookly-tbs .glyphicon-circle-arrow-right:before{content:"\e131"}#bookly-tbs .glyphicon-circle-arrow-left:before{content:"\e132"}#bookly-tbs .glyphicon-circle-arrow-up:before{content:"\e133"}#bookly-tbs .glyphicon-circle-arrow-down:before{content:"\e134"}#bookly-tbs .glyphicon-globe:before{content:"\e135"}#bookly-tbs .glyphicon-wrench:before{content:"\e136"}#bookly-tbs .glyphicon-tasks:before{content:"\e137"}#bookly-tbs .glyphicon-filter:before{content:"\e138"}#bookly-tbs .glyphicon-briefcase:before{content:"\e139"}#bookly-tbs .glyphicon-fullscreen:before{content:"\e140"}#bookly-tbs .glyphicon-dashboard:before{content:"\e141"}#bookly-tbs .glyphicon-paperclip:before{content:"\e142"}#bookly-tbs .glyphicon-heart-empty:before{content:"\e143"}#bookly-tbs .glyphicon-link:before{content:"\e144"}#bookly-tbs .glyphicon-phone:before{content:"\e145"}#bookly-tbs .glyphicon-pushpin:before{content:"\e146"}#bookly-tbs .glyphicon-usd:before{content:"\e148"}#bookly-tbs .glyphicon-gbp:before{content:"\e149"}#bookly-tbs .glyphicon-sort:before{content:"\e150"}#bookly-tbs .glyphicon-sort-by-alphabet:before{content:"\e151"}#bookly-tbs .glyphicon-sort-by-alphabet-alt:before{content:"\e152"}#bookly-tbs .glyphicon-sort-by-order:before{content:"\e153"}#bookly-tbs .glyphicon-sort-by-order-alt:before{content:"\e154"}#bookly-tbs .glyphicon-sort-by-attributes:before{content:"\e155"}#bookly-tbs .glyphicon-sort-by-attributes-alt:before{content:"\e156"}#bookly-tbs .glyphicon-unchecked:before{content:"\e157"}#bookly-tbs .glyphicon-expand:before{content:"\e158"}#bookly-tbs .glyphicon-collapse-down:before{content:"\e159"}#bookly-tbs .glyphicon-collapse-up:before{content:"\e160"}#bookly-tbs .glyphicon-log-in:before{content:"\e161"}#bookly-tbs .glyphicon-flash:before{content:"\e162"}#bookly-tbs .glyphicon-log-out:before{content:"\e163"}#bookly-tbs .glyphicon-new-window:before{content:"\e164"}#bookly-tbs .glyphicon-record:before{content:"\e165"}#bookly-tbs .glyphicon-save:before{content:"\e166"}#bookly-tbs .glyphicon-open:before{content:"\e167"}#bookly-tbs .glyphicon-saved:before{content:"\e168"}#bookly-tbs .glyphicon-import:before{content:"\e169"}#bookly-tbs .glyphicon-export:before{content:"\e170"}#bookly-tbs .glyphicon-send:before{content:"\e171"}#bookly-tbs .glyphicon-floppy-disk:before{content:"\e172"}#bookly-tbs .glyphicon-floppy-saved:before{content:"\e173"}#bookly-tbs .glyphicon-floppy-remove:before{content:"\e174"}#bookly-tbs .glyphicon-floppy-save:before{content:"\e175"}#bookly-tbs .glyphicon-floppy-open:before{content:"\e176"}#bookly-tbs .glyphicon-credit-card:before{content:"\e177"}#bookly-tbs .glyphicon-transfer:before{content:"\e178"}#bookly-tbs .glyphicon-cutlery:before{content:"\e179"}#bookly-tbs .glyphicon-header:before{content:"\e180"}#bookly-tbs .glyphicon-compressed:before{content:"\e181"}#bookly-tbs .glyphicon-earphone:before{content:"\e182"}#bookly-tbs .glyphicon-phone-alt:before{content:"\e183"}#bookly-tbs .glyphicon-tower:before{content:"\e184"}#bookly-tbs .glyphicon-stats:before{content:"\e185"}#bookly-tbs .glyphicon-sd-video:before{content:"\e186"}#bookly-tbs .glyphicon-hd-video:before{content:"\e187"}#bookly-tbs .glyphicon-subtitles:before{content:"\e188"}#bookly-tbs .glyphicon-sound-stereo:before{content:"\e189"}#bookly-tbs .glyphicon-sound-dolby:before{content:"\e190"}#bookly-tbs .glyphicon-sound-5-1:before{content:"\e191"}#bookly-tbs .glyphicon-sound-6-1:before{content:"\e192"}#bookly-tbs .glyphicon-sound-7-1:before{content:"\e193"}#bookly-tbs .glyphicon-copyright-mark:before{content:"\e194"}#bookly-tbs .glyphicon-registration-mark:before{content:"\e195"}#bookly-tbs .glyphicon-cloud-download:before{content:"\e197"}#bookly-tbs .glyphicon-cloud-upload:before{content:"\e198"}#bookly-tbs .glyphicon-tree-conifer:before{content:"\e199"}#bookly-tbs .glyphicon-tree-deciduous:before{content:"\e200"}#bookly-tbs .glyphicon-cd:before{content:"\e201"}#bookly-tbs .glyphicon-save-file:before{content:"\e202"}#bookly-tbs .glyphicon-open-file:before{content:"\e203"}#bookly-tbs .glyphicon-level-up:before{content:"\e204"}#bookly-tbs .glyphicon-copy:before{content:"\e205"}#bookly-tbs .glyphicon-paste:before{content:"\e206"}#bookly-tbs .glyphicon-alert:before{content:"\e209"}#bookly-tbs .glyphicon-equalizer:before{content:"\e210"}#bookly-tbs .glyphicon-king:before{content:"\e211"}#bookly-tbs .glyphicon-queen:before{content:"\e212"}#bookly-tbs .glyphicon-pawn:before{content:"\e213"}#bookly-tbs .glyphicon-bishop:before{content:"\e214"}#bookly-tbs .glyphicon-knight:before{content:"\e215"}#bookly-tbs .glyphicon-baby-formula:before{content:"\e216"}#bookly-tbs .glyphicon-tent:before{content:"\26fa"}#bookly-tbs .glyphicon-blackboard:before{content:"\e218"}#bookly-tbs .glyphicon-bed:before{content:"\e219"}#bookly-tbs .glyphicon-apple:before{content:"\f8ff"}#bookly-tbs .glyphicon-erase:before{content:"\e221"}#bookly-tbs .glyphicon-hourglass:before{content:"\231b"}#bookly-tbs .glyphicon-lamp:before{content:"\e223"}#bookly-tbs .glyphicon-duplicate:before{content:"\e224"}#bookly-tbs .glyphicon-piggy-bank:before{content:"\e225"}#bookly-tbs .glyphicon-scissors:before{content:"\e226"}#bookly-tbs .glyphicon-bitcoin:before{content:"\e227"}#bookly-tbs .glyphicon-btc:before{content:"\e227"}#bookly-tbs .glyphicon-xbt:before{content:"\e227"}#bookly-tbs .glyphicon-yen:before{content:"\00a5"}#bookly-tbs .glyphicon-jpy:before{content:"\00a5"}#bookly-tbs .glyphicon-ruble:before{content:"\20bd"}#bookly-tbs .glyphicon-rub:before{content:"\20bd"}#bookly-tbs .glyphicon-scale:before{content:"\e230"}#bookly-tbs .glyphicon-ice-lolly:before{content:"\e231"}#bookly-tbs .glyphicon-ice-lolly-tasted:before{content:"\e232"}#bookly-tbs .glyphicon-education:before{content:"\e233"}#bookly-tbs .glyphicon-option-horizontal:before{content:"\e234"}#bookly-tbs .glyphicon-option-vertical:before{content:"\e235"}#bookly-tbs .glyphicon-menu-hamburger:before{content:"\e236"}#bookly-tbs .glyphicon-modal-window:before{content:"\e237"}#bookly-tbs .glyphicon-oil:before{content:"\e238"}#bookly-tbs .glyphicon-grain:before{content:"\e239"}#bookly-tbs .glyphicon-sunglasses:before{content:"\e240"}#bookly-tbs .glyphicon-text-size:before{content:"\e241"}#bookly-tbs .glyphicon-text-color:before{content:"\e242"}#bookly-tbs .glyphicon-text-background:before{content:"\e243"}#bookly-tbs .glyphicon-object-align-top:before{content:"\e244"}#bookly-tbs .glyphicon-object-align-bottom:before{content:"\e245"}#bookly-tbs .glyphicon-object-align-horizontal:before{content:"\e246"}#bookly-tbs .glyphicon-object-align-left:before{content:"\e247"}#bookly-tbs .glyphicon-object-align-vertical:before{content:"\e248"}#bookly-tbs .glyphicon-object-align-right:before{content:"\e249"}#bookly-tbs .glyphicon-triangle-right:before{content:"\e250"}#bookly-tbs .glyphicon-triangle-left:before{content:"\e251"}#bookly-tbs .glyphicon-triangle-bottom:before{content:"\e252"}#bookly-tbs .glyphicon-triangle-top:before{content:"\e253"}#bookly-tbs .glyphicon-console:before{content:"\e254"}#bookly-tbs .glyphicon-superscript:before{content:"\e255"}#bookly-tbs .glyphicon-subscript:before{content:"\e256"}#bookly-tbs .glyphicon-menu-left:before{content:"\e257"}#bookly-tbs .glyphicon-menu-right:before{content:"\e258"}#bookly-tbs .glyphicon-menu-down:before{content:"\e259"}#bookly-tbs .glyphicon-menu-up:before{content:"\e260"}#bookly-tbs *{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bookly-tbs :after,#bookly-tbs :before{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bookly-tbs .bookly-tbs-body{font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-size:15px;line-height:1.4;color:#3e424a;background-color:transparent;-webkit-tap-highlight-color:rgba(0,0,0,0);-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}#bookly-tbs button,#bookly-tbs input,#bookly-tbs select,#bookly-tbs textarea{font-family:inherit;font-size:inherit;line-height:inherit}#bookly-tbs a{color:#08c;text-decoration:none}#bookly-tbs a:focus,#bookly-tbs a:hover{color:#005580;text-decoration:none}#bookly-tbs a:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bookly-tbs figure{margin:0}#bookly-tbs img{vertical-align:middle}#bookly-tbs .carousel-inner>.item>a>img,#bookly-tbs .carousel-inner>.item>img,#bookly-tbs .img-responsive,#bookly-tbs .thumbnail a>img,#bookly-tbs .thumbnail>img{display:block;max-width:100%;height:auto}#bookly-tbs .img-rounded{border-radius:6px}#bookly-tbs .img-thumbnail{display:inline-block;max-width:100%;height:auto;padding:4px;line-height:1.4;background-color:transparent;border:1px solid #e8ebf0;border-radius:4px;-webkit-transition:all .2s ease-in-out;-o-transition:all .2s ease-in-out;transition:all .2s ease-in-out}#bookly-tbs .img-circle{border-radius:50%}#bookly-tbs hr{margin-top:21px;margin-bottom:21px;border:0;border-top:1px solid #d9dee4}#bookly-tbs .sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}#bookly-tbs .sr-only-focusable:active,#bookly-tbs .sr-only-focusable:focus{position:static;width:auto;height:auto;margin:0;overflow:visible;clip:auto}#bookly-tbs [role=button]{cursor:pointer}#bookly-tbs .h1,#bookly-tbs .h2,#bookly-tbs .h3,#bookly-tbs .h4,#bookly-tbs .h5,#bookly-tbs .h6,#bookly-tbs h1,#bookly-tbs h2,#bookly-tbs h3,#bookly-tbs h4,#bookly-tbs h5,#bookly-tbs h6{font-family:inherit;font-weight:400;line-height:1.1;color:inherit}#bookly-tbs .h1 .small,#bookly-tbs .h1 small,#bookly-tbs .h2 .small,#bookly-tbs .h2 small,#bookly-tbs .h3 .small,#bookly-tbs .h3 small,#bookly-tbs .h4 .small,#bookly-tbs .h4 small,#bookly-tbs .h5 .small,#bookly-tbs .h5 small,#bookly-tbs .h6 .small,#bookly-tbs .h6 small,#bookly-tbs h1 .small,#bookly-tbs h1 small,#bookly-tbs h2 .small,#bookly-tbs h2 small,#bookly-tbs h3 .small,#bookly-tbs h3 small,#bookly-tbs h4 .small,#bookly-tbs h4 small,#bookly-tbs h5 .small,#bookly-tbs h5 small,#bookly-tbs h6 .small,#bookly-tbs h6 small{font-weight:400;line-height:1;color:#d9dee4}#bookly-tbs .h1,#bookly-tbs .h2,#bookly-tbs .h3,#bookly-tbs h1,#bookly-tbs h2,#bookly-tbs h3{margin-top:21px;margin-bottom:10.5px}#bookly-tbs .h1 .small,#bookly-tbs .h1 small,#bookly-tbs .h2 .small,#bookly-tbs .h2 small,#bookly-tbs .h3 .small,#bookly-tbs .h3 small,#bookly-tbs h1 .small,#bookly-tbs h1 small,#bookly-tbs h2 .small,#bookly-tbs h2 small,#bookly-tbs h3 .small,#bookly-tbs h3 small{font-size:65%}#bookly-tbs .h4,#bookly-tbs .h5,#bookly-tbs .h6,#bookly-tbs h4,#bookly-tbs h5,#bookly-tbs h6{margin-top:10.5px;margin-bottom:10.5px}#bookly-tbs .h4 .small,#bookly-tbs .h4 small,#bookly-tbs .h5 .small,#bookly-tbs .h5 small,#bookly-tbs .h6 .small,#bookly-tbs .h6 small,#bookly-tbs h4 .small,#bookly-tbs h4 small,#bookly-tbs h5 .small,#bookly-tbs h5 small,#bookly-tbs h6 .small,#bookly-tbs h6 small{font-size:75%}#bookly-tbs .h1,#bookly-tbs h1{font-size:27px}#bookly-tbs .h2,#bookly-tbs h2{font-size:24px}#bookly-tbs .h3,#bookly-tbs h3{font-size:21px}#bookly-tbs .h4,#bookly-tbs h4{font-size:18px}#bookly-tbs .h5,#bookly-tbs h5{font-size:15px}#bookly-tbs .h6,#bookly-tbs h6{font-size:13px}#bookly-tbs p{margin:0 0 10.5px}#bookly-tbs .lead{margin-bottom:21px;font-size:17px;font-weight:300;line-height:1.4}@media (min-width:768px){#bookly-tbs .lead{font-size:22.5px}}#bookly-tbs .small,#bookly-tbs small{font-size:86%}#bookly-tbs .mark,#bookly-tbs mark{padding:.2em;background-color:#fcf8e3}#bookly-tbs .text-left{text-align:left}#bookly-tbs .text-right{text-align:right}#bookly-tbs .text-center{text-align:center}#bookly-tbs .text-justify{text-align:justify}#bookly-tbs .text-nowrap{white-space:nowrap}#bookly-tbs .text-lowercase{text-transform:lowercase}#bookly-tbs .text-uppercase{text-transform:uppercase}#bookly-tbs .text-capitalize{text-transform:capitalize}#bookly-tbs .text-muted{color:#d9dee4}#bookly-tbs .text-primary{color:#08c}#bookly-tbs a.text-primary:focus,#bookly-tbs a.text-primary:hover{color:#069}#bookly-tbs .text-success{color:#3c763d}#bookly-tbs a.text-success:focus,#bookly-tbs a.text-success:hover{color:#2b542c}#bookly-tbs .text-info{color:#31708f}#bookly-tbs a.text-info:focus,#bookly-tbs a.text-info:hover{color:#245269}#bookly-tbs .text-warning{color:#8a6d3b}#bookly-tbs a.text-warning:focus,#bookly-tbs a.text-warning:hover{color:#66512c}#bookly-tbs .text-danger{color:#a94442}#bookly-tbs a.text-danger:focus,#bookly-tbs a.text-danger:hover{color:#843534}#bookly-tbs .bg-primary{color:#fff;background-color:#08c}#bookly-tbs a.bg-primary:focus,#bookly-tbs a.bg-primary:hover{background-color:#069}#bookly-tbs .bg-success{background-color:#dff0d8}#bookly-tbs a.bg-success:focus,#bookly-tbs a.bg-success:hover{background-color:#c1e2b3}#bookly-tbs .bg-info{background-color:#d9edf7}#bookly-tbs a.bg-info:focus,#bookly-tbs a.bg-info:hover{background-color:#afd9ee}#bookly-tbs .bg-warning{background-color:#fcf8e3}#bookly-tbs a.bg-warning:focus,#bookly-tbs a.bg-warning:hover{background-color:#f7ecb5}#bookly-tbs .bg-danger{background-color:#f2dede}#bookly-tbs a.bg-danger:focus,#bookly-tbs a.bg-danger:hover{background-color:#e4b9b9}#bookly-tbs .page-header{padding-bottom:9.5px;margin:42px 0 10.5px;border-bottom:1px solid transparent}#bookly-tbs ol,#bookly-tbs ul{margin-top:0;margin-bottom:10.5px}#bookly-tbs ol ol,#bookly-tbs ol ul,#bookly-tbs ul ol,#bookly-tbs ul ul{margin-bottom:0}#bookly-tbs .list-unstyled{padding-left:0;list-style:none}#bookly-tbs .list-inline{padding-left:0;margin-left:-5px;list-style:none}#bookly-tbs .list-inline>li{display:inline-block;padding-right:5px;padding-left:5px}#bookly-tbs dl{margin-top:0;margin-bottom:21px}#bookly-tbs dd,#bookly-tbs dt{line-height:1.4}#bookly-tbs dt{font-weight:700}#bookly-tbs dd{margin-left:0}@media (min-width:768px){#bookly-tbs .dl-horizontal dt{float:left;width:160px;overflow:hidden;clear:left;text-align:right;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .dl-horizontal dd{margin-left:180px}}#bookly-tbs abbr[data-original-title],#bookly-tbs abbr[title]{cursor:help;border-bottom:1px dotted #d9dee4}#bookly-tbs .initialism{font-size:90%;text-transform:uppercase}#bookly-tbs blockquote{padding:10.5px 21px;margin:0 0 21px;font-size:18.75px;border-left:5px solid #e8ebf0}#bookly-tbs blockquote ol:last-child,#bookly-tbs blockquote p:last-child,#bookly-tbs blockquote ul:last-child{margin-bottom:0}#bookly-tbs blockquote .small,#bookly-tbs blockquote footer,#bookly-tbs blockquote small{display:block;font-size:80%;line-height:1.4;color:#d9dee4}#bookly-tbs blockquote .small:before,#bookly-tbs blockquote footer:before,#bookly-tbs blockquote small:before{content:'\2014 \00A0'}#bookly-tbs .blockquote-reverse,#bookly-tbs blockquote.pull-right{padding-right:15px;padding-left:0;text-align:right;border-right:5px solid #e8ebf0;border-left:0}#bookly-tbs .blockquote-reverse .small:before,#bookly-tbs .blockquote-reverse footer:before,#bookly-tbs .blockquote-reverse small:before,#bookly-tbs blockquote.pull-right .small:before,#bookly-tbs blockquote.pull-right footer:before,#bookly-tbs blockquote.pull-right small:before{content:''}#bookly-tbs .blockquote-reverse .small:after,#bookly-tbs .blockquote-reverse footer:after,#bookly-tbs .blockquote-reverse small:after,#bookly-tbs blockquote.pull-right .small:after,#bookly-tbs blockquote.pull-right footer:after,#bookly-tbs blockquote.pull-right small:after{content:'\00A0 \2014'}#bookly-tbs address{margin-bottom:21px;font-style:normal;line-height:1.4}#bookly-tbs code,#bookly-tbs kbd,#bookly-tbs pre,#bookly-tbs samp{font-family:menlo,monaco,consolas,"courier new",monospace}#bookly-tbs code{padding:2px 4px;font-size:90%;color:#c7254e;background-color:#f9f2f4;border-radius:4px}#bookly-tbs kbd{padding:2px 4px;font-size:90%;color:#fff;background-color:#333;border-radius:3px;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.25);box-shadow:inset 0 -1px 0 rgba(0,0,0,.25)}#bookly-tbs kbd kbd{padding:0;font-size:100%;font-weight:700;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs pre{display:block;padding:10px;margin:0 0 10.5px;font-size:14px;line-height:1.4;color:#5b6470;word-break:break-all;word-wrap:break-word;background-color:#f5f5f5;border:1px solid #ccc;border-radius:4px}#bookly-tbs pre code{padding:0;font-size:inherit;color:inherit;white-space:pre-wrap;background-color:transparent;border-radius:0}#bookly-tbs .pre-scrollable{max-height:340px;overflow-y:scroll}#bookly-tbs .container{padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}@media (min-width:768px){#bookly-tbs .container{width:740px}}@media (min-width:992px){#bookly-tbs .container{width:960px}}@media (min-width:1200px){#bookly-tbs .container{width:1160px}}#bookly-tbs .container-fluid{padding-right:10px;padding-left:10px;margin-right:auto;margin-left:auto}#bookly-tbs .row{margin-right:-10px;margin-left:-10px}#bookly-tbs .col-lg-1,#bookly-tbs .col-lg-10,#bookly-tbs .col-lg-11,#bookly-tbs .col-lg-12,#bookly-tbs .col-lg-2,#bookly-tbs .col-lg-3,#bookly-tbs .col-lg-4,#bookly-tbs .col-lg-5,#bookly-tbs .col-lg-6,#bookly-tbs .col-lg-7,#bookly-tbs .col-lg-8,#bookly-tbs .col-lg-9,#bookly-tbs .col-md-1,#bookly-tbs .col-md-10,#bookly-tbs .col-md-11,#bookly-tbs .col-md-12,#bookly-tbs .col-md-2,#bookly-tbs .col-md-3,#bookly-tbs .col-md-4,#bookly-tbs .col-md-5,#bookly-tbs .col-md-6,#bookly-tbs .col-md-7,#bookly-tbs .col-md-8,#bookly-tbs .col-md-9,#bookly-tbs .col-sm-1,#bookly-tbs .col-sm-10,#bookly-tbs .col-sm-11,#bookly-tbs .col-sm-12,#bookly-tbs .col-sm-2,#bookly-tbs .col-sm-3,#bookly-tbs .col-sm-4,#bookly-tbs .col-sm-5,#bookly-tbs .col-sm-6,#bookly-tbs .col-sm-7,#bookly-tbs .col-sm-8,#bookly-tbs .col-sm-9,#bookly-tbs .col-xs-1,#bookly-tbs .col-xs-10,#bookly-tbs .col-xs-11,#bookly-tbs .col-xs-12,#bookly-tbs .col-xs-2,#bookly-tbs .col-xs-3,#bookly-tbs .col-xs-4,#bookly-tbs .col-xs-5,#bookly-tbs .col-xs-6,#bookly-tbs .col-xs-7,#bookly-tbs .col-xs-8,#bookly-tbs .col-xs-9{position:relative;min-height:1px;padding-right:10px;padding-left:10px}#bookly-tbs .col-xs-1,#bookly-tbs .col-xs-10,#bookly-tbs .col-xs-11,#bookly-tbs .col-xs-12,#bookly-tbs .col-xs-2,#bookly-tbs .col-xs-3,#bookly-tbs .col-xs-4,#bookly-tbs .col-xs-5,#bookly-tbs .col-xs-6,#bookly-tbs .col-xs-7,#bookly-tbs .col-xs-8,#bookly-tbs .col-xs-9{float:left}#bookly-tbs .col-xs-12{width:100%}#bookly-tbs .col-xs-11{width:91.66666667%}#bookly-tbs .col-xs-10{width:83.33333333%}#bookly-tbs .col-xs-9{width:75%}#bookly-tbs .col-xs-8{width:66.66666667%}#bookly-tbs .col-xs-7{width:58.33333333%}#bookly-tbs .col-xs-6{width:50%}#bookly-tbs .col-xs-5{width:41.66666667%}#bookly-tbs .col-xs-4{width:33.33333333%}#bookly-tbs .col-xs-3{width:25%}#bookly-tbs .col-xs-2{width:16.66666667%}#bookly-tbs .col-xs-1{width:8.33333333%}#bookly-tbs .col-xs-pull-12{right:100%}#bookly-tbs .col-xs-pull-11{right:91.66666667%}#bookly-tbs .col-xs-pull-10{right:83.33333333%}#bookly-tbs .col-xs-pull-9{right:75%}#bookly-tbs .col-xs-pull-8{right:66.66666667%}#bookly-tbs .col-xs-pull-7{right:58.33333333%}#bookly-tbs .col-xs-pull-6{right:50%}#bookly-tbs .col-xs-pull-5{right:41.66666667%}#bookly-tbs .col-xs-pull-4{right:33.33333333%}#bookly-tbs .col-xs-pull-3{right:25%}#bookly-tbs .col-xs-pull-2{right:16.66666667%}#bookly-tbs .col-xs-pull-1{right:8.33333333%}#bookly-tbs .col-xs-pull-0{right:auto}#bookly-tbs .col-xs-push-12{left:100%}#bookly-tbs .col-xs-push-11{left:91.66666667%}#bookly-tbs .col-xs-push-10{left:83.33333333%}#bookly-tbs .col-xs-push-9{left:75%}#bookly-tbs .col-xs-push-8{left:66.66666667%}#bookly-tbs .col-xs-push-7{left:58.33333333%}#bookly-tbs .col-xs-push-6{left:50%}#bookly-tbs .col-xs-push-5{left:41.66666667%}#bookly-tbs .col-xs-push-4{left:33.33333333%}#bookly-tbs .col-xs-push-3{left:25%}#bookly-tbs .col-xs-push-2{left:16.66666667%}#bookly-tbs .col-xs-push-1{left:8.33333333%}#bookly-tbs .col-xs-push-0{left:auto}#bookly-tbs .col-xs-offset-12{margin-left:100%}#bookly-tbs .col-xs-offset-11{margin-left:91.66666667%}#bookly-tbs .col-xs-offset-10{margin-left:83.33333333%}#bookly-tbs .col-xs-offset-9{margin-left:75%}#bookly-tbs .col-xs-offset-8{margin-left:66.66666667%}#bookly-tbs .col-xs-offset-7{margin-left:58.33333333%}#bookly-tbs .col-xs-offset-6{margin-left:50%}#bookly-tbs .col-xs-offset-5{margin-left:41.66666667%}#bookly-tbs .col-xs-offset-4{margin-left:33.33333333%}#bookly-tbs .col-xs-offset-3{margin-left:25%}#bookly-tbs .col-xs-offset-2{margin-left:16.66666667%}#bookly-tbs .col-xs-offset-1{margin-left:8.33333333%}#bookly-tbs .col-xs-offset-0{margin-left:0}@media (min-width:768px){#bookly-tbs .col-sm-1,#bookly-tbs .col-sm-10,#bookly-tbs .col-sm-11,#bookly-tbs .col-sm-12,#bookly-tbs .col-sm-2,#bookly-tbs .col-sm-3,#bookly-tbs .col-sm-4,#bookly-tbs .col-sm-5,#bookly-tbs .col-sm-6,#bookly-tbs .col-sm-7,#bookly-tbs .col-sm-8,#bookly-tbs .col-sm-9{float:left}#bookly-tbs .col-sm-12{width:100%}#bookly-tbs .col-sm-11{width:91.66666667%}#bookly-tbs .col-sm-10{width:83.33333333%}#bookly-tbs .col-sm-9{width:75%}#bookly-tbs .col-sm-8{width:66.66666667%}#bookly-tbs .col-sm-7{width:58.33333333%}#bookly-tbs .col-sm-6{width:50%}#bookly-tbs .col-sm-5{width:41.66666667%}#bookly-tbs .col-sm-4{width:33.33333333%}#bookly-tbs .col-sm-3{width:25%}#bookly-tbs .col-sm-2{width:16.66666667%}#bookly-tbs .col-sm-1{width:8.33333333%}#bookly-tbs .col-sm-pull-12{right:100%}#bookly-tbs .col-sm-pull-11{right:91.66666667%}#bookly-tbs .col-sm-pull-10{right:83.33333333%}#bookly-tbs .col-sm-pull-9{right:75%}#bookly-tbs .col-sm-pull-8{right:66.66666667%}#bookly-tbs .col-sm-pull-7{right:58.33333333%}#bookly-tbs .col-sm-pull-6{right:50%}#bookly-tbs .col-sm-pull-5{right:41.66666667%}#bookly-tbs .col-sm-pull-4{right:33.33333333%}#bookly-tbs .col-sm-pull-3{right:25%}#bookly-tbs .col-sm-pull-2{right:16.66666667%}#bookly-tbs .col-sm-pull-1{right:8.33333333%}#bookly-tbs .col-sm-pull-0{right:auto}#bookly-tbs .col-sm-push-12{left:100%}#bookly-tbs .col-sm-push-11{left:91.66666667%}#bookly-tbs .col-sm-push-10{left:83.33333333%}#bookly-tbs .col-sm-push-9{left:75%}#bookly-tbs .col-sm-push-8{left:66.66666667%}#bookly-tbs .col-sm-push-7{left:58.33333333%}#bookly-tbs .col-sm-push-6{left:50%}#bookly-tbs .col-sm-push-5{left:41.66666667%}#bookly-tbs .col-sm-push-4{left:33.33333333%}#bookly-tbs .col-sm-push-3{left:25%}#bookly-tbs .col-sm-push-2{left:16.66666667%}#bookly-tbs .col-sm-push-1{left:8.33333333%}#bookly-tbs .col-sm-push-0{left:auto}#bookly-tbs .col-sm-offset-12{margin-left:100%}#bookly-tbs .col-sm-offset-11{margin-left:91.66666667%}#bookly-tbs .col-sm-offset-10{margin-left:83.33333333%}#bookly-tbs .col-sm-offset-9{margin-left:75%}#bookly-tbs .col-sm-offset-8{margin-left:66.66666667%}#bookly-tbs .col-sm-offset-7{margin-left:58.33333333%}#bookly-tbs .col-sm-offset-6{margin-left:50%}#bookly-tbs .col-sm-offset-5{margin-left:41.66666667%}#bookly-tbs .col-sm-offset-4{margin-left:33.33333333%}#bookly-tbs .col-sm-offset-3{margin-left:25%}#bookly-tbs .col-sm-offset-2{margin-left:16.66666667%}#bookly-tbs .col-sm-offset-1{margin-left:8.33333333%}#bookly-tbs .col-sm-offset-0{margin-left:0}}@media (min-width:992px){#bookly-tbs .col-md-1,#bookly-tbs .col-md-10,#bookly-tbs .col-md-11,#bookly-tbs .col-md-12,#bookly-tbs .col-md-2,#bookly-tbs .col-md-3,#bookly-tbs .col-md-4,#bookly-tbs .col-md-5,#bookly-tbs .col-md-6,#bookly-tbs .col-md-7,#bookly-tbs .col-md-8,#bookly-tbs .col-md-9{float:left}#bookly-tbs .col-md-12{width:100%}#bookly-tbs .col-md-11{width:91.66666667%}#bookly-tbs .col-md-10{width:83.33333333%}#bookly-tbs .col-md-9{width:75%}#bookly-tbs .col-md-8{width:66.66666667%}#bookly-tbs .col-md-7{width:58.33333333%}#bookly-tbs .col-md-6{width:50%}#bookly-tbs .col-md-5{width:41.66666667%}#bookly-tbs .col-md-4{width:33.33333333%}#bookly-tbs .col-md-3{width:25%}#bookly-tbs .col-md-2{width:16.66666667%}#bookly-tbs .col-md-1{width:8.33333333%}#bookly-tbs .col-md-pull-12{right:100%}#bookly-tbs .col-md-pull-11{right:91.66666667%}#bookly-tbs .col-md-pull-10{right:83.33333333%}#bookly-tbs .col-md-pull-9{right:75%}#bookly-tbs .col-md-pull-8{right:66.66666667%}#bookly-tbs .col-md-pull-7{right:58.33333333%}#bookly-tbs .col-md-pull-6{right:50%}#bookly-tbs .col-md-pull-5{right:41.66666667%}#bookly-tbs .col-md-pull-4{right:33.33333333%}#bookly-tbs .col-md-pull-3{right:25%}#bookly-tbs .col-md-pull-2{right:16.66666667%}#bookly-tbs .col-md-pull-1{right:8.33333333%}#bookly-tbs .col-md-pull-0{right:auto}#bookly-tbs .col-md-push-12{left:100%}#bookly-tbs .col-md-push-11{left:91.66666667%}#bookly-tbs .col-md-push-10{left:83.33333333%}#bookly-tbs .col-md-push-9{left:75%}#bookly-tbs .col-md-push-8{left:66.66666667%}#bookly-tbs .col-md-push-7{left:58.33333333%}#bookly-tbs .col-md-push-6{left:50%}#bookly-tbs .col-md-push-5{left:41.66666667%}#bookly-tbs .col-md-push-4{left:33.33333333%}#bookly-tbs .col-md-push-3{left:25%}#bookly-tbs .col-md-push-2{left:16.66666667%}#bookly-tbs .col-md-push-1{left:8.33333333%}#bookly-tbs .col-md-push-0{left:auto}#bookly-tbs .col-md-offset-12{margin-left:100%}#bookly-tbs .col-md-offset-11{margin-left:91.66666667%}#bookly-tbs .col-md-offset-10{margin-left:83.33333333%}#bookly-tbs .col-md-offset-9{margin-left:75%}#bookly-tbs .col-md-offset-8{margin-left:66.66666667%}#bookly-tbs .col-md-offset-7{margin-left:58.33333333%}#bookly-tbs .col-md-offset-6{margin-left:50%}#bookly-tbs .col-md-offset-5{margin-left:41.66666667%}#bookly-tbs .col-md-offset-4{margin-left:33.33333333%}#bookly-tbs .col-md-offset-3{margin-left:25%}#bookly-tbs .col-md-offset-2{margin-left:16.66666667%}#bookly-tbs .col-md-offset-1{margin-left:8.33333333%}#bookly-tbs .col-md-offset-0{margin-left:0}}@media (min-width:1200px){#bookly-tbs .col-lg-1,#bookly-tbs .col-lg-10,#bookly-tbs .col-lg-11,#bookly-tbs .col-lg-12,#bookly-tbs .col-lg-2,#bookly-tbs .col-lg-3,#bookly-tbs .col-lg-4,#bookly-tbs .col-lg-5,#bookly-tbs .col-lg-6,#bookly-tbs .col-lg-7,#bookly-tbs .col-lg-8,#bookly-tbs .col-lg-9{float:left}#bookly-tbs .col-lg-12{width:100%}#bookly-tbs .col-lg-11{width:91.66666667%}#bookly-tbs .col-lg-10{width:83.33333333%}#bookly-tbs .col-lg-9{width:75%}#bookly-tbs .col-lg-8{width:66.66666667%}#bookly-tbs .col-lg-7{width:58.33333333%}#bookly-tbs .col-lg-6{width:50%}#bookly-tbs .col-lg-5{width:41.66666667%}#bookly-tbs .col-lg-4{width:33.33333333%}#bookly-tbs .col-lg-3{width:25%}#bookly-tbs .col-lg-2{width:16.66666667%}#bookly-tbs .col-lg-1{width:8.33333333%}#bookly-tbs .col-lg-pull-12{right:100%}#bookly-tbs .col-lg-pull-11{right:91.66666667%}#bookly-tbs .col-lg-pull-10{right:83.33333333%}#bookly-tbs .col-lg-pull-9{right:75%}#bookly-tbs .col-lg-pull-8{right:66.66666667%}#bookly-tbs .col-lg-pull-7{right:58.33333333%}#bookly-tbs .col-lg-pull-6{right:50%}#bookly-tbs .col-lg-pull-5{right:41.66666667%}#bookly-tbs .col-lg-pull-4{right:33.33333333%}#bookly-tbs .col-lg-pull-3{right:25%}#bookly-tbs .col-lg-pull-2{right:16.66666667%}#bookly-tbs .col-lg-pull-1{right:8.33333333%}#bookly-tbs .col-lg-pull-0{right:auto}#bookly-tbs .col-lg-push-12{left:100%}#bookly-tbs .col-lg-push-11{left:91.66666667%}#bookly-tbs .col-lg-push-10{left:83.33333333%}#bookly-tbs .col-lg-push-9{left:75%}#bookly-tbs .col-lg-push-8{left:66.66666667%}#bookly-tbs .col-lg-push-7{left:58.33333333%}#bookly-tbs .col-lg-push-6{left:50%}#bookly-tbs .col-lg-push-5{left:41.66666667%}#bookly-tbs .col-lg-push-4{left:33.33333333%}#bookly-tbs .col-lg-push-3{left:25%}#bookly-tbs .col-lg-push-2{left:16.66666667%}#bookly-tbs .col-lg-push-1{left:8.33333333%}#bookly-tbs .col-lg-push-0{left:auto}#bookly-tbs .col-lg-offset-12{margin-left:100%}#bookly-tbs .col-lg-offset-11{margin-left:91.66666667%}#bookly-tbs .col-lg-offset-10{margin-left:83.33333333%}#bookly-tbs .col-lg-offset-9{margin-left:75%}#bookly-tbs .col-lg-offset-8{margin-left:66.66666667%}#bookly-tbs .col-lg-offset-7{margin-left:58.33333333%}#bookly-tbs .col-lg-offset-6{margin-left:50%}#bookly-tbs .col-lg-offset-5{margin-left:41.66666667%}#bookly-tbs .col-lg-offset-4{margin-left:33.33333333%}#bookly-tbs .col-lg-offset-3{margin-left:25%}#bookly-tbs .col-lg-offset-2{margin-left:16.66666667%}#bookly-tbs .col-lg-offset-1{margin-left:8.33333333%}#bookly-tbs .col-lg-offset-0{margin-left:0}}#bookly-tbs table{background-color:transparent}#bookly-tbs caption{padding-top:8px;padding-bottom:8px;color:#d9dee4;text-align:left}#bookly-tbs th{text-align:left}#bookly-tbs .table{width:100%;max-width:100%;margin-bottom:21px}#bookly-tbs .table>tbody>tr>td,#bookly-tbs .table>tbody>tr>th,#bookly-tbs .table>tfoot>tr>td,#bookly-tbs .table>tfoot>tr>th,#bookly-tbs .table>thead>tr>td,#bookly-tbs .table>thead>tr>th{padding:8px;line-height:1.4;vertical-align:top;border-top:1px solid #d9dee4}#bookly-tbs .table>thead>tr>th{vertical-align:bottom;border-bottom:2px solid #d9dee4}#bookly-tbs .table>caption+thead>tr:first-child>td,#bookly-tbs .table>caption+thead>tr:first-child>th,#bookly-tbs .table>colgroup+thead>tr:first-child>td,#bookly-tbs .table>colgroup+thead>tr:first-child>th,#bookly-tbs .table>thead:first-child>tr:first-child>td,#bookly-tbs .table>thead:first-child>tr:first-child>th{border-top:0}#bookly-tbs .table>tbody+tbody{border-top:2px solid #d9dee4}#bookly-tbs .table .table{background-color:transparent}#bookly-tbs .table-condensed>tbody>tr>td,#bookly-tbs .table-condensed>tbody>tr>th,#bookly-tbs .table-condensed>tfoot>tr>td,#bookly-tbs .table-condensed>tfoot>tr>th,#bookly-tbs .table-condensed>thead>tr>td,#bookly-tbs .table-condensed>thead>tr>th{padding:5px}#bookly-tbs .table-bordered{border:1px solid #d9dee4}#bookly-tbs .table-bordered>tbody>tr>td,#bookly-tbs .table-bordered>tbody>tr>th,#bookly-tbs .table-bordered>tfoot>tr>td,#bookly-tbs .table-bordered>tfoot>tr>th,#bookly-tbs .table-bordered>thead>tr>td,#bookly-tbs .table-bordered>thead>tr>th{border:1px solid #d9dee4}#bookly-tbs .table-bordered>thead>tr>td,#bookly-tbs .table-bordered>thead>tr>th{border-bottom-width:2px}#bookly-tbs .table-striped>tbody>tr:nth-of-type(odd){background-color:#f9f9f9}#bookly-tbs .table-hover>tbody>tr:hover{background-color:#f5f5f5}#bookly-tbs table col[class*=col-]{position:static;display:table-column;float:none}#bookly-tbs table td[class*=col-],#bookly-tbs table th[class*=col-]{position:static;display:table-cell;float:none}#bookly-tbs .table>tbody>tr.active>td,#bookly-tbs .table>tbody>tr.active>th,#bookly-tbs .table>tbody>tr>td.active,#bookly-tbs .table>tbody>tr>th.active,#bookly-tbs .table>tfoot>tr.active>td,#bookly-tbs .table>tfoot>tr.active>th,#bookly-tbs .table>tfoot>tr>td.active,#bookly-tbs .table>tfoot>tr>th.active,#bookly-tbs .table>thead>tr.active>td,#bookly-tbs .table>thead>tr.active>th,#bookly-tbs .table>thead>tr>td.active,#bookly-tbs .table>thead>tr>th.active{background-color:#f5f5f5}#bookly-tbs .table-hover>tbody>tr.active:hover>td,#bookly-tbs .table-hover>tbody>tr.active:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.active,#bookly-tbs .table-hover>tbody>tr>td.active:hover,#bookly-tbs .table-hover>tbody>tr>th.active:hover{background-color:#e8e8e8}#bookly-tbs .table>tbody>tr.success>td,#bookly-tbs .table>tbody>tr.success>th,#bookly-tbs .table>tbody>tr>td.success,#bookly-tbs .table>tbody>tr>th.success,#bookly-tbs .table>tfoot>tr.success>td,#bookly-tbs .table>tfoot>tr.success>th,#bookly-tbs .table>tfoot>tr>td.success,#bookly-tbs .table>tfoot>tr>th.success,#bookly-tbs .table>thead>tr.success>td,#bookly-tbs .table>thead>tr.success>th,#bookly-tbs .table>thead>tr>td.success,#bookly-tbs .table>thead>tr>th.success{background-color:#dff0d8}#bookly-tbs .table-hover>tbody>tr.success:hover>td,#bookly-tbs .table-hover>tbody>tr.success:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.success,#bookly-tbs .table-hover>tbody>tr>td.success:hover,#bookly-tbs .table-hover>tbody>tr>th.success:hover{background-color:#d0e9c6}#bookly-tbs .table>tbody>tr.info>td,#bookly-tbs .table>tbody>tr.info>th,#bookly-tbs .table>tbody>tr>td.info,#bookly-tbs .table>tbody>tr>th.info,#bookly-tbs .table>tfoot>tr.info>td,#bookly-tbs .table>tfoot>tr.info>th,#bookly-tbs .table>tfoot>tr>td.info,#bookly-tbs .table>tfoot>tr>th.info,#bookly-tbs .table>thead>tr.info>td,#bookly-tbs .table>thead>tr.info>th,#bookly-tbs .table>thead>tr>td.info,#bookly-tbs .table>thead>tr>th.info{background-color:#d9edf7}#bookly-tbs .table-hover>tbody>tr.info:hover>td,#bookly-tbs .table-hover>tbody>tr.info:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.info,#bookly-tbs .table-hover>tbody>tr>td.info:hover,#bookly-tbs .table-hover>tbody>tr>th.info:hover{background-color:#c4e3f3}#bookly-tbs .table>tbody>tr.warning>td,#bookly-tbs .table>tbody>tr.warning>th,#bookly-tbs .table>tbody>tr>td.warning,#bookly-tbs .table>tbody>tr>th.warning,#bookly-tbs .table>tfoot>tr.warning>td,#bookly-tbs .table>tfoot>tr.warning>th,#bookly-tbs .table>tfoot>tr>td.warning,#bookly-tbs .table>tfoot>tr>th.warning,#bookly-tbs .table>thead>tr.warning>td,#bookly-tbs .table>thead>tr.warning>th,#bookly-tbs .table>thead>tr>td.warning,#bookly-tbs .table>thead>tr>th.warning{background-color:#fcf8e3}#bookly-tbs .table-hover>tbody>tr.warning:hover>td,#bookly-tbs .table-hover>tbody>tr.warning:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.warning,#bookly-tbs .table-hover>tbody>tr>td.warning:hover,#bookly-tbs .table-hover>tbody>tr>th.warning:hover{background-color:#faf2cc}#bookly-tbs .table>tbody>tr.danger>td,#bookly-tbs .table>tbody>tr.danger>th,#bookly-tbs .table>tbody>tr>td.danger,#bookly-tbs .table>tbody>tr>th.danger,#bookly-tbs .table>tfoot>tr.danger>td,#bookly-tbs .table>tfoot>tr.danger>th,#bookly-tbs .table>tfoot>tr>td.danger,#bookly-tbs .table>tfoot>tr>th.danger,#bookly-tbs .table>thead>tr.danger>td,#bookly-tbs .table>thead>tr.danger>th,#bookly-tbs .table>thead>tr>td.danger,#bookly-tbs .table>thead>tr>th.danger{background-color:#f2dede}#bookly-tbs .table-hover>tbody>tr.danger:hover>td,#bookly-tbs .table-hover>tbody>tr.danger:hover>th,#bookly-tbs .table-hover>tbody>tr:hover>.danger,#bookly-tbs .table-hover>tbody>tr>td.danger:hover,#bookly-tbs .table-hover>tbody>tr>th.danger:hover{background-color:#ebcccc}#bookly-tbs .table-responsive{min-height:.01%;overflow-x:auto}@media screen and (max-width:767px){#bookly-tbs .table-responsive{width:100%;margin-bottom:15.75px;overflow-y:hidden;-ms-overflow-style:-ms-autohiding-scrollbar;border:1px solid #d9dee4}#bookly-tbs .table-responsive>.table{margin-bottom:0}#bookly-tbs .table-responsive>.table>tbody>tr>td,#bookly-tbs .table-responsive>.table>tbody>tr>th,#bookly-tbs .table-responsive>.table>tfoot>tr>td,#bookly-tbs .table-responsive>.table>tfoot>tr>th,#bookly-tbs .table-responsive>.table>thead>tr>td,#bookly-tbs .table-responsive>.table>thead>tr>th{white-space:nowrap}#bookly-tbs .table-responsive>.table-bordered{border:0}#bookly-tbs .table-responsive>.table-bordered>tbody>tr>td:first-child,#bookly-tbs .table-responsive>.table-bordered>tbody>tr>th:first-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>td:first-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>th:first-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>td:first-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}#bookly-tbs .table-responsive>.table-bordered>tbody>tr>td:last-child,#bookly-tbs .table-responsive>.table-bordered>tbody>tr>th:last-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>td:last-child,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr>th:last-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>td:last-child,#bookly-tbs .table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}#bookly-tbs .table-responsive>.table-bordered>tbody>tr:last-child>td,#bookly-tbs .table-responsive>.table-bordered>tbody>tr:last-child>th,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr:last-child>td,#bookly-tbs .table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}}#bookly-tbs fieldset{min-width:0;padding:0;margin:0;border:0}#bookly-tbs legend{display:block;width:100%;padding:0;margin-bottom:21px;font-size:22.5px;line-height:inherit;color:#5b6470;border:0;border-bottom:1px solid #e8ebf0}#bookly-tbs label{display:inline-block;max-width:100%;margin-bottom:7px;font-weight:700}#bookly-tbs input[type=search]{-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}#bookly-tbs input[type=checkbox],#bookly-tbs input[type=radio]{margin:3px 0 0;margin-top:1px\9;line-height:normal}#bookly-tbs input[type=file]{display:block}#bookly-tbs input[type=range]{display:block;width:100%}#bookly-tbs select[multiple],#bookly-tbs select[size]{height:auto}#bookly-tbs input[type=file]:focus,#bookly-tbs input[type=checkbox]:focus,#bookly-tbs input[type=radio]:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bookly-tbs output{display:block;padding-top:7px;font-size:15px;line-height:1.4;color:#3e424a}#bookly-tbs .form-control{display:block;width:100%;height:35px;padding:6px 12px;font-size:15px;line-height:1.4;color:#3e424a;background-color:#fff;background-image:none;border:1px solid #d9dee4;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0);box-shadow:inset 0 1px 1px rgba(0,0,0,0);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}#bookly-tbs .form-control:focus{border-color:#08c;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,0),0 0 8px rgba(0,136,204,0);box-shadow:inset 0 1px 1px rgba(0,0,0,0),0 0 8px rgba(0,136,204,0)}#bookly-tbs .form-control::-moz-placeholder{color:#8a929e;opacity:1}#bookly-tbs .form-control:-ms-input-placeholder{color:#8a929e}#bookly-tbs .form-control::-webkit-input-placeholder{color:#8a929e}#bookly-tbs .form-control::-ms-expand{background-color:transparent;border:0}#bookly-tbs .form-control[disabled],#bookly-tbs .form-control[readonly],#bookly-tbs fieldset[disabled] .form-control{background-color:rgba(232,235,240,.7);opacity:1}#bookly-tbs .form-control[disabled],#bookly-tbs fieldset[disabled] .form-control{cursor:not-allowed}#bookly-tbs textarea.form-control{height:auto}#bookly-tbs input[type=search]{-webkit-appearance:none}@media screen and (-webkit-min-device-pixel-ratio:0){#bookly-tbs input[type=date].form-control,#bookly-tbs input[type=time].form-control,#bookly-tbs input[type=datetime-local].form-control,#bookly-tbs input[type=month].form-control{line-height:35px}#bookly-tbs .input-group-sm input[type=date],#bookly-tbs .input-group-sm input[type=time],#bookly-tbs .input-group-sm input[type=datetime-local],#bookly-tbs .input-group-sm input[type=month],#bookly-tbs input[type=date].input-sm,#bookly-tbs input[type=time].input-sm,#bookly-tbs input[type=datetime-local].input-sm,#bookly-tbs input[type=month].input-sm{line-height:32px}#bookly-tbs .input-group-lg input[type=date],#bookly-tbs .input-group-lg input[type=time],#bookly-tbs .input-group-lg input[type=datetime-local],#bookly-tbs .input-group-lg input[type=month],#bookly-tbs input[type=date].input-lg,#bookly-tbs input[type=time].input-lg,#bookly-tbs input[type=datetime-local].input-lg,#bookly-tbs input[type=month].input-lg{line-height:46px}}#bookly-tbs .form-group{margin-bottom:20px}#bookly-tbs .checkbox,#bookly-tbs .radio{position:relative;display:block;margin-top:6px;margin-bottom:7px}#bookly-tbs .checkbox label,#bookly-tbs .radio label{min-height:21px;padding-left:20px;margin-bottom:0;font-weight:400;cursor:pointer}#bookly-tbs .checkbox input[type=checkbox],#bookly-tbs .checkbox-inline input[type=checkbox],#bookly-tbs .radio input[type=radio],#bookly-tbs .radio-inline input[type=radio]{position:absolute;margin-top:3px\9;margin-left:-20px}#bookly-tbs .checkbox+.checkbox,#bookly-tbs .radio+.radio{margin-top:-5px}#bookly-tbs .checkbox-inline,#bookly-tbs .radio-inline{position:relative;display:inline-block;padding-left:20px;margin-bottom:0;font-weight:400;vertical-align:middle;cursor:pointer}#bookly-tbs .checkbox-inline+.checkbox-inline,#bookly-tbs .radio-inline+.radio-inline{margin-top:0;margin-left:10px}#bookly-tbs fieldset[disabled] input[type=checkbox],#bookly-tbs fieldset[disabled] input[type=radio],#bookly-tbs input[type=checkbox].disabled,#bookly-tbs input[type=checkbox][disabled],#bookly-tbs input[type=radio].disabled,#bookly-tbs input[type=radio][disabled]{cursor:not-allowed}#bookly-tbs .checkbox-inline.disabled,#bookly-tbs .radio-inline.disabled,#bookly-tbs fieldset[disabled] .checkbox-inline,#bookly-tbs fieldset[disabled] .radio-inline{cursor:not-allowed}#bookly-tbs .checkbox.disabled label,#bookly-tbs .radio.disabled label,#bookly-tbs fieldset[disabled] .checkbox label,#bookly-tbs fieldset[disabled] .radio label{cursor:not-allowed}#bookly-tbs .form-control-static{min-height:36px;padding-top:7px;padding-bottom:7px;margin-bottom:0}#bookly-tbs .form-control-static.input-lg,#bookly-tbs .form-control-static.input-sm{padding-right:0;padding-left:0}#bookly-tbs .input-sm{height:32px;padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs select.input-sm{height:32px;line-height:32px}#bookly-tbs select[multiple].input-sm,#bookly-tbs textarea.input-sm{height:auto}#bookly-tbs .form-group-sm .form-control{height:32px;padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs .form-group-sm select.form-control{height:32px;line-height:32px}#bookly-tbs .form-group-sm select[multiple].form-control,#bookly-tbs .form-group-sm textarea.form-control{height:auto}#bookly-tbs .form-group-sm .form-control-static{height:32px;min-height:34px;padding:6px 10px;font-size:13px;line-height:1.53846154}#bookly-tbs .input-lg{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#bookly-tbs select.input-lg{height:46px;line-height:46px}#bookly-tbs select[multiple].input-lg,#bookly-tbs textarea.input-lg{height:auto}#bookly-tbs .form-group-lg .form-control{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#bookly-tbs .form-group-lg select.form-control{height:46px;line-height:46px}#bookly-tbs .form-group-lg select[multiple].form-control,#bookly-tbs .form-group-lg textarea.form-control{height:auto}#bookly-tbs .form-group-lg .form-control-static{height:46px;min-height:39px;padding:11px 16px;font-size:18px;line-height:1.3333333}#bookly-tbs .has-feedback{position:relative}#bookly-tbs .has-feedback .form-control{padding-right:43.75px}#bookly-tbs .form-control-feedback{position:absolute;top:0;right:0;z-index:2;display:block;width:35px;height:35px;line-height:35px;text-align:center;pointer-events:none}#bookly-tbs .form-group-lg .form-control+.form-control-feedback,#bookly-tbs .input-group-lg+.form-control-feedback,#bookly-tbs .input-lg+.form-control-feedback{width:46px;height:46px;line-height:46px}#bookly-tbs .form-group-sm .form-control+.form-control-feedback,#bookly-tbs .input-group-sm+.form-control-feedback,#bookly-tbs .input-sm+.form-control-feedback{width:32px;height:32px;line-height:32px}#bookly-tbs .has-success .checkbox,#bookly-tbs .has-success .checkbox-inline,#bookly-tbs .has-success .control-label,#bookly-tbs .has-success .help-block,#bookly-tbs .has-success .radio,#bookly-tbs .has-success .radio-inline,#bookly-tbs .has-success.checkbox label,#bookly-tbs .has-success.checkbox-inline label,#bookly-tbs .has-success.radio label,#bookly-tbs .has-success.radio-inline label{color:#3c763d}#bookly-tbs .has-success .form-control{border-color:#3c763d;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}#bookly-tbs .has-success .form-control:focus{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}#bookly-tbs .has-success .input-group-addon{color:#3c763d;background-color:#dff0d8;border-color:#3c763d}#bookly-tbs .has-success .form-control-feedback{color:#3c763d}#bookly-tbs .has-warning .checkbox,#bookly-tbs .has-warning .checkbox-inline,#bookly-tbs .has-warning .control-label,#bookly-tbs .has-warning .help-block,#bookly-tbs .has-warning .radio,#bookly-tbs .has-warning .radio-inline,#bookly-tbs .has-warning.checkbox label,#bookly-tbs .has-warning.checkbox-inline label,#bookly-tbs .has-warning.radio label,#bookly-tbs .has-warning.radio-inline label{color:#8a6d3b}#bookly-tbs .has-warning .form-control{border-color:#8a6d3b;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}#bookly-tbs .has-warning .form-control:focus{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}#bookly-tbs .has-warning .input-group-addon{color:#8a6d3b;background-color:#fcf8e3;border-color:#8a6d3b}#bookly-tbs .has-warning .form-control-feedback{color:#8a6d3b}#bookly-tbs .has-error .checkbox,#bookly-tbs .has-error .checkbox-inline,#bookly-tbs .has-error .control-label,#bookly-tbs .has-error .help-block,#bookly-tbs .has-error .radio,#bookly-tbs .has-error .radio-inline,#bookly-tbs .has-error.checkbox label,#bookly-tbs .has-error.checkbox-inline label,#bookly-tbs .has-error.radio label,#bookly-tbs .has-error.radio-inline label{color:#a94442}#bookly-tbs .has-error .form-control{border-color:#a94442;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}#bookly-tbs .has-error .form-control:focus{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}#bookly-tbs .has-error .input-group-addon{color:#a94442;background-color:#f2dede;border-color:#a94442}#bookly-tbs .has-error .form-control-feedback{color:#a94442}#bookly-tbs .has-feedback label~.form-control-feedback{top:26px}#bookly-tbs .has-feedback label.sr-only~.form-control-feedback{top:0}#bookly-tbs .help-block{display:block;margin-top:5px;margin-bottom:10px;color:#8a929e}@media (min-width:768px){#bookly-tbs .form-inline .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#bookly-tbs .form-inline .form-control{display:inline-block;width:auto;vertical-align:middle}#bookly-tbs .form-inline .form-control-static{display:inline-block}#bookly-tbs .form-inline .input-group{display:inline-table;vertical-align:middle}#bookly-tbs .form-inline .input-group .form-control,#bookly-tbs .form-inline .input-group .input-group-addon,#bookly-tbs .form-inline .input-group .input-group-btn{width:auto}#bookly-tbs .form-inline .input-group>.form-control{width:100%}#bookly-tbs .form-inline .control-label{margin-bottom:0;vertical-align:middle}#bookly-tbs .form-inline .checkbox,#bookly-tbs .form-inline .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#bookly-tbs .form-inline .has-feedback .form-control-feedback{top:0}}#bookly-tbs .form-horizontal .checkbox,#bookly-tbs .form-horizontal .checkbox-inline,#bookly-tbs .form-horizontal .radio,#bookly-tbs .form-horizontal .radio-inline{padding-top:7px;margin-top:0;margin-bottom:0}#bookly-tbs .form-horizontal .checkbox,#bookly-tbs .form-horizontal .radio{min-height:28px}#bookly-tbs .form-horizontal .form-group{margin-right:-10px;margin-left:-10px}@media (min-width:768px){#bookly-tbs .form-horizontal .control-label{padding-top:7px;margin-bottom:0;text-align:right}}#bookly-tbs .form-horizontal .has-feedback .form-control-feedback{right:10px}@media (min-width:768px){#bookly-tbs .form-horizontal .form-group-lg .control-label{padding-top:11px;font-size:18px}}@media (min-width:768px){#bookly-tbs .form-horizontal .form-group-sm .control-label{padding-top:6px;font-size:13px}}#bookly-tbs .btn{display:inline-block;padding:6px 12px;margin-bottom:0;font-size:15px;font-weight:400;line-height:1.4;text-align:center;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}#bookly-tbs .btn.active.focus,#bookly-tbs .btn.active:focus,#bookly-tbs .btn.focus,#bookly-tbs .btn:active.focus,#bookly-tbs .btn:active:focus,#bookly-tbs .btn:focus{outline:thin dotted;outline:5px auto -webkit-focus-ring-color;outline-offset:-2px}#bookly-tbs .btn.focus,#bookly-tbs .btn:focus,#bookly-tbs .btn:hover{color:#3e424a;text-decoration:none}#bookly-tbs .btn.active,#bookly-tbs .btn:active{background-image:none;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#bookly-tbs .btn.disabled,#bookly-tbs .btn[disabled],#bookly-tbs fieldset[disabled] .btn{cursor:not-allowed;filter:alpha(opacity=65);-webkit-box-shadow:none;box-shadow:none;opacity:.65}#bookly-tbs a.btn.disabled,#bookly-tbs fieldset[disabled] a.btn{pointer-events:none}#bookly-tbs .btn-default{color:#3e424a;background-color:#fff;border-color:#d9dee4}#bookly-tbs .btn-default.focus,#bookly-tbs .btn-default:focus{color:#3e424a;background-color:#e6e6e6;border-color:#8e9daf}#bookly-tbs .btn-default:hover{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .btn-default.active,#bookly-tbs .btn-default:active,#bookly-tbs .open>.dropdown-toggle.btn-default{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .btn-default.active.focus,#bookly-tbs .btn-default.active:focus,#bookly-tbs .btn-default.active:hover,#bookly-tbs .btn-default:active.focus,#bookly-tbs .btn-default:active:focus,#bookly-tbs .btn-default:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-default.focus,#bookly-tbs .open>.dropdown-toggle.btn-default:focus,#bookly-tbs .open>.dropdown-toggle.btn-default:hover{color:#3e424a;background-color:#d4d4d4;border-color:#8e9daf}#bookly-tbs .btn-default.active,#bookly-tbs .btn-default:active,#bookly-tbs .open>.dropdown-toggle.btn-default{background-image:none}#bookly-tbs .btn-default.disabled.focus,#bookly-tbs .btn-default.disabled:focus,#bookly-tbs .btn-default.disabled:hover,#bookly-tbs .btn-default[disabled].focus,#bookly-tbs .btn-default[disabled]:focus,#bookly-tbs .btn-default[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-default.focus,#bookly-tbs fieldset[disabled] .btn-default:focus,#bookly-tbs fieldset[disabled] .btn-default:hover{background-color:#fff;border-color:#d9dee4}#bookly-tbs .btn-default .badge{color:#fff;background-color:#3e424a}#bookly-tbs .btn-primary{color:#fff;background-color:#08c;border-color:#08c}#bookly-tbs .btn-primary.focus,#bookly-tbs .btn-primary:focus{color:#fff;background-color:#069;border-color:#00334d}#bookly-tbs .btn-primary:hover{color:#fff;background-color:#069;border-color:#005f8f}#bookly-tbs .btn-primary.active,#bookly-tbs .btn-primary:active,#bookly-tbs .open>.dropdown-toggle.btn-primary{color:#fff;background-color:#069;border-color:#005f8f}#bookly-tbs .btn-primary.active.focus,#bookly-tbs .btn-primary.active:focus,#bookly-tbs .btn-primary.active:hover,#bookly-tbs .btn-primary:active.focus,#bookly-tbs .btn-primary:active:focus,#bookly-tbs .btn-primary:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-primary.focus,#bookly-tbs .open>.dropdown-toggle.btn-primary:focus,#bookly-tbs .open>.dropdown-toggle.btn-primary:hover{color:#fff;background-color:#004e75;border-color:#00334d}#bookly-tbs .btn-primary.active,#bookly-tbs .btn-primary:active,#bookly-tbs .open>.dropdown-toggle.btn-primary{background-image:none}#bookly-tbs .btn-primary.disabled.focus,#bookly-tbs .btn-primary.disabled:focus,#bookly-tbs .btn-primary.disabled:hover,#bookly-tbs .btn-primary[disabled].focus,#bookly-tbs .btn-primary[disabled]:focus,#bookly-tbs .btn-primary[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-primary.focus,#bookly-tbs fieldset[disabled] .btn-primary:focus,#bookly-tbs fieldset[disabled] .btn-primary:hover{background-color:#08c;border-color:#08c}#bookly-tbs .btn-primary .badge{color:#08c;background-color:#fff}#bookly-tbs .btn-success{color:#fff;background-color:#5cb85c;border-color:#5cb85c}#bookly-tbs .btn-success.focus,#bookly-tbs .btn-success:focus{color:#fff;background-color:#449d44;border-color:#2d672d}#bookly-tbs .btn-success:hover{color:#fff;background-color:#449d44;border-color:#419641}#bookly-tbs .btn-success.active,#bookly-tbs .btn-success:active,#bookly-tbs .open>.dropdown-toggle.btn-success{color:#fff;background-color:#449d44;border-color:#419641}#bookly-tbs .btn-success.active.focus,#bookly-tbs .btn-success.active:focus,#bookly-tbs .btn-success.active:hover,#bookly-tbs .btn-success:active.focus,#bookly-tbs .btn-success:active:focus,#bookly-tbs .btn-success:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-success.focus,#bookly-tbs .open>.dropdown-toggle.btn-success:focus,#bookly-tbs .open>.dropdown-toggle.btn-success:hover{color:#fff;background-color:#398439;border-color:#2d672d}#bookly-tbs .btn-success.active,#bookly-tbs .btn-success:active,#bookly-tbs .open>.dropdown-toggle.btn-success{background-image:none}#bookly-tbs .btn-success.disabled.focus,#bookly-tbs .btn-success.disabled:focus,#bookly-tbs .btn-success.disabled:hover,#bookly-tbs .btn-success[disabled].focus,#bookly-tbs .btn-success[disabled]:focus,#bookly-tbs .btn-success[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-success.focus,#bookly-tbs fieldset[disabled] .btn-success:focus,#bookly-tbs fieldset[disabled] .btn-success:hover{background-color:#5cb85c;border-color:#5cb85c}#bookly-tbs .btn-success .badge{color:#5cb85c;background-color:#fff}#bookly-tbs .btn-info{color:#fff;background-color:#5bc0de;border-color:#31b0d5}#bookly-tbs .btn-info.focus,#bookly-tbs .btn-info:focus{color:#fff;background-color:#31b0d5;border-color:#175b70}#bookly-tbs .btn-info:hover{color:#fff;background-color:#31b0d5;border-color:#2289a7}#bookly-tbs .btn-info.active,#bookly-tbs .btn-info:active,#bookly-tbs .open>.dropdown-toggle.btn-info{color:#fff;background-color:#31b0d5;border-color:#2289a7}#bookly-tbs .btn-info.active.focus,#bookly-tbs .btn-info.active:focus,#bookly-tbs .btn-info.active:hover,#bookly-tbs .btn-info:active.focus,#bookly-tbs .btn-info:active:focus,#bookly-tbs .btn-info:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-info.focus,#bookly-tbs .open>.dropdown-toggle.btn-info:focus,#bookly-tbs .open>.dropdown-toggle.btn-info:hover{color:#fff;background-color:#269abc;border-color:#175b70}#bookly-tbs .btn-info.active,#bookly-tbs .btn-info:active,#bookly-tbs .open>.dropdown-toggle.btn-info{background-image:none}#bookly-tbs .btn-info.disabled.focus,#bookly-tbs .btn-info.disabled:focus,#bookly-tbs .btn-info.disabled:hover,#bookly-tbs .btn-info[disabled].focus,#bookly-tbs .btn-info[disabled]:focus,#bookly-tbs .btn-info[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-info.focus,#bookly-tbs fieldset[disabled] .btn-info:focus,#bookly-tbs fieldset[disabled] .btn-info:hover{background-color:#5bc0de;border-color:#31b0d5}#bookly-tbs .btn-info .badge{color:#5bc0de;background-color:#fff}#bookly-tbs .btn-warning{color:#fff;background-color:#f0ad4e;border-color:#f0ad4e}#bookly-tbs .btn-warning.focus,#bookly-tbs .btn-warning:focus{color:#fff;background-color:#ec971f;border-color:#b06d0f}#bookly-tbs .btn-warning:hover{color:#fff;background-color:#ec971f;border-color:#eb9316}#bookly-tbs .btn-warning.active,#bookly-tbs .btn-warning:active,#bookly-tbs .open>.dropdown-toggle.btn-warning{color:#fff;background-color:#ec971f;border-color:#eb9316}#bookly-tbs .btn-warning.active.focus,#bookly-tbs .btn-warning.active:focus,#bookly-tbs .btn-warning.active:hover,#bookly-tbs .btn-warning:active.focus,#bookly-tbs .btn-warning:active:focus,#bookly-tbs .btn-warning:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-warning.focus,#bookly-tbs .open>.dropdown-toggle.btn-warning:focus,#bookly-tbs .open>.dropdown-toggle.btn-warning:hover{color:#fff;background-color:#d58512;border-color:#b06d0f}#bookly-tbs .btn-warning.active,#bookly-tbs .btn-warning:active,#bookly-tbs .open>.dropdown-toggle.btn-warning{background-image:none}#bookly-tbs .btn-warning.disabled.focus,#bookly-tbs .btn-warning.disabled:focus,#bookly-tbs .btn-warning.disabled:hover,#bookly-tbs .btn-warning[disabled].focus,#bookly-tbs .btn-warning[disabled]:focus,#bookly-tbs .btn-warning[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-warning.focus,#bookly-tbs fieldset[disabled] .btn-warning:focus,#bookly-tbs fieldset[disabled] .btn-warning:hover{background-color:#f0ad4e;border-color:#f0ad4e}#bookly-tbs .btn-warning .badge{color:#f0ad4e;background-color:#fff}#bookly-tbs .btn-danger{color:#fff;background-color:#d9534f;border-color:#d9534f}#bookly-tbs .btn-danger.focus,#bookly-tbs .btn-danger:focus{color:#fff;background-color:#c9302c;border-color:#8b211e}#bookly-tbs .btn-danger:hover{color:#fff;background-color:#c9302c;border-color:#c12e2a}#bookly-tbs .btn-danger.active,#bookly-tbs .btn-danger:active,#bookly-tbs .open>.dropdown-toggle.btn-danger{color:#fff;background-color:#c9302c;border-color:#c12e2a}#bookly-tbs .btn-danger.active.focus,#bookly-tbs .btn-danger.active:focus,#bookly-tbs .btn-danger.active:hover,#bookly-tbs .btn-danger:active.focus,#bookly-tbs .btn-danger:active:focus,#bookly-tbs .btn-danger:active:hover,#bookly-tbs .open>.dropdown-toggle.btn-danger.focus,#bookly-tbs .open>.dropdown-toggle.btn-danger:focus,#bookly-tbs .open>.dropdown-toggle.btn-danger:hover{color:#fff;background-color:#ac2925;border-color:#8b211e}#bookly-tbs .btn-danger.active,#bookly-tbs .btn-danger:active,#bookly-tbs .open>.dropdown-toggle.btn-danger{background-image:none}#bookly-tbs .btn-danger.disabled.focus,#bookly-tbs .btn-danger.disabled:focus,#bookly-tbs .btn-danger.disabled:hover,#bookly-tbs .btn-danger[disabled].focus,#bookly-tbs .btn-danger[disabled]:focus,#bookly-tbs .btn-danger[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-danger.focus,#bookly-tbs fieldset[disabled] .btn-danger:focus,#bookly-tbs fieldset[disabled] .btn-danger:hover{background-color:#d9534f;border-color:#d9534f}#bookly-tbs .btn-danger .badge{color:#d9534f;background-color:#fff}#bookly-tbs .btn-link{font-weight:400;color:#08c;border-radius:0}#bookly-tbs .btn-link,#bookly-tbs .btn-link.active,#bookly-tbs .btn-link:active,#bookly-tbs .btn-link[disabled],#bookly-tbs fieldset[disabled] .btn-link{background-color:transparent;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .btn-link,#bookly-tbs .btn-link:active,#bookly-tbs .btn-link:focus,#bookly-tbs .btn-link:hover{border-color:transparent}#bookly-tbs .btn-link:focus,#bookly-tbs .btn-link:hover{color:#005580;text-decoration:none;background-color:transparent}#bookly-tbs .btn-link[disabled]:focus,#bookly-tbs .btn-link[disabled]:hover,#bookly-tbs fieldset[disabled] .btn-link:focus,#bookly-tbs fieldset[disabled] .btn-link:hover{color:#8a929e;text-decoration:none}#bookly-tbs .btn-group-lg>.btn,#bookly-tbs .btn-lg{padding:10px 16px;font-size:15px;line-height:1.3333333;border-radius:4px}#bookly-tbs .btn-group-sm>.btn,#bookly-tbs .btn-sm{padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs .btn-group-xs>.btn,#bookly-tbs .btn-xs{padding:1px 5px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs .btn-block{display:block;width:100%}#bookly-tbs .btn-block+.btn-block{margin-top:5px}#bookly-tbs input[type=button].btn-block,#bookly-tbs input[type=reset].btn-block,#bookly-tbs input[type=submit].btn-block{width:100%}#bookly-tbs .fade{opacity:0;-webkit-transition:opacity .15s linear;-o-transition:opacity .15s linear;transition:opacity .15s linear}#bookly-tbs .fade.in{opacity:1}#bookly-tbs .collapse{display:none}#bookly-tbs .collapse.in{display:block}#bookly-tbs tr.collapse.in{display:table-row}#bookly-tbs tbody.collapse.in{display:table-row-group}#bookly-tbs .collapsing{position:relative;height:0;overflow:hidden;-webkit-transition-timing-function:ease;-o-transition-timing-function:ease;transition-timing-function:ease;-webkit-transition-duration:.35s;-o-transition-duration:.35s;transition-duration:.35s;-webkit-transition-property:height,visibility;-o-transition-property:height,visibility;transition-property:height,visibility}#bookly-tbs .caret{display:inline-block;width:0;height:0;margin-left:2px;vertical-align:middle;border-top:5px dashed;border-top:5px solid\9;border-right:5px solid transparent;border-left:5px solid transparent}#bookly-tbs .dropdown,#bookly-tbs .dropup{position:relative}#bookly-tbs .dropdown-toggle:focus{outline:0}#bookly-tbs .dropdown-menu{position:absolute;top:100%;left:0;z-index:1000;display:none;float:left;min-width:160px;padding:5px 0;margin:2px 0 0;font-size:15px;text-align:left;list-style:none;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.15);border-radius:4px;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}#bookly-tbs .dropdown-menu.pull-right{right:0;left:auto}#bookly-tbs .dropdown-menu .divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}#bookly-tbs .dropdown-menu>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.4;color:#5b6470;white-space:nowrap}#bookly-tbs .dropdown-menu>li>a:focus,#bookly-tbs .dropdown-menu>li>a:hover{color:#505762;text-decoration:none;background-color:#f5f5f5}#bookly-tbs .dropdown-menu>.active>a,#bookly-tbs .dropdown-menu>.active>a:focus,#bookly-tbs .dropdown-menu>.active>a:hover{color:#fff;text-decoration:none;background-color:#08c;outline:0}#bookly-tbs .dropdown-menu>.disabled>a,#bookly-tbs .dropdown-menu>.disabled>a:focus,#bookly-tbs .dropdown-menu>.disabled>a:hover{color:#d9dee4}#bookly-tbs .dropdown-menu>.disabled>a:focus,#bookly-tbs .dropdown-menu>.disabled>a:hover{text-decoration:none;cursor:not-allowed;background-color:transparent;background-image:none;filter:progid:DXImageTransform.Microsoft.gradient(enabled=false)}#bookly-tbs .open>.dropdown-menu{display:block}#bookly-tbs .open>a{outline:0}#bookly-tbs .dropdown-menu-right{right:0;left:auto}#bookly-tbs .dropdown-menu-left{right:auto;left:0}#bookly-tbs .dropdown-header{display:block;padding:3px 20px;font-size:13px;line-height:1.4;color:#d9dee4;white-space:nowrap}#bookly-tbs .dropdown-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:990}#bookly-tbs .pull-right>.dropdown-menu{right:0;left:auto}#bookly-tbs .dropup .caret,#bookly-tbs .navbar-fixed-bottom .dropdown .caret{content:"";border-top:0;border-bottom:5px dashed;border-bottom:5px solid\9}#bookly-tbs .dropup .dropdown-menu,#bookly-tbs .navbar-fixed-bottom .dropdown .dropdown-menu{top:auto;bottom:100%;margin-bottom:2px}@media (min-width:768px){#bookly-tbs .navbar-right .dropdown-menu{right:0;left:auto}#bookly-tbs .navbar-right .dropdown-menu-left{right:auto;left:0}}#bookly-tbs .btn-group,#bookly-tbs .btn-group-vertical{position:relative;display:inline-block;vertical-align:middle}#bookly-tbs .btn-group-vertical>.btn,#bookly-tbs .btn-group>.btn{position:relative;float:left}#bookly-tbs .btn-group-vertical>.btn.active,#bookly-tbs .btn-group-vertical>.btn:active,#bookly-tbs .btn-group-vertical>.btn:focus,#bookly-tbs .btn-group-vertical>.btn:hover,#bookly-tbs .btn-group>.btn.active,#bookly-tbs .btn-group>.btn:active,#bookly-tbs .btn-group>.btn:focus,#bookly-tbs .btn-group>.btn:hover{z-index:2}#bookly-tbs .btn-group .btn+.btn,#bookly-tbs .btn-group .btn+.btn-group,#bookly-tbs .btn-group .btn-group+.btn,#bookly-tbs .btn-group .btn-group+.btn-group{margin-left:-1px}#bookly-tbs .btn-toolbar{margin-left:-5px}#bookly-tbs .btn-toolbar .btn,#bookly-tbs .btn-toolbar .btn-group,#bookly-tbs .btn-toolbar .input-group{float:left}#bookly-tbs .btn-toolbar>.btn,#bookly-tbs .btn-toolbar>.btn-group,#bookly-tbs .btn-toolbar>.input-group{margin-left:5px}#bookly-tbs .btn-group>.btn:not(:first-child):not(:last-child):not(.dropdown-toggle){border-radius:0}#bookly-tbs .btn-group>.btn:first-child{margin-left:0}#bookly-tbs .btn-group>.btn:first-child:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .btn-group>.btn:last-child:not(:first-child),#bookly-tbs .btn-group>.dropdown-toggle:not(:first-child){border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group>.btn-group{float:left}#bookly-tbs .btn-group>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bookly-tbs .btn-group>.btn-group:first-child:not(:last-child)>.btn:last-child,#bookly-tbs .btn-group>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .btn-group>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group .dropdown-toggle:active,#bookly-tbs .btn-group.open .dropdown-toggle{outline:0}#bookly-tbs .btn-group>.btn+.dropdown-toggle{padding-right:8px;padding-left:8px}#bookly-tbs .btn-group>.btn-lg+.dropdown-toggle{padding-right:12px;padding-left:12px}#bookly-tbs .btn-group.open .dropdown-toggle{-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#bookly-tbs .btn-group.open .dropdown-toggle.btn-link{-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .btn .caret{margin-left:0}#bookly-tbs .btn-lg .caret{border-width:6px 6px 0;border-bottom-width:0}#bookly-tbs .dropup .btn-lg .caret{border-width:0 6px 6px}#bookly-tbs .btn-group-vertical>.btn,#bookly-tbs .btn-group-vertical>.btn-group,#bookly-tbs .btn-group-vertical>.btn-group>.btn{display:block;float:none;width:100%;max-width:100%}#bookly-tbs .btn-group-vertical>.btn-group>.btn{float:none}#bookly-tbs .btn-group-vertical>.btn+.btn,#bookly-tbs .btn-group-vertical>.btn+.btn-group,#bookly-tbs .btn-group-vertical>.btn-group+.btn,#bookly-tbs .btn-group-vertical>.btn-group+.btn-group{margin-top:-1px;margin-left:0}#bookly-tbs .btn-group-vertical>.btn:not(:first-child):not(:last-child){border-radius:0}#bookly-tbs .btn-group-vertical>.btn:first-child:not(:last-child){border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group-vertical>.btn:last-child:not(:first-child){border-top-left-radius:0;border-top-right-radius:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#bookly-tbs .btn-group-vertical>.btn-group:not(:first-child):not(:last-child)>.btn{border-radius:0}#bookly-tbs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.btn:last-child,#bookly-tbs .btn-group-vertical>.btn-group:first-child:not(:last-child)>.dropdown-toggle{border-bottom-right-radius:0;border-bottom-left-radius:0}#bookly-tbs .btn-group-vertical>.btn-group:last-child:not(:first-child)>.btn:first-child{border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .btn-group-justified{display:table;width:100%;table-layout:fixed;border-collapse:separate}#bookly-tbs .btn-group-justified>.btn,#bookly-tbs .btn-group-justified>.btn-group{display:table-cell;float:none;width:1%}#bookly-tbs .btn-group-justified>.btn-group .btn{width:100%}#bookly-tbs .btn-group-justified>.btn-group .dropdown-menu{left:auto}#bookly-tbs [data-toggle=buttons]>.btn input[type=checkbox],#bookly-tbs [data-toggle=buttons]>.btn input[type=radio],#bookly-tbs [data-toggle=buttons]>.btn-group>.btn input[type=checkbox],#bookly-tbs [data-toggle=buttons]>.btn-group>.btn input[type=radio]{position:absolute;clip:rect(0,0,0,0);pointer-events:none}#bookly-tbs .input-group{position:relative;display:table;border-collapse:separate}#bookly-tbs .input-group[class*=col-]{float:none;padding-right:0;padding-left:0}#bookly-tbs .input-group .form-control{position:relative;z-index:2;float:left;width:100%;margin-bottom:0}#bookly-tbs .input-group .form-control:focus{z-index:3}#bookly-tbs .input-group-lg>.form-control,#bookly-tbs .input-group-lg>.input-group-addon,#bookly-tbs .input-group-lg>.input-group-btn>.btn{height:46px;padding:10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}#bookly-tbs select.input-group-lg>.form-control,#bookly-tbs select.input-group-lg>.input-group-addon,#bookly-tbs select.input-group-lg>.input-group-btn>.btn{height:46px;line-height:46px}#bookly-tbs select[multiple].input-group-lg>.form-control,#bookly-tbs select[multiple].input-group-lg>.input-group-addon,#bookly-tbs select[multiple].input-group-lg>.input-group-btn>.btn,#bookly-tbs textarea.input-group-lg>.form-control,#bookly-tbs textarea.input-group-lg>.input-group-addon,#bookly-tbs textarea.input-group-lg>.input-group-btn>.btn{height:auto}#bookly-tbs .input-group-sm>.form-control,#bookly-tbs .input-group-sm>.input-group-addon,#bookly-tbs .input-group-sm>.input-group-btn>.btn{height:32px;padding:5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}#bookly-tbs select.input-group-sm>.form-control,#bookly-tbs select.input-group-sm>.input-group-addon,#bookly-tbs select.input-group-sm>.input-group-btn>.btn{height:32px;line-height:32px}#bookly-tbs select[multiple].input-group-sm>.form-control,#bookly-tbs select[multiple].input-group-sm>.input-group-addon,#bookly-tbs select[multiple].input-group-sm>.input-group-btn>.btn,#bookly-tbs textarea.input-group-sm>.form-control,#bookly-tbs textarea.input-group-sm>.input-group-addon,#bookly-tbs textarea.input-group-sm>.input-group-btn>.btn{height:auto}#bookly-tbs .input-group .form-control,#bookly-tbs .input-group-addon,#bookly-tbs .input-group-btn{display:table-cell}#bookly-tbs .input-group .form-control:not(:first-child):not(:last-child),#bookly-tbs .input-group-addon:not(:first-child):not(:last-child),#bookly-tbs .input-group-btn:not(:first-child):not(:last-child){border-radius:0}#bookly-tbs .input-group-addon,#bookly-tbs .input-group-btn{width:1%;white-space:nowrap;vertical-align:middle}#bookly-tbs .input-group-addon{padding:6px 12px;font-size:15px;font-weight:400;line-height:1;color:#3e424a;text-align:center;background-color:#e8ebf0;border:1px solid #d9dee4;border-radius:4px}#bookly-tbs .input-group-addon.input-sm{padding:5px 10px;font-size:13px;border-radius:3px}#bookly-tbs .input-group-addon.input-lg{padding:10px 16px;font-size:18px;border-radius:6px}#bookly-tbs .input-group-addon input[type=checkbox],#bookly-tbs .input-group-addon input[type=radio]{margin-top:0}#bookly-tbs .input-group .form-control:first-child,#bookly-tbs .input-group-addon:first-child,#bookly-tbs .input-group-btn:first-child>.btn,#bookly-tbs .input-group-btn:first-child>.btn-group>.btn,#bookly-tbs .input-group-btn:first-child>.dropdown-toggle,#bookly-tbs .input-group-btn:last-child>.btn-group:not(:last-child)>.btn,#bookly-tbs .input-group-btn:last-child>.btn:not(:last-child):not(.dropdown-toggle){border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .input-group-addon:first-child{border-right:0}#bookly-tbs .input-group .form-control:last-child,#bookly-tbs .input-group-addon:last-child,#bookly-tbs .input-group-btn:first-child>.btn-group:not(:first-child)>.btn,#bookly-tbs .input-group-btn:first-child>.btn:not(:first-child),#bookly-tbs .input-group-btn:last-child>.btn,#bookly-tbs .input-group-btn:last-child>.btn-group>.btn,#bookly-tbs .input-group-btn:last-child>.dropdown-toggle{border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .input-group-addon:last-child{border-left:0}#bookly-tbs .input-group-btn{position:relative;font-size:0;white-space:nowrap}#bookly-tbs .input-group-btn>.btn{position:relative}#bookly-tbs .input-group-btn>.btn+.btn{margin-left:-1px}#bookly-tbs .input-group-btn>.btn:active,#bookly-tbs .input-group-btn>.btn:focus,#bookly-tbs .input-group-btn>.btn:hover{z-index:2}#bookly-tbs .input-group-btn:first-child>.btn,#bookly-tbs .input-group-btn:first-child>.btn-group{margin-right:-1px}#bookly-tbs .input-group-btn:last-child>.btn,#bookly-tbs .input-group-btn:last-child>.btn-group{z-index:2;margin-left:-1px}#bookly-tbs .nav{padding-left:0;margin-bottom:0;list-style:none}#bookly-tbs .nav>li{position:relative;display:block}#bookly-tbs .nav>li>a{position:relative;display:block;padding:10px 15px}#bookly-tbs .nav>li>a:focus,#bookly-tbs .nav>li>a:hover{text-decoration:none;background-color:#e8ebf0}#bookly-tbs .nav>li.disabled>a{color:#d9dee4}#bookly-tbs .nav>li.disabled>a:focus,#bookly-tbs .nav>li.disabled>a:hover{color:#d9dee4;text-decoration:none;cursor:not-allowed;background-color:transparent}#bookly-tbs .nav .open>a,#bookly-tbs .nav .open>a:focus,#bookly-tbs .nav .open>a:hover{background-color:#e8ebf0;border-color:#08c}#bookly-tbs .nav .nav-divider{height:1px;margin:9.5px 0;overflow:hidden;background-color:#e5e5e5}#bookly-tbs .nav>li>a>img{max-width:none}#bookly-tbs .nav-tabs{border-bottom:1px solid #d9dee4}#bookly-tbs .nav-tabs>li{float:left;margin-bottom:-1px}#bookly-tbs .nav-tabs>li>a{margin-right:2px;line-height:1.4;border:1px solid transparent;border-radius:4px 4px 0 0}#bookly-tbs .nav-tabs>li>a:hover{border-color:#e8ebf0 #e8ebf0 #d9dee4}#bookly-tbs .nav-tabs>li.active>a,#bookly-tbs .nav-tabs>li.active>a:focus,#bookly-tbs .nav-tabs>li.active>a:hover{color:#8a929e;cursor:default;background-color:transparent;border:1px solid transparent;border-bottom-color:transparent}#bookly-tbs .nav-tabs.nav-justified{width:100%;border-bottom:0}#bookly-tbs .nav-tabs.nav-justified>li{float:none}#bookly-tbs .nav-tabs.nav-justified>li>a{margin-bottom:5px;text-align:center}#bookly-tbs .nav-tabs.nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:1px){#bookly-tbs .nav-tabs.nav-justified>li{display:table-cell;width:1%}#bookly-tbs .nav-tabs.nav-justified>li>a{margin-bottom:0}}#bookly-tbs .nav-tabs.nav-justified>li>a{margin-right:0;border-radius:4px}#bookly-tbs .nav-tabs.nav-justified>.active>a,#bookly-tbs .nav-tabs.nav-justified>.active>a:focus,#bookly-tbs .nav-tabs.nav-justified>.active>a:hover{border:1px solid #08c}@media (min-width:768px){#bookly-tbs .nav-tabs.nav-justified>li>a{border-bottom:1px solid #d9dee4;border-radius:4px 4px 0 0}#bookly-tbs .nav-tabs.nav-justified>.active>a,#bookly-tbs .nav-tabs.nav-justified>.active>a:focus,#bookly-tbs .nav-tabs.nav-justified>.active>a:hover{border-bottom-color:#08c}}#bookly-tbs .nav-pills>li{float:left}#bookly-tbs .nav-pills>li>a{border-radius:4px}#bookly-tbs .nav-pills>li+li{margin-left:2px}#bookly-tbs .nav-pills>li.active>a,#bookly-tbs .nav-pills>li.active>a:focus,#bookly-tbs .nav-pills>li.active>a:hover{color:#fff;background-color:#08c}#bookly-tbs .nav-stacked>li{float:none}#bookly-tbs .nav-stacked>li+li{margin-top:2px;margin-left:0}#bookly-tbs .nav-justified{width:100%}#bookly-tbs .nav-justified>li{float:none}#bookly-tbs .nav-justified>li>a{margin-bottom:5px;text-align:center}#bookly-tbs .nav-justified>.dropdown .dropdown-menu{top:auto;left:auto}@media (min-width:1px){#bookly-tbs .nav-justified>li{display:table-cell;width:1%}#bookly-tbs .nav-justified>li>a{margin-bottom:0}}#bookly-tbs .nav-tabs-justified{border-bottom:0}#bookly-tbs .nav-tabs-justified>li>a{margin-right:0;border-radius:4px}#bookly-tbs .nav-tabs-justified>.active>a,#bookly-tbs .nav-tabs-justified>.active>a:focus,#bookly-tbs .nav-tabs-justified>.active>a:hover{border:1px solid #08c}@media (min-width:768px){#bookly-tbs .nav-tabs-justified>li>a{border-bottom:1px solid #d9dee4;border-radius:4px 4px 0 0}#bookly-tbs .nav-tabs-justified>.active>a,#bookly-tbs .nav-tabs-justified>.active>a:focus,#bookly-tbs .nav-tabs-justified>.active>a:hover{border-bottom-color:#08c}}#bookly-tbs .tab-content>.tab-pane{display:none}#bookly-tbs .tab-content>.active{display:block}#bookly-tbs .nav-tabs .dropdown-menu{margin-top:-1px;border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .navbar{position:relative;min-height:50px;margin-bottom:21px;border:1px solid transparent}@media (min-width:768px){#bookly-tbs .navbar{border-radius:4px}}@media (min-width:768px){#bookly-tbs .navbar-header{float:left}}#bookly-tbs .navbar-collapse{padding-right:10px;padding-left:10px;overflow-x:visible;-webkit-overflow-scrolling:touch;border-top:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1)}#bookly-tbs .navbar-collapse.in{overflow-y:auto}@media (min-width:768px){#bookly-tbs .navbar-collapse{width:auto;border-top:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .navbar-collapse.collapse{display:block!important;height:auto!important;padding-bottom:0;overflow:visible!important}#bookly-tbs .navbar-collapse.in{overflow-y:visible}#bookly-tbs .navbar-fixed-bottom .navbar-collapse,#bookly-tbs .navbar-fixed-top .navbar-collapse,#bookly-tbs .navbar-static-top .navbar-collapse{padding-right:0;padding-left:0}}#bookly-tbs .navbar-fixed-bottom .navbar-collapse,#bookly-tbs .navbar-fixed-top .navbar-collapse{max-height:340px}@media (max-device-width:480px) and (orientation:landscape){#bookly-tbs .navbar-fixed-bottom .navbar-collapse,#bookly-tbs .navbar-fixed-top .navbar-collapse{max-height:200px}}#bookly-tbs .container-fluid>.navbar-collapse,#bookly-tbs .container-fluid>.navbar-header,#bookly-tbs .container>.navbar-collapse,#bookly-tbs .container>.navbar-header{margin-right:-10px;margin-left:-10px}@media (min-width:768px){#bookly-tbs .container-fluid>.navbar-collapse,#bookly-tbs .container-fluid>.navbar-header,#bookly-tbs .container>.navbar-collapse,#bookly-tbs .container>.navbar-header{margin-right:0;margin-left:0}}#bookly-tbs .navbar-static-top{z-index:1000;border-width:0 0 1px}@media (min-width:768px){#bookly-tbs .navbar-static-top{border-radius:0}}#bookly-tbs .navbar-fixed-bottom,#bookly-tbs .navbar-fixed-top{position:fixed;right:0;left:0;z-index:1030}@media (min-width:768px){#bookly-tbs .navbar-fixed-bottom,#bookly-tbs .navbar-fixed-top{border-radius:0}}#bookly-tbs .navbar-fixed-top{top:0;border-width:0 0 1px}#bookly-tbs .navbar-fixed-bottom{bottom:0;margin-bottom:0;border-width:1px 0 0}#bookly-tbs .navbar-brand{float:left;height:50px;padding:14.5px 10px;font-size:18px;line-height:21px}#bookly-tbs .navbar-brand:focus,#bookly-tbs .navbar-brand:hover{text-decoration:none}#bookly-tbs .navbar-brand>img{display:block}@media (min-width:768px){#bookly-tbs .navbar>.container .navbar-brand,#bookly-tbs .navbar>.container-fluid .navbar-brand{margin-left:-10px}}#bookly-tbs .navbar-toggle{position:relative;float:right;padding:9px 10px;margin-top:8px;margin-right:10px;margin-bottom:8px;background-color:transparent;background-image:none;border:1px solid transparent;border-radius:4px}#bookly-tbs .navbar-toggle:focus{outline:0}#bookly-tbs .navbar-toggle .icon-bar{display:block;width:22px;height:2px;border-radius:1px}#bookly-tbs .navbar-toggle .icon-bar+.icon-bar{margin-top:4px}@media (min-width:768px){#bookly-tbs .navbar-toggle{display:none}}#bookly-tbs .navbar-nav{margin:7.25px -10px}#bookly-tbs .navbar-nav>li>a{padding-top:10px;padding-bottom:10px;line-height:21px}@media (max-width:767px){#bookly-tbs .navbar-nav .open .dropdown-menu{position:static;float:none;width:auto;margin-top:0;background-color:transparent;border:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .navbar-nav .open .dropdown-menu .dropdown-header,#bookly-tbs .navbar-nav .open .dropdown-menu>li>a{padding:5px 15px 5px 25px}#bookly-tbs .navbar-nav .open .dropdown-menu>li>a{line-height:21px}#bookly-tbs .navbar-nav .open .dropdown-menu>li>a:focus,#bookly-tbs .navbar-nav .open .dropdown-menu>li>a:hover{background-image:none}}@media (min-width:768px){#bookly-tbs .navbar-nav{float:left;margin:0}#bookly-tbs .navbar-nav>li{float:left}#bookly-tbs .navbar-nav>li>a{padding-top:14.5px;padding-bottom:14.5px}}#bookly-tbs .navbar-form{padding:10px 10px;margin-top:7.5px;margin-right:-10px;margin-bottom:7.5px;margin-left:-10px;border-top:1px solid transparent;border-bottom:1px solid transparent;-webkit-box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1);box-shadow:inset 0 1px 0 rgba(255,255,255,.1),0 1px 0 rgba(255,255,255,.1)}@media (min-width:768px){#bookly-tbs .navbar-form .form-group{display:inline-block;margin-bottom:0;vertical-align:middle}#bookly-tbs .navbar-form .form-control{display:inline-block;width:auto;vertical-align:middle}#bookly-tbs .navbar-form .form-control-static{display:inline-block}#bookly-tbs .navbar-form .input-group{display:inline-table;vertical-align:middle}#bookly-tbs .navbar-form .input-group .form-control,#bookly-tbs .navbar-form .input-group .input-group-addon,#bookly-tbs .navbar-form .input-group .input-group-btn{width:auto}#bookly-tbs .navbar-form .input-group>.form-control{width:100%}#bookly-tbs .navbar-form .control-label{margin-bottom:0;vertical-align:middle}#bookly-tbs .navbar-form .checkbox,#bookly-tbs .navbar-form .radio{display:inline-block;margin-top:0;margin-bottom:0;vertical-align:middle}#bookly-tbs .navbar-form .has-feedback .form-control-feedback{top:0}}@media (max-width:767px){#bookly-tbs .navbar-form .form-group{margin-bottom:5px}#bookly-tbs .navbar-form .form-group:last-child{margin-bottom:0}}@media (min-width:768px){#bookly-tbs .navbar-form{width:auto;padding-top:0;padding-bottom:0;margin-right:0;margin-left:0;border:0;-webkit-box-shadow:none;box-shadow:none}}#bookly-tbs .navbar-nav>li>.dropdown-menu{margin-top:0;border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .navbar-fixed-bottom .navbar-nav>li>.dropdown-menu{margin-bottom:0;border-top-left-radius:4px;border-top-right-radius:4px;border-bottom-right-radius:0;border-bottom-left-radius:0}#bookly-tbs .navbar-btn{margin-top:7.5px;margin-bottom:7.5px}#bookly-tbs .navbar-btn.btn-sm{margin-top:9px;margin-bottom:9px}#bookly-tbs .navbar-btn.btn-xs{margin-top:14px;margin-bottom:14px}#bookly-tbs .navbar-text{margin-top:14.5px;margin-bottom:14.5px}@media (min-width:768px){#bookly-tbs .navbar-text{float:left;margin-right:10px;margin-left:10px}}@media (min-width:768px){#bookly-tbs .navbar-left{float:left!important}#bookly-tbs .navbar-right{float:right!important;margin-right:-10px}#bookly-tbs .navbar-right~.navbar-right{margin-right:0}}#bookly-tbs .navbar-default{background-color:#f8f8f8;border-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-brand{color:#777}#bookly-tbs .navbar-default .navbar-brand:focus,#bookly-tbs .navbar-default .navbar-brand:hover{color:#5e5e5e;background-color:transparent}#bookly-tbs .navbar-default .navbar-text{color:#777}#bookly-tbs .navbar-default .navbar-nav>li>a{color:#777}#bookly-tbs .navbar-default .navbar-nav>li>a:focus,#bookly-tbs .navbar-default .navbar-nav>li>a:hover{color:#333;background-color:transparent}#bookly-tbs .navbar-default .navbar-nav>.active>a,#bookly-tbs .navbar-default .navbar-nav>.active>a:focus,#bookly-tbs .navbar-default .navbar-nav>.active>a:hover{color:#555;background-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-nav>.disabled>a,#bookly-tbs .navbar-default .navbar-nav>.disabled>a:focus,#bookly-tbs .navbar-default .navbar-nav>.disabled>a:hover{color:#ccc;background-color:transparent}#bookly-tbs .navbar-default .navbar-toggle{border-color:#e8ebf0}#bookly-tbs .navbar-default .navbar-toggle:focus,#bookly-tbs .navbar-default .navbar-toggle:hover{background-color:#e8ebf0}#bookly-tbs .navbar-default .navbar-toggle .icon-bar{background-color:#8a929e}#bookly-tbs .navbar-default .navbar-collapse,#bookly-tbs .navbar-default .navbar-form{border-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-nav>.open>a,#bookly-tbs .navbar-default .navbar-nav>.open>a:focus,#bookly-tbs .navbar-default .navbar-nav>.open>a:hover{color:#555;background-color:#e7e7e7}@media (max-width:767px){#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>li>a{color:#777}#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>li>a:focus,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>li>a:hover{color:#333;background-color:transparent}#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.active>a,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.active>a:focus,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.active>a:hover{color:#555;background-color:#e7e7e7}#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:focus,#bookly-tbs .navbar-default .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#ccc;background-color:transparent}}#bookly-tbs .navbar-default .navbar-link{color:#777}#bookly-tbs .navbar-default .navbar-link:hover{color:#333}#bookly-tbs .navbar-default .btn-link{color:#777}#bookly-tbs .navbar-default .btn-link:focus,#bookly-tbs .navbar-default .btn-link:hover{color:#333}#bookly-tbs .navbar-default .btn-link[disabled]:focus,#bookly-tbs .navbar-default .btn-link[disabled]:hover,#bookly-tbs fieldset[disabled] .navbar-default .btn-link:focus,#bookly-tbs fieldset[disabled] .navbar-default .btn-link:hover{color:#ccc}#bookly-tbs .navbar-inverse{background-color:#222;border-color:#080808}#bookly-tbs .navbar-inverse .navbar-brand{color:#fff}#bookly-tbs .navbar-inverse .navbar-brand:focus,#bookly-tbs .navbar-inverse .navbar-brand:hover{color:#fff;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-text{color:#fff}#bookly-tbs .navbar-inverse .navbar-nav>li>a{color:#fff}#bookly-tbs .navbar-inverse .navbar-nav>li>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>li>a:hover{color:#fff;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-nav>.active>a,#bookly-tbs .navbar-inverse .navbar-nav>.active>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>.active>a:hover{color:#fff;background-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav>.disabled>a,#bookly-tbs .navbar-inverse .navbar-nav>.disabled>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>.disabled>a:hover{color:#444;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-toggle{border-color:#333}#bookly-tbs .navbar-inverse .navbar-toggle:focus,#bookly-tbs .navbar-inverse .navbar-toggle:hover{background-color:#333}#bookly-tbs .navbar-inverse .navbar-toggle .icon-bar{background-color:#fff}#bookly-tbs .navbar-inverse .navbar-collapse,#bookly-tbs .navbar-inverse .navbar-form{border-color:#101010}#bookly-tbs .navbar-inverse .navbar-nav>.open>a,#bookly-tbs .navbar-inverse .navbar-nav>.open>a:focus,#bookly-tbs .navbar-inverse .navbar-nav>.open>a:hover{color:#fff;background-color:#080808}@media (max-width:767px){#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.dropdown-header{border-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu .divider{background-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>li>a{color:#fff}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:focus,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>li>a:hover{color:#fff;background-color:transparent}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:focus,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.active>a:hover{color:#fff;background-color:#080808}#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:focus,#bookly-tbs .navbar-inverse .navbar-nav .open .dropdown-menu>.disabled>a:hover{color:#444;background-color:transparent}}#bookly-tbs .navbar-inverse .navbar-link{color:#fff}#bookly-tbs .navbar-inverse .navbar-link:hover{color:#fff}#bookly-tbs .navbar-inverse .btn-link{color:#fff}#bookly-tbs .navbar-inverse .btn-link:focus,#bookly-tbs .navbar-inverse .btn-link:hover{color:#fff}#bookly-tbs .navbar-inverse .btn-link[disabled]:focus,#bookly-tbs .navbar-inverse .btn-link[disabled]:hover,#bookly-tbs fieldset[disabled] .navbar-inverse .btn-link:focus,#bookly-tbs fieldset[disabled] .navbar-inverse .btn-link:hover{color:#444}#bookly-tbs .breadcrumb{padding:8px 15px;margin-bottom:21px;list-style:none;background-color:#f5f5f5;border-radius:4px}#bookly-tbs .breadcrumb>li{display:inline-block}#bookly-tbs .breadcrumb>li+li:before{padding:0 5px;color:#ccc;content:"/\00a0"}#bookly-tbs .breadcrumb>.active{color:#d9dee4}#bookly-tbs .pagination{display:inline-block;padding-left:0;margin:21px 0;border-radius:4px}#bookly-tbs .pagination>li{display:inline}#bookly-tbs .pagination>li>a,#bookly-tbs .pagination>li>span{position:relative;float:left;padding:6px 12px;margin-left:-1px;line-height:1.4;color:#08c;text-decoration:none;background-color:#fff;border:1px solid #e8ebf0}#bookly-tbs .pagination>li:first-child>a,#bookly-tbs .pagination>li:first-child>span{margin-left:0;border-top-left-radius:4px;border-bottom-left-radius:4px}#bookly-tbs .pagination>li:last-child>a,#bookly-tbs .pagination>li:last-child>span{border-top-right-radius:4px;border-bottom-right-radius:4px}#bookly-tbs .pagination>li>a:focus,#bookly-tbs .pagination>li>a:hover,#bookly-tbs .pagination>li>span:focus,#bookly-tbs .pagination>li>span:hover{z-index:2;color:#005580;background-color:#e8ebf0;border-color:#e8ebf0}#bookly-tbs .pagination>.active>a,#bookly-tbs .pagination>.active>a:focus,#bookly-tbs .pagination>.active>a:hover,#bookly-tbs .pagination>.active>span,#bookly-tbs .pagination>.active>span:focus,#bookly-tbs .pagination>.active>span:hover{z-index:3;color:#fff;cursor:default;background-color:#08c;border-color:#08c}#bookly-tbs .pagination>.disabled>a,#bookly-tbs .pagination>.disabled>a:focus,#bookly-tbs .pagination>.disabled>a:hover,#bookly-tbs .pagination>.disabled>span,#bookly-tbs .pagination>.disabled>span:focus,#bookly-tbs .pagination>.disabled>span:hover{color:#d9dee4;pointer-events:none;cursor:not-allowed;background-color:#fff;border-color:#e8ebf0}#bookly-tbs .pagination-lg>li>a,#bookly-tbs .pagination-lg>li>span{padding:10px 16px;font-size:18px;line-height:1.3333333}#bookly-tbs .pagination-lg>li:first-child>a,#bookly-tbs .pagination-lg>li:first-child>span{border-top-left-radius:6px;border-bottom-left-radius:6px}#bookly-tbs .pagination-lg>li:last-child>a,#bookly-tbs .pagination-lg>li:last-child>span{border-top-right-radius:6px;border-bottom-right-radius:6px}#bookly-tbs .pagination-sm>li>a,#bookly-tbs .pagination-sm>li>span{padding:5px 10px;font-size:13px;line-height:1.53846154}#bookly-tbs .pagination-sm>li:first-child>a,#bookly-tbs .pagination-sm>li:first-child>span{border-top-left-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .pagination-sm>li:last-child>a,#bookly-tbs .pagination-sm>li:last-child>span{border-top-right-radius:3px;border-bottom-right-radius:3px}#bookly-tbs .pager{padding-left:0;margin:21px 0;text-align:center;list-style:none}#bookly-tbs .pager li{display:inline}#bookly-tbs .pager li>a,#bookly-tbs .pager li>span{display:inline-block;padding:5px 14px;background-color:#fff;border:1px solid #e8ebf0;border-radius:15px}#bookly-tbs .pager li>a:focus,#bookly-tbs .pager li>a:hover{text-decoration:none;background-color:#e8ebf0}#bookly-tbs .pager .next>a,#bookly-tbs .pager .next>span{float:right}#bookly-tbs .pager .previous>a,#bookly-tbs .pager .previous>span{float:left}#bookly-tbs .pager .disabled>a,#bookly-tbs .pager .disabled>a:focus,#bookly-tbs .pager .disabled>a:hover,#bookly-tbs .pager .disabled>span{color:#d9dee4;pointer-events:none;cursor:not-allowed;background-color:#fff}#bookly-tbs .label{display:inline;padding:.2em .6em .3em;font-size:75%;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:baseline;border-radius:.25em}#bookly-tbs a.label:focus,#bookly-tbs a.label:hover{color:#fff;text-decoration:none;cursor:pointer}#bookly-tbs .label:empty{display:none}#bookly-tbs .btn .label{position:relative;top:-1px}#bookly-tbs .label-default{background-color:#d9dee4}#bookly-tbs .label-default[href]:focus,#bookly-tbs .label-default[href]:hover{background-color:#bbc4cf}#bookly-tbs .label-primary{background-color:#08c}#bookly-tbs .label-primary[href]:focus,#bookly-tbs .label-primary[href]:hover{background-color:#069}#bookly-tbs .label-success{background-color:#5cb85c}#bookly-tbs .label-success[href]:focus,#bookly-tbs .label-success[href]:hover{background-color:#449d44}#bookly-tbs .label-info{background-color:#5bc0de}#bookly-tbs .label-info[href]:focus,#bookly-tbs .label-info[href]:hover{background-color:#31b0d5}#bookly-tbs .label-warning{background-color:#f0ad4e}#bookly-tbs .label-warning[href]:focus,#bookly-tbs .label-warning[href]:hover{background-color:#ec971f}#bookly-tbs .label-danger{background-color:#d9534f}#bookly-tbs .label-danger[href]:focus,#bookly-tbs .label-danger[href]:hover{background-color:#c9302c}#bookly-tbs .badge{display:inline-block;min-width:10px;padding:3px 7px;font-size:13px;font-weight:700;line-height:1;color:#fff;text-align:center;white-space:nowrap;vertical-align:middle;background-color:#d9dee4;border-radius:10px}#bookly-tbs .badge:empty{display:none}#bookly-tbs .btn .badge{position:relative;top:-1px}#bookly-tbs .btn-group-xs>.btn .badge,#bookly-tbs .btn-xs .badge{top:0;padding:1px 5px}#bookly-tbs a.badge:focus,#bookly-tbs a.badge:hover{color:#fff;text-decoration:none;cursor:pointer}#bookly-tbs .list-group-item.active>.badge,#bookly-tbs .nav-pills>.active>a>.badge{color:#08c;background-color:#fff}#bookly-tbs .list-group-item>.badge{float:right}#bookly-tbs .list-group-item>.badge+.badge{margin-right:5px}#bookly-tbs .nav-pills>li>a>.badge{margin-left:3px}#bookly-tbs .jumbotron{padding-top:30px;padding-bottom:30px;margin-bottom:30px;color:inherit;background-color:#e8ebf0}#bookly-tbs .jumbotron .h1,#bookly-tbs .jumbotron h1{color:inherit}#bookly-tbs .jumbotron p{margin-bottom:15px;font-size:23px;font-weight:200}#bookly-tbs .jumbotron>hr{border-top-color:#c9d0dc}#bookly-tbs .container .jumbotron,#bookly-tbs .container-fluid .jumbotron{padding-right:10px;padding-left:10px;border-radius:6px}#bookly-tbs .jumbotron .container{max-width:100%}@media screen and (min-width:768px){#bookly-tbs .jumbotron{padding-top:48px;padding-bottom:48px}#bookly-tbs .container .jumbotron,#bookly-tbs .container-fluid .jumbotron{padding-right:60px;padding-left:60px}#bookly-tbs .jumbotron .h1,#bookly-tbs .jumbotron h1{font-size:68px}}#bookly-tbs .thumbnail{display:block;padding:4px;margin-bottom:21px;line-height:1.4;background-color:transparent;border:1px solid #e8ebf0;border-radius:4px;-webkit-transition:border .2s ease-in-out;-o-transition:border .2s ease-in-out;transition:border .2s ease-in-out}#bookly-tbs .thumbnail a>img,#bookly-tbs .thumbnail>img{margin-right:auto;margin-left:auto}#bookly-tbs a.thumbnail.active,#bookly-tbs a.thumbnail:focus,#bookly-tbs a.thumbnail:hover{border-color:#08c}#bookly-tbs .thumbnail .caption{padding:9px;color:#3e424a}#bookly-tbs .alert{padding:15px;margin-bottom:21px;border:1px solid transparent;border-radius:4px}#bookly-tbs .alert h4{margin-top:0;color:inherit}#bookly-tbs .alert .alert-link{font-weight:700}#bookly-tbs .alert>p,#bookly-tbs .alert>ul{margin-bottom:0}#bookly-tbs .alert>p+p{margin-top:5px}#bookly-tbs .alert-dismissable,#bookly-tbs .alert-dismissible{padding-right:35px}#bookly-tbs .alert-dismissable .close,#bookly-tbs .alert-dismissible .close{position:relative;top:-2px;right:-21px;color:inherit}#bookly-tbs .alert-success{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}#bookly-tbs .alert-success hr{border-top-color:#c9e2b3}#bookly-tbs .alert-success .alert-link{color:#2b542c}#bookly-tbs .alert-info{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}#bookly-tbs .alert-info hr{border-top-color:#a6e1ec}#bookly-tbs .alert-info .alert-link{color:#245269}#bookly-tbs .alert-warning{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}#bookly-tbs .alert-warning hr{border-top-color:#f7e1b5}#bookly-tbs .alert-warning .alert-link{color:#66512c}#bookly-tbs .alert-danger{color:#a94442;background-color:#f2dede;border-color:#ebccd1}#bookly-tbs .alert-danger hr{border-top-color:#e4b9c0}#bookly-tbs .alert-danger .alert-link{color:#843534}@-webkit-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@-o-keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}@keyframes progress-bar-stripes{from{background-position:40px 0}to{background-position:0 0}}#bookly-tbs .progress{height:21px;margin-bottom:21px;overflow:hidden;background-color:#f5f5f5;border-radius:4px;-webkit-box-shadow:inset 0 1px 2px rgba(0,0,0,.1);box-shadow:inset 0 1px 2px rgba(0,0,0,.1)}#bookly-tbs .progress-bar{float:left;width:0;height:100%;font-size:13px;line-height:21px;color:#fff;text-align:center;background-color:#08c;-webkit-box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);box-shadow:inset 0 -1px 0 rgba(0,0,0,.15);-webkit-transition:width .6s ease;-o-transition:width .6s ease;transition:width .6s ease}#bookly-tbs .progress-bar-striped,#bookly-tbs .progress-striped .progress-bar{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);-webkit-background-size:40px 40px;background-size:40px 40px}#bookly-tbs .progress-bar.active,#bookly-tbs .progress.active .progress-bar{-webkit-animation:progress-bar-stripes 2s linear infinite;-o-animation:progress-bar-stripes 2s linear infinite;animation:progress-bar-stripes 2s linear infinite}#bookly-tbs .progress-bar-success{background-color:#5cb85c}#bookly-tbs .progress-striped .progress-bar-success{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .progress-bar-info{background-color:#5bc0de}#bookly-tbs .progress-striped .progress-bar-info{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .progress-bar-warning{background-color:#f0ad4e}#bookly-tbs .progress-striped .progress-bar-warning{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .progress-bar-danger{background-color:#d9534f}#bookly-tbs .progress-striped .progress-bar-danger{background-image:-webkit-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:-o-linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent);background-image:linear-gradient(45deg,rgba(255,255,255,.15) 25%,transparent 25%,transparent 50%,rgba(255,255,255,.15) 50%,rgba(255,255,255,.15) 75%,transparent 75%,transparent)}#bookly-tbs .media{margin-top:15px}#bookly-tbs .media:first-child{margin-top:0}#bookly-tbs .media,#bookly-tbs .media-body{overflow:hidden;zoom:1}#bookly-tbs .media-body{width:10000px}#bookly-tbs .media-object{display:block}#bookly-tbs .media-object.img-thumbnail{max-width:none}#bookly-tbs .media-right,#bookly-tbs .media>.pull-right{padding-left:10px}#bookly-tbs .media-left,#bookly-tbs .media>.pull-left{padding-right:10px}#bookly-tbs .media-body,#bookly-tbs .media-left,#bookly-tbs .media-right{display:table-cell;vertical-align:top}#bookly-tbs .media-middle{vertical-align:middle}#bookly-tbs .media-bottom{vertical-align:bottom}#bookly-tbs .media-heading{margin-top:0;margin-bottom:5px}#bookly-tbs .media-list{padding-left:0;list-style:none}#bookly-tbs .list-group{padding-left:0;margin-bottom:20px}#bookly-tbs .list-group-item{position:relative;display:block;padding:10px 15px;margin-bottom:-1px;background-color:#fff;border:1px solid #e8ebf0}#bookly-tbs .list-group-item:first-child{border-top-left-radius:4px;border-top-right-radius:4px}#bookly-tbs .list-group-item:last-child{margin-bottom:0;border-bottom-right-radius:4px;border-bottom-left-radius:4px}#bookly-tbs a.list-group-item,#bookly-tbs button.list-group-item{color:#555}#bookly-tbs a.list-group-item .list-group-item-heading,#bookly-tbs button.list-group-item .list-group-item-heading{color:#333}#bookly-tbs a.list-group-item:focus,#bookly-tbs a.list-group-item:hover,#bookly-tbs button.list-group-item:focus,#bookly-tbs button.list-group-item:hover{color:#555;text-decoration:none;background-color:#f5f5f5}#bookly-tbs button.list-group-item{width:100%;text-align:left}#bookly-tbs .list-group-item.disabled,#bookly-tbs .list-group-item.disabled:focus,#bookly-tbs .list-group-item.disabled:hover{color:#d9dee4;cursor:not-allowed;background-color:#e8ebf0}#bookly-tbs .list-group-item.disabled .list-group-item-heading,#bookly-tbs .list-group-item.disabled:focus .list-group-item-heading,#bookly-tbs .list-group-item.disabled:hover .list-group-item-heading{color:inherit}#bookly-tbs .list-group-item.disabled .list-group-item-text,#bookly-tbs .list-group-item.disabled:focus .list-group-item-text,#bookly-tbs .list-group-item.disabled:hover .list-group-item-text{color:#d9dee4}#bookly-tbs .list-group-item.active,#bookly-tbs .list-group-item.active:focus,#bookly-tbs .list-group-item.active:hover{z-index:2;color:#fff;background-color:#08c;border-color:#08c}#bookly-tbs .list-group-item.active .list-group-item-heading,#bookly-tbs .list-group-item.active .list-group-item-heading>.small,#bookly-tbs .list-group-item.active .list-group-item-heading>small,#bookly-tbs .list-group-item.active:focus .list-group-item-heading,#bookly-tbs .list-group-item.active:focus .list-group-item-heading>.small,#bookly-tbs .list-group-item.active:focus .list-group-item-heading>small,#bookly-tbs .list-group-item.active:hover .list-group-item-heading,#bookly-tbs .list-group-item.active:hover .list-group-item-heading>.small,#bookly-tbs .list-group-item.active:hover .list-group-item-heading>small{color:inherit}#bookly-tbs .list-group-item.active .list-group-item-text,#bookly-tbs .list-group-item.active:focus .list-group-item-text,#bookly-tbs .list-group-item.active:hover .list-group-item-text{color:#9df}#bookly-tbs .list-group-item-success{color:#3c763d;background-color:#dff0d8}#bookly-tbs a.list-group-item-success,#bookly-tbs button.list-group-item-success{color:#3c763d}#bookly-tbs a.list-group-item-success .list-group-item-heading,#bookly-tbs button.list-group-item-success .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-success:focus,#bookly-tbs a.list-group-item-success:hover,#bookly-tbs button.list-group-item-success:focus,#bookly-tbs button.list-group-item-success:hover{color:#3c763d;background-color:#d0e9c6}#bookly-tbs a.list-group-item-success.active,#bookly-tbs a.list-group-item-success.active:focus,#bookly-tbs a.list-group-item-success.active:hover,#bookly-tbs button.list-group-item-success.active,#bookly-tbs button.list-group-item-success.active:focus,#bookly-tbs button.list-group-item-success.active:hover{color:#fff;background-color:#3c763d;border-color:#3c763d}#bookly-tbs .list-group-item-info{color:#31708f;background-color:#d9edf7}#bookly-tbs a.list-group-item-info,#bookly-tbs button.list-group-item-info{color:#31708f}#bookly-tbs a.list-group-item-info .list-group-item-heading,#bookly-tbs button.list-group-item-info .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-info:focus,#bookly-tbs a.list-group-item-info:hover,#bookly-tbs button.list-group-item-info:focus,#bookly-tbs button.list-group-item-info:hover{color:#31708f;background-color:#c4e3f3}#bookly-tbs a.list-group-item-info.active,#bookly-tbs a.list-group-item-info.active:focus,#bookly-tbs a.list-group-item-info.active:hover,#bookly-tbs button.list-group-item-info.active,#bookly-tbs button.list-group-item-info.active:focus,#bookly-tbs button.list-group-item-info.active:hover{color:#fff;background-color:#31708f;border-color:#31708f}#bookly-tbs .list-group-item-warning{color:#8a6d3b;background-color:#fcf8e3}#bookly-tbs a.list-group-item-warning,#bookly-tbs button.list-group-item-warning{color:#8a6d3b}#bookly-tbs a.list-group-item-warning .list-group-item-heading,#bookly-tbs button.list-group-item-warning .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-warning:focus,#bookly-tbs a.list-group-item-warning:hover,#bookly-tbs button.list-group-item-warning:focus,#bookly-tbs button.list-group-item-warning:hover{color:#8a6d3b;background-color:#faf2cc}#bookly-tbs a.list-group-item-warning.active,#bookly-tbs a.list-group-item-warning.active:focus,#bookly-tbs a.list-group-item-warning.active:hover,#bookly-tbs button.list-group-item-warning.active,#bookly-tbs button.list-group-item-warning.active:focus,#bookly-tbs button.list-group-item-warning.active:hover{color:#fff;background-color:#8a6d3b;border-color:#8a6d3b}#bookly-tbs .list-group-item-danger{color:#a94442;background-color:#f2dede}#bookly-tbs a.list-group-item-danger,#bookly-tbs button.list-group-item-danger{color:#a94442}#bookly-tbs a.list-group-item-danger .list-group-item-heading,#bookly-tbs button.list-group-item-danger .list-group-item-heading{color:inherit}#bookly-tbs a.list-group-item-danger:focus,#bookly-tbs a.list-group-item-danger:hover,#bookly-tbs button.list-group-item-danger:focus,#bookly-tbs button.list-group-item-danger:hover{color:#a94442;background-color:#ebcccc}#bookly-tbs a.list-group-item-danger.active,#bookly-tbs a.list-group-item-danger.active:focus,#bookly-tbs a.list-group-item-danger.active:hover,#bookly-tbs button.list-group-item-danger.active,#bookly-tbs button.list-group-item-danger.active:focus,#bookly-tbs button.list-group-item-danger.active:hover{color:#fff;background-color:#a94442;border-color:#a94442}#bookly-tbs .list-group-item-heading{margin-top:0;margin-bottom:5px}#bookly-tbs .list-group-item-text{margin-bottom:0;line-height:1.3}#bookly-tbs .panel{margin-bottom:21px;background-color:#fff;border:2px solid transparent;border-radius:4px;-webkit-box-shadow:0 1px 1px rgba(0,0,0,.05);box-shadow:0 1px 1px rgba(0,0,0,.05)}#bookly-tbs .panel-body{padding:15px}#bookly-tbs .panel-heading{padding:15px;border-bottom:1px solid transparent;border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel-heading>.dropdown .dropdown-toggle{color:inherit}#bookly-tbs .panel-title{margin-top:0;margin-bottom:0;font-size:15px;color:inherit}#bookly-tbs .panel-title>.small,#bookly-tbs .panel-title>.small>a,#bookly-tbs .panel-title>a,#bookly-tbs .panel-title>small,#bookly-tbs .panel-title>small>a{color:inherit}#bookly-tbs .panel-footer{padding:15px;background-color:#e8ebf0;border-top:1px solid #e8ebf0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.list-group,#bookly-tbs .panel>.panel-collapse>.list-group{margin-bottom:0}#bookly-tbs .panel>.list-group .list-group-item,#bookly-tbs .panel>.panel-collapse>.list-group .list-group-item{border-width:1px 0;border-radius:0}#bookly-tbs .panel>.list-group:first-child .list-group-item:first-child,#bookly-tbs .panel>.panel-collapse>.list-group:first-child .list-group-item:first-child{border-top:0;border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel>.list-group:last-child .list-group-item:last-child,#bookly-tbs .panel>.panel-collapse>.list-group:last-child .list-group-item:last-child{border-bottom:0;border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.panel-heading+.panel-collapse>.list-group .list-group-item:first-child{border-top-left-radius:0;border-top-right-radius:0}#bookly-tbs .panel-heading+.list-group .list-group-item:first-child{border-top-width:0}#bookly-tbs .list-group+.panel-footer{border-top-width:0}#bookly-tbs .panel>.panel-collapse>.table,#bookly-tbs .panel>.table,#bookly-tbs .panel>.table-responsive>.table{margin-bottom:0}#bookly-tbs .panel>.panel-collapse>.table caption,#bookly-tbs .panel>.table caption,#bookly-tbs .panel>.table-responsive>.table caption{padding-right:15px;padding-left:15px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child,#bookly-tbs .panel>.table:first-child{border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child{border-top-left-radius:3px;border-top-right-radius:3px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:first-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child th:first-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child td:first-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child th:first-child{border-top-left-radius:3px}#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>tbody:first-child>tr:first-child th:last-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table-responsive:first-child>.table:first-child>thead:first-child>tr:first-child th:last-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table:first-child>tbody:first-child>tr:first-child th:last-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child td:last-child,#bookly-tbs .panel>.table:first-child>thead:first-child>tr:first-child th:last-child{border-top-right-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child,#bookly-tbs .panel>.table:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:first-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:first-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child th:first-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child td:first-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child th:first-child{border-bottom-left-radius:3px}#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tbody:last-child>tr:last-child th:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table-responsive:last-child>.table:last-child>tfoot:last-child>tr:last-child th:last-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table:last-child>tbody:last-child>tr:last-child th:last-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child td:last-child,#bookly-tbs .panel>.table:last-child>tfoot:last-child>tr:last-child th:last-child{border-bottom-right-radius:3px}#bookly-tbs .panel>.panel-body+.table,#bookly-tbs .panel>.panel-body+.table-responsive,#bookly-tbs .panel>.table+.panel-body,#bookly-tbs .panel>.table-responsive+.panel-body{border-top:1px solid #d9dee4}#bookly-tbs .panel>.table>tbody:first-child>tr:first-child td,#bookly-tbs .panel>.table>tbody:first-child>tr:first-child th{border-top:0}#bookly-tbs .panel>.table-bordered,#bookly-tbs .panel>.table-responsive>.table-bordered{border:0}#bookly-tbs .panel>.table-bordered>tbody>tr>td:first-child,#bookly-tbs .panel>.table-bordered>tbody>tr>th:first-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>td:first-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>th:first-child,#bookly-tbs .panel>.table-bordered>thead>tr>td:first-child,#bookly-tbs .panel>.table-bordered>thead>tr>th:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>td:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>th:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>td:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>th:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>td:first-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>th:first-child{border-left:0}#bookly-tbs .panel>.table-bordered>tbody>tr>td:last-child,#bookly-tbs .panel>.table-bordered>tbody>tr>th:last-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>td:last-child,#bookly-tbs .panel>.table-bordered>tfoot>tr>th:last-child,#bookly-tbs .panel>.table-bordered>thead>tr>td:last-child,#bookly-tbs .panel>.table-bordered>thead>tr>th:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>td:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr>th:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>td:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr>th:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>td:last-child,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr>th:last-child{border-right:0}#bookly-tbs .panel>.table-bordered>tbody>tr:first-child>td,#bookly-tbs .panel>.table-bordered>tbody>tr:first-child>th,#bookly-tbs .panel>.table-bordered>thead>tr:first-child>td,#bookly-tbs .panel>.table-bordered>thead>tr:first-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:first-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:first-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr:first-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>thead>tr:first-child>th{border-bottom:0}#bookly-tbs .panel>.table-bordered>tbody>tr:last-child>td,#bookly-tbs .panel>.table-bordered>tbody>tr:last-child>th,#bookly-tbs .panel>.table-bordered>tfoot>tr:last-child>td,#bookly-tbs .panel>.table-bordered>tfoot>tr:last-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:last-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>tbody>tr:last-child>th,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>td,#bookly-tbs .panel>.table-responsive>.table-bordered>tfoot>tr:last-child>th{border-bottom:0}#bookly-tbs .panel>.table-responsive{margin-bottom:0;border:0}#bookly-tbs .panel-group{margin-bottom:21px}#bookly-tbs .panel-group .panel{margin-bottom:0;border-radius:4px}#bookly-tbs .panel-group .panel+.panel{margin-top:10px}#bookly-tbs .panel-group .panel-heading{border-bottom:0}#bookly-tbs .panel-group .panel-heading+.panel-collapse>.list-group,#bookly-tbs .panel-group .panel-heading+.panel-collapse>.panel-body{border-top:1px solid #e8ebf0}#bookly-tbs .panel-group .panel-footer{border-top:0}#bookly-tbs .panel-group .panel-footer+.panel-collapse .panel-body{border-bottom:1px solid #e8ebf0}#bookly-tbs .panel-default{border-color:#e8ebf0}#bookly-tbs .panel-default>.panel-heading{color:#3e424a;background-color:#e8ebf0;border-color:#e8ebf0}#bookly-tbs .panel-default>.panel-heading+.panel-collapse>.panel-body{border-top-color:#e8ebf0}#bookly-tbs .panel-default>.panel-heading .badge{color:#e8ebf0;background-color:#3e424a}#bookly-tbs .panel-default>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#e8ebf0}#bookly-tbs .panel-primary{border-color:#08c}#bookly-tbs .panel-primary>.panel-heading{color:#fff;background-color:#08c;border-color:#08c}#bookly-tbs .panel-primary>.panel-heading+.panel-collapse>.panel-body{border-top-color:#08c}#bookly-tbs .panel-primary>.panel-heading .badge{color:#08c;background-color:#fff}#bookly-tbs .panel-primary>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#08c}#bookly-tbs .panel-success{border-color:#d6e9c6}#bookly-tbs .panel-success>.panel-heading{color:#3c763d;background-color:#dff0d8;border-color:#d6e9c6}#bookly-tbs .panel-success>.panel-heading+.panel-collapse>.panel-body{border-top-color:#d6e9c6}#bookly-tbs .panel-success>.panel-heading .badge{color:#dff0d8;background-color:#3c763d}#bookly-tbs .panel-success>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#d6e9c6}#bookly-tbs .panel-info{border-color:#bce8f1}#bookly-tbs .panel-info>.panel-heading{color:#31708f;background-color:#d9edf7;border-color:#bce8f1}#bookly-tbs .panel-info>.panel-heading+.panel-collapse>.panel-body{border-top-color:#bce8f1}#bookly-tbs .panel-info>.panel-heading .badge{color:#d9edf7;background-color:#31708f}#bookly-tbs .panel-info>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#bce8f1}#bookly-tbs .panel-warning{border-color:#faebcc}#bookly-tbs .panel-warning>.panel-heading{color:#8a6d3b;background-color:#fcf8e3;border-color:#faebcc}#bookly-tbs .panel-warning>.panel-heading+.panel-collapse>.panel-body{border-top-color:#faebcc}#bookly-tbs .panel-warning>.panel-heading .badge{color:#fcf8e3;background-color:#8a6d3b}#bookly-tbs .panel-warning>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#faebcc}#bookly-tbs .panel-danger{border-color:#ebccd1}#bookly-tbs .panel-danger>.panel-heading{color:#a94442;background-color:#f2dede;border-color:#ebccd1}#bookly-tbs .panel-danger>.panel-heading+.panel-collapse>.panel-body{border-top-color:#ebccd1}#bookly-tbs .panel-danger>.panel-heading .badge{color:#f2dede;background-color:#a94442}#bookly-tbs .panel-danger>.panel-footer+.panel-collapse>.panel-body{border-bottom-color:#ebccd1}#bookly-tbs .embed-responsive{position:relative;display:block;height:0;padding:0;overflow:hidden}#bookly-tbs .embed-responsive .embed-responsive-item,#bookly-tbs .embed-responsive embed,#bookly-tbs .embed-responsive iframe,#bookly-tbs .embed-responsive object,#bookly-tbs .embed-responsive video{position:absolute;top:0;bottom:0;left:0;width:100%;height:100%;border:0}#bookly-tbs .embed-responsive-16by9{padding-bottom:56.25%}#bookly-tbs .embed-responsive-4by3{padding-bottom:75%}#bookly-tbs .well{min-height:20px;padding:19px;margin-bottom:20px;background-color:#f5f5f5;border:1px solid #e3e3e3;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.05);box-shadow:inset 0 1px 1px rgba(0,0,0,.05)}#bookly-tbs .well blockquote{border-color:#ddd;border-color:rgba(0,0,0,.15)}#bookly-tbs .well-lg{padding:24px;border-radius:6px}#bookly-tbs .well-sm{padding:9px;border-radius:3px}#bookly-tbs .close{float:right;font-size:22.5px;font-weight:700;line-height:1;color:#000;text-shadow:0 1px 0 #fff;filter:alpha(opacity=20);opacity:.2}#bookly-tbs .close:focus,#bookly-tbs .close:hover{color:#000;text-decoration:none;cursor:pointer;filter:alpha(opacity=50);opacity:.5}#bookly-tbs button.close{-webkit-appearance:none;padding:0;cursor:pointer;background:0 0;border:0}#bookly-tbs .modal-open{overflow:hidden}#bookly-tbs .modal{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1050;display:none;overflow:hidden;-webkit-overflow-scrolling:touch;outline:0}#bookly-tbs .modal.fade .modal-dialog{-webkit-transition:-webkit-transform .3s ease-out;-o-transition:-o-transform .3s ease-out;transition:transform .3s ease-out;-webkit-transform:translate(0,-25%);-ms-transform:translate(0,-25%);-o-transform:translate(0,-25%);transform:translate(0,-25%)}#bookly-tbs .modal.in .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}#bookly-tbs .modal-open .modal{overflow-x:hidden;overflow-y:auto}#bookly-tbs .modal-dialog{position:relative;width:auto;margin:10px}#bookly-tbs .modal-content{position:relative;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #999;border:1px solid rgba(0,0,0,.2);border-radius:6px;outline:0;-webkit-box-shadow:0 3px 9px rgba(0,0,0,.5);box-shadow:0 3px 9px rgba(0,0,0,.5)}#bookly-tbs .modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}#bookly-tbs .modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}#bookly-tbs .modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}#bookly-tbs .modal-header{padding:15px;border-bottom:1px solid #e5e5e5}#bookly-tbs .modal-header .close{margin-top:-2px}#bookly-tbs .modal-title{margin:0;line-height:1.4}#bookly-tbs .modal-body{position:relative;padding:15px}#bookly-tbs .modal-footer{padding:15px;text-align:right;border-top:1px solid #e5e5e5}#bookly-tbs .modal-footer .btn+.btn{margin-bottom:0;margin-left:5px}#bookly-tbs .modal-footer .btn-group .btn+.btn{margin-left:-1px}#bookly-tbs .modal-footer .btn-block+.btn-block{margin-left:0}#bookly-tbs .modal-scrollbar-measure{position:absolute;top:-9999px;width:50px;height:50px;overflow:scroll}@media (min-width:768px){#bookly-tbs .modal-dialog{width:600px;margin:30px auto}#bookly-tbs .modal-content{-webkit-box-shadow:0 5px 15px rgba(0,0,0,.5);box-shadow:0 5px 15px rgba(0,0,0,.5)}#bookly-tbs .modal-sm{width:300px}}@media (min-width:992px){#bookly-tbs .modal-lg{width:900px}}#bookly-tbs .tooltip{position:absolute;z-index:1070;display:block;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-size:13px;font-style:normal;font-weight:400;line-height:1.4;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;filter:alpha(opacity=0);opacity:0;line-break:auto}#bookly-tbs .tooltip.in{filter:alpha(opacity=90);opacity:.9}#bookly-tbs .tooltip.top{padding:5px 0;margin-top:-3px}#bookly-tbs .tooltip.right{padding:0 5px;margin-left:3px}#bookly-tbs .tooltip.bottom{padding:5px 0;margin-top:3px}#bookly-tbs .tooltip.left{padding:0 5px;margin-left:-3px}#bookly-tbs .tooltip-inner{max-width:200px;padding:3px 8px;color:#fff;text-align:center;background-color:#000;border-radius:4px}#bookly-tbs .tooltip-arrow{position:absolute;width:0;height:0;border-color:transparent;border-style:solid}#bookly-tbs .tooltip.top .tooltip-arrow{bottom:0;left:50%;margin-left:-5px;border-width:5px 5px 0;border-top-color:#000}#bookly-tbs .tooltip.top-left .tooltip-arrow{right:5px;bottom:0;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}#bookly-tbs .tooltip.top-right .tooltip-arrow{bottom:0;left:5px;margin-bottom:-5px;border-width:5px 5px 0;border-top-color:#000}#bookly-tbs .tooltip.right .tooltip-arrow{top:50%;left:0;margin-top:-5px;border-width:5px 5px 5px 0;border-right-color:#000}#bookly-tbs .tooltip.left .tooltip-arrow{top:50%;right:0;margin-top:-5px;border-width:5px 0 5px 5px;border-left-color:#000}#bookly-tbs .tooltip.bottom .tooltip-arrow{top:0;left:50%;margin-left:-5px;border-width:0 5px 5px;border-bottom-color:#000}#bookly-tbs .tooltip.bottom-left .tooltip-arrow{top:0;right:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}#bookly-tbs .tooltip.bottom-right .tooltip-arrow{top:0;left:5px;margin-top:-5px;border-width:0 5px 5px;border-bottom-color:#000}#bookly-tbs .popover{position:absolute;top:0;left:0;z-index:1060;display:none;max-width:600px;padding:1px;font-family:"open sans","helvetica neue",helvetica,arial,sans-serif;font-size:15px;font-style:normal;font-weight:400;line-height:1.4;text-align:left;text-align:start;text-decoration:none;text-shadow:none;text-transform:none;letter-spacing:normal;word-break:normal;word-spacing:normal;word-wrap:normal;white-space:normal;background-color:#fff;-webkit-background-clip:padding-box;background-clip:padding-box;border:1px solid #ccc;border:1px solid rgba(0,0,0,.2);border-radius:6px;-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2);line-break:auto}#bookly-tbs .popover.top{margin-top:-10px}#bookly-tbs .popover.right{margin-left:10px}#bookly-tbs .popover.bottom{margin-top:10px}#bookly-tbs .popover.left{margin-left:-10px}#bookly-tbs .popover-title{padding:8px 14px;margin:0;font-size:15px;background-color:#f7f7f7;border-bottom:1px solid #ebebeb;border-radius:5px 5px 0 0}#bookly-tbs .popover-content{padding:14px 20px}#bookly-tbs .popover>.popover-arrow,#bookly-tbs .popover>.popover-arrow:after{position:absolute;display:block;width:0;height:0;border-color:transparent;border-style:solid}#bookly-tbs .popover>.popover-arrow{border-width:11px}#bookly-tbs .popover>.popover-arrow:after{content:"";border-width:10px}#bookly-tbs .popover.top>.popover-arrow{bottom:-11px;left:50%;margin-left:-11px;border-top-color:#999;border-top-color:rgba(0,0,0,.25);border-bottom-width:0}#bookly-tbs .popover.top>.popover-arrow:after{bottom:1px;margin-left:-10px;content:" ";border-top-color:#fff;border-bottom-width:0}#bookly-tbs .popover.right>.popover-arrow{top:50%;left:-11px;margin-top:-11px;border-right-color:#999;border-right-color:rgba(0,0,0,.25);border-left-width:0}#bookly-tbs .popover.right>.popover-arrow:after{bottom:-10px;left:1px;content:" ";border-right-color:#fff;border-left-width:0}#bookly-tbs .popover.bottom>.popover-arrow{top:-11px;left:50%;margin-left:-11px;border-top-width:0;border-bottom-color:#999;border-bottom-color:rgba(0,0,0,.25)}#bookly-tbs .popover.bottom>.popover-arrow:after{top:1px;margin-left:-10px;content:" ";border-top-width:0;border-bottom-color:#fff}#bookly-tbs .popover.left>.popover-arrow{top:50%;right:-11px;margin-top:-11px;border-right-width:0;border-left-color:#999;border-left-color:rgba(0,0,0,.25)}#bookly-tbs .popover.left>.popover-arrow:after{right:1px;bottom:-10px;content:" ";border-right-width:0;border-left-color:#fff}#bookly-tbs .carousel{position:relative}#bookly-tbs .carousel-inner{position:relative;width:100%;overflow:hidden}#bookly-tbs .carousel-inner>.item{position:relative;display:none;-webkit-transition:.6s ease-in-out left;-o-transition:.6s ease-in-out left;transition:.6s ease-in-out left}#bookly-tbs .carousel-inner>.item>a>img,#bookly-tbs .carousel-inner>.item>img{line-height:1}@media all and (transform-3d),(-webkit-transform-3d){#bookly-tbs .carousel-inner>.item{-webkit-transition:-webkit-transform .6s ease-in-out;-o-transition:-o-transform .6s ease-in-out;transition:transform .6s ease-in-out;-webkit-backface-visibility:hidden;backface-visibility:hidden;-webkit-perspective:1000px;perspective:1000px}#bookly-tbs .carousel-inner>.item.active.right,#bookly-tbs .carousel-inner>.item.next{left:0;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}#bookly-tbs .carousel-inner>.item.active.left,#bookly-tbs .carousel-inner>.item.prev{left:0;-webkit-transform:translate3d(-100%,0,0);transform:translate3d(-100%,0,0)}#bookly-tbs .carousel-inner>.item.active,#bookly-tbs .carousel-inner>.item.next.left,#bookly-tbs .carousel-inner>.item.prev.right{left:0;-webkit-transform:translate3d(0,0,0);transform:translate3d(0,0,0)}}#bookly-tbs .carousel-inner>.active,#bookly-tbs .carousel-inner>.next,#bookly-tbs .carousel-inner>.prev{display:block}#bookly-tbs .carousel-inner>.active{left:0}#bookly-tbs .carousel-inner>.next,#bookly-tbs .carousel-inner>.prev{position:absolute;top:0;width:100%}#bookly-tbs .carousel-inner>.next{left:100%}#bookly-tbs .carousel-inner>.prev{left:-100%}#bookly-tbs .carousel-inner>.next.left,#bookly-tbs .carousel-inner>.prev.right{left:0}#bookly-tbs .carousel-inner>.active.left{left:-100%}#bookly-tbs .carousel-inner>.active.right{left:100%}#bookly-tbs .carousel-control{position:absolute;top:0;bottom:0;left:0;width:15%;font-size:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6);background-color:rgba(0,0,0,0);filter:alpha(opacity=50);opacity:.5}#bookly-tbs .carousel-control.left{background-image:-webkit-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.5)),to(rgba(0,0,0,.0001)));background-image:linear-gradient(to right,rgba(0,0,0,.5) 0,rgba(0,0,0,.0001) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#80000000', endColorstr='#00000000', GradientType=1);background-repeat:repeat-x}#bookly-tbs .carousel-control.right{right:0;left:auto;background-image:-webkit-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-o-linear-gradient(left,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);background-image:-webkit-gradient(linear,left top,right top,from(rgba(0,0,0,.0001)),to(rgba(0,0,0,.5)));background-image:linear-gradient(to right,rgba(0,0,0,.0001) 0,rgba(0,0,0,.5) 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#00000000', endColorstr='#80000000', GradientType=1);background-repeat:repeat-x}#bookly-tbs .carousel-control:focus,#bookly-tbs .carousel-control:hover{color:#fff;text-decoration:none;filter:alpha(opacity=90);outline:0;opacity:.9}#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next,#bookly-tbs .carousel-control .icon-prev{position:absolute;top:50%;z-index:5;display:inline-block;margin-top:-10px}#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .icon-prev{left:50%;margin-left:-10px}#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next{right:50%;margin-right:-10px}#bookly-tbs .carousel-control .icon-next,#bookly-tbs .carousel-control .icon-prev{width:20px;height:20px;font-family:serif;line-height:1}#bookly-tbs .carousel-control .icon-prev:before{content:'\2039'}#bookly-tbs .carousel-control .icon-next:before{content:'\203a'}#bookly-tbs .carousel-indicators{position:absolute;bottom:10px;left:50%;z-index:15;width:60%;padding-left:0;margin-left:-30%;text-align:center;list-style:none}#bookly-tbs .carousel-indicators li{display:inline-block;width:10px;height:10px;margin:1px;text-indent:-999px;cursor:pointer;background-color:#000\9;background-color:rgba(0,0,0,0);border:1px solid #fff;border-radius:10px}#bookly-tbs .carousel-indicators .active{width:12px;height:12px;margin:0;background-color:#fff}#bookly-tbs .carousel-caption{position:absolute;right:15%;bottom:20px;left:15%;z-index:10;padding-top:20px;padding-bottom:20px;color:#fff;text-align:center;text-shadow:0 1px 2px rgba(0,0,0,.6)}#bookly-tbs .carousel-caption .btn{text-shadow:none}@media screen and (min-width:768px){#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next,#bookly-tbs .carousel-control .icon-prev{width:30px;height:30px;margin-top:-10px;font-size:30px}#bookly-tbs .carousel-control .glyphicon-chevron-left,#bookly-tbs .carousel-control .icon-prev{margin-left:-10px}#bookly-tbs .carousel-control .glyphicon-chevron-right,#bookly-tbs .carousel-control .icon-next{margin-right:-10px}#bookly-tbs .carousel-caption{right:20%;left:20%;padding-bottom:30px}#bookly-tbs .carousel-indicators{bottom:20px}}#bookly-tbs .btn-group-vertical>.btn-group:after,#bookly-tbs .btn-group-vertical>.btn-group:before,#bookly-tbs .btn-toolbar:after,#bookly-tbs .btn-toolbar:before,#bookly-tbs .clearfix:after,#bookly-tbs .clearfix:before,#bookly-tbs .container-fluid:after,#bookly-tbs .container-fluid:before,#bookly-tbs .container:after,#bookly-tbs .container:before,#bookly-tbs .dl-horizontal dd:after,#bookly-tbs .dl-horizontal dd:before,#bookly-tbs .form-horizontal .form-group:after,#bookly-tbs .form-horizontal .form-group:before,#bookly-tbs .modal-footer:after,#bookly-tbs .modal-footer:before,#bookly-tbs .modal-header:after,#bookly-tbs .modal-header:before,#bookly-tbs .nav:after,#bookly-tbs .nav:before,#bookly-tbs .navbar-collapse:after,#bookly-tbs .navbar-collapse:before,#bookly-tbs .navbar-header:after,#bookly-tbs .navbar-header:before,#bookly-tbs .navbar:after,#bookly-tbs .navbar:before,#bookly-tbs .pager:after,#bookly-tbs .pager:before,#bookly-tbs .panel-body:after,#bookly-tbs .panel-body:before,#bookly-tbs .row:after,#bookly-tbs .row:before{display:table;content:" "}#bookly-tbs .btn-group-vertical>.btn-group:after,#bookly-tbs .btn-toolbar:after,#bookly-tbs .clearfix:after,#bookly-tbs .container-fluid:after,#bookly-tbs .container:after,#bookly-tbs .dl-horizontal dd:after,#bookly-tbs .form-horizontal .form-group:after,#bookly-tbs .modal-footer:after,#bookly-tbs .modal-header:after,#bookly-tbs .nav:after,#bookly-tbs .navbar-collapse:after,#bookly-tbs .navbar-header:after,#bookly-tbs .navbar:after,#bookly-tbs .pager:after,#bookly-tbs .panel-body:after,#bookly-tbs .row:after{clear:both}#bookly-tbs .center-block{display:block;margin-right:auto;margin-left:auto}#bookly-tbs .pull-right{float:right!important}#bookly-tbs .pull-left{float:left!important}#bookly-tbs .hide{display:none!important}#bookly-tbs .show{display:block!important}#bookly-tbs .invisible{visibility:hidden}#bookly-tbs .text-hide{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}#bookly-tbs .hidden{display:none!important}#bookly-tbs .affix{position:fixed}@-ms-viewport{width:device-width}#bookly-tbs .visible-lg,#bookly-tbs .visible-md,#bookly-tbs .visible-sm,#bookly-tbs .visible-xs{display:none!important}#bookly-tbs .visible-lg-block,#bookly-tbs .visible-lg-inline,#bookly-tbs .visible-lg-inline-block,#bookly-tbs .visible-md-block,#bookly-tbs .visible-md-inline,#bookly-tbs .visible-md-inline-block,#bookly-tbs .visible-sm-block,#bookly-tbs .visible-sm-inline,#bookly-tbs .visible-sm-inline-block,#bookly-tbs .visible-xs-block,#bookly-tbs .visible-xs-inline,#bookly-tbs .visible-xs-inline-block{display:none!important}@media (max-width:767px){#bookly-tbs .visible-xs{display:block!important}#bookly-tbs table.visible-xs{display:table!important}#bookly-tbs tr.visible-xs{display:table-row!important}#bookly-tbs td.visible-xs,#bookly-tbs th.visible-xs{display:table-cell!important}}@media (max-width:767px){#bookly-tbs .visible-xs-block{display:block!important}}@media (max-width:767px){#bookly-tbs .visible-xs-inline{display:inline!important}}@media (max-width:767px){#bookly-tbs .visible-xs-inline-block{display:inline-block!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm{display:block!important}#bookly-tbs table.visible-sm{display:table!important}#bookly-tbs tr.visible-sm{display:table-row!important}#bookly-tbs td.visible-sm,#bookly-tbs th.visible-sm{display:table-cell!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm-block{display:block!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm-inline{display:inline!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .visible-sm-inline-block{display:inline-block!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md{display:block!important}#bookly-tbs table.visible-md{display:table!important}#bookly-tbs tr.visible-md{display:table-row!important}#bookly-tbs td.visible-md,#bookly-tbs th.visible-md{display:table-cell!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md-block{display:block!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md-inline{display:inline!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .visible-md-inline-block{display:inline-block!important}}@media (min-width:1200px){#bookly-tbs .visible-lg{display:block!important}#bookly-tbs table.visible-lg{display:table!important}#bookly-tbs tr.visible-lg{display:table-row!important}#bookly-tbs td.visible-lg,#bookly-tbs th.visible-lg{display:table-cell!important}}@media (min-width:1200px){#bookly-tbs .visible-lg-block{display:block!important}}@media (min-width:1200px){#bookly-tbs .visible-lg-inline{display:inline!important}}@media (min-width:1200px){#bookly-tbs .visible-lg-inline-block{display:inline-block!important}}@media (max-width:767px){#bookly-tbs .hidden-xs{display:none!important}}@media (min-width:768px) and (max-width:991px){#bookly-tbs .hidden-sm{display:none!important}}@media (min-width:992px) and (max-width:1199px){#bookly-tbs .hidden-md{display:none!important}}@media (min-width:1200px){#bookly-tbs .hidden-lg{display:none!important}}#bookly-tbs .visible-print{display:none!important}@media print{#bookly-tbs .visible-print{display:block!important}#bookly-tbs table.visible-print{display:table!important}#bookly-tbs tr.visible-print{display:table-row!important}#bookly-tbs td.visible-print,#bookly-tbs th.visible-print{display:table-cell!important}}#bookly-tbs .visible-print-block{display:none!important}@media print{#bookly-tbs .visible-print-block{display:block!important}}#bookly-tbs .visible-print-inline{display:none!important}@media print{#bookly-tbs .visible-print-inline{display:inline!important}}#bookly-tbs .visible-print-inline-block{display:none!important}@media print{#bookly-tbs .visible-print-inline-block{display:inline-block!important}}@media print{#bookly-tbs .hidden-print{display:none!important}}#bookly-tbs [class*=block-grid-]{padding:0;margin:0;list-style:none;border:1px solid transparent;border-width:1px 0 0 1px}#bookly-tbs [class*=block-grid-]>*{display:block;float:left;height:auto;text-align:center;border:1px solid inherit;border-width:0 1px 1px 0}#bookly-tbs [class*=block-grid-]:after,#bookly-tbs [class*=block-grid-]:before{display:table;content:" "}#bookly-tbs .block-grid-16>:nth-of-type(16n+1),#bookly-tbs [class*=block-grid-]:after{clear:both}#bookly-tbs .block-grid-16>*{width:6.25%;line-height:49px}#bookly-tbs .btn-group-justified>.btn-group:not(:first-child) .btn,#bookly-tbs .btn-group-justified>.btn:not(:first-child){border-left:0}#bookly-tbs .btn-default-outline{color:#5b6470;background-color:transparent;border-color:#5b6470}#bookly-tbs .btn-default-outline.focus,#bookly-tbs .btn-default-outline:focus{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#22252a}#bookly-tbs .btn-default-outline:hover{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#40464e}#bookly-tbs .btn-default-outline.active,#bookly-tbs .btn-default-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-default-outline{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#40464e}#bookly-tbs .btn-default-outline.active.focus,#bookly-tbs .btn-default-outline.active:focus,#bookly-tbs .btn-default-outline.active:hover,#bookly-tbs .btn-default-outline:active.focus,#bookly-tbs .btn-default-outline:active:focus,#bookly-tbs .btn-default-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-default-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-default-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-default-outline:hover{color:#5b6470;background-color:rgba(0,0,0,0);border-color:#22252a}#bookly-tbs .btn-default-outline.active,#bookly-tbs .btn-default-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-default-outline{background-image:none}#bookly-tbs .btn-default-outline.disabled.focus,#bookly-tbs .btn-default-outline.disabled:focus,#bookly-tbs .btn-default-outline.disabled:hover,#bookly-tbs .btn-default-outline[disabled].focus,#bookly-tbs .btn-default-outline[disabled]:focus,#bookly-tbs .btn-default-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-default-outline.focus,fieldset[disabled] #bookly-tbs .btn-default-outline:focus,fieldset[disabled] #bookly-tbs .btn-default-outline:hover{background-color:transparent;border-color:#5b6470}#bookly-tbs .btn-default-outline .badge{color:transparent;background-color:#5b6470}#bookly-tbs .btn-primary-outline{color:#08c;background-color:transparent;border-color:#08c}#bookly-tbs .btn-primary-outline.focus,#bookly-tbs .btn-primary-outline:focus{color:#08c;background-color:rgba(0,0,0,0);border-color:#00334d}#bookly-tbs .btn-primary-outline:hover{color:#08c;background-color:rgba(0,0,0,0);border-color:#005f8f}#bookly-tbs .btn-primary-outline.active,#bookly-tbs .btn-primary-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline{color:#08c;background-color:rgba(0,0,0,0);border-color:#005f8f}#bookly-tbs .btn-primary-outline.active.focus,#bookly-tbs .btn-primary-outline.active:focus,#bookly-tbs .btn-primary-outline.active:hover,#bookly-tbs .btn-primary-outline:active.focus,#bookly-tbs .btn-primary-outline:active:focus,#bookly-tbs .btn-primary-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline:hover{color:#08c;background-color:rgba(0,0,0,0);border-color:#00334d}#bookly-tbs .btn-primary-outline.active,#bookly-tbs .btn-primary-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-primary-outline{background-image:none}#bookly-tbs .btn-primary-outline.disabled.focus,#bookly-tbs .btn-primary-outline.disabled:focus,#bookly-tbs .btn-primary-outline.disabled:hover,#bookly-tbs .btn-primary-outline[disabled].focus,#bookly-tbs .btn-primary-outline[disabled]:focus,#bookly-tbs .btn-primary-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-primary-outline.focus,fieldset[disabled] #bookly-tbs .btn-primary-outline:focus,fieldset[disabled] #bookly-tbs .btn-primary-outline:hover{background-color:transparent;border-color:#08c}#bookly-tbs .btn-primary-outline .badge{color:transparent;background-color:#08c}#bookly-tbs .btn-success-outline{color:#5cb85c;background-color:transparent;border-color:#5cb85c}#bookly-tbs .btn-success-outline.focus,#bookly-tbs .btn-success-outline:focus{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#2d672d}#bookly-tbs .btn-success-outline:hover{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#419641}#bookly-tbs .btn-success-outline.active,#bookly-tbs .btn-success-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-success-outline{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#419641}#bookly-tbs .btn-success-outline.active.focus,#bookly-tbs .btn-success-outline.active:focus,#bookly-tbs .btn-success-outline.active:hover,#bookly-tbs .btn-success-outline:active.focus,#bookly-tbs .btn-success-outline:active:focus,#bookly-tbs .btn-success-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-success-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-success-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-success-outline:hover{color:#5cb85c;background-color:rgba(0,0,0,0);border-color:#2d672d}#bookly-tbs .btn-success-outline.active,#bookly-tbs .btn-success-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-success-outline{background-image:none}#bookly-tbs .btn-success-outline.disabled.focus,#bookly-tbs .btn-success-outline.disabled:focus,#bookly-tbs .btn-success-outline.disabled:hover,#bookly-tbs .btn-success-outline[disabled].focus,#bookly-tbs .btn-success-outline[disabled]:focus,#bookly-tbs .btn-success-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-success-outline.focus,fieldset[disabled] #bookly-tbs .btn-success-outline:focus,fieldset[disabled] #bookly-tbs .btn-success-outline:hover{background-color:transparent;border-color:#5cb85c}#bookly-tbs .btn-success-outline .badge{color:transparent;background-color:#5cb85c}#bookly-tbs .btn-info-outline{color:#5bc0de;background-color:transparent;border-color:#5bc0de}#bookly-tbs .btn-info-outline.focus,#bookly-tbs .btn-info-outline:focus{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#1f7e9a}#bookly-tbs .btn-info-outline:hover{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#2aabd2}#bookly-tbs .btn-info-outline.active,#bookly-tbs .btn-info-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-info-outline{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#2aabd2}#bookly-tbs .btn-info-outline.active.focus,#bookly-tbs .btn-info-outline.active:focus,#bookly-tbs .btn-info-outline.active:hover,#bookly-tbs .btn-info-outline:active.focus,#bookly-tbs .btn-info-outline:active:focus,#bookly-tbs .btn-info-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-info-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-info-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-info-outline:hover{color:#5bc0de;background-color:rgba(0,0,0,0);border-color:#1f7e9a}#bookly-tbs .btn-info-outline.active,#bookly-tbs .btn-info-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-info-outline{background-image:none}#bookly-tbs .btn-info-outline.disabled.focus,#bookly-tbs .btn-info-outline.disabled:focus,#bookly-tbs .btn-info-outline.disabled:hover,#bookly-tbs .btn-info-outline[disabled].focus,#bookly-tbs .btn-info-outline[disabled]:focus,#bookly-tbs .btn-info-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-info-outline.focus,fieldset[disabled] #bookly-tbs .btn-info-outline:focus,fieldset[disabled] #bookly-tbs .btn-info-outline:hover{background-color:transparent;border-color:#5bc0de}#bookly-tbs .btn-info-outline .badge{color:transparent;background-color:#5bc0de}#bookly-tbs .btn-warning-outline{color:#f0ad4e;background-color:transparent;border-color:#f0ad4e}#bookly-tbs .btn-warning-outline.focus,#bookly-tbs .btn-warning-outline:focus{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#b06d0f}#bookly-tbs .btn-warning-outline:hover{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#eb9316}#bookly-tbs .btn-warning-outline.active,#bookly-tbs .btn-warning-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#eb9316}#bookly-tbs .btn-warning-outline.active.focus,#bookly-tbs .btn-warning-outline.active:focus,#bookly-tbs .btn-warning-outline.active:hover,#bookly-tbs .btn-warning-outline:active.focus,#bookly-tbs .btn-warning-outline:active:focus,#bookly-tbs .btn-warning-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline:hover{color:#f0ad4e;background-color:rgba(0,0,0,0);border-color:#b06d0f}#bookly-tbs .btn-warning-outline.active,#bookly-tbs .btn-warning-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-warning-outline{background-image:none}#bookly-tbs .btn-warning-outline.disabled.focus,#bookly-tbs .btn-warning-outline.disabled:focus,#bookly-tbs .btn-warning-outline.disabled:hover,#bookly-tbs .btn-warning-outline[disabled].focus,#bookly-tbs .btn-warning-outline[disabled]:focus,#bookly-tbs .btn-warning-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-warning-outline.focus,fieldset[disabled] #bookly-tbs .btn-warning-outline:focus,fieldset[disabled] #bookly-tbs .btn-warning-outline:hover{background-color:transparent;border-color:#f0ad4e}#bookly-tbs .btn-warning-outline .badge{color:transparent;background-color:#f0ad4e}#bookly-tbs .btn-danger-outline{color:#d9534f;background-color:transparent;border-color:#d9534f}#bookly-tbs .btn-danger-outline.focus,#bookly-tbs .btn-danger-outline:focus{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#8b211e}#bookly-tbs .btn-danger-outline:hover{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#c12e2a}#bookly-tbs .btn-danger-outline.active,#bookly-tbs .btn-danger-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#c12e2a}#bookly-tbs .btn-danger-outline.active.focus,#bookly-tbs .btn-danger-outline.active:focus,#bookly-tbs .btn-danger-outline.active:hover,#bookly-tbs .btn-danger-outline:active.focus,#bookly-tbs .btn-danger-outline:active:focus,#bookly-tbs .btn-danger-outline:active:hover,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline.focus,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline:focus,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline:hover{color:#d9534f;background-color:rgba(0,0,0,0);border-color:#8b211e}#bookly-tbs .btn-danger-outline.active,#bookly-tbs .btn-danger-outline:active,.open>.dropdown-toggle#bookly-tbs .btn-danger-outline{background-image:none}#bookly-tbs .btn-danger-outline.disabled.focus,#bookly-tbs .btn-danger-outline.disabled:focus,#bookly-tbs .btn-danger-outline.disabled:hover,#bookly-tbs .btn-danger-outline[disabled].focus,#bookly-tbs .btn-danger-outline[disabled]:focus,#bookly-tbs .btn-danger-outline[disabled]:hover,fieldset[disabled] #bookly-tbs .btn-danger-outline.focus,fieldset[disabled] #bookly-tbs .btn-danger-outline:focus,fieldset[disabled] #bookly-tbs .btn-danger-outline:hover{background-color:transparent;border-color:#d9534f}#bookly-tbs .btn-danger-outline .badge{color:transparent;background-color:#d9534f}#bookly-tbs .btn-xlg{padding:11px 22px;font-size:15px;line-height:1.9;border-radius:4px}#bookly-tbs .callout{padding:10px;margin:21px 0;border:1px solid #e8ebf0;border-left-width:4px;border-radius:4px}#bookly-tbs .callout .callout-heading{margin-top:0;margin-bottom:5px}#bookly-tbs .callout p:last-child{margin-bottom:0}#bookly-tbs .callout+#bookly-tbs .callout{margin-top:-5px}#bookly-tbs .callout.callout-danger{border-left-color:#d9534f}#bookly-tbs .callout.callout-danger .callout-heading{color:#a94442}#bookly-tbs .callout.callout-warning{border-left-color:#f0ad4e}#bookly-tbs .callout.callout-warning .callout-heading{color:#8a6d3b}#bookly-tbs .callout.callout-info{border-left-color:#5bc0de}#bookly-tbs .callout.callout-info .callout-heading{color:#31708f}#bookly-tbs .close{font-family:"Helvetica Neue",Helvetica,Arial,sans-serif}#bookly-tbs .caret{margin-bottom:2px}#bookly-tbs .checkbox,#bookly-tbs .radio{line-height:1.4}#bookly-tbs input[type=checkbox],#bookly-tbs input[type=radio]{width:16px;height:16px}#bookly-tbs input[type=checkbox]:checked:before{margin:-3px 0 0 -4px;font:400 21px/1 dashicons}#bookly-tbs input[type=radio]:checked:before{width:8px;height:8px;margin:3px}#bookly-tbs input[type=checkbox]:not(:checked)+.bookly-toggle-label,#bookly-tbs input[type=radio]:not(:checked)+.bookly-toggle-label{color:#8a929e}#bookly-tbs select.form-control{z-index:5;min-width:1px;height:36px;-webkit-appearance:none;padding-right:22px;background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDIwbDEwIDEwIDEwLTEweiIvPjxwYXRoIGQ9Ik0wIDBoNDh2NDhoLTQ4eiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==);background-repeat:no-repeat;background-position:-webkit-calc(100% - 4px) 50%;background-position:calc(100% - 4px) 50%;-webkit-background-size:24px 24px;background-size:24px 24px;-moz-appearance:none;appearance:none}@media screen and (min-width:0\0){#bookly-tbs select.form-control{padding:5px}}#bookly-tbs select.form-control:-moz-focusring{color:transparent;text-shadow:0 0 0 #000}#bookly-tbs .form-horizontal .form-inline .checkbox-inline,#bookly-tbs .form-horizontal .form-inline .radio-inline{padding-top:0}#bookly-tbs .form-horizontal .form-group .help-block{margin-bottom:0}#bookly-tbs button:active,#bookly-tbs button:focus,#bookly-tbs button:hover,#bookly-tbs input:active,#bookly-tbs input:focus,#bookly-tbs input:hover,#bookly-tbs textarea:active,#bookly-tbs textarea:focus,#bookly-tbs textarea:hover{outline:0}#bookly-tbs .help-block{margin-top:0;font-size:13px;line-height:1.3}#bookly-tbs .bookly-pretty input[type=file]{position:absolute;top:0;left:0;z-index:-1;width:.1px;height:.1px;overflow:hidden;opacity:0}#bookly-tbs .bookly-pretty input[type=file]~.bookly-pretty-indicator{display:inline-block;font-weight:400}#bookly-tbs .input-group-btn:first-child>.btn,#bookly-tbs .input-group-btn:first-child>.btn-group{border-right:0}#bookly-tbs .input-group-btn:first-child>.btn:last-child{margin-right:-1px}#bookly-tbs .input-group-btn:last-child>.btn,#bookly-tbs .input-group-btn:last-child>.btn-group{border-left:0}#bookly-tbs .list-group-item .badge{margin-top:2px}#bookly-tbs .navbar-nav>li>.dropdown-menu{border-top-width:0}#bookly-tbs .navbar-text{line-height:21px}#bookly-tbs .nav-tabs>li{margin-bottom:0}#bookly-tbs .nav-tabs>li>a{margin-right:0;color:#8a929e;border:0}#bookly-tbs .nav-tabs>li>a:after{position:absolute;right:0;bottom:0;left:0;width:100%;height:0;content:" ";border-bottom:3px solid transparent}#bookly-tbs .nav-tabs>li>a:focus,#bookly-tbs .nav-tabs>li>a:hover{background-color:transparent;outline:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .nav-tabs>li>a:focus:after,#bookly-tbs .nav-tabs>li>a:hover:after{border-bottom-color:#d9dee4}#bookly-tbs .nav-tabs.nav-justified>li.active>a,#bookly-tbs .nav-tabs.nav-justified>li.active>a:focus,#bookly-tbs .nav-tabs.nav-justified>li.active>a:hover,#bookly-tbs .nav-tabs>li.active>a,#bookly-tbs .nav-tabs>li.active>a:focus,#bookly-tbs .nav-tabs>li.active>a:hover{color:#08c;border-width:0 0 1px 0}#bookly-tbs .nav-tabs.nav-justified>li.active>a:after,#bookly-tbs .nav-tabs>li.active>a:after{border-bottom-color:#08c}#bookly-tbs .nav-tabs .dropdown-menu{margin-top:0}#bookly-tbs .pager li>a,#bookly-tbs .pager li>span{line-height:1.4;color:#5b6470}#bookly-tbs .pager li>a:focus,#bookly-tbs .pager li>a:hover{color:#8a929e}#bookly-tbs .panel{-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .panel>.panel-collapse>.table td,#bookly-tbs .panel>.panel-collapse>.table th,#bookly-tbs .panel>.table td,#bookly-tbs .panel>.table th,#bookly-tbs .panel>.table-responsive>.table td,#bookly-tbs .panel>.table-responsive>.table th{border-color:#d9dee4}#bookly-tbs .panel-title{font-weight:700;line-height:1.5}#bookly-tbs .btn.btn-pill{border-radius:24px}#bookly-tbs .btn.btn-pill-left{border-top-left-radius:24px;border-bottom-left-radius:24px}#bookly-tbs .btn.btn-pill-right{border-top-right-radius:24px;border-bottom-right-radius:24px}#bookly-tbs .form-control.input-pill{border-radius:24px}#bookly-tbs .form-control.input-pill-left{border-top-left-radius:24px;border-bottom-left-radius:24px}#bookly-tbs .form-control.input-pill-right{border-top-right-radius:24px;border-bottom-right-radius:24px}#bookly-tbs .label.label-pill{border-radius:.9em}#bookly-tbs .label.label-pill-left{border-top-left-radius:.9em;border-bottom-left-radius:.9em}#bookly-tbs .label.label-pill-right{border-top-right-radius:.9em;border-bottom-right-radius:.9em}#bookly-tbs .progress-lg{height:42px;border-radius:6px}#bookly-tbs .progress-lg .progress-bar{line-height:42px}#bookly-tbs .progress-sm{height:10.5px;border-radius:3px}#bookly-tbs .progress-sm .progress-bar{line-height:10.5px}#bookly-tbs .progress-xs{height:5.25px;border-radius:3px}#bookly-tbs .progress-xs .progress-bar{line-height:5.25px}#bookly-tbs a:focus,#bookly-tbs a:hover{-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .social-behance{color:#1769ff!important}#bookly-tbs .social-fivehundredpix{color:#0a0100!important}#bookly-tbs .social-dribbble{color:#ea4c89!important}#bookly-tbs .social-dropbox{color:#1f8ce6!important}#bookly-tbs .social-email{color:#7f7f7f!important}#bookly-tbs .social-facebook{color:#3b5998!important}#bookly-tbs .social-flickr{color:#ff0084!important}#bookly-tbs .social-foursquare{color:#0072b1!important}#bookly-tbs .social-github{color:#4183c4!important}#bookly-tbs .social-google{color:#dd4b39!important}#bookly-tbs .social-instagram{color:#517fa4!important}#bookly-tbs .social-linkedin{color:#007bb6!important}#bookly-tbs .social-pinterest{color:#cb2027!important}#bookly-tbs .social-skype{color:#00aff0!important}#bookly-tbs .social-smugmug{color:#8cca1e!important}#bookly-tbs .social-tumblr{color:#32506d!important}#bookly-tbs .social-twitter{color:#00aced!important}#bookly-tbs .social-vimeo{color:#1ab7ea!important}#bookly-tbs .social-vk{color:#45668e!important}#bookly-tbs .social-youtube{color:#f33!important}#bookly-tbs .social-behance:hover{color:#4a8aff!important}#bookly-tbs .social-fivehundredpix:hover{color:#3d0600!important}#bookly-tbs .social-dribbble:hover{color:#ef7aa7!important}#bookly-tbs .social-dropbox:hover{color:#4da4eb!important}#bookly-tbs .social-email:hover{color:#999!important}#bookly-tbs .social-facebook:hover{color:#4c70ba!important}#bookly-tbs .social-flickr:hover{color:#ff339d!important}#bookly-tbs .social-foursquare:hover{color:#0093e4!important}#bookly-tbs .social-github:hover{color:#689cd0!important}#bookly-tbs .social-google:hover{color:#e47365!important}#bookly-tbs .social-instagram:hover{color:#7098b8!important}#bookly-tbs .social-linkedin:hover{color:#009de9!important}#bookly-tbs .social-pinterest:hover{color:#e03e44!important}#bookly-tbs .social-skype:hover{color:#24c4ff!important}#bookly-tbs .social-smugmug:hover{color:#a5e239!important}#bookly-tbs .social-tumblr:hover{color:#426a90!important}#bookly-tbs .social-twitter:hover{color:#21c2ff!important}#bookly-tbs .social-vimeo:hover{color:#49c6ee!important}#bookly-tbs .social-vk:hover{color:#587fae!important}#bookly-tbs .social-youtube:hover{color:#f66!important}#bookly-tbs .thumbnail{overflow:auto;-webkit-box-shadow:inset 0 0 0 2px #e8ebf0;box-shadow:inset 0 0 0 2px #e8ebf0}#bookly-tbs .thumbnail .caption p:last-child{margin-bottom:0}#bookly-tbs .thumbnail .caption .heading{margin:0 0 5px}#bookly-tbs blockquote p{font-family:georgia,"times new roman",times,serif;font-size:18px}#bookly-tbs p{font-size:15px}#bookly-tbs .bookly-letter-spacing-sm{letter-spacing:.05em}#bookly-tbs .bookly-letter-spacing-md{letter-spacing:.1em}#bookly-tbs .bookly-letter-spacing-lg{letter-spacing:.2em}#bookly-tbs .bookly-line-height-sm{line-height:1.53846154}#bookly-tbs .bookly-line-height-base{line-height:1.4}#bookly-tbs .bookly-line-height-lg{line-height:1.3333333}#bookly-tbs .bookly-line-height-computed{line-height:21px}#bookly-tbs .bookly-font-xs{font-size:12px}#bookly-tbs .bookly-font-sm{font-size:14px}#bookly-tbs .bookly-font-md{font-size:15px}#bookly-tbs .bookly-font-lg{font-size:20px}#bookly-tbs .bookly-font-smaller{font-size:13px;text-transform:uppercase}#bookly-tbs .bookly-font-lighter{font-weight:lighter}#bookly-tbs .bookly-font-normal{font-weight:400}#bookly-tbs .bookly-font-bold{font-weight:700}#bookly-tbs .bookly-font-serif{font-family:georgia,"times new roman",times,serif}#bookly-tbs .bookly-font-italic{font-style:italic}#bookly-tbs .bookly-text-wrap{word-wrap:break-word;white-space:normal}#bookly-tbs .bookly-inline{display:inline}#bookly-tbs .bookly-bl-ock{display:block}#bookly-tbs .bookly-inline-block{display:inline-block}#bookly-tbs .bookly-nowrap{white-space:nowrap}#bookly-tbs .bookly-break-word{word-wrap:break-word}#bookly-tbs .bookly-truncate{max-width:100%;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .bookly-bottom-left,#bookly-tbs .bookly-bottom-right,#bookly-tbs .bookly-top-left,#bookly-tbs .bookly-top-right{position:absolute}#bookly-tbs .bookly-top-left,#bookly-tbs .bookly-top-right{top:0}#bookly-tbs .bookly-bottom-left,#bookly-tbs .bookly-bottom-right{bottom:0}#bookly-tbs .bookly-bottom-left,#bookly-tbs .bookly-top-left{left:0}#bookly-tbs .bookly-bottom-right,#bookly-tbs .bookly-top-right{right:0}#bookly-tbs .bookly-relative{position:relative}#bookly-tbs .bookly-fixed{position:fixed}#bookly-tbs .bookly-vertical-top{vertical-align:top}#bookly-tbs .bookly-vertical-middle{vertical-align:middle}#bookly-tbs .bookly-vertical-bottom{vertical-align:bottom}#bookly-tbs .bookly-margin-horizontal-remove,#bookly-tbs .bookly-margin-left-remove,#bookly-tbs .bookly-margin-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-remove,#bookly-tbs .bookly-margin-remove,#bookly-tbs .bookly-margin-right-remove{margin-right:0!important}#bookly-tbs .bookly-margin-remove,#bookly-tbs .bookly-margin-top-remove,#bookly-tbs .bookly-margin-vertical-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-remove,#bookly-tbs .bookly-margin-remove,#bookly-tbs .bookly-margin-vertical-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-xs,#bookly-tbs .bookly-margin-left-xs,#bookly-tbs .bookly-margin-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-xs,#bookly-tbs .bookly-margin-right-xs,#bookly-tbs .bookly-margin-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-top-xs,#bookly-tbs .bookly-margin-vertical-xs,#bookly-tbs .bookly-margin-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-xs,#bookly-tbs .bookly-margin-vertical-xs,#bookly-tbs .bookly-margin-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-sm,#bookly-tbs .bookly-margin-left-sm,#bookly-tbs .bookly-margin-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-sm,#bookly-tbs .bookly-margin-right-sm,#bookly-tbs .bookly-margin-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-sm,#bookly-tbs .bookly-margin-top-sm,#bookly-tbs .bookly-margin-vertical-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-sm,#bookly-tbs .bookly-margin-sm,#bookly-tbs .bookly-margin-vertical-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-md,#bookly-tbs .bookly-margin-left-md,#bookly-tbs .bookly-margin-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-md,#bookly-tbs .bookly-margin-md,#bookly-tbs .bookly-margin-right-md{margin-right:12px!important}#bookly-tbs .bookly-margin-md,#bookly-tbs .bookly-margin-top-md,#bookly-tbs .bookly-margin-vertical-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-md,#bookly-tbs .bookly-margin-md,#bookly-tbs .bookly-margin-vertical-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-lg,#bookly-tbs .bookly-margin-left-lg,#bookly-tbs .bookly-margin-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-lg,#bookly-tbs .bookly-margin-lg,#bookly-tbs .bookly-margin-right-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-lg,#bookly-tbs .bookly-margin-top-lg,#bookly-tbs .bookly-margin-vertical-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-lg,#bookly-tbs .bookly-margin-lg,#bookly-tbs .bookly-margin-vertical-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-xlg,#bookly-tbs .bookly-margin-left-xlg,#bookly-tbs .bookly-margin-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-xlg,#bookly-tbs .bookly-margin-right-xlg,#bookly-tbs .bookly-margin-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-top-xlg,#bookly-tbs .bookly-margin-vertical-xlg,#bookly-tbs .bookly-margin-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-xlg,#bookly-tbs .bookly-margin-vertical-xlg,#bookly-tbs .bookly-margin-xlg{margin-bottom:32px!important}@media (max-width:767px){#bookly-tbs .bookly-margin-horizontal-screenxs-remove,#bookly-tbs .bookly-margin-left-screenxs-remove,#bookly-tbs .bookly-margin-screenxs-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-screenxs-remove,#bookly-tbs .bookly-margin-right-screenxs-remove,#bookly-tbs .bookly-margin-screenxs-remove{margin-right:0!important}#bookly-tbs .bookly-margin-screenxs-remove,#bookly-tbs .bookly-margin-top-screenxs-remove,#bookly-tbs .bookly-margin-vertical-screenxs-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-screenxs-remove,#bookly-tbs .bookly-margin-screenxs-remove,#bookly-tbs .bookly-margin-vertical-screenxs-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xs,#bookly-tbs .bookly-margin-left-screenxs-xs,#bookly-tbs .bookly-margin-screenxs-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xs,#bookly-tbs .bookly-margin-right-screenxs-xs,#bookly-tbs .bookly-margin-screenxs-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-screenxs-xs,#bookly-tbs .bookly-margin-top-screenxs-xs,#bookly-tbs .bookly-margin-vertical-screenxs-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-screenxs-xs,#bookly-tbs .bookly-margin-screenxs-xs,#bookly-tbs .bookly-margin-vertical-screenxs-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-sm,#bookly-tbs .bookly-margin-left-screenxs-sm,#bookly-tbs .bookly-margin-screenxs-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-sm,#bookly-tbs .bookly-margin-right-screenxs-sm,#bookly-tbs .bookly-margin-screenxs-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-screenxs-sm,#bookly-tbs .bookly-margin-top-screenxs-sm,#bookly-tbs .bookly-margin-vertical-screenxs-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-screenxs-sm,#bookly-tbs .bookly-margin-screenxs-sm,#bookly-tbs .bookly-margin-vertical-screenxs-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-md,#bookly-tbs .bookly-margin-left-screenxs-md,#bookly-tbs .bookly-margin-screenxs-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-md,#bookly-tbs .bookly-margin-right-screenxs-md,#bookly-tbs .bookly-margin-screenxs-md{margin-right:12px!important}#bookly-tbs .bookly-margin-screenxs-md,#bookly-tbs .bookly-margin-top-screenxs-md,#bookly-tbs .bookly-margin-vertical-screenxs-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-screenxs-md,#bookly-tbs .bookly-margin-screenxs-md,#bookly-tbs .bookly-margin-vertical-screenxs-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-lg,#bookly-tbs .bookly-margin-left-screenxs-lg,#bookly-tbs .bookly-margin-screenxs-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-lg,#bookly-tbs .bookly-margin-right-screenxs-lg,#bookly-tbs .bookly-margin-screenxs-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-screenxs-lg,#bookly-tbs .bookly-margin-top-screenxs-lg,#bookly-tbs .bookly-margin-vertical-screenxs-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-screenxs-lg,#bookly-tbs .bookly-margin-screenxs-lg,#bookly-tbs .bookly-margin-vertical-screenxs-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xlg,#bookly-tbs .bookly-margin-left-screenxs-xlg,#bookly-tbs .bookly-margin-screenxs-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-screenxs-xlg,#bookly-tbs .bookly-margin-right-screenxs-xlg,#bookly-tbs .bookly-margin-screenxs-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-screenxs-xlg,#bookly-tbs .bookly-margin-top-screenxs-xlg,#bookly-tbs .bookly-margin-vertical-screenxs-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-screenxs-xlg,#bookly-tbs .bookly-margin-screenxs-xlg,#bookly-tbs .bookly-margin-vertical-screenxs-xlg{margin-bottom:32px!important}}@media (min-width:768px){#bookly-tbs .bookly-margin-horizontal-screensm-remove,#bookly-tbs .bookly-margin-left-screensm-remove,#bookly-tbs .bookly-margin-screensm-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-screensm-remove,#bookly-tbs .bookly-margin-right-screensm-remove,#bookly-tbs .bookly-margin-screensm-remove{margin-right:0!important}#bookly-tbs .bookly-margin-screensm-remove,#bookly-tbs .bookly-margin-top-screensm-remove,#bookly-tbs .bookly-margin-vertical-screensm-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-screensm-remove,#bookly-tbs .bookly-margin-screensm-remove,#bookly-tbs .bookly-margin-vertical-screensm-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-screensm-xs,#bookly-tbs .bookly-margin-left-screensm-xs,#bookly-tbs .bookly-margin-screensm-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-screensm-xs,#bookly-tbs .bookly-margin-right-screensm-xs,#bookly-tbs .bookly-margin-screensm-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-screensm-xs,#bookly-tbs .bookly-margin-top-screensm-xs,#bookly-tbs .bookly-margin-vertical-screensm-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-screensm-xs,#bookly-tbs .bookly-margin-screensm-xs,#bookly-tbs .bookly-margin-vertical-screensm-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-screensm-sm,#bookly-tbs .bookly-margin-left-screensm-sm,#bookly-tbs .bookly-margin-screensm-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-screensm-sm,#bookly-tbs .bookly-margin-right-screensm-sm,#bookly-tbs .bookly-margin-screensm-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-screensm-sm,#bookly-tbs .bookly-margin-top-screensm-sm,#bookly-tbs .bookly-margin-vertical-screensm-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-screensm-sm,#bookly-tbs .bookly-margin-screensm-sm,#bookly-tbs .bookly-margin-vertical-screensm-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-screensm-md,#bookly-tbs .bookly-margin-left-screensm-md,#bookly-tbs .bookly-margin-screensm-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-screensm-md,#bookly-tbs .bookly-margin-right-screensm-md,#bookly-tbs .bookly-margin-screensm-md{margin-right:12px!important}#bookly-tbs .bookly-margin-screensm-md,#bookly-tbs .bookly-margin-top-screensm-md,#bookly-tbs .bookly-margin-vertical-screensm-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-screensm-md,#bookly-tbs .bookly-margin-screensm-md,#bookly-tbs .bookly-margin-vertical-screensm-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-screensm-lg,#bookly-tbs .bookly-margin-left-screensm-lg,#bookly-tbs .bookly-margin-screensm-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-screensm-lg,#bookly-tbs .bookly-margin-right-screensm-lg,#bookly-tbs .bookly-margin-screensm-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-screensm-lg,#bookly-tbs .bookly-margin-top-screensm-lg,#bookly-tbs .bookly-margin-vertical-screensm-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-screensm-lg,#bookly-tbs .bookly-margin-screensm-lg,#bookly-tbs .bookly-margin-vertical-screensm-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-screensm-xlg,#bookly-tbs .bookly-margin-left-screensm-xlg,#bookly-tbs .bookly-margin-screensm-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-screensm-xlg,#bookly-tbs .bookly-margin-right-screensm-xlg,#bookly-tbs .bookly-margin-screensm-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-screensm-xlg,#bookly-tbs .bookly-margin-top-screensm-xlg,#bookly-tbs .bookly-margin-vertical-screensm-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-screensm-xlg,#bookly-tbs .bookly-margin-screensm-xlg,#bookly-tbs .bookly-margin-vertical-screensm-xlg{margin-bottom:32px!important}}@media (min-width:992px){#bookly-tbs .bookly-margin-horizontal-screenmd-remove,#bookly-tbs .bookly-margin-left-screenmd-remove,#bookly-tbs .bookly-margin-screenmd-remove{margin-left:0!important}#bookly-tbs .bookly-margin-horizontal-screenmd-remove,#bookly-tbs .bookly-margin-right-screenmd-remove,#bookly-tbs .bookly-margin-screenmd-remove{margin-right:0!important}#bookly-tbs .bookly-margin-screenmd-remove,#bookly-tbs .bookly-margin-top-screenmd-remove,#bookly-tbs .bookly-margin-vertical-screenmd-remove{margin-top:0!important}#bookly-tbs .bookly-margin-bottom-screenmd-remove,#bookly-tbs .bookly-margin-screenmd-remove,#bookly-tbs .bookly-margin-vertical-screenmd-remove{margin-bottom:0!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xs,#bookly-tbs .bookly-margin-left-screenmd-xs,#bookly-tbs .bookly-margin-screenmd-xs{margin-left:5px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xs,#bookly-tbs .bookly-margin-right-screenmd-xs,#bookly-tbs .bookly-margin-screenmd-xs{margin-right:5px!important}#bookly-tbs .bookly-margin-screenmd-xs,#bookly-tbs .bookly-margin-top-screenmd-xs,#bookly-tbs .bookly-margin-vertical-screenmd-xs{margin-top:5px!important}#bookly-tbs .bookly-margin-bottom-screenmd-xs,#bookly-tbs .bookly-margin-screenmd-xs,#bookly-tbs .bookly-margin-vertical-screenmd-xs{margin-bottom:5px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-sm,#bookly-tbs .bookly-margin-left-screenmd-sm,#bookly-tbs .bookly-margin-screenmd-sm{margin-left:10px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-sm,#bookly-tbs .bookly-margin-right-screenmd-sm,#bookly-tbs .bookly-margin-screenmd-sm{margin-right:10px!important}#bookly-tbs .bookly-margin-screenmd-sm,#bookly-tbs .bookly-margin-top-screenmd-sm,#bookly-tbs .bookly-margin-vertical-screenmd-sm{margin-top:10px!important}#bookly-tbs .bookly-margin-bottom-screenmd-sm,#bookly-tbs .bookly-margin-screenmd-sm,#bookly-tbs .bookly-margin-vertical-screenmd-sm{margin-bottom:10px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-md,#bookly-tbs .bookly-margin-left-screenmd-md,#bookly-tbs .bookly-margin-screenmd-md{margin-left:12px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-md,#bookly-tbs .bookly-margin-right-screenmd-md,#bookly-tbs .bookly-margin-screenmd-md{margin-right:12px!important}#bookly-tbs .bookly-margin-screenmd-md,#bookly-tbs .bookly-margin-top-screenmd-md,#bookly-tbs .bookly-margin-vertical-screenmd-md{margin-top:12px!important}#bookly-tbs .bookly-margin-bottom-screenmd-md,#bookly-tbs .bookly-margin-screenmd-md,#bookly-tbs .bookly-margin-vertical-screenmd-md{margin-bottom:12px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-lg,#bookly-tbs .bookly-margin-left-screenmd-lg,#bookly-tbs .bookly-margin-screenmd-lg{margin-left:16px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-lg,#bookly-tbs .bookly-margin-right-screenmd-lg,#bookly-tbs .bookly-margin-screenmd-lg{margin-right:16px!important}#bookly-tbs .bookly-margin-screenmd-lg,#bookly-tbs .bookly-margin-top-screenmd-lg,#bookly-tbs .bookly-margin-vertical-screenmd-lg{margin-top:16px!important}#bookly-tbs .bookly-margin-bottom-screenmd-lg,#bookly-tbs .bookly-margin-screenmd-lg,#bookly-tbs .bookly-margin-vertical-screenmd-lg{margin-bottom:16px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xlg,#bookly-tbs .bookly-margin-left-screenmd-xlg,#bookly-tbs .bookly-margin-screenmd-xlg{margin-left:32px!important}#bookly-tbs .bookly-margin-horizontal-screenmd-xlg,#bookly-tbs .bookly-margin-right-screenmd-xlg,#bookly-tbs .bookly-margin-screenmd-xlg{margin-right:32px!important}#bookly-tbs .bookly-margin-screenmd-xlg,#bookly-tbs .bookly-margin-top-screenmd-xlg,#bookly-tbs .bookly-margin-vertical-screenmd-xlg{margin-top:32px!important}#bookly-tbs .bookly-margin-bottom-screenmd-xlg,#bookly-tbs .bookly-margin-screenmd-xlg,#bookly-tbs .bookly-margin-vertical-screenmd-xlg{margin-bottom:32px!important}}#bookly-tbs .bookly-padding-horizontal-remove,#bookly-tbs .bookly-padding-left-remove,#bookly-tbs .bookly-padding-remove{padding-left:0!important}#bookly-tbs .bookly-padding-horizontal-remove,#bookly-tbs .bookly-padding-remove,#bookly-tbs .bookly-padding-right-remove{padding-right:0!important}#bookly-tbs .bookly-padding-remove,#bookly-tbs .bookly-padding-top-remove,#bookly-tbs .bookly-padding-vertical-remove{padding-top:0!important}#bookly-tbs .bookly-padding-bottom-remove,#bookly-tbs .bookly-padding-remove,#bookly-tbs .bookly-padding-vertical-remove{padding-bottom:0!important}#bookly-tbs .bookly-padding-horizontal-xs,#bookly-tbs .bookly-padding-left-xs,#bookly-tbs .bookly-padding-xs{padding-left:5px!important}#bookly-tbs .bookly-padding-horizontal-xs,#bookly-tbs .bookly-padding-right-xs,#bookly-tbs .bookly-padding-xs{padding-right:5px!important}#bookly-tbs .bookly-padding-top-xs,#bookly-tbs .bookly-padding-vertical-xs,#bookly-tbs .bookly-padding-xs{padding-top:5px!important}#bookly-tbs .bookly-padding-bottom-xs,#bookly-tbs .bookly-padding-vertical-xs,#bookly-tbs .bookly-padding-xs{padding-bottom:5px!important}#bookly-tbs .bookly-padding-horizontal-sm,#bookly-tbs .bookly-padding-left-sm,#bookly-tbs .bookly-padding-sm{padding-left:10px!important}#bookly-tbs .bookly-padding-horizontal-sm,#bookly-tbs .bookly-padding-right-sm,#bookly-tbs .bookly-padding-sm{padding-right:10px!important}#bookly-tbs .bookly-padding-sm,#bookly-tbs .bookly-padding-top-sm,#bookly-tbs .bookly-padding-vertical-sm{padding-top:10px!important}#bookly-tbs .bookly-padding-bottom-sm,#bookly-tbs .bookly-padding-sm,#bookly-tbs .bookly-padding-vertical-sm{padding-bottom:10px!important}#bookly-tbs .bookly-padding-horizontal-md,#bookly-tbs .bookly-padding-left-md,#bookly-tbs .bookly-padding-md{padding-left:12px!important}#bookly-tbs .bookly-padding-horizontal-md,#bookly-tbs .bookly-padding-md,#bookly-tbs .bookly-padding-right-md{padding-right:12px!important}#bookly-tbs .bookly-padding-md,#bookly-tbs .bookly-padding-top-md,#bookly-tbs .bookly-padding-vertical-md{padding-top:12px!important}#bookly-tbs .bookly-padding-bottom-md,#bookly-tbs .bookly-padding-md,#bookly-tbs .bookly-padding-vertical-md{padding-bottom:12px!important}#bookly-tbs .bookly-padding-horizontal-lg,#bookly-tbs .bookly-padding-left-lg,#bookly-tbs .bookly-padding-lg{padding-left:16px!important}#bookly-tbs .bookly-padding-horizontal-lg,#bookly-tbs .bookly-padding-lg,#bookly-tbs .bookly-padding-right-lg{padding-right:16px!important}#bookly-tbs .bookly-padding-lg,#bookly-tbs .bookly-padding-top-lg,#bookly-tbs .bookly-padding-vertical-lg{padding-top:16px!important}#bookly-tbs .bookly-padding-bottom-lg,#bookly-tbs .bookly-padding-lg,#bookly-tbs .bookly-padding-vertical-lg{padding-bottom:16px!important}#bookly-tbs .bookly-padding-horizontal-xlg,#bookly-tbs .bookly-padding-left-xlg,#bookly-tbs .bookly-padding-xlg{padding-left:32px!important}#bookly-tbs .bookly-padding-horizontal-xlg,#bookly-tbs .bookly-padding-right-xlg,#bookly-tbs .bookly-padding-xlg{padding-right:32px!important}#bookly-tbs .bookly-padding-top-xlg,#bookly-tbs .bookly-padding-vertical-xlg,#bookly-tbs .bookly-padding-xlg{padding-top:32px!important}#bookly-tbs .bookly-padding-bottom-xlg,#bookly-tbs .bookly-padding-vertical-xlg,#bookly-tbs .bookly-padding-xlg{padding-bottom:32px!important}#bookly-tbs .bookly-flexbox{display:table;width:100%;max-width:100%;height:100%}#bookly-tbs .bookly-flexbox .bookly-flex-row{display:table-row}#bookly-tbs .bookly-flexbox .bookly-flex-cell{display:table-cell;height:100%;word-wrap:break-word}@media (min-width:992px){#bookly-tbs .bookly-flexbox .bookly-flex-cell-sm{display:table-cell;height:100%;word-wrap:break-word}}#bookly-tbs .bookly-bg-transparent{background-color:transparent}#bookly-tbs .bookly-bg-white{background-color:#fff}#bookly-tbs .bookly-color-white{color:#fff}#bookly-tbs .bookly-bg-black{background-color:#000}#bookly-tbs .bookly-color-black{color:#000}#bookly-tbs .bookly-bg-gray{background-color:#8a929e}#bookly-tbs .bookly-color-gray{color:#8a929e}#bookly-tbs .bookly-bg-light{background-color:#d9dee4}#bookly-tbs .bookly-color-light{color:#d9dee4}#bookly-tbs .bookly-bg-brand-primary{background-color:#08c}#bookly-tbs .bookly-color-brand-primary{color:#08c}#bookly-tbs .bookly-bg-brand-success{background-color:#5cb85c}#bookly-tbs .bookly-color-brand-success{color:#5cb85c}#bookly-tbs .bookly-bg-brand-info{background-color:#5bc0de}#bookly-tbs .bookly-color-brand-info{color:#5bc0de}#bookly-tbs .bookly-bg-brand-warning{background-color:#f0ad4e}#bookly-tbs .bookly-color-brand-warning{color:#f0ad4e}#bookly-tbs .bookly-bg-brand-danger{background-color:#d9534f}#bookly-tbs .bookly-color-brand-danger{color:#d9534f}#bookly-tbs .bookly-cursor-pointer{cursor:pointer}#bookly-tbs .bookly-cursor-move{cursor:move}@media (max-width:767px){#bookly-tbs .bookly-text-xs-center{text-align:center!important}#bookly-tbs .bookly-text-xs-left{text-align:left!important}#bookly-tbs .bookly-text-xs-right{text-align:right!important}#bookly-tbs .bookly-btn-block-xs{display:block;width:100%}}#bookly-tbs table.dataTable{max-width:none!important;margin-top:6px!important;margin-bottom:6px!important;clear:both;border-collapse:separate!important}#bookly-tbs table.dataTable td,#bookly-tbs table.dataTable th{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs table.dataTable td.dataTables_empty,#bookly-tbs table.dataTable th.dataTables_empty{text-align:center}#bookly-tbs table.dataTable.nowrap td,#bookly-tbs table.dataTable.nowrap th{white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_length label{font-weight:400;text-align:left;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_length select{display:inline-block;width:75px}#bookly-tbs div.dataTables_wrapper div.dataTables_filter{text-align:right}#bookly-tbs div.dataTables_wrapper div.dataTables_filter label{font-weight:400;text-align:left;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_filter input{display:inline-block;width:auto;margin-left:.5em}#bookly-tbs div.dataTables_wrapper div.dataTables_info{padding-top:8px;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_paginate{margin:0;text-align:right;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_paginate ul.pagination{margin:2px 0;white-space:nowrap}#bookly-tbs div.dataTables_wrapper div.dataTables_processing{position:absolute;top:50%;left:50%;width:200px;padding:1em 0;margin-top:-26px;margin-left:-100px;text-align:center}#bookly-tbs table.dataTable thead>tr>td.sorting,#bookly-tbs table.dataTable thead>tr>td.sorting_asc,#bookly-tbs table.dataTable thead>tr>td.sorting_desc,#bookly-tbs table.dataTable thead>tr>th.sorting,#bookly-tbs table.dataTable thead>tr>th.sorting_asc,#bookly-tbs table.dataTable thead>tr>th.sorting_desc{padding-right:30px}#bookly-tbs table.dataTable thead>tr>td:active,#bookly-tbs table.dataTable thead>tr>th:active{outline:0}#bookly-tbs table.dataTable thead .sorting,#bookly-tbs table.dataTable thead .sorting_asc,#bookly-tbs table.dataTable thead .sorting_asc_disabled,#bookly-tbs table.dataTable thead .sorting_desc,#bookly-tbs table.dataTable thead .sorting_desc_disabled{position:relative;cursor:pointer}#bookly-tbs table.dataTable thead .sorting:after,#bookly-tbs table.dataTable thead .sorting_asc:after,#bookly-tbs table.dataTable thead .sorting_asc_disabled:after,#bookly-tbs table.dataTable thead .sorting_desc:after,#bookly-tbs table.dataTable thead .sorting_desc_disabled:after{position:absolute;right:8px;bottom:-webkit-calc(50% - 9px);bottom:calc(50% - 9px);display:block;font-family:'Glyphicons Halflings';font-size:12px;opacity:.5}#bookly-tbs table.dataTable thead .sorting:after{content:"\e150";opacity:.2}#bookly-tbs table.dataTable thead .sorting_asc:after{content:"\e155"}#bookly-tbs table.dataTable thead .sorting_desc:after{content:"\e156"}#bookly-tbs table.dataTable thead .sorting_asc_disabled:after,#bookly-tbs table.dataTable thead .sorting_desc_disabled:after{color:#eee}#bookly-tbs div.dataTables_scrollHead table.dataTable{margin-bottom:0!important}#bookly-tbs div.dataTables_scrollBody table{margin-top:0!important;margin-bottom:0!important;border-top:none}#bookly-tbs div.dataTables_scrollBody table thead .sorting:after,#bookly-tbs div.dataTables_scrollBody table thead .sorting_asc:after,#bookly-tbs div.dataTables_scrollBody table thead .sorting_desc:after{display:none}#bookly-tbs div.dataTables_scrollBody table tbody tr:first-child td,#bookly-tbs div.dataTables_scrollBody table tbody tr:first-child th{border-top:none}#bookly-tbs div.dataTables_scrollFoot table{margin-top:0!important;border-top:none}@media screen and (max-width:767px){#bookly-tbs div.dataTables_wrapper div.dataTables_filter,#bookly-tbs div.dataTables_wrapper div.dataTables_info,#bookly-tbs div.dataTables_wrapper div.dataTables_length,#bookly-tbs div.dataTables_wrapper div.dataTables_paginate{text-align:center}}#bookly-tbs table.dataTable.table-condensed>thead>tr>th{padding-right:20px}#bookly-tbs table.dataTable.table-condensed .sorting:after,#bookly-tbs table.dataTable.table-condensed .sorting_asc:after,#bookly-tbs table.dataTable.table-condensed .sorting_desc:after{top:6px;right:6px}#bookly-tbs table.table-bordered.dataTable td,#bookly-tbs table.table-bordered.dataTable th{border-left-width:0}#bookly-tbs table.table-bordered.dataTable td:last-child,#bookly-tbs table.table-bordered.dataTable th:last-child{border-right-width:0}#bookly-tbs table.table-bordered.dataTable tbody td,#bookly-tbs table.table-bordered.dataTable tbody th{border-bottom-width:0}#bookly-tbs div.dataTables_scrollHead table.table-bordered{border-bottom-width:0}#bookly-tbs div.table-responsive>div.dataTables_wrapper>div.row{margin:0}#bookly-tbs div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:first-child{padding-left:0}#bookly-tbs div.table-responsive>div.dataTables_wrapper>div.row>div[class^=col-]:last-child{padding-right:0}#bookly-tbs div.dt-button-info{position:fixed;top:50%;left:50%;z-index:21;width:400px;margin-top:-100px;margin-left:-200px;text-align:center;background-color:#fff;border:2px solid #111;border-radius:3px;-webkit-box-shadow:3px 3px 8px rgba(0,0,0,.3);box-shadow:3px 3px 8px rgba(0,0,0,.3)}#bookly-tbs div.dt-button-info h2{padding:.5em;margin:0;font-weight:400;background-color:#f3f3f3;border-bottom:1px solid #ddd}#bookly-tbs div.dt-button-info>div{padding:1em}#bookly-tbs ul.dt-button-collection.dropdown-menu{z-index:2002;display:block;-webkit-column-gap:8px;-moz-column-gap:8px;-ms-column-gap:8px;-o-column-gap:8px;column-gap:8px}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed{position:fixed;top:50%;left:50%;margin-left:-75px;border-radius:0}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed.two-column{margin-left:-150px}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed.three-column{margin-left:-225px}#bookly-tbs ul.dt-button-collection.dropdown-menu.fixed.four-column{margin-left:-300px}#bookly-tbs ul.dt-button-collection.dropdown-menu>*{-webkit-column-break-inside:avoid;page-break-inside:avoid;break-inside:avoid}#bookly-tbs ul.dt-button-collection.dropdown-menu.two-column{width:300px;padding-bottom:1px;-webkit-column-count:2;-moz-column-count:2;-ms-column-count:2;-o-column-count:2;column-count:2}#bookly-tbs ul.dt-button-collection.dropdown-menu.three-column{width:450px;padding-bottom:1px;-webkit-column-count:3;-moz-column-count:3;-ms-column-count:3;-o-column-count:3;column-count:3}#bookly-tbs ul.dt-button-collection.dropdown-menu.four-column{width:600px;padding-bottom:1px;-webkit-column-count:4;-moz-column-count:4;-ms-column-count:4;-o-column-count:4;column-count:4}#bookly-tbs div.dt-button-background{position:fixed;top:0;left:0;z-index:2001;width:100%;height:100%}@media screen and (max-width:767px){#bookly-tbs div.dt-buttons{float:none;width:100%;margin-bottom:.5em;text-align:center}#bookly-tbs div.dt-buttons a.btn{float:none}}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.child,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th.child{cursor:default!important}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td.dataTables_empty:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th.child:before{display:none!important}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child{position:relative;padding-left:30px;cursor:pointer}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>td:first-child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr>th:first-child:before{position:absolute;top:9px;left:4px;display:block;width:18px;height:18px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;font-family:'Courier New',Courier,monospace;font-size:18px;font-weight:700;line-height:18px;color:#5b6470;text-align:center;content:'+';background-color:transparent;border:0;border-radius:18px;-webkit-box-shadow:0 0 2px #5b6470;box-shadow:0 0 2px #5b6470}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr.parent>td:first-child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr.parent>th:first-child:before{content:'-';background-color:transparent}#bookly-tbs table.dataTable.dtr-inline.collapsed>tbody>tr.child td:before{display:none}#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child,#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child{padding-left:27px}#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>td:first-child:before,#bookly-tbs table.dataTable.dtr-inline.collapsed.compact>tbody>tr>th:first-child:before{top:5px;left:4px;width:14px;height:14px;line-height:14px;text-indent:3px;border-radius:14px}#bookly-tbs table.dataTable.dtr-column>tbody>tr>td.control,#bookly-tbs table.dataTable.dtr-column>tbody>tr>th.control{position:relative;cursor:pointer}#bookly-tbs table.dataTable.dtr-column>tbody>tr>td.control:before,#bookly-tbs table.dataTable.dtr-column>tbody>tr>th.control:before{position:absolute;top:50%;left:50%;display:block;width:16px;height:16px;-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;margin-top:-10px;margin-left:-10px;font-family:'Courier New',Courier,monospace;line-height:14px;color:#fff;text-align:center;content:'+';background-color:#337ab7;border:2px solid #fff;border-radius:14px;-webkit-box-shadow:0 0 3px #444;box-shadow:0 0 3px #444}#bookly-tbs table.dataTable.dtr-column>tbody>tr.parent td.control:before,#bookly-tbs table.dataTable.dtr-column>tbody>tr.parent th.control:before{content:'-';background-color:#d33333}#bookly-tbs table.dataTable>tbody>tr.child{padding:.5em 1em}#bookly-tbs table.dataTable>tbody>tr.child:hover{background:0 0!important}#bookly-tbs table.dataTable>tbody>tr.child ul{display:inline-block;width:100%;padding:0;margin:0;list-style-type:none}#bookly-tbs table.dataTable>tbody>tr.child ul li{padding:.3em 0;margin-bottom:.3em;border-bottom:1px solid #efefef}#bookly-tbs table.dataTable>tbody>tr.child ul li:first-child{padding-top:0}#bookly-tbs table.dataTable>tbody>tr.child ul li:last-child{border-bottom:none}#bookly-tbs table.dataTable>tbody>tr.child span.dtr-title{display:inline-block;min-width:75px;font-weight:700}#bookly-tbs div.dtr-modal{position:fixed;top:0;left:0;z-index:100;width:100%;height:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:10em 1em}#bookly-tbs div.dtr-modal div.dtr-modal-display{position:absolute;top:0;right:0;bottom:0;left:0;z-index:102;width:50%;height:50%;margin:auto;overflow:auto;background-color:#f5f5f7;border:1px solid #000;border-radius:.5em;-webkit-box-shadow:0 12px 30px rgba(0,0,0,.6);box-shadow:0 12px 30px rgba(0,0,0,.6)}#bookly-tbs div.dtr-modal div.dtr-modal-content{position:relative;padding:1em}#bookly-tbs div.dtr-modal div.dtr-modal-close{position:absolute;top:6px;right:6px;z-index:12;width:22px;height:22px;text-align:center;cursor:pointer;background-color:#f9f9f9;border:1px solid #eaeaea;border-radius:3px}#bookly-tbs div.dtr-modal div.dtr-modal-close:hover{background-color:#eaeaea}#bookly-tbs div.dtr-modal div.dtr-modal-background{position:fixed;top:0;right:0;bottom:0;left:0;z-index:101;background:rgba(0,0,0,.6)}@media screen and (max-width:767px){#bookly-tbs div.dtr-modal div.dtr-modal-display{width:95%}}#bookly-tbs div.dtr-bs-modal table.table tr:first-child td{border-top:none}#bookly-tbs table.dt-rowReorder-float{position:absolute!important;z-index:2001;table-layout:fixed;outline:2px solid #337ab7;outline-offset:-2px;opacity:.8}#bookly-tbs tr.dt-rowReorder-moving{outline:2px solid #888;outline-offset:-2px}#bookly-tbs body.dt-rowReorder-noOverflow{overflow-x:hidden}#bookly-tbs table.dataTable td.reorder{text-align:center;cursor:move}#bookly-tbs .jCal-wrap{margin-right:-10px;margin-left:-10px}#bookly-tbs .jCal{position:relative;width:100%}#bookly-tbs .jCalMo{position:relative;display:block;padding:0 15px;margin-bottom:15px;white-space:nowrap}@media (min-width:768px){#bookly-tbs .jCalMo{height:257px}}#bookly-tbs .jCal .month,#bookly-tbs .jCal .monthName,#bookly-tbs .jCal .monthSelect,#bookly-tbs .jCal .monthYear{float:left}#bookly-tbs .jCal .monthName{width:100%;padding:10px 0;font-weight:700;text-align:center}#bookly-tbs .jCal .monthYear{float:right;text-align:left}#bookly-tbs .jCal .month{width:100%}#bookly-tbs .jCal .monthSelect{background:#e8ebf0}#bookly-tbs .jCal .monthSelector{position:absolute}#bookly-tbs .jCal .monthSelectorShadow{position:absolute;padding:0;background:#8a929e}#bookly-tbs .jCal .monthNameHover,#bookly-tbs .jCal .monthYearHover{color:#8a929e;background:#e8ebf0}#bookly-tbs .jCal .monthSelectHover{color:#fff;background:#08c}#bookly-tbs .jCalMo .aday,#bookly-tbs .jCalMo .day,#bookly-tbs .jCalMo .dow,#bookly-tbs .jCalMo .invday,#bookly-tbs .jCalMo .overDay,#bookly-tbs .jCalMo .pday,#bookly-tbs .jCalMo .selectedDay{position:relative;float:left;width:-webkit-calc(14.2857% + 1px);width:calc(14.2857% + 1px);margin-right:-1px;text-align:center;cursor:default;border:1px solid #e8ebf0;border-width:0 1px 1px 1px}#bookly-tbs .jCalMo .dow{font-size:12px;line-height:30px;background:#e8ebf0;border-bottom:0}#bookly-tbs .jCalMo .day{font-size:13px;line-height:30px;cursor:pointer;background:#fff}#bookly-tbs .jCalMo .invday{color:#8a929e;text-decoration:line-through;background:#e8ebf0}#bookly-tbs .jCalMo .aday,#bookly-tbs .jCalMo .pday{font-size:13px;line-height:30px;color:#d9dee4;background:rgba(232,235,240,.3)}#bookly-tbs .jCalMo .overDay{color:#3e424a;background:rgba(0,136,204,.2)}#bookly-tbs .jCalMo .holidayDay{color:#fff;background:#f0ad4e}#bookly-tbs .jCalMo .holidayDay.repeatDay{color:#fff;background:#d9534f}#bookly-tbs .jCalMo .selectedDay,#bookly-tbs .jCalMo .selectedDay.repeatDay{color:#fff;background:#08c}#bookly-tbs .jCal .left,#bookly-tbs .jCal .right{font:0/0 a;color:transparent;text-shadow:none;background-color:transparent;border:0}#bookly-tbs .jCalMask,#bookly-tbs .jCalMove{position:absolute;width:700px;height:930px;overflow:hidden}@media (min-width:768px){#bookly-tbs .jCalMo{float:left;width:50%}}@media (min-width:1200px){#bookly-tbs .jCalMo{float:left;width:33.33333333%}}#bookly-tbs .bookly-loading{position:relative;height:100px}#bookly-tbs .bookly-loading:before{position:absolute;top:-webkit-calc(50% - 16px);top:calc(50% - 16px);left:-webkit-calc(50% - 16px);left:calc(50% - 16px);width:32px;height:32px;content:'';background:url(../../images/ajax_loader_32x32.gif) no-repeat;-webkit-background-size:contain;background-size:contain}#bookly-tbs .bookly-loading-16{position:relative;display:inline-block;min-width:16px;min-height:16px}#bookly-tbs .bookly-loading-16:before{position:absolute;top:-webkit-calc(50% - 8px);top:calc(50% - 8px);left:-webkit-calc(50% - 8px);left:calc(50% - 8px);width:16px;height:16px;content:'';background:url(../../images/loading.gif) no-repeat;-webkit-background-size:contain;background-size:contain}#bookly-tbs .select2 .select2-selection{height:35px!important;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .select2 .select2-selection__choice{display:none}#bookly-tbs .select2 .select2-selection ul{padding:0 16px;margin-bottom:0}#bookly-tbs .select2 .select2-search{float:none;margin:6px 0}#bookly-tbs .select2 .select2-search__field{width:100%!important;padding:0;margin:0;border:0;-webkit-box-shadow:none!important;box-shadow:none!important}#bookly-tbs .select2 .select2-selection__clear{top:-2px}#bookly-tbs .select2 .select2-selection__arrow{top:-4px}#bookly-tbs .bookly-no-borders,#bookly-tbs .bookly-no-borders td{border:0!important}#bookly-tbs .panel.bookly-main{border-color:#d9dee4;border-width:1px}@media (min-width:992px){#bookly-tbs .panel.bookly-main>.panel-body{padding:25px}}#bookly-tbs .panel.bookly-main .panel-body+.panel-footer{margin:0 15px 15px}@media (min-width:992px){#bookly-tbs .panel.bookly-main .panel-body+.panel-footer{margin:0 25px 25px}}#bookly-tbs .panel.bookly-panel-unborder,#bookly-tbs .panel.bookly-panel-unborder .panel-heading,#bookly-tbs .panel.bookly-panel-unborder>.list-group .list-group-item,#bookly-tbs .panel.bookly-panel-unborder>.panel-collapse>.list-group .list-group-item{border-width:0}#bookly-tbs .panel.bookly-panel-unborder .panel-heading{border-bottom-right-radius:3px;border-bottom-left-radius:3px}#bookly-tbs .panel .panel-heading .bookly-font-smaller{padding-top:4px}#bookly-tbs .panel .panel-footer{padding:21px 0 0 0;background-color:transparent}@media (min-width:768px){#bookly-tbs .panel .panel-footer{text-align:right}}@media (max-width:767px){#bookly-tbs .panel .panel-footer .btn{float:none!important}}#bookly-tbs .panel .panel-body .bookly-codes input{width:242px;border:none}#bookly-tbs .panel .panel-body #bookly-prices tr td:nth-child(4),#bookly-tbs .panel .panel-body #bookly-prices tr td:nth-child(5){text-align:right}#bookly-tbs .panel .padding-lr-none{padding-right:0;padding-left:0}#bookly-tbs .panel .panel-group .panel-footer{border-top:1px solid #e8ebf0}#bookly-tbs .bookly-collapse{margin-bottom:16px!important}#bookly-tbs .bookly-collapse a[data-toggle=collapse]{padding-right:25px;vertical-align:middle;background:url(../../../resources/images/notifications-arrow-up.png) 100% 50% no-repeat;-webkit-background-size:17px 17px!important;background-size:17px 17px!important;outline:0;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .bookly-collapse a[data-toggle=collapse].collapsed{background:url(../../../resources/images/notifications-arrow-down.png) 100% 50% no-repeat}#bookly-tbs .help-block{margin-top:-5px;margin-bottom:7px}@media (min-width:768px){#bookly-tbs .form-inline .form-group+.form-group,#bookly-tbs .modal-footer .btn+.btn,#bookly-tbs .page-header .bookly-support-panel>*+*,#bookly-tbs .page-header .popover+.btn,#bookly-tbs .panel-footer .btn+.btn:not(.bookly-btn-unborder){margin-left:12px}}#bookly-tbs .bookly-block-head{margin-bottom:20px}#bookly-tbs .intl-tel-input{display:block}#bookly-tbs .intl-tel-input .flag-container{right:0;left:0}#bookly-tbs .intl-tel-input .selected-flag{width:42px;padding:0 0 0 8px}#bookly-tbs .intl-tel-input .selected-flag .arrow{right:4px;left:auto;border-top:4px solid #000;border-right:3px solid transparent;border-left:3px solid transparent}#bookly-tbs .intl-tel-input .iti-flag{background-image:url(../../../../frontend/resources/images/flags.png)}@media only screen and (-webkit-min-device-pixel-ratio:2),only screen and (-o-min-device-pixel-ratio:2/1),only screen and (min-resolution:2dppx){#bookly-tbs .intl-tel-input .iti-flag{background-image:url(../../../../frontend/resources/images/flags@2x.png)}}#bookly-tbs .intl-tel-input .form-control{padding-left:45px}#bookly-tbs .intl-tel-input .country-list{max-width:100%}#bookly-tbs .form-inline label{margin-bottom:0}#bookly-tbs .form-inline .intl-tel-input{display:inline-block}#bookly-tbs .form-inline .bookly-checkbox-text{font-weight:400;vertical-align:middle}#bookly-tbs .page-header{margin-top:0}#bookly-tbs .page-header .bookly-support-panel #bookly-bell+.badge{position:absolute;top:-17px;right:7px;background-color:red}#bookly-tbs .page-header .bookly-support-panel .dropdown-menu-right{margin-top:10px;margin-right:3px}#bookly-tbs .bookly-nav-justified.nav-justified{display:table;margin-bottom:30px;table-layout:fixed}#bookly-tbs .bookly-nav-justified.nav-justified>li{display:table-cell;width:100%}#bookly-tbs .bookly-nav-justified.nav-justified>li>a{padding:15px 5px;margin-bottom:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap;border-bottom:1px solid #d9dee4;border-radius:0}#bookly-tbs .bookly-nav-justified.nav-justified>li>.active>a,#bookly-tbs .bookly-nav-justified.nav-justified>li>.active>a:focus,#bookly-tbs .bookly-nav-justified.nav-justified>li>.active>a:hover{border-bottom:1px solid #08c}#bookly-tbs .bookly-nav-justified.nav-justified>li .bookly-icon{margin:0 3px;vertical-align:bottom}#bookly-tbs .bookly-nav-tabs-title{font-size:17px}@media (max-width:991px){#bookly-tbs .bookly-nav-tabs-title{display:none}}#bookly-tbs .bookly-thumb{position:relative;display:block;width:76px;height:76px;overflow:hidden;background-color:#e8ebf0;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat;background-position:-106px 0;border:1px solid #d9dee4;border-radius:4px}#bookly-tbs .bookly-thumb.bookly-thumb-sm{width:36px;height:36px;background-position:-182px 0}@media (min-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg{width:106px;height:106px;background-position:0 0}}@media (max-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg{background-position:0 0}}#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{background-color:rgba(0,0,0,.05);background-image:none}@media (min-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{width:106px;height:106px;background-position:0 0}}@media (max-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{background-position:0 0}}@media (min-width:992px){#bookly-tbs .bookly-thumb.bookly-thumb-lg-w100{width:100%}}#bookly-tbs .bookly-thumb .bookly-thumb-delete{position:absolute;top:5px;right:5px}#bookly-tbs .bookly-thumb .bookly-thumb-edit{position:absolute;right:0;bottom:0;left:0;background-color:rgba(0,0,0,.4)}#bookly-tbs .bookly-thumb .bookly-thumb-edit .bookly-thumb-edit-btn{width:100%;padding:0 3px;margin:0;overflow:hidden;font-size:13px;line-height:25px;color:#fff;text-align:center;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .bookly-staff-archived{background:rgba(232,235,240,.7)!important}#bookly-tbs .bookly-staff-archived .bookly-flex-cell{color:#d9dee4}#bookly-tbs .bookly-staff-archived .bookly-rating-right{color:#d9dee4}#bookly-tbs .btn{overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .btn.btn-lg{padding-right:32px;padding-left:32px}#bookly-tbs .btn.btn-xlg .dashicons,#bookly-tbs .btn.btn-xlg .dashicons-before:before{width:30px;height:30px;font-size:30px}#bookly-tbs .btn.bookly-btn-unborder{padding-right:0;padding-left:0;border-color:transparent}#bookly-tbs .bookly-nav{margin-bottom:20px;font-size:0}#bookly-tbs .bookly-nav.bookly-nav-pills .bookly-nav-item{display:inline-block;margin:6px 10px 6px 0}#bookly-tbs .bookly-nav.bookly-nav-tabs{z-index:10;border-bottom:1px solid #e8ebf0}@media (min-width:768px){#bookly-tbs .bookly-nav.bookly-nav-tabs{margin-bottom:0}}@media (min-width:768px){#bookly-tbs .bookly-nav.bookly-nav-tabs .bookly-nav-item{position:relative;display:inline-block;padding:12px 16px;margin:6px 10px -1px 0;border-bottom-right-radius:0;border-bottom-left-radius:0}}#bookly-tbs .bookly-nav .bookly-nav-item{position:relative;display:block;padding:10px 10px;margin-bottom:6px;font-size:15px;background:#fff;border:1px solid #e8ebf0;border-radius:4px}#bookly-tbs .bookly-nav .bookly-nav-item.active{color:#fff;background:#08c;border-color:#08c}#bookly-tbs .bookly-nav .bookly-nav-item.active a{color:#fff}#bookly-tbs .bookly-nav .bookly-nav-item.active a:focus,#bookly-tbs .bookly-nav .bookly-nav-item.active a:hover{color:#d9d9d9}#bookly-tbs .bookly-nav .bookly-nav-item:not(.active):focus,#bookly-tbs .bookly-nav .bookly-nav-item:not(.active):hover{cursor:pointer;background-color:#e8ebf0;border-color:#8a929e;-webkit-box-shadow:0 0 5px rgba(0,0,0,.2);box-shadow:0 0 5px rgba(0,0,0,.2)}#bookly-tbs .board-backdrop{position:fixed;top:0;left:0;z-index:1050;width:100%;height:100%;overflow:auto;background-color:#000;background-color:rgba(0,0,0,.5)}#bookly-tbs .board-backdrop .bookly-board{width:50%;padding:20px;margin:10% 25%;background-color:#fefefe;border:1px solid rgba(0,0,0,.2)}@media (max-width:991px){#bookly-tbs .board-backdrop .bookly-board{width:90%;margin:10% 5%}}#bookly-tbs .board-backdrop .bookly-board .btn-group-vertical.align-left .btn{padding-left:6px;text-align:left}#bookly-tbs .board-backdrop .bookly-board ul{margin-left:15px!important;list-style:inside!important}#bookly-tbs .bookly-dropdown-menu>li:first-child{margin-left:0}#bookly-tbs .bookly-dropdown-menu li{margin-left:20px}#bookly-tbs .bookly-dropdown-menu ul>li>a{display:block;padding:3px 20px;clear:both;font-weight:400;line-height:1.4;color:#5b6470;white-space:nowrap}#bookly-tbs .bookly-dropdown-menu ul>li>a:focus,#bookly-tbs .bookly-dropdown-menu ul>li>a:hover{color:#505762;text-decoration:none;background-color:#f5f5f5}#bookly-tbs .bookly-dropdown-block{display:block;width:100%;height:36px;line-height:1.4}#bookly-tbs .bookly-dropdown-block .bookly-flex-cell:last-child{position:absolute;top:7px;left:-webkit-calc(100% - 32px);left:calc(100% - 32px)}#bookly-tbs .bookly-service-color{display:inline-block;width:21px;height:21px;margin-left:-25px;border:2px solid #fff;border-radius:50%}#bookly-tbs .bookly-vertical-colors .bookly-service-color{position:absolute}#bookly-tbs .bookly-vertical-colors .bookly-service-color:nth-child(1){margin-top:-15px}#bookly-tbs .bookly-vertical-colors .bookly-service-color:nth-child(2){margin-top:-5px}#bookly-tbs .bookly-max-height-xs{max-height:200px!important;overflow:auto}#bookly-tbs .bookly-max-height-sm{max-height:300px!important;overflow:auto}#bookly-tbs .bookly-max-height-md{max-height:400px!important;overflow:auto}#bookly-tbs .bookly-max-height-lg{max-height:500px!important;overflow:auto}#bookly-tbs .bookly-holidays-nav{display:block;width:200px;margin:0 auto}#bookly-tbs .bookly-holidays-nav .btn-default,#bookly-tbs .bookly-holidays-nav .form-control{background-color:#eff1f4;border-color:transparent}#bookly-tbs .modal-body textarea.wp-editor-area{width:-webkit-calc(100% - 20px);width:calc(100% - 20px)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-day{cursor:pointer}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-day.bookly-fc-day-active{background-color:#eafcff}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group{position:relative;display:inline-block;vertical-align:middle}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group .fc-button+.fc-button{margin-left:-1px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:not(.fc-corner-left):not(.fc-corner-right){border-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:first-child{margin-left:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:first-child:not(.fc-corner-right){border-top-right-radius:0;border-bottom-right-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group>.fc-button:not(.fc-corner-left){border-top-left-radius:0;border-bottom-left-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button-group:not(:last-child){margin-right:16px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button{display:inline-block;height:auto;padding:6px 12px;margin-bottom:0;overflow:hidden;font-size:15px;font-weight:400;line-height:1.4;text-align:center;text-overflow:ellipsis;white-space:nowrap;vertical-align:middle;-ms-touch-action:manipulation;touch-action:manipulation;cursor:pointer;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;background-image:none;border:1px solid transparent;border-radius:4px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-pill{border-radius:24px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-pill-left{border-top-left-radius:24px;border-bottom-left-radius:24px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-pill-right{border-top-right-radius:24px;border-bottom-right-radius:24px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-lg{padding-right:32px;padding-left:32px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-xlg .dashicons,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.btn-xlg .dashicons-before:before{width:30px;height:30px;font-size:30px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-button.bookly-btn-unborder{padding-right:0;padding-left:0;border-color:transparent}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default{color:#3e424a;text-shadow:none;background-color:#fff;background-image:none;border-color:#d9dee4;-webkit-box-shadow:none;box-shadow:none}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:focus{color:#3e424a;background-color:#e6e6e6;border-color:#8e9daf}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:hover{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default{color:#3e424a;background-color:#e6e6e6;border-color:#b5bfcb}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active:hover,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active:hover,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.focus,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:focus,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:hover{color:#3e424a;background-color:#d4d4d4;border-color:#8e9daf}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.active,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:active,.open>.dropdown-toggle#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default{background-image:none}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.disabled.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.disabled:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.disabled:hover,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default[disabled].focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default[disabled]:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default[disabled]:hover,fieldset[disabled] #bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.focus,fieldset[disabled] #bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:focus,fieldset[disabled] #bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default:hover{background-color:#fff;border-color:#d9dee4}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default .badge{color:#fff;background-color:#3e424a}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active{z-index:1;color:#3e424a;background-color:#e6e6e6;background-image:none;border-color:#b5bfcb;outline:0;-webkit-box-shadow:inset 0 3px 5px rgba(0,0,0,.125);box-shadow:inset 0 3px 5px rgba(0,0,0,.125)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active.focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active:focus,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-state-default.fc-state-active:hover{color:#3e424a;background-color:#d4d4d4;border-color:#8e9daf}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2{position:relative;margin:0;font-size:20px;line-height:32px;cursor:pointer}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2:hover{color:#005580}@media (min-width:768px){#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2{font-size:24px}}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar h2:after{display:inline-block;width:0;height:0;margin-left:12px;vertical-align:middle;content:" ";border-top:5px dashed;border-top:5px solid\9;border-right:5px solid transparent;border-left:5px solid transparent}@media (max-width:767px){#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-left,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-toolbar .fc-right{display:inline-block;float:none;margin:0 12px 6px 12px}}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-head{background-color:#e8ebf0}#bookly-tbs .bookly-fc-inner .bookly-calendar th.fc-widget-header{padding:10px 0}#bookly-tbs .bookly-fc-inner .bookly-calendar th.fc-day-header{text-align:center}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc .fc-axis{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box;padding:0 4px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-view{min-height:.01%;overflow-x:auto}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-view>table{min-width:768px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-event{padding:3px 2px 3px 5px;margin-right:0;margin-left:0;color:#3e424a;cursor:pointer;border-width:0;border-radius:0}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-event:after{position:absolute;top:0;right:0;width:-webkit-calc(100% - 2px);width:calc(100% - 2px);height:100%;content:'';background-color:rgba(255,255,255,.6);border-bottom:1px solid rgba(255,255,255,.4)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-event:hover:after{background-color:rgba(255,255,255,.7)}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-time{font-size:inherit;font-weight:700}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-time .bookly-fc-icon{float:right;color:#3e424a;opacity:.8}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-time .bookly-fc-icon:hover{cursor:pointer;opacity:1}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-title{display:block;margin-top:3px}#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-ltr .fc-time-grid .fc-event-container,#bookly-tbs .bookly-fc-inner .bookly-calendar .fc-rtl .fc-time-grid .fc-event-container{margin:0}#bookly-tbs .bookly-fc-inner .fc-loading-inner{position:absolute;top:50px;right:0;bottom:0;left:0;z-index:9;background-color:rgba(255,255,255,.7)}#bookly-tbs .bookly-fc-inner .fc-loading-inner .fc-loading{position:absolute;top:50%;left:50%;width:auto;height:32px;padding-left:64px;background:rgba(255,0,0,0) url(../../images/ajax_loader_32x32.gif) no-repeat scroll 50% center}#bookly-tbs .bookly-fc-inner .bookly-margin-top-xlg{position:relative;min-height:.01%;overflow:visible}@media (min-width:768px){#bookly-tbs .daterangepicker.dropdown-menu.show-calendar{min-width:718px}}#bookly-tbs .daterangepicker .daterangepicker_input{margin-bottom:6px}#bookly-tbs .daterangepicker .daterangepicker_input .glyphicon{position:absolute;top:8px}#bookly-tbs .wp-editor-wrap *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs .wp-switch-editor+.wp-switch-editor{margin-left:5px}#bookly-tbs .editable-container.popover{z-index:9999}#bookly-tbs .editable-input,#bookly-tbs .editable-input .form-control{width:100%}#bookly-tbs .editable-input textarea{resize:both}#bookly-tbs .editable-buttons{display:block;margin:6px 0;text-align:right}#bookly-tbs .editable-clear-x,#bookly-tbs .editable-click{cursor:pointer}#bookly-tbs .table>thead>tr>th{padding:16px 8px;background-color:#e8ebf0}#bookly-tbs .bookly-table-sortable.table>thead>tr>th{position:relative;padding-left:16px!important}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class],#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by]{cursor:pointer}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class]:after,#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by]:after{position:absolute;bottom:22px;left:-4px;width:24px;height:15px;content:"";background-image:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/PjxzdmcgaGVpZ2h0PSI0OCIgdmlld0JveD0iMCAwIDQ4IDQ4IiB3aWR0aD0iNDgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTE0IDIwbDEwIDEwIDEwLTEweiIvPjxwYXRoIGQ9Ik0wIDBoNDh2NDhoLTQ4eiIgZmlsbD0ibm9uZSIvPjwvc3ZnPg==);background-repeat:no-repeat;background-position:0 -webkit-calc(50% + 2px);background-position:0 calc(50% + 2px);-webkit-background-size:24px 24px;background-size:24px 24px;opacity:.1}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class].desc:after,#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by].desc:after{opacity:1;-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);-o-transform:rotate(180deg);transform:rotate(180deg)}#bookly-tbs .bookly-table-sortable.table>thead>tr>th[ng-class].asc:after,#bookly-tbs .bookly-table-sortable.table>thead>tr>th[order-by].asc:after{opacity:1}#bookly-tbs .table thead>tr>th{vertical-align:middle}#bookly-tbs .table thead>tr>th:not(:first-child){border-left:1px solid #d9dee4}#bookly-tbs .table td>input[type=checkbox],#bookly-tbs .table th>input[type=checkbox]{margin:0}#bookly-tbs .table td ul.bookly-list,#bookly-tbs .table th ul.bookly-list{padding-left:13px;margin:0!important}#bookly-tbs .table td ul.bookly-list.list-dots,#bookly-tbs .table th ul.bookly-list.list-dots{list-style:disc outside!important}#bookly-tbs .table td ul.bookly-list li,#bookly-tbs .table th ul.bookly-list li{margin:0}#bookly-tbs .bookly-color-picker-wrapper{position:relative;min-height:35px}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container{position:absolute;z-index:10;padding:6px;margin-left:-6px;background-color:#fff}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container,#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container *{-webkit-box-sizing:content-box;-moz-box-sizing:content-box;box-sizing:content-box}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container.wp-picker-active{-webkit-box-shadow:0 5px 10px rgba(0,0,0,.2);box-shadow:0 5px 10px rgba(0,0,0,.2)}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container .wp-color-result{height:auto}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container .wp-color-result .wp-color-result-text{max-width:130px;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container .wp-picker-input-wrap{float:right}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container .wp-picker-input-wrap input[type=button]{display:none}#bookly-tbs .bookly-color-picker-wrapper .wp-picker-container .wp-picker-input-wrap .wp-color-picker{padding:4px}#bookly-tbs .page-header .bookly-page-title{float:left;font-size:24px;line-height:38px}@media (max-width:767px){#bookly-tbs .page-header .bookly-page-title{font-size:22px}#bookly-tbs h3{font-size:18px}}#bookly-tbs .modal{top:46px!important;font-size:15px}#bookly-tbs .modal table{font-family:Arial,Helvetica,sans-serif}#bookly-tbs .modal table th{word-break:normal}#bookly-tbs .modal table td{word-break:normal}#bookly-tbs .modal .bookly-codes input{width:242px;border:none}#bookly-tbs .modal-header .close{margin-top:4px}@media (max-width:767px){#bookly-tbs .bookly-form .bookly-progress-tracker{display:none!important}}#bookly-tbs .bookly-form .picker__nav--next,#bookly-tbs .bookly-form .picker__nav--prev{width:26px;height:26px}@media (max-width:991px){#bookly-tbs .bookly-form .bookly-user-coupon{width:135px}}#bookly-tbs .bookly-form .bookly-box{padding-bottom:1px}#bookly-tbs .bookly-form input[type=checkbox],#bookly-tbs .bookly-form input[type=radio]{width:16px!important;height:16px!important}#bookly-tbs .bookly-icon{display:inline-block;width:24px;height:24px;vertical-align:middle;background-color:transparent;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat}#bookly-tbs .bookly-icon.bookly-icon-draghandle{background-position:-154px -82px}#bookly-tbs .has-feedback .alert-icon{display:inline-block;width:24px;height:24px;margin:4px 6px 0 0;vertical-align:middle;background-color:transparent;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat}#bookly-tbs .has-feedback.has-success .alert-icon{background-position:-24px -113px}#bookly-tbs .has-feedback.has-error .alert-icon{background-position:-48px -113px}#bookly-tbs .has-feedback.has-warning .alert-icon{background-position:-72px -113px}#bookly-tbs .has-feedback.has-ajax .alert-icon{background-position:-72px -113px;-webkit-animation:spin 3s infinite;-o-animation:spin 3s infinite;animation:spin 3s infinite}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}@-o-keyframes spin{100%{-o-transform:rotate(360deg);transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);-o-transform:rotate(360deg);transform:rotate(360deg)}}#bookly-tbs .alert{margin-top:30px}#bookly-tbs .alert .alert-icon,#bookly-tbs .alert .close{display:inline-block;width:24px;height:24px;vertical-align:top;background-color:transparent;background-image:url(../../../../backend/resources/images/sprite.png);background-repeat:no-repeat}#bookly-tbs .alert .close{margin-top:-2px}#bookly-tbs .alert.alert-info .alert-icon{background-position:0 -113px}#bookly-tbs .alert.alert-success .alert-icon{background-position:-24px -113px}#bookly-tbs .alert.alert-danger .alert-icon{background-position:-48px -113px}#bookly-tbs .alert.alert-warning .alert-icon{background-position:-72px -113px}#bookly-tbs .bookly-alert{position:fixed;top:55px;right:13px;z-index:10000;text-align:left}@media (min-width:783px){#bookly-tbs .bookly-alert{right:21px}}#bookly-tbs .bookly-alert button{margin-left:10px}#bookly-tbs .pagination .next,#bookly-tbs .pagination .prev{position:inherit;width:inherit;height:inherit;padding:inherit}#bookly-tbs .pagination .next:before,#bookly-tbs .pagination .prev:before{position:inherit;width:inherit;height:inherit;padding:inherit;content:""}#bookly-tbs #bookly-appointments-list .popover .arrow{display:none}#bookly-tbs .bookly-rating-right{float:right}#bookly-tbs .bookly-rating-left{margin-left:10px}#bookly-tbs .bookly-rating-left i{margin-top:3px}#bookly-tbs .table.table-striped{border:1px solid #f4f4f4}#bookly-tbs .table.table-striped thead>tr>th{background-color:transparent;border-top:1px solid #f4f4f4}#bookly-tbs .table.table-striped thead>tr>th:not(:first-child){border-left:1px solid #f4f4f4}#bookly-tbs .table.table-striped thead>tr>th{border-bottom:none}#bookly-tbs .table.table-striped tbody>tr>td{border-top:1px solid #f4f4f4}#bookly-tbs .modal.fade.show{opacity:1}#bookly-tbs .modal .modal-header{display:block}#bookly-tbs ul{list-style:none}#bookly-tbs .modal.show .modal-dialog{-webkit-transform:translate(0,0);-ms-transform:translate(0,0);-o-transform:translate(0,0);transform:translate(0,0)}#bookly-tbs h2:before{content:none}#bookly-tbs .dataTables_wrapper{display:block}#bookly-tbs input[type=search]{min-height:21px}#bookly-tbs input[type=radio]{-webkit-appearance:radio}#bookly-tbs select{max-width:unset}#bookly-tbs ol{margin-left:2em}#bookly-tbs table{margin:0;overflow:unset}body.mobile.modal-open #wpwrap{position:inherit!important}.modal-backdrop{position:fixed;top:0;right:0;bottom:0;left:0;z-index:1040;background-color:#000}.modal-backdrop.fade{filter:alpha(opacity=0);opacity:0}.modal-backdrop.in{filter:alpha(opacity=50);opacity:.5}.modal-backdrop+.modal-backdrop{display:none!important}.modal-open{overflow:hidden!important}.modal-open .modal{overflow-x:hidden!important;overflow-y:auto!important}.select2-container--bootstrap{display:block}.select2-container--bootstrap .select2-selection{font-size:15px;color:#3e424a;background-color:#fff;border:1px solid #d9dee4;border-radius:4px;outline:0;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.select2-container--bootstrap .select2-selection.form-control{border-radius:4px}.select2-container--bootstrap .select2-search--dropdown .select2-search__field{font-size:15px;color:#3e424a;background-color:#fff;border:1px solid #d9dee4;border-radius:4px;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075);box-shadow:inset 0 1px 1px rgba(0,0,0,.075)}.select2-container--bootstrap .select2-search__field{outline:0}.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder{color:#8a929e}.select2-container--bootstrap .select2-search__field:-moz-placeholder{color:#8a929e}.select2-container--bootstrap .select2-search__field::-moz-placeholder{color:#8a929e;opacity:1}.select2-container--bootstrap .select2-search__field:-ms-input-placeholder{color:#8a929e}.select2-container--bootstrap .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option[role=group]{padding:0}.select2-container--bootstrap .select2-results__option[aria-disabled=true]{color:#d9dee4;cursor:not-allowed}.select2-container--bootstrap .select2-results__option[aria-selected=true]{color:#505762;background-color:#f5f5f5}.select2-container--bootstrap .select2-results__option--highlighted[aria-selected]{color:#fff;background-color:#08c}.select2-container--bootstrap .select2-results__option .select2-results__option{padding:6px 12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group{padding-left:0}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option{padding-left:24px;margin-left:-12px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:36px;margin-left:-24px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:48px;margin-left:-36px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:60px;margin-left:-48px}.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option{padding-left:72px;margin-left:-60px}.select2-container--bootstrap .select2-results__group{display:block;padding:6px 12px;font-size:13px;line-height:1.4;color:#d9dee4;white-space:nowrap}.select2-container--bootstrap.select2-container--focus .select2-selection,.select2-container--bootstrap.select2-container--open .select2-selection{border-color:#08c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,204,.6);box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(0,136,204,.6);-webkit-transition:border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b{border-color:transparent transparent #8a929e transparent;border-width:0 5px 5px 5px}.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection{border-bottom-color:transparent;border-bottom-right-radius:0;border-bottom-left-radius:0}.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection{border-top-color:transparent;border-top-left-radius:0;border-top-right-radius:0}.select2-container--bootstrap .select2-selection__clear{float:right;margin-right:10px;font-weight:700;color:#8a929e;cursor:pointer}.select2-container--bootstrap .select2-selection__clear:hover{color:#3e424a}.select2-container--bootstrap.select2-container--disabled .select2-selection{border-color:#d9dee4;-webkit-box-shadow:none;box-shadow:none}.select2-container--bootstrap.select2-container--disabled .select2-search__field,.select2-container--bootstrap.select2-container--disabled .select2-selection{cursor:not-allowed}.select2-container--bootstrap.select2-container--disabled .select2-selection,.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice{background-color:rgba(232,235,240,.7)}.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove,.select2-container--bootstrap.select2-container--disabled .select2-selection__clear{display:none}.select2-container--bootstrap .select2-dropdown{margin-top:-1px;overflow-x:hidden;border-color:#08c;-webkit-box-shadow:0 6px 12px rgba(0,0,0,.175);box-shadow:0 6px 12px rgba(0,0,0,.175)}.select2-container--bootstrap .select2-dropdown--above{margin-top:1px;-webkit-box-shadow:0 -6px 12px rgba(0,0,0,.175);box-shadow:0 -6px 12px rgba(0,0,0,.175)}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:200px;overflow-y:auto}.select2-container--bootstrap .select2-selection--single{height:35px;padding:6px 27px 6px 12px;line-height:1.4}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow{position:absolute;top:0;right:12px;bottom:0;width:5px}.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b{position:absolute;top:50%;left:0;width:0;height:0;margin-top:-2.5px;margin-left:-5px;border-color:#8a929e transparent transparent transparent;border-style:solid;border-width:5px 5px 0 5px}.select2-container--bootstrap .select2-selection--single .select2-selection__rendered{padding:0;color:#3e424a}.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder{color:#8a929e}.select2-container--bootstrap .select2-selection--multiple{height:auto;min-height:35px;padding:0}.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered{display:block;width:100%;-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box;padding:0;margin:0;overflow:hidden;line-height:1.4;text-overflow:ellipsis;white-space:nowrap;list-style:none}.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder{float:left;margin-top:5px;color:#8a929e}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice{float:left;padding:0 6px;margin:5px 0 0 6px;color:#3e424a;cursor:default;background:#fff;border:1px solid #d9dee4;border-radius:4px}.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field{min-width:5em;height:21px;padding:0 12px;margin-top:0;line-height:1.4;background:0 0}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove{display:inline-block;margin-right:3px;font-weight:700;color:#8a929e;cursor:pointer}.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover{color:#3e424a}.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear{margin-top:6px}.form-group-sm .select2-container--bootstrap .select2-selection--single,.input-group-sm .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-sm{height:32px;padding:5px 25px 5px 10px;font-size:13px;line-height:1.53846154;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b{margin-left:-5px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple,.input-group-sm .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-sm{min-height:32px;border-radius:3px}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice{padding:0 5px;margin:4px 0 0 5px;font-size:13px;line-height:1.53846154}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field{height:30px;padding:0 10px;font-size:13px;line-height:1.53846154}.form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear{margin-top:5px}.form-group-lg .select2-container--bootstrap .select2-selection--single,.input-group-lg .select2-container--bootstrap .select2-selection--single,.select2-container--bootstrap .select2-selection--single.input-lg{height:46px;padding:10px 34px 10px 16px;font-size:18px;line-height:1.3333333;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow{width:6px}.form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b,.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b{margin-top:-3px;margin-left:-10px;border-width:6px 6px 0 6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple,.input-group-lg .select2-container--bootstrap .select2-selection--multiple,.select2-container--bootstrap .select2-selection--multiple.input-lg{min-height:46px;border-radius:6px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice{padding:0 10px;margin:9px 0 0 8px;font-size:18px;line-height:1.3333333;border-radius:4px}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field{height:44px;padding:0 16px;font-size:18px;line-height:1.3333333}.form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear,.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear{margin-top:10px}.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #8a929e transparent;border-width:0 6px 6px 6px}.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b{border-color:transparent transparent #8a929e transparent;border-width:0 6px 6px 6px}.select2-container--bootstrap[dir=rtl] .select2-selection--single{padding-right:12px;padding-left:27px}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__rendered{padding-right:0;padding-left:0;text-align:right}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__clear{float:left}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow{right:auto;left:12px}.select2-container--bootstrap[dir=rtl] .select2-selection--single .select2-selection__arrow b{margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-search--inline,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice,.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__placeholder{float:right}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice{margin-right:6px;margin-left:0}.select2-container--bootstrap[dir=rtl] .select2-selection--multiple .select2-selection__choice__remove{margin-right:auto;margin-left:2px}.has-warning .select2-dropdown,.has-warning .select2-selection{border-color:#8a6d3b}.has-warning .select2-container--focus .select2-selection,.has-warning .select2-container--open .select2-selection{border-color:#66512c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #c0a16b}.has-warning.select2-drop-active{border-color:#66512c}.has-warning.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#66512c}.has-error .select2-dropdown,.has-error .select2-selection{border-color:#a94442}.has-error .select2-container--focus .select2-selection,.has-error .select2-container--open .select2-selection{border-color:#843534;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #ce8483}.has-error.select2-drop-active{border-color:#843534}.has-error.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#843534}.has-success .select2-dropdown,.has-success .select2-selection{border-color:#3c763d}.has-success .select2-container--focus .select2-selection,.has-success .select2-container--open .select2-selection{border-color:#2b542c;-webkit-box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168;box-shadow:inset 0 1px 1px rgba(0,0,0,.075),0 0 6px #67b168}.has-success.select2-drop-active{border-color:#2b542c}.has-success.select2-drop-active.select2-drop.select2-drop-above{border-top-color:#2b542c}.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection,.input-group>.select2-hidden-accessible:first-child+.select2-container--bootstrap>.selection>.select2-selection.form-control{border-top-right-radius:0;border-bottom-right-radius:0}.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child)+.select2-container--bootstrap:not(:last-child)>.selection>.select2-selection.form-control{border-radius:0}.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection,.input-group>.select2-hidden-accessible:not(:first-child):not(:last-child)+.select2-container--bootstrap:last-child>.selection>.select2-selection.form-control{border-top-left-radius:0;border-bottom-left-radius:0}.input-group>.select2-container--bootstrap{position:relative;z-index:2;display:table;width:100%;margin-bottom:0;table-layout:fixed}.input-group>.select2-container--bootstrap>.selection>.select2-selection.form-control{float:none}.input-group>.select2-container--bootstrap.select2-container--focus,.input-group>.select2-container--bootstrap.select2-container--open{z-index:3}.input-group>.select2-container--bootstrap,.input-group>.select2-container--bootstrap .input-group-btn,.input-group>.select2-container--bootstrap .input-group-btn .btn{vertical-align:top}.form-control.select2-hidden-accessible{position:absolute!important;width:1px!important}@media (min-width:768px){.form-inline .select2-container--bootstrap{display:inline-block}}.select2-results__option{padding:7px 12px;margin-bottom:1px!important}.select2-results__option[aria-selected=true]{color:#8a929e!important;background-color:inherit!important}.select2-container--bootstrap .select2-results>.select2-results__options{max-height:400px}.select2-container--bootstrap .select2-results>.select2-results__options .select2-results__option{padding:2px 12px;margin-bottom:1px!important;font-size:15px;line-height:1.4em}.select2-container--bootstrap .select2-results>.select2-results__options .select2-results__option i{margin-right:5px}.select2-container--bootstrap .select2-results>.select2-results__options .select2-results__group{font-size:16px;color:#000}#select2-bookly-appointment-dialog-select2-results .select2-results__option[aria-selected=true]{color:#444!important}table.dt-rowReorder-float{position:absolute!important;outline:2px solid #888}table td{text-align:unset}ol,ul{margin:unset}input[type=search]{height:unset}
backend/resources/js/plugins.js ADDED
@@ -0,0 +1,36 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ jQuery(function ($) {
2
+ $('.bookly-js-plugin').each(function () {
3
+ let $plugin_tr = $(this).prev();
4
+ $plugin_tr.addClass('update');
5
+
6
+ $('[data-bookly-plugin]',$(this)).on('click', function (e) {
7
+ e.preventDefault();
8
+ let $spinner = $(this).siblings('.spinner');
9
+ $spinner.addClass('is-active');
10
+ let $update_link = $('a[href*="puc_check_for_updates=1&puc_slug=bookly-addon-"]', $plugin_tr),
11
+ data = {
12
+ action : 'bookly_pro_re_check_support',
13
+ csrf_token: $(this).data('csrf'),
14
+ plugin : $(this).data('bookly-plugin')
15
+ };
16
+
17
+ $.ajax({
18
+ url : ajaxurl,
19
+ type : 'POST',
20
+ data : data,
21
+ dataType : 'json',
22
+ success : function(response) {
23
+ if (response.valid) {
24
+ window.location.href = $update_link.attr('href');
25
+ } else {
26
+ $spinner.removeClass('is-active');
27
+ alert(response.message);
28
+ }
29
+ },
30
+ error: function (XHR, exception) {
31
+ $spinner.removeClass('is-active');
32
+ },
33
+ });
34
+ })
35
+ })
36
+ });
frontend/modules/booking/Ajax.php CHANGED
@@ -751,7 +751,7 @@ class Ajax extends Lib\Base\Ajax
751
  array(),
752
  self::parameter( 'form_id' ),
753
  Lib\Proxy\Shared::showPaymentSpecificPrices( false ),
754
- $cart_info,
755
  $userData->extractPaymentStatus()
756
  );
757
  $status = Lib\Entities\Payment::STATUS_PENDING;
751
  array(),
752
  self::parameter( 'form_id' ),
753
  Lib\Proxy\Shared::showPaymentSpecificPrices( false ),
754
+ clone $cart_info,
755
  $userData->extractPaymentStatus()
756
  );
757
  $status = Lib\Entities\Payment::STATUS_PENDING;
frontend/resources/css/bookly-main.css CHANGED
@@ -70,6 +70,7 @@
70
  .bookly-form input[type="password"],
71
  .bookly-form select,
72
  .bookly-form textarea {
 
73
  margin: 0 !important;
74
  outline: none !important;
75
  }
@@ -83,10 +84,14 @@
83
  padding: 5px 6px 4px !important;
84
  }
85
  .bookly-form label {
 
86
  float: none;
87
  width: auto;
88
  font-size: 14px;
89
  }
 
 
 
90
  .bookly-form .bookly-label-error {
91
  font-size: 12px;
92
  font-weight: bold;
@@ -650,7 +655,7 @@ select.bookly-time-zone-switcher {
650
  margin: 0 !important;
651
  }
652
 
653
- .bookly-pagination > li {
654
  line-height: 32px;
655
  display: inline-block;
656
  border: 1px solid #cccccc !important;
70
  .bookly-form input[type="password"],
71
  .bookly-form select,
72
  .bookly-form textarea {
73
+ display: inline;
74
  margin: 0 !important;
75
  outline: none !important;
76
  }
84
  padding: 5px 6px 4px !important;
85
  }
86
  .bookly-form label {
87
+ display: inline;
88
  float: none;
89
  width: auto;
90
  font-size: 14px;
91
  }
92
+ .bookly-form img {
93
+ display: inline;
94
+ }
95
  .bookly-form .bookly-label-error {
96
  font-size: 12px;
97
  font-weight: bold;
655
  margin: 0 !important;
656
  }
657
 
658
+ .bookly-form .bookly-pagination > li, .bookly-pagination > li {
659
  line-height: 32px;
660
  display: inline-block;
661
  border: 1px solid #cccccc !important;
languages/bookly-de_DE.mo CHANGED
Binary file
languages/bookly-de_DE.po CHANGED
@@ -3,1622 +3,2107 @@ msgstr ""
3
  "MIME-Version: 1.0\n"
4
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "Content-Transfer-Encoding: 8bit\n"
6
- "X-Generator: POEditor.com\n"
7
  "Project-Id-Version: Bookly\n"
8
- "Language: de\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
 
 
 
 
10
 
11
- #:
12
- msgid "Calendar"
13
- msgstr "Kalender"
14
 
15
- #:
16
- msgid "Appointments"
17
- msgstr "Termine"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- #:
20
- msgid "Staff Members"
21
- msgstr "Mitarbeiter"
22
 
23
- #:
24
- msgid "Services"
25
- msgstr "Dienstleistungen"
 
 
 
 
 
 
 
26
 
27
- #:
28
- msgid "SMS Notifications"
29
- msgstr "SMS Benachrichtigungen"
30
 
31
- #:
32
- msgid "Email Notifications"
33
- msgstr "E-Mail Benachrichtigungen"
34
 
35
- #:
36
- msgid "Customers"
37
- msgstr "Kunden"
38
 
39
- #:
40
- msgid "Payments"
41
- msgstr "Zahlungsarten"
42
 
43
- #:
44
- msgid "Appearance"
45
- msgstr "Darstellung"
46
 
47
- #:
48
- msgid "Settings"
49
- msgstr "Einstellungen"
50
 
51
- #:
52
- msgid "Custom Fields"
53
- msgstr "Benutzerdefinierte Felder"
 
 
 
 
 
 
 
 
 
54
 
55
- #:
56
- msgid "Profile"
57
- msgstr "Profil"
58
 
59
- #:
60
- msgid "Messages"
61
- msgstr "Nachrichten"
62
 
63
- #:
64
- msgid "Today"
65
- msgstr "Heute"
66
 
67
- #:
68
- msgid "Next month"
69
- msgstr "Nächster Monat"
70
 
71
- #:
72
- msgid "Previous month"
73
- msgstr "Vorheriger Monat"
 
 
74
 
75
- #:
76
  msgid "Settings saved."
77
  msgstr "Einstellung wurden gespeichert."
78
 
79
- #:
80
- msgid "Your custom CSS was saved. Please refresh the page to see your changes."
81
- msgstr "Ihre benutzerdefinierte CSS wurde gespeichert. Bitte aktualisieren Sie die Seite, um Ihre Änderungen zu sehen."
82
 
83
- #:
84
- msgid "Visible when the chosen time slot has been already booked"
85
- msgstr "Sichtbar, für bereits gebuchte Zeiten"
86
 
87
- #:
88
- msgid "Date"
89
- msgstr "Datum"
90
 
91
- #:
92
- msgid "Time"
93
- msgstr "Zeit"
94
 
95
- #:
96
- msgid "Price"
97
- msgstr "Preis"
98
 
99
- #:
100
- msgid "Edit"
101
- msgstr "Bearbeiten"
102
 
103
- #:
104
- msgid "Total"
105
- msgstr "Gesamt"
106
 
107
- #:
108
- msgid "Visible to non-logged in customers only"
109
- msgstr "Sichtbar nur für anonyme Kunden"
 
 
 
110
 
111
- #:
112
- msgid "total quantity of appointments in cart"
113
- msgstr "Gesamtmenge der Termine im Einkaufswagen"
114
 
115
- #:
116
- msgid "booking number"
117
- msgstr "Buchungsnummer"
118
 
119
- #:
120
- msgid "name of category"
121
- msgstr "Name der Kategorie"
122
 
123
- #:
124
- msgid "login form"
125
- msgstr "Login Formular"
126
 
127
- #:
128
- msgid "number of persons"
129
- msgstr "Personenanzahl"
130
 
131
- #:
132
- msgid "date of service"
133
- msgstr "Datum der Dienstleistung"
134
 
135
- #:
136
- msgid "info of service"
137
- msgstr "Informationen zur Dienstleistung"
138
 
139
- #:
140
- msgid "name of service"
141
- msgstr "Name der Dienstleistung"
142
 
143
- #:
144
- msgid "price of service"
145
- msgstr "Preis der Dienstleistung"
146
 
147
- #:
148
- msgid "time of service"
149
- msgstr "Zeit der Dienstleistung"
150
 
151
- #:
152
- msgid "info of staff"
153
- msgstr "Informationen zum Mitarbeiter"
154
 
155
- #:
156
- msgid "name of staff"
157
- msgstr "Name des Mitarbeiters"
158
 
159
- #:
160
- msgid "total price of booking"
161
- msgstr "Gesamtpreis der Buchung"
162
 
163
- #:
164
- msgid "Edit custom CSS"
165
- msgstr "Bearbeite benutzerdefinierte CSS"
166
 
167
- #:
168
- msgid "Set up your custom CSS styles"
169
- msgstr "Richten Sie Ihre benutzerdefinierten CSS-Stile ein"
170
 
171
- #:
172
- msgid "Save"
173
- msgstr "Speichern"
174
 
175
- #:
176
- msgid "Cancel"
177
- msgstr "Abbrechen"
178
 
179
- #:
180
- msgid "Show form progress tracker"
181
- msgstr "Anzeige des Fortschritts"
182
 
183
- #:
184
- msgid "Click on the underlined text to edit."
185
- msgstr "Zum Ändern klicke auf den unterstrichenen Text."
186
 
187
- #:
188
- msgid "Make selecting employee required"
189
- msgstr "Auswahl eines Mitarbeiters erforderlich"
190
 
191
- #:
192
- msgid "Show service price next to employee name"
193
- msgstr "Preis der Dienstleistung neben dem Mitarbeiternamen anzeigen"
 
 
 
194
 
195
- #:
196
- msgid "Show service duration next to service name"
197
- msgstr "Dauer der Dienstleistung neben dem Mitarbeiternamen anzeigen"
198
 
199
- #:
200
- msgid "Show calendar"
201
- msgstr "Zeige Kalender"
202
 
203
- #:
204
- msgid "Show blocked timeslots"
205
- msgstr "Zeige blockierte Zeiten"
206
 
207
- #:
208
- msgid "Show each day in one column"
209
- msgstr "Zeige jeden Tag in einer Spalte"
 
 
 
 
 
210
 
211
- #:
212
- msgid "Show Login button"
213
- msgstr "Zeige Login Button"
214
 
215
- #:
216
- msgid "Do not forget to update your email and SMS codes for customer names"
217
- msgstr "Aktualisierung deiner Email und SMS Codes für Kundennamen nicht vergessen"
218
 
219
- #:
220
- msgid "Use first and last name instead of full name"
221
- msgstr "Benutze Vorname und Nachname anstelle des vollständigen Namens"
222
 
223
- #:
224
- msgid "The booking form on this step may have different set or states of its elements. It depends on various conditions such as installed/activated add-ons, settings configuration or choices made on previous steps. Select option and click on the underlined text to edit."
225
- msgstr "Das Buchungsformular in diesem Schritt kann unterschiedliche Sätze oder Zustände seiner Elemente haben. Es hängt von verschiedenen Bedingungen ab, wie installierte/aktivierte Add-ons, Einstellungen, Konfiguration oder Entscheidungen die in vorherigen Schritten gemacht wurden. Wählen Sie Option und klicken Sie auf den unterstrichenen Text, um diese zu bearbeiten."
 
 
 
 
 
 
226
 
227
- #:
228
- msgid "Tomorrow"
229
- msgstr "Morgen"
 
 
230
 
231
- #:
232
- msgid "Yesterday"
233
- msgstr "Gestern"
 
 
 
 
234
 
235
- #:
236
- msgid "Apply"
237
- msgstr "Speichern"
 
 
 
 
 
238
 
239
- #:
240
- msgid "To"
241
- msgstr "bis"
 
 
 
242
 
243
- #:
244
- msgid "From"
245
- msgstr "von"
 
 
 
 
 
246
 
247
- #:
248
- msgid "Are you sure?"
249
- msgstr "Sind Sie sicher?"
250
-
251
- #:
252
- msgid "No appointments for selected period."
253
- msgstr "Keine Termine für den ausgewählten Zeitraum."
254
 
255
- #:
256
- msgid "Processing..."
257
- msgstr "Verarbeitung..."
 
 
 
258
 
259
- #:
260
- msgid "%s of %s"
261
- msgstr "%s von %s"
 
 
 
 
 
 
 
 
262
 
263
- #:
264
- msgid "No."
265
- msgstr "Nr."
 
 
 
 
 
 
 
266
 
267
- #:
268
- msgid "Customer Name"
269
- msgstr "Kundenname"
 
 
 
270
 
271
- #:
272
- msgid "Customer Phone"
273
- msgstr "Kundentelefon"
 
 
 
274
 
275
- #:
276
- msgid "Customer Email"
277
- msgstr "Kunden-eMail"
278
 
279
- #:
280
- msgid "Duration"
281
- msgstr "Dauer"
 
 
282
 
283
- #:
284
- msgid "Status"
285
- msgstr "Status"
286
 
287
- #:
288
- msgid "Payment"
289
- msgstr "Bezahlung"
 
 
 
 
290
 
291
- #:
292
- msgid "Appointment Date"
293
- msgstr "Termin Datum"
294
 
295
- #:
296
- msgid "New appointment"
297
- msgstr "Neuer Termin"
 
 
298
 
299
- #:
300
- msgid "Customer"
301
- msgstr "Kunde"
302
 
303
- #:
304
- msgid "Edit appointment"
305
- msgstr "Termin bearbeiten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
 
307
- #:
308
- msgid "Week"
309
- msgstr "Woche"
310
 
311
- #:
312
- msgid "Day"
313
- msgstr "Tag"
314
 
315
- #:
316
- msgid "Month"
317
- msgstr "Monat"
318
 
319
- #:
320
- msgid "All Day"
321
- msgstr "Den ganzen Tag"
322
 
323
- #:
324
- msgid "Delete"
325
- msgstr "Löschen"
 
 
 
 
 
 
326
 
327
- #:
328
- msgid "No staff selected"
329
- msgstr "Kein Mitarbeiter ausgewählt"
330
 
331
- #:
332
- msgid "Recurring appointments"
333
- msgstr "Wiederkehrende Termine"
 
 
 
 
 
334
 
335
- #:
336
- msgid "On waiting list"
337
- msgstr "Auf der Warteliste"
338
 
339
- #:
340
- msgid "Start time must not be empty"
341
- msgstr "Startzeit darf nicht leer sein"
 
 
 
 
 
 
342
 
343
- #:
344
- msgid "End time must not be empty"
345
- msgstr "Endzeit darf nicht leer sein"
346
 
347
- #:
348
- msgid "End time must not be equal to start time"
349
- msgstr "Die Startzeit muss früher als das Termin-Ende sein"
 
 
 
 
350
 
351
- #:
352
- msgid "The number of customers should not be more than %d"
353
- msgstr "Die Anzahl der Kunden sollte nicht größer als %d sein"
354
 
355
- #:
356
- msgid "Could not save appointment in database."
357
- msgstr "Termin konnte nicht in Datenbank gespeichert werden."
 
358
 
359
- #:
360
- msgid "Untitled"
361
- msgstr "Ohne Bezeichnung"
362
 
363
- #:
364
- msgid "Provider"
365
- msgstr "Dienstleister"
 
 
 
366
 
367
- #:
368
- msgid "Service"
369
- msgstr "Dienstleistung"
370
 
371
- #:
372
- msgid "-- Select a service --"
373
- msgstr "-- Wählen Sie einen Service --"
374
 
375
- #:
376
- msgid "Please select a service"
377
- msgstr "Bitte wählen Sie eine Dienstleistung aus"
378
 
379
- #:
380
- msgid "Location"
381
- msgstr "Ort"
382
 
383
- #:
384
- msgid "Period"
385
- msgstr "Zeitraum"
386
 
387
- #:
388
- msgid "to"
389
- msgstr "bis"
390
 
391
- #:
392
- msgid "Selected period doesn't match service duration"
393
- msgstr "Der gewählte Zeitraum passt nicht zur Dauer der gewählten Dienstleistung"
394
 
395
- #:
396
- msgid "The selected period is occupied by another appointment"
397
- msgstr "Der gewählte Zeitraum ist bereits durch einen anderen Termin belegt"
398
 
399
- #:
400
- msgid "Selected / maximum"
401
- msgstr "Ausgewählt / max."
402
 
403
- #:
404
- msgid "Minimum capacity"
405
- msgstr "Mindest Kapazität"
406
 
407
- #:
408
- msgid "Edit booking details"
409
- msgstr "Buchungsdetails bearbeiten"
410
 
411
- #:
412
- msgid "Remove customer"
413
- msgstr "Entferne Kunde"
414
 
415
- #:
416
- msgid "-- Search customers --"
417
- msgstr "--Suche Kunden--"
418
 
419
- #:
420
- msgid "New customer"
421
- msgstr "Neuer Kunde"
422
 
423
- #:
424
- msgid "Send notifications"
425
- msgstr "Benachrichtigungen senden"
426
 
427
- #:
428
- msgid "Internal note"
429
- msgstr "Interner Hinweis"
430
 
431
- #:
432
- msgid "Number of persons"
433
- msgstr "Personenanzahl"
434
 
435
- #:
436
- msgid "Cancellation reason (optional)"
437
- msgstr "Stornierungsgrund (optional)"
438
 
439
- #:
440
- msgid "All"
441
- msgstr "Alle"
442
 
443
- #:
444
- msgid "All staff"
445
- msgstr "Alle Mitarbeiter"
446
 
447
- #:
448
- msgid "Add staff members."
449
- msgstr "Mitarbeiter hinzufügen"
450
 
451
- #:
452
- msgid "Add Staff Members"
453
- msgstr "Mitarbeiter hinzufügen"
454
 
455
- #:
456
- msgid "Add Services"
457
- msgstr "Dienstleistungen hinzufügen"
458
 
459
- #:
460
- msgid "All services"
461
- msgstr "Alle Dienstleistungen"
462
 
463
- #:
464
- msgid "Code"
465
- msgstr "Code"
466
 
467
- #:
468
- msgid "Reorder"
469
- msgstr "Nachbestellung"
470
 
471
- #:
472
- msgid "No customers found."
473
- msgstr "Keine Kunden gefunden."
474
 
475
- #:
476
- msgid "Edit customer"
477
- msgstr "Kunden bearbeiten"
478
 
479
- #:
480
- msgid "Create customer"
481
- msgstr "Neuer Kunde"
482
 
483
- #:
484
- msgid "Quick search customer"
485
- msgstr "Schnellsuche Kunden"
486
 
487
- #:
488
- msgid "User"
489
- msgstr "Benutzer"
490
 
491
- #:
492
- msgid "Notes"
493
- msgstr "Mitteilung"
494
 
495
- #:
496
- msgid "Last appointment"
497
- msgstr "Letzter Termin"
498
 
499
- #:
500
- msgid "Total appointments"
501
- msgstr "Termine insgesamt"
502
 
503
- #:
504
- msgid "New Customer"
505
- msgstr "Neuer Kunde"
 
 
 
506
 
507
- #:
508
- msgid "First name"
509
- msgstr "Vorname"
 
510
 
511
- #:
512
- msgid "Required"
513
- msgstr "Erforderlich"
 
 
 
 
 
 
 
 
514
 
515
- #:
516
- msgid "Last name"
517
- msgstr "Nachname"
518
 
519
- #:
520
- msgid "Name"
521
- msgstr "Name"
522
 
523
- #:
524
- msgid "Phone"
525
- msgstr "Telefon"
526
 
527
- #:
528
- msgid "Email"
529
- msgstr "E-Mail"
530
 
531
- #:
532
- msgid "Delete customers"
533
- msgstr "Kunden löschen"
534
 
535
- #:
536
- msgid "Remember my choice"
537
- msgstr "Auswahl merken"
538
 
539
- #:
540
- msgid "Yes"
541
- msgstr "Ja"
542
 
543
- #:
544
- msgid "%d day"
545
- msgid_plural "%d days"
546
- msgstr[0] "%d Tag"
547
- msgstr[1] "%d Tage"
548
 
549
- #:
550
- msgid "Sent successfully."
551
- msgstr "Erfolgreich gesendet."
552
 
553
- #:
554
- msgid "Subject"
555
- msgstr "Gegenstand"
556
 
557
- #:
558
- msgid "Message"
559
- msgstr "Mitteilung"
560
 
561
- #:
562
- msgid "date of appointment"
563
- msgstr "Datum des Termins"
564
 
565
- #:
566
- msgid "time of appointment"
567
- msgstr "Zeitpunkt des Termins"
568
 
569
- #:
570
- msgid "end date of appointment"
571
- msgstr "Enddatum des Termins"
572
 
573
- #:
574
- msgid "end time of appointment"
575
- msgstr "Endzeit des Termins"
576
 
577
- #:
578
- msgid "URL of approve appointment link (to use inside <a> tag)"
579
- msgstr "URL zur Termin \"Genehmigung\" (im <a>Tag verwenden)"
580
 
581
- #:
582
- msgid "cancel appointment link"
583
- msgstr "Link zum Termin stornieren"
584
 
585
- #:
586
- msgid "URL of cancel appointment link (to use inside <a> tag)"
587
- msgstr "URL zur Termin \"Abbrechen\" (im <a>Tag verwenden)"
588
 
589
- #:
590
- msgid "reason you mentioned while deleting appointment"
591
- msgstr "Grund während der Terminstornierung"
592
 
593
- #:
594
- msgid "email of client"
595
- msgstr "E-Mail des Kunden"
596
 
597
- #:
598
- msgid "full name of client"
599
- msgstr "vollständiger Name des Kunden"
600
 
601
- #:
602
- msgid "first name of client"
603
- msgstr "Vorname des Kunden"
 
604
 
605
- #:
606
- msgid "last name of client"
607
- msgstr "Nachname des Kunden"
608
 
609
- #:
610
- msgid "phone of client"
611
- msgstr "Telefon des Kunden"
612
 
613
- #:
614
- msgid "name of company"
615
- msgstr "Name des Unternehmens"
616
 
617
- #:
618
- msgid "company logo"
619
- msgstr "Firmenlogo"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
620
 
621
- #:
622
- msgid "address of company"
623
- msgstr "Adresse des Unternehmens"
624
 
625
- #:
626
- msgid "company phone"
627
- msgstr "Firmentelefon"
628
 
629
- #:
630
- msgid "company web-site address"
631
- msgstr "Unternehmens Website-Adresse"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
632
 
633
- #:
634
- msgid "URL for adding event to client's Google Calendar (to use inside <a> tag)"
635
- msgstr "URL für das Hinzufügen von Terminen zum Google Kalender des Kunden (im <a>Tag verwenden)"
636
 
637
- #:
638
- msgid "payment type"
639
- msgstr "Zahlungsart"
640
 
641
- #:
642
- msgid "duration of service"
643
- msgstr "Dauer der Dienstleistung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
644
 
645
- #:
646
- msgid "email of staff"
647
- msgstr "E-Mail des Mitarbeiters"
648
 
649
- #:
650
- msgid "phone of staff"
651
- msgstr "Telefon des Mitarbeiters"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
 
653
- #:
654
- msgid "photo of staff"
655
- msgstr "Foto des Mitarbeiters"
656
 
657
- #:
658
- msgid "total price of booking (sum of all cart items after applying coupon)"
659
- msgstr "Gesamtpreis der Buchung (Summe aller Buchungen nach Gutschein-Anwendung)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
660
 
661
- #:
662
- msgid "cart information"
663
- msgstr "Warenkorb Informationen"
664
 
665
- #:
666
- msgid "cart information with cancel"
667
- msgstr "Warenkorb Informationen mit Löschfunktion"
668
 
669
- #:
670
- msgid "customer new username"
671
- msgstr "Neuer Benutzername für Kunden"
672
 
673
- #:
674
- msgid "customer new password"
675
- msgstr "Neues Passwort für Kunden"
676
 
677
- #:
678
- msgid "site address"
679
- msgstr "Website-Adresse"
680
 
681
- #:
682
- msgid "date of next day"
683
- msgstr "Datum des nächsten Tages"
 
 
 
 
684
 
685
- #:
686
- msgid "staff agenda for next day"
687
- msgstr "Termin-Plan für den nächsten Tag"
688
 
689
- #:
690
- msgid "To email"
691
- msgstr "An E-Mail"
692
 
693
- #:
694
- msgid "Sender name"
695
- msgstr "Name des Absenders"
696
 
697
- #:
698
- msgid "Sender email"
699
- msgstr "Absender E-Mail-Adresse"
700
 
701
- #:
702
- msgid "Reply directly to customers"
703
- msgstr "Antwort direkt an Kunden"
704
 
705
- #:
706
- msgid "Disabled"
707
- msgstr "Gesperrt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
708
 
709
- #:
710
  msgid "Enabled"
711
  msgstr "Aktiviert"
712
 
713
- #:
714
- msgid "Send emails as"
715
- msgstr "Senden Sie E-Mails als"
716
 
717
- #:
718
- msgid "HTML"
719
- msgstr "HTML"
720
 
721
- #:
722
- msgid "Text"
723
- msgstr "Text"
724
 
725
- #:
726
- msgid "Notification templates"
727
- msgstr "Benachrichtigungsvorlagen"
728
 
729
- #:
730
- msgid "All templates"
731
- msgstr "Alle Vorlagen"
732
 
733
- #:
734
- msgid "Send"
735
- msgstr "Senden"
736
 
737
- #:
738
- msgid "Close"
739
- msgstr "Schließen"
740
 
741
- #:
742
- msgid "HTML allows formatting, colors, fonts, positioning, etc. With Text you must use Text mode of rich-text editors below. On some servers only text emails are sent successfully."
743
- msgstr "HTML ermöglicht die Formatierung, Farben, Schriftarten, Positionierung, etc. Der Text muss im Text-Modus in den Editor eingegeben werden. Einige Server senden nur Text-E-Mails."
744
 
745
- #:
746
- msgid "If this option is enabled then the email address of the customer is used as a sender email address for notifications sent to staff members and administrators."
747
- msgstr "Wenn diese Option aktiviert ist, wird die E-Mail-Adresse des Kunden wird als Absender E-Mail-Anschrift für Mitteilungen an Mitarbeiter und Administratoren gesendet werden."
748
 
749
- #:
750
- msgid "Codes"
751
- msgstr "Codes"
752
 
753
- #:
754
- msgid "To send scheduled notifications please refer to <a href=\"%1$s\">Bookly Multisite</a> add-on <a href=\"%2$s\">message</a>."
755
- msgstr "Um geplante Benachrichtigungen zu senden, sehen Sie den <a href=\"%2$s\">Hinweis</a> von <a href=\"%1$s\">Bookly Multisite</a>."
756
 
757
- #:
758
- msgid "To send scheduled notifications please execute the following command hourly with your cron:"
759
- msgstr "Um geplante Benachrichtigungen zu senden, führen Sie bitte den folgenden Befehl stündlich mit Ihrem cron aus:"
760
 
761
- #:
762
- msgid "No payments for selected period and criteria."
763
- msgstr "Keine Zahlungen für den gewünschten Zeitraum und Bedingungen."
764
 
765
- #:
766
- msgid "Details"
767
- msgstr "Details"
768
 
769
- #:
770
- msgid "See details for more items"
771
- msgstr "Sehe Details für weitere Buchungen"
772
 
773
- #:
774
- msgid "Type"
775
- msgstr "Type"
776
 
777
- #:
778
- msgid "Deposit"
779
- msgstr "Anzahlung"
780
 
781
- #:
782
- msgid "Subtotal"
783
- msgstr "Zwischensumme"
784
 
785
- #:
786
- msgid "Paid"
787
- msgstr "Bezahlt"
788
 
789
- #:
790
- msgid "Due"
791
- msgstr "Während"
792
 
793
- #:
794
- msgid "Complete payment"
795
- msgstr "Vollständige Bezahlung"
796
 
797
- #:
798
- msgid "Amount"
799
- msgstr "Höhe"
800
 
801
- #:
802
- msgid "Min capacity should not be greater than max capacity."
803
- msgstr "Die Min Kapazität sollte nicht größer als die Max Kapazität sein"
804
 
805
- #:
806
- msgid "%d service"
807
- msgid_plural "%d services"
808
- msgstr[0] "%d Dienst"
809
- msgstr[1] "%d Dienste"
810
 
811
- #:
812
- msgid "Simple"
813
- msgstr "Einfach"
814
 
815
- #:
816
- msgid "Title"
817
- msgstr "Name"
818
 
819
- #:
820
- msgid "Color"
821
- msgstr "Farbe"
822
 
823
- #:
824
- msgid "Visibility"
825
- msgstr "Sichtweite"
826
 
827
- #:
828
- msgid "Public"
829
- msgstr "Öffentlich"
830
 
831
- #:
832
- msgid "Private"
833
- msgstr "Privat"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
834
 
835
- #:
836
- msgid "OFF"
837
- msgstr "Aus"
838
 
839
- #:
840
- msgid "Providers"
841
- msgstr "Anbieter"
842
 
843
- #:
844
- msgid "Category"
845
- msgstr "Kategorie"
846
 
847
- #:
848
- msgid "Uncategorized"
849
- msgstr "Nicht kategorisiert"
850
 
851
- #:
852
- msgid "Info"
853
- msgstr "Info"
854
 
855
- #:
856
- msgid "This text can be inserted into notifications with %s code."
857
- msgstr "Dieser Text kann mit %s Code in Benachrichtigungen eingefügt werden."
858
 
859
- #:
860
- msgid "Add Service"
861
- msgstr "Service hinzufügen."
862
 
863
- #:
864
- msgid "No services found. Please add services."
865
- msgstr "Keine Dienste gefunden. Bitte Dienste hinzufügen."
866
 
867
- #:
868
- msgid "Update service setting"
869
- msgstr "Update-Service-Einstellung"
870
 
871
- #:
872
- msgid "You are about to change a service setting which is also configured separately for each staff member. Do you want to update it in staff settings too?"
873
- msgstr "Sie sind dabei, eine Service-Einstellung, die auch separat für jeden Mitarbeiter konfiguriert ist, zu ändern. Wollen Sie es in allgemeinen Team-Einstellungen aktualisieren?"
874
 
875
- #:
876
- msgid "No, update just here in services"
877
- msgstr "Nein, nur hier im Servicebereich aktualisieren"
878
 
879
- #:
880
- msgid "WooCommerce cart is not set up. Follow the <a href=\"%s\">link</a> to correct this problem."
881
- msgstr "WooCommerce Warenkorb nicht eingerichtet ist. Folgen Sie dem <a href=\"%s\">Link</a>, um dieses Problem zu beheben."
882
 
883
- #:
884
- msgid "Repeat every year"
885
- msgstr "Wiederhole jedes Jahr"
886
 
887
- #:
888
- msgid "We are not working on this day"
889
- msgstr "An diesem Tag stehen wir nicht zur Verfügung."
890
 
891
- #:
892
- msgid "Appointment with one participant"
893
- msgstr "Termin mit einen Teilnehmer"
894
 
895
- #:
896
- msgid "Appointment with many participants"
897
- msgstr "Termin mit mehreren Teilnehmern"
898
 
899
- #:
900
- msgid "Enter a value"
901
- msgstr "Geben Sie einen Wert an"
902
 
903
- #:
904
- msgid "capacity of service"
905
- msgstr "Kapazität der Dienstleistung"
906
 
907
- #:
908
- msgid "number of persons already in the list"
909
- msgstr "Anzahl der Personen bereits in der liste"
910
 
911
- #:
912
- msgid "status of payment"
913
- msgstr "Status der Zahlung"
914
 
915
- #:
916
- msgid "status of appointment"
917
- msgstr "Status des Termins"
918
 
919
- #:
920
- msgid "Cart"
921
- msgstr "Warenkorb"
922
 
923
- #:
924
- msgid "Image"
925
- msgstr "Bild"
926
 
927
- #:
928
- msgid "Company name"
929
- msgstr "Firmenname"
930
 
931
- #:
932
- msgid "Address"
933
- msgstr "Adresse"
934
 
935
- #:
936
- msgid "Website"
937
- msgstr "Webseite"
938
 
939
- #:
940
- msgid "Phone field default country"
941
- msgstr "Telefon Feld Standard Land"
942
 
943
- #:
944
- msgid "Select default country for the phone field in the 'Details' step of booking. You can also let Bookly determine the country based on the IP address of the client."
945
- msgstr "Wählen Sie ein Standard Land für das Telefon Feld in dem Schritt der Buchung 'Details'. Sie können auch Bookly das Land auf der Grundlage der IP-Adresse des Kunden bestimmen lassen."
946
 
947
- #:
948
- msgid "Guess country by user's IP address"
949
- msgstr "Bestimme Land nach IP-Adresse des Benutzers"
950
 
951
- #:
952
- msgid "Default country code"
953
- msgstr "Standard-Ländercode"
954
 
955
- #:
956
- msgid "Your clients must have their phone numbers in international format in order to receive text messages. However you can specify a default country code that will be used as a prefix for all phone numbers that do not start with \"+\" or \"00\". E.g. if you enter \"1\" as the default country code and a client enters their phone as \"(600) 555-2222\" the resulting phone number to send the SMS to will be \"+1600555222\"."
957
- msgstr "Ihre Kunden müssen ihre Telefonnummern im internationalen Format, um SMS-Nachrichten zu empfangen. Wie auch immer Sie eine Standardlandesvorwahl, die als Präfix für alle Telefonnummern, die nicht mit \"+\" oder \"00\" lohnt Start verwendet werden können angeben. Z.B. wenn Sie \"1\" als Standard-Ländercode eingeben und ein Client gibt seine Handy als \"(600) 555-2222\" die resultierende Telefonnummer, um die SMS zu senden, um wird \"+1600555222\"."
958
 
959
- #:
960
- msgid "Remember personal information in cookies"
961
- msgstr "Kundendaten in Cookies speichern"
962
 
963
- #:
964
- msgid "If this setting is enabled then returning customers will have their personal information fields filled in at the Details step with the data previously saved in cookies."
965
- msgstr "Ist diese Einstellung aktiviert werden die gespeicherten Kundendaten aus den Cookies automatisch für wiederkehrende Kunden ausgefüllt"
966
 
967
- #:
968
- msgid "Time slot length"
969
- msgstr "Dauer Zeitintervall"
970
 
971
- #:
972
- msgid "Select a time interval which will be used as a step when building all time slots in the system."
973
- msgstr "Wählen Sie eine Dauer aus, die bei der Erstellung aller Zeitintervalle im System verwendet wird."
974
 
975
- #:
976
- msgid "Enable this option to make slot length equal to service duration at the Time step of booking form."
977
- msgstr "Aktivieren Sie diese Option, um die Zeitintervalle gleich der Servicedauer zum Zeitpunkt des Buchungsformulars zu machen."
978
 
979
- #:
980
- msgid "Default appointment status"
981
- msgstr "Standardterminstatus"
982
 
983
- #:
984
- msgid "Select status for newly booked appointments."
985
- msgstr "Wählen Sie Status für neu gebuchte Termine."
986
 
987
- #:
988
- msgid "Pending"
989
- msgstr "Zu bestätigen"
990
 
991
- #:
992
- msgid "Approved"
993
- msgstr "Bestätigt"
994
 
995
- #:
996
- msgid "Approve appointment URL (success)"
997
- msgstr "Termin-Genehmigung URL ( erfolgreich )"
998
 
999
- #:
1000
- msgid "Set the URL of a page that is shown to staff after they successfully approved the appointment."
1001
- msgstr "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem sie den Termin erfolgreich genehmigt haben."
1002
 
1003
- #:
1004
- msgid "Approve appointment URL (denied)"
1005
- msgstr "Termin-Genehmigung URL ( abgelehnt )"
1006
 
1007
- #:
1008
- msgid "Set the URL of a page that is shown to staff when the approval of appointment cannot be done (due to capacity, changed status, etc.)."
1009
- msgstr "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem sie den Termin nicht erfolgreich genehmigen konnten ( wegen Kapazität, Status Änderung, etc. )"
1010
 
1011
- #:
1012
- msgid "Cancel appointment URL (success)"
1013
- msgstr "Abgesagter Termin URL (erfolgreich)"
1014
 
1015
- #:
1016
- msgid "Set the URL of a page that is shown to clients after they successfully cancelled their appointment."
1017
- msgstr "URL der Seite, die dem Kunden gezeigt wird, nachdem ein Termin storniert wurde."
1018
 
1019
- #:
1020
- msgid "Cancel appointment URL (denied)"
1021
- msgstr "Abgesagter Termin URL ( abgelehnt )"
1022
 
1023
- #:
1024
- msgid "Set the URL of a page that is shown to clients when the cancellation of appointment is not available anymore."
1025
- msgstr "URL der Seite, die dem Kunden angezeigt wird, wenn die Stornierung des Termins nicht mehr möglich ist."
1026
 
1027
- #:
1028
- msgid "Number of days available for booking"
1029
- msgstr "Anzahl der zur Verfügung stehenden Tage"
1030
 
1031
- #:
1032
- msgid "Set how far in the future the clients can book appointments."
1033
- msgstr "Wie weit die Kunden in der Zukunft buchen können."
1034
 
1035
- #:
1036
- msgid "Display available time slots in client's time zone"
1037
- msgstr "Anzeige der Zeiten in der Zeitzone des Kunden"
1038
 
1039
- #:
1040
- msgid "Allow staff members to edit their profiles"
1041
- msgstr "Mitarbeiter dürfen ihre Profile bearbeiten"
1042
 
1043
- #:
1044
- msgid "If this option is enabled then all staff members who are associated with WordPress users will be able to edit their own profiles, services, schedule and days off."
1045
- msgstr "Wenn diese Option aktiviert ist, können alle Mitarbeiter, denen Wordpress-Nutzer zugeordnet sind, ihre eigenen Profile, Dienstleistungen, Zeitpläne und freie Tage bearbeiten."
1046
 
1047
- #:
1048
- msgid "Method to include Bookly JavaScript and CSS files on the page"
1049
- msgstr "Verfahren, um in Bookly mit JavaScript und CSS-Dateien auf der Seite einzubinden"
1050
 
1051
- #:
1052
- msgid "With \"Enqueue\" method the JavaScript and CSS files of Bookly will be included on all pages of your website. This method should work with all themes. With \"Print\" method the files will be included only on the pages which contain Bookly booking form. This method may not work with all themes."
1053
- msgstr "Mit \"Enqueue\" werden die JavaScript und CSS-Dateien von Bookly auf allen Seiten Ihrer Website eingebunden. Diese Methode sollte bei allen Themes funktionieren. Mit der \"Print\" Methode werden die Dateien nur auf den Seiten eingebunden, die das Bookly Buchungsformular enthalten. Dieses Verfahren läuft nicht mit allen Themes."
1054
 
1055
- #:
1056
- msgid "Help us improve Bookly by sending anonymous usage stats"
1057
- msgstr "Helfen Sie uns durch senden anonymer Nutzungsstatistiken Bookly zu verbessern "
1058
 
1059
- #:
1060
- msgid "Instructions"
1061
- msgstr "Anweisungen"
1062
 
1063
- #:
1064
- msgid "Please note, the business hours below work as a template for all new staff members. To render a list of available time slots the system takes into account only staff members' schedule, not the company business hours. Be sure to check the schedule of your staff members if you have some unexpected behavior of the booking system."
1065
- msgstr "Bitte beachten Sie, dass die unten aufgeführten Geschäftszeiten als Vorlage für alle neuen Mitarbeiter dienen. Um eine Liste der verfügbaren Zeiten zu erstellen, berücksichtigt das System nur den Zeitplan der Mitarbeiter, nicht die Öffnungszeiten des Unternehmens. Achten Sie darauf, den Zeitplan Ihrer Mitarbeiter zu überprüfen, wenn Sie einige unerwartete Verhalten des Buchungssystems haben."
1066
 
1067
- #:
1068
- msgid "Currency"
1069
- msgstr "Währung"
1070
 
1071
- #:
1072
- msgid "Price format"
1073
- msgstr "Preisformat"
1074
 
1075
- #:
1076
- msgid "Service paid locally"
1077
- msgstr "Service vor Ort bezahlt"
1078
 
1079
- #:
1080
- msgid "No"
1081
- msgstr "Nein"
1082
 
1083
- #:
1084
- msgid "Client"
1085
- msgstr "Kunde"
1086
 
1087
- #:
1088
- msgid "General"
1089
- msgstr "Generell"
1090
 
1091
- #:
1092
- msgid "Company"
1093
- msgstr "Unternehmen"
1094
 
1095
- #:
1096
- msgid "Business Hours"
1097
- msgstr "Servicezeiten"
1098
 
1099
- #:
1100
- msgid "Holidays"
1101
- msgstr "Ferien"
1102
 
1103
- #:
1104
- msgid "Please accept terms and conditions."
1105
- msgstr "Bitte akzeptieren Sie Nutzungsbedingungen."
1106
 
1107
- #:
1108
- msgid "Your payment has been accepted for processing."
1109
- msgstr "Ihre Zahlung wurde zur Verarbeitung übernommen."
1110
 
1111
- #:
1112
- msgid "Your payment has been interrupted."
1113
- msgstr "Ihre Zahlung wurde unterbrochen."
1114
 
1115
- #:
1116
- msgid "Auto-Recharge enabled."
1117
- msgstr "Automatische Aufladefunktion aktiviert."
1118
 
1119
- #:
1120
- msgid "You declined the Auto-Recharge of your balance."
1121
- msgstr "Sie lehnten die automatische Aufladung Ihres Guthabens ab."
1122
 
1123
- #:
1124
- msgid "Please enter old password."
1125
- msgstr "Bitte geben Sie Ihr altes Kennwort ein."
1126
 
1127
- #:
1128
- msgid "Passwords must be the same."
1129
- msgstr "Passwörter müssen gleich sein."
 
 
1130
 
1131
- #:
1132
- msgid "Sender ID request is sent."
1133
- msgstr "Anforderung Sender-ID wird gesendet."
1134
 
1135
- #:
1136
- msgid "Sender ID is reset to default."
1137
- msgstr "Sender-ID ist wieder auf Standard gesetzt."
 
 
 
1138
 
1139
- #:
1140
- msgid "No records for selected period."
1141
- msgstr "Keine Datensätze für den gewünschten Zeitraum."
1142
 
1143
- #:
1144
- msgid "No records."
1145
- msgstr "Keine Einträge."
1146
 
1147
- #:
1148
- msgid "Auto-Recharge has failed, please replenish your balance directly."
1149
- msgstr "Automatische Aufladefunktion ist fehlgeschlagen, bitte füllen Sie Ihre Guthaben direkt auf."
1150
 
1151
- #:
1152
- msgid "Auto-Recharge disabled"
1153
- msgstr "Automatische Aufladefunktion deaktiviert"
1154
 
1155
- #:
1156
- msgid "Error. Can't disable Auto-Recharge, you can perform this action in your PayPal account."
1157
- msgstr "Fehler. Wir können die automatische Aufladefunktion nicht deaktivieren. Sie können dies in Ihrem PayPal-Konto durchführen."
1158
 
1159
- #:
1160
- msgid "SMS has been sent successfully."
1161
- msgstr "SMS wurde erfolgreich gesendet."
 
 
 
1162
 
1163
- #:
1164
- msgid "We will only charge your PayPal account when your balance falls below $10."
1165
- msgstr "Wir belasten nur Ihr PayPal-Konto, sobald Ihr Guthaben unter $10 fällt."
1166
 
1167
- #:
1168
- msgid "Enable Auto-Recharge"
1169
- msgstr "Aktivieren Sie Automatische Aufladefunktion"
1170
 
1171
- #:
1172
- msgid "Disable Auto-Recharge"
1173
- msgstr "Deaktivieren Sie Automatische Aufladefunktion"
1174
 
1175
- #:
1176
- msgid "Administrator phone"
1177
- msgstr "Telefon von Administrator"
1178
 
1179
- #:
1180
- msgid "Enter a phone number in international format. E.g. for the United States a valid phone number would be +17327572923."
1181
- msgstr "Geben Sie eine Telefonnummer im internationalen Format ein. Z.B. eine gültige Telefonnummer wie +49234555776"
 
 
 
 
1182
 
1183
- #:
1184
- msgid "Send test SMS"
1185
- msgstr "Senden Sie Test SMS"
1186
 
1187
- #:
1188
- msgid "Country"
1189
- msgstr "Land"
1190
 
1191
- #:
1192
- msgid "Regular price"
1193
- msgstr "Regulärer Preis"
1194
 
1195
- #:
1196
- msgid "Price with custom Sender ID"
1197
- msgstr "Preis mit benutzerdefinierten Sender-ID"
1198
 
1199
- #:
1200
- msgid "Order"
1201
- msgstr "Bestellen"
1202
 
1203
- #:
1204
- msgid "Please take into account that not all countries by law allow custom SMS sender ID. Please check if particular country supports custom sender ID in our price list. Also please note that prices for messages with custom sender ID are usually 20% - 25% higher than normal message price."
1205
- msgstr "Bitte beachten Sie, dass nicht alle Länder gesetzlich individuelle SMS-Absender-ID ermöglichen. Bitte überprüfen Sie, ob bestimmten Land ID benutzerdefinierte Absender in unserer Preisliste unterstützt. Bitte beachten Sie auch, dass die Preise für Nachrichten mit benutzerdefinierten Sender-ID sind in der Regel 20% - 25% höher als normale Nachricht Preis."
1206
 
1207
- #:
1208
- msgid "Request Sender ID"
1209
- msgstr "Anfrage Sender-ID"
1210
 
1211
- #:
1212
- msgid "or"
1213
- msgstr "oder"
1214
 
1215
- #:
1216
- msgid "Reset to default"
1217
- msgstr "Zurücksetzen"
1218
 
1219
- #:
1220
- msgid "Can only contain letters or digits (up to 11 characters)."
1221
- msgstr "Kann nur Buchstaben oder Ziffern (bis zu 11 Zeichen) enthalten."
1222
 
1223
- #:
1224
- msgid "Request"
1225
- msgstr "Anfordern"
1226
 
1227
- #:
1228
- msgid "Cancel request"
1229
- msgstr "Anfrage abbrechen"
1230
 
1231
- #:
1232
- msgid "Requested ID"
1233
- msgstr "Gewünscht ID"
1234
 
1235
- #:
1236
- msgid "Status Date"
1237
- msgstr "Datum Status"
1238
 
1239
- #:
1240
- msgid "Sender ID"
1241
- msgstr "Sender-ID"
 
 
 
 
 
 
 
 
 
 
1242
 
1243
- #:
1244
- msgid "Cost"
1245
- msgstr "Kosten"
1246
 
1247
- #:
1248
- msgid "Your balance"
1249
- msgstr "Ihr Guthaben"
1250
 
1251
- #:
1252
- msgid "Send email notification to administrators at low balance"
1253
- msgstr "Senden von E-Mail-Benachrichtigung an die Administratoren bei niedrigen Guthaben"
1254
 
1255
- #:
1256
- msgid "Send weekly summary to administrators"
1257
- msgstr "Senden wöchentliche Zusammenfassung für Administratoren"
1258
 
1259
- #:
1260
- msgid "Change"
1261
- msgstr "Ändern"
1262
 
1263
- #:
1264
- msgid "Approved at"
1265
- msgstr "Zugelassen bei"
 
 
 
 
1266
 
1267
- #:
1268
- msgid "Log out"
1269
- msgstr "Abmelden"
1270
 
1271
- #:
1272
- msgid "Notifications"
1273
- msgstr "Benachrichtigungen"
 
 
 
1274
 
1275
- #:
1276
- msgid "Add money"
1277
- msgstr "Geld hinzufügen"
1278
 
1279
- #:
1280
- msgid "Auto-Recharge"
1281
- msgstr "Automatische Aufladefunktion"
1282
 
1283
- #:
1284
- msgid "Purchases"
1285
- msgstr "Einkäufe"
1286
 
1287
- #:
1288
- msgid "SMS Details"
1289
- msgstr "SMS-Details"
1290
 
1291
- #:
1292
- msgid "Price list"
1293
- msgstr "Preisliste"
1294
 
1295
- #:
1296
- msgid "SMS Notifications (or \"Bookly SMS\") is a service for notifying your customers via text messages which are sent to mobile phones."
1297
- msgstr "SMS Benachrichtigungen (oder \"Bookly SMS\") ist ein Dienst zur Benachrichtigung Ihre Kunden per SMS, die an Mobiltelefone gesendet werden."
1298
 
1299
- #:
1300
- msgid "It is necessary to register in order to start using this service."
1301
- msgstr "Es ist notwendig, um zu registrieren, um mit der Anwendung dieses Service."
1302
 
1303
- #:
1304
- msgid "After registration you will need to configure notification messages and top up your balance in order to start sending SMS."
1305
- msgstr "Nach der Registrierung müssen Sie die Benachrichtigungen konfigurieren und Ihr Ihrer Guthaben auffüllen, um das Senden von SMS zu starten."
1306
 
1307
- #:
1308
- msgid "Login"
1309
- msgstr "Einloggen"
 
 
 
 
 
1310
 
1311
- #:
1312
- msgid "Password"
1313
- msgstr "Passwort"
1314
 
1315
- #:
1316
- msgid "Log In"
1317
- msgstr "Einloggen"
1318
 
1319
- #:
1320
- msgid "Registration"
1321
- msgstr "Anmeldung"
1322
 
1323
- #:
1324
- msgid "Forgot password"
1325
- msgstr "Passwort vergessen"
1326
 
1327
- #:
1328
- msgid "Repeat password"
1329
- msgstr "Passwort wiederholen"
 
 
1330
 
1331
- #:
1332
- msgid "Register"
1333
- msgstr "Registrieren"
1334
 
1335
- #:
1336
- msgid "Enter code from email"
1337
- msgstr "Code eingeben von E-Mail"
1338
 
1339
- #:
1340
- msgid "New password"
1341
- msgstr "Neues Passwort"
1342
 
1343
- #:
1344
- msgid "Repeat new password"
1345
- msgstr "Neues Passwort wiederholen"
1346
 
1347
- #:
1348
- msgid "Next"
1349
- msgstr "Weiter"
1350
 
1351
- #:
1352
- msgid "Change password"
1353
- msgstr "Kennwort ändern"
1354
 
1355
- #:
1356
- msgid "Old password"
1357
- msgstr "Altes Passwort"
 
1358
 
1359
- #:
1360
- msgid "All locations"
1361
- msgstr "Alle Orte"
1362
 
1363
- #:
1364
- msgid "No locations selected"
1365
- msgstr "Keine Standorte ausgewählt"
 
 
 
 
 
1366
 
1367
- #:
1368
- msgid "The start time must be less than the end one"
1369
- msgstr "Die Startzeit muss kleiner als das Termin-Ende sein"
1370
 
1371
- #:
1372
- msgid "The requested interval is not available"
1373
- msgstr "Der gewünschte Zeitraum ist nicht verfügbar"
1374
 
1375
- #:
1376
- msgid "Error adding the break interval"
1377
- msgstr "Fehler beim Hinzufügen der Pausenzeiten"
1378
 
1379
- #:
1380
- msgid "Delete break"
1381
- msgstr "Löschen"
1382
 
1383
- #:
1384
- msgid "Breaks"
1385
- msgstr "Pausen"
 
 
 
 
 
1386
 
1387
- #:
1388
- msgid "Full name"
1389
- msgstr "Ganzer Name"
 
1390
 
1391
- #:
1392
- msgid "If this staff member requires separate login to access personal calendar, a regular WP user needs to be created for this purpose."
1393
- msgstr "Wenn dieser Mitarbeiter ein separates Login für den Zugriff auf persönliche Kalender erfordert, muss ein WP Anwender für diesen Zweck erstellt werden."
 
 
 
 
 
 
1394
 
1395
- #:
1396
- msgid "User with \"Administrator\" role will have access to calendars and settings of all staff members, user with another role will have access only to personal calendar and settings."
1397
- msgstr "Benutzer mit \"Administrator\" Rechten haben Zugriff zum Kalender und Einstellung aller Dienstleister, Benutzer mit anderen Rechten haben nur Zugriff zum persönlichen Kalender und Einstellungen"
 
 
 
1398
 
1399
- #:
1400
- msgid "If you leave this field blank, this staff member will not be able to access personal calendar using WP backend."
1401
- msgstr "Wenn Sie dieses Feld leer lassen hat der Dienstleister keinen Zugriff auf seinen persönlichen Kalender über das Wordpress Backend"
1402
 
1403
- #:
1404
- msgid "Select from WP users"
1405
- msgstr "Auswahl eines gespeichertenWP-Benutzers"
 
 
 
1406
 
1407
- #:
1408
- msgid "To make staff member invisible to your customers set the visibility to \"Private\"."
1409
- msgstr "Um Mitarbeiter vor den Kunden zu verbergen, stellen Sie die Sichtbarkeit auf \"Privat\"."
1410
 
1411
- #:
1412
- msgid "Schedule"
1413
- msgstr "Zeitplan"
1414
 
1415
- #:
1416
- msgid "Days off"
1417
- msgstr "Freie Tage"
1418
 
1419
- #:
1420
- msgid "add break"
1421
- msgstr "Pause einfügen"
 
1422
 
1423
- #:
1424
- msgid "Reset"
1425
- msgstr "Zurücksetzen"
1426
 
1427
- #:
1428
- msgid "All fields marked with an asterisk (*) are required."
1429
- msgstr "Alle Felder, mit einem Sternchen markiert (*), sind erforderlich."
1430
 
1431
- #:
1432
- msgid "Invalid email."
1433
- msgstr "Ungültige E-Mail."
1434
 
1435
- #:
1436
- msgid "Error sending support request."
1437
- msgstr "Fehler Support-Anfrage senden."
1438
 
1439
- #:
1440
- msgid "Show all notifications"
1441
- msgstr "Zeige alle Nachrichten"
1442
 
1443
- #:
1444
- msgid "Mark all notifications as read"
1445
- msgstr "Markiere alle Nachrichten als gelesen"
1446
 
1447
- #:
1448
- msgid "Documentation"
1449
- msgstr "Dokumentation"
1450
 
1451
- #:
1452
- msgid "Need help? Contact us here."
1453
- msgstr "Brauchen Sie Hilfe? Kontaktieren Sie uns hier."
1454
 
1455
- #:
1456
- msgid "Feedback"
1457
- msgstr "Feedback"
1458
 
1459
- #:
1460
- msgid "Leave us a message"
1461
- msgstr "Hinterlassen Sie uns eine Nachricht"
1462
 
1463
- #:
1464
- msgid "Your name"
1465
- msgstr "Ihr Name"
1466
 
1467
- #:
1468
- msgid "Email address"
1469
- msgstr "E-Mail-Addresse "
1470
 
1471
- #:
1472
- msgid "How can we help you?"
1473
- msgstr "Wie können wir Ihnen helfen?"
1474
 
1475
- #:
1476
- msgid "How likely is it that you would recommend Bookly to a friend or colleague?"
1477
- msgstr "Wie wahrscheinlich ist es, dass Sie Bookly an einen Freund oder Kollegen empfehlen würden?"
1478
 
1479
- #:
1480
- msgid "What do you think should be improved?"
1481
- msgstr "Was denken Sie, sollte verbessert werden?"
1482
 
1483
- #:
1484
- msgid "Please enter your email (optional)"
1485
- msgstr "Bitte geben Sie Ihre E-Mail (optional)"
1486
 
1487
- #:
1488
- msgid "Please leave your feedback <a href=\"%s\" target=\"_blank\">here</a>."
1489
- msgstr "Bitte hinterlassen Sie Ihr Feedback <a href=\"%s\" target=\"_blank\">hier</a>."
1490
 
1491
- #:
1492
- msgid "Subscribe to monthly emails about Bookly improvements and new releases."
1493
- msgstr "Melden Sie sich für monatliche E-Mails über Bookly Verbesserungen und neue Versionen an."
1494
 
1495
- #:
1496
- msgid "Add Bookly booking form"
1497
- msgstr "Bookly Buchungsformular hinzufügen"
1498
 
1499
- #:
1500
- msgid "Staff"
 
 
1501
  msgstr "Mitarbeiter"
1502
 
1503
- #:
1504
- msgid "Insert"
1505
- msgstr "Einfügen"
1506
 
1507
- #:
1508
- msgid "Default value for category select"
1509
- msgstr "Den Standardwert für die Kategorie wählen"
1510
 
1511
- #:
1512
- msgid "Select category"
1513
- msgstr "Wähle Kategorie"
1514
 
1515
- #:
1516
- msgid "Hide this field"
1517
- msgstr "Dieses Feld ausblenden"
1518
 
1519
- #:
1520
- msgid "Default value for service select"
1521
- msgstr "Standardwert für den Service gewählt"
1522
 
1523
- #:
1524
- msgid "Select service"
1525
- msgstr "Wählen Sie den Service"
1526
 
1527
- #:
1528
- msgid "Please be aware that a value in this field is required in the frontend. If you choose to hide this field, please be sure to select a default value for it"
1529
- msgstr "Bitte beachten Sie, dass ein Wert in diesem Feld im Frontend erforderlich ist. Wenn Sie dieses Feld verbergen, legen Sie bitten einen Standardwert fest."
1530
 
1531
- #:
1532
- msgid "Default value for employee select"
1533
- msgstr "Den Standardwert für die Mitarbeiter wählen"
1534
 
1535
- #:
1536
- msgid "Any"
1537
- msgstr "Jeder"
1538
 
1539
- #:
1540
- msgid "Week days"
1541
- msgstr "Wochentage"
1542
 
1543
- #:
1544
- msgid "Time range"
1545
- msgstr "Zeitspanne"
1546
 
1547
- #:
1548
- msgid "Insert Appointment Booking Form"
1549
- msgstr "Termin einfügen in das Reservierungsformular"
1550
 
1551
- #:
1552
- msgid "Show more"
1553
- msgstr "Zeige mehr"
 
 
 
1554
 
1555
- #:
1556
- msgid "Session error."
1557
- msgstr "Sitzungsfehler."
1558
 
1559
- #:
1560
- msgid "Form ID error."
1561
- msgstr "Form ID Fehler."
1562
 
1563
- #:
1564
- msgid "Pay locally is not available."
1565
- msgstr "Vor Ort zahlen ist nicht verfügbar."
1566
 
1567
- #:
1568
- msgid "Invalid gateway."
1569
- msgstr "Ungültige Gateway."
1570
 
1571
- #:
1572
- msgid "No time is available for selected criteria."
1573
- msgstr "Es stehen keine Zeiten für die ausgewählten Kriterien zur Verfügung."
1574
 
1575
- #:
1576
- msgid "Data already in use"
1577
- msgstr "Diese Daten werden bereits verwendet"
1578
 
1579
- #:
1580
- msgid "Page Redirection"
1581
- msgstr "Seite Umleitung"
 
 
 
 
1582
 
1583
- #:
1584
- msgid "If you are not redirected automatically, follow the <a href=\"%s\">link</a>."
1585
- msgstr "Wenn Sie nicht automatisch umgeleitet werden, folgen Sie bitte diesem <a href=\"%s\">Link</a>."
 
 
 
1586
 
1587
- #:
1588
- msgid "Loading..."
1589
- msgstr "Wird geladen ..."
1590
 
1591
- #:
1592
- msgid "Error"
1593
- msgstr "Fehler"
1594
 
1595
- #:
1596
  msgid " and %d more item"
1597
  msgid_plural " and %d more items"
1598
  msgstr[0] " und %d weiterer Artikel"
1599
  msgstr[1] " und %d weitere Artikel"
1600
 
1601
- #:
1602
- msgid "Your appointment information"
1603
- msgstr "Ihre Termininformation"
1604
 
1605
- #:
1606
- msgid "Dear {client_name}.\n"
1607
  "\n"
1608
  "This is a confirmation that you have booked {service_name}.\n"
1609
  "\n"
1610
- "We are waiting you at {company_address} on {appointment_date} at {appointment_time}.\n"
 
1611
  "\n"
1612
  "Thank you for choosing our company.\n"
1613
  "\n"
1614
  "{company_name}\n"
1615
  "{company_phone}\n"
1616
  "{company_website}"
1617
- msgstr "Sehr geehrte/r {client_name},\n"
 
1618
  "\n"
1619
  "dies ist die Bestätigung, dass Sie folgendes gebucht haben: {service_name}.\n"
1620
  "\n"
1621
- "Wir begrüßen Sie in {company_address} am {appointment_date} um {appointment_time}.\n"
 
1622
  "\n"
1623
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
1624
  "\n"
@@ -1626,38 +2111,65 @@ msgstr "Sehr geehrte/r {client_name},\n"
1626
  "{company_phone}\n"
1627
  "{company_website}"
1628
 
1629
- #:
1630
- msgid "Dear {client_name}.\n"
 
 
 
1631
  "\n"
1632
- "This is a confirmation that you have booked the following items:\n"
1633
  "\n"
1634
- "{cart_info}\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1635
  "\n"
1636
  "Thank you for choosing our company.\n"
1637
  "\n"
1638
  "{company_name}\n"
1639
  "{company_phone}\n"
1640
  "{company_website}"
1641
- msgstr "Lieber {client_name}.\n"
1642
- "\n"
1643
- "Dies ist eine Bestätigung, dass Sie die folgendes gebucht haben:\n"
1644
  "\n"
1645
- "{cart_info}\n"
 
1646
  "\n"
1647
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
1648
  "\n"
1649
  "{company_name}\n"
1650
- "{company_phone}\n"
1651
  "{company_website}"
1652
 
1653
- #:
1654
- msgid "New booking information"
1655
- msgstr "Neue Buchungsinformation"
1656
 
1657
- #:
1658
- msgid "Hello.\n"
1659
  "\n"
1660
- "You have a new booking.\n"
1661
  "\n"
1662
  "Service: {service_name}\n"
1663
  "Date: {appointment_date}\n"
@@ -1665,29 +2177,27 @@ msgid "Hello.\n"
1665
  "Client name: {client_name}\n"
1666
  "Client phone: {client_phone}\n"
1667
  "Client email: {client_email}"
1668
- msgstr "Hallo,\n"
 
1669
  "\n"
1670
- "Sie haben eine neue Buchung\n"
 
 
 
 
 
 
 
1671
  "\n"
1672
- "Service.: {service_name}\n"
1673
- "Datum: {appointment_date}\n"
1674
- "Zeit: {appointment_time}\n"
1675
- "Auftragsgeber Name: {client_name}\n"
1676
- "Auftraggeber Telefon: {client_phone}\n"
1677
- "Auftraggeber E-Mail: {client_email}"
1678
-
1679
- #:
1680
- msgid "Booking cancellation"
1681
- msgstr "Buchungsstornierung"
1682
 
1683
- #:
1684
- msgid "Booking rejection"
1685
- msgstr "Buchung Ablehnung"
1686
 
1687
- #:
1688
- msgid "Dear {client_name}.\n"
1689
  "\n"
1690
- "Your booking of {service_name} on {appointment_date} at {appointment_time} has been rejected.\n"
 
1691
  "\n"
1692
  "Reason: {cancellation_reason}\n"
1693
  "\n"
@@ -1696,9 +2206,11 @@ msgid "Dear {client_name}.\n"
1696
  "{company_name}\n"
1697
  "{company_phone}\n"
1698
  "{company_website}"
1699
- msgstr "Lieber {client_name}.\n"
 
1700
  "\n"
1701
- "Die Buchung von {service_name} auf {appointment_date} auf {appointment_time} abgelehnt wurde.\n"
 
1702
  "\n"
1703
  "Grund: {cancellation_reason}\n"
1704
  "\n"
@@ -1708,8 +2220,11 @@ msgstr "Lieber {client_name}.\n"
1708
  "{company_phone}\n"
1709
  "{company_website}"
1710
 
1711
- #:
1712
- msgid "Hello.\n"
 
 
 
1713
  "\n"
1714
  "The following booking has been rejected.\n"
1715
  "\n"
@@ -1721,7 +2236,8 @@ msgid "Hello.\n"
1721
  "Client name: {client_name}\n"
1722
  "Client phone: {client_phone}\n"
1723
  "Client email: {client_email}"
1724
- msgstr "Hallo.\n"
 
1725
  "\n"
1726
  "Die folgende Buchung wurde abgelehnt.\n"
1727
  "\n"
@@ -1734,72 +2250,102 @@ msgstr "Hallo.\n"
1734
  "Client Telefon : {client_phone}\n"
1735
  "Client E-Mail: {client_email}"
1736
 
1737
- #:
1738
- msgid "Hello.\n"
1739
- "\n"
1740
- "An account was created for you at {site_address}\n"
1741
- "\n"
1742
- "Your user details:\n"
1743
- "user: {new_username}\n"
1744
- "password: {new_password}\n"
1745
- "\n"
1746
- "Thanks."
1747
- msgstr "Hallo.\n"
1748
- "\n"
1749
- "Ein Benutzerkonto wurde für Sie auf der Seite {site_address} erstellt\n"
1750
- "\n"
1751
- "Ihre Benutzerdaten lauten:\n"
1752
- "Benutzer: {new_username}\n"
1753
- "Passwort: {new_password}\n"
1754
- "\n"
1755
- "Vielen Dank"
1756
-
1757
- #:
1758
- msgid "Happy Birthday!"
1759
- msgstr "Alles Gute zum Geburtstag!"
1760
-
1761
- #:
1762
- msgid "Dear {client_name},\n"
1763
- "\n"
1764
- "Happy birthday!\n"
1765
- "We wish you all the best.\n"
1766
- "May you and your family be happy and healthy.\n"
1767
- "\n"
1768
  "Thank you for choosing our company.\n"
1769
- "\n"
1770
  "{company_name}\n"
1771
  "{company_phone}\n"
1772
  "{company_website}"
1773
- msgstr "Lieber {client_name},\n"
1774
- "\n"
1775
- "Alles Gute zum Geburtstag!\n"
1776
- "Wir wünschen Ihnen alles Gute.\n"
1777
- "Mögen Sie und Ihre Familie glücklich und gesund sein.\n"
 
 
 
1778
  "\n"
1779
- "Vielen Dank für die Auswahl unserer Firma.\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1780
  "\n"
 
 
 
 
 
 
1781
  "{company_name}\n"
1782
  "{company_phone}\n"
1783
  "{company_website}"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1784
 
1785
- #:
1786
- msgid "Dear {client_name}.\n"
1787
- "Your booking of {service_name} on {appointment_date} at {appointment_time} has been rejected.\n"
 
1788
  "Reason: {cancellation_reason}\n"
1789
  "Thank you for choosing our company.\n"
1790
  "{company_name}\n"
1791
  "{company_phone}\n"
1792
  "{company_website}"
1793
- msgstr "Lieber {client_name}.\n"
1794
- "Die Buchung von {service_name} auf {appointment_date} auf {appointment_time} wurde abgelehnt.\n"
 
 
1795
  "Grund: {cancellation_reason}\n"
1796
  "Vielen Dank dass Sie sich für unser Unternehmen entschieden haben.\n"
1797
  "{company_name}\n"
1798
  "{company_phone}\n"
1799
  "{company_website}"
1800
 
1801
- #:
1802
- msgid "Hello.\n"
1803
  "The following booking has been rejected.\n"
1804
  "Reason: {cancellation_reason}\n"
1805
  "Service: {service_name}\n"
@@ -1808,7 +2354,8 @@ msgid "Hello.\n"
1808
  "Client name: {client_name}\n"
1809
  "Client phone: {client_phone}\n"
1810
  "Client email: {client_email}"
1811
- msgstr "Hallo.\n"
 
1812
  "Die folgende Buchung wurde abgelehnt\n"
1813
  "Grund: {cancellation_reason}\n"
1814
  "Servicegebühren: {service_name}\n"
@@ -1818,4488 +2365,4187 @@ msgstr "Hallo.\n"
1818
  "Client Telefon: {client_phone}\n"
1819
  "Client E-Mail: {client_email}"
1820
 
1821
- #:
1822
- msgid "Hello.\n"
1823
- "An account was created for you at {site_address}\n"
1824
- "Your user details:\n"
1825
- "user: {new_username}\n"
1826
- "password: {new_password}\n"
1827
- "\n"
1828
- "Thanks."
1829
- msgstr "Hallo.\n"
1830
- "Ein benutzer-Konto wurde für Sie auf {site_address} eingerichtet\n"
1831
- "Ihre Benutzerdaten lauten wie folgt:\n"
1832
- "Benutzer: {new_username}\n"
1833
- "Passwort: {new_password}\n"
1834
- "\n"
1835
- "Vielen Dank."
1836
 
1837
- #:
1838
- msgid "Dear {client_name},\n"
1839
- "Happy birthday!\n"
1840
- "We wish you all the best.\n"
1841
- "May you and your family be happy and healthy.\n"
1842
  "Thank you for choosing our company.\n"
1843
  "{company_name}\n"
1844
  "{company_phone}\n"
1845
  "{company_website}"
1846
- msgstr "Lieber {client_name},\n"
1847
- "Alles Gute zum Geburtstag!\n"
1848
- "Wir wünschen Ihnen alles Gute.\n"
1849
- "Mögen Sie und Ihre Familie glücklich und gesund sein.\n"
1850
- "Vielen Dank für die Auswahl unserer Firma.\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1851
  "{company_name}\n"
1852
  "{company_phone}\n"
1853
  "{company_website}"
 
 
 
 
 
 
 
 
1854
 
1855
- #:
1856
- msgid "Back"
1857
- msgstr "Zurück"
 
 
 
1858
 
1859
- #:
1860
- msgid "Book More"
1861
- msgstr "Buche mehr"
 
 
1862
 
1863
- #:
1864
- msgid "Below you can find a list of services selected for booking.\n"
1865
- "Click BOOK MORE if you want to add more services."
1866
- msgstr "Unten finden Sie eine Liste der Dienste, die für die Buchung ausgewählt sind.\n"
1867
- "Klicken Sie auf \"Buche mehr\", wenn Sie mehr Dienste hinzufügen möchten."
 
 
 
 
 
 
 
 
1868
 
1869
- #:
1870
- msgid "Thank you! Your booking is complete. An email with details of your booking has been sent to you."
1871
- msgstr "Danke! Ihre Buchung ist abgeschlossen. Eine E-Mail mit den Details Ihrer Buchung wird Ihnen übermittelt."
1872
 
1873
- #:
1874
- msgid "You selected a booking for {service_name} by {staff_name} at {service_time} on {service_date}. The price for the service is {service_price}.\n"
 
1875
  "Please provide your details in the form below to proceed with booking."
1876
- msgstr "Sie wählten eine Reservierung von {service_name} mit {staff_name} in der Zeit {service_time} Uhr am {service_date}. Das Entgelt für den Service beträgt {service_price}.\n"
1877
- "Bitte tragen Sie Ihre Angaben in das Formular unten ein, um mit der Buchung fortzufahren."
 
 
 
 
1878
 
1879
- #:
1880
  msgid "Please tell us how you would like to pay: "
1881
  msgstr "Bitte sagen Sie uns, wie Sie bezahlen möchten: "
1882
 
1883
- #:
1884
  msgid "Please select service: "
1885
  msgstr "Bitte wählen Sie einen Service: "
1886
 
1887
- #:
1888
- msgid "Below you can find a list of available time slots for {service_name} by {staff_name}.\n"
 
1889
  "Click on a time slot to proceed with booking."
1890
- msgstr "Hier finden Sie eine Liste der verfügbaren Zeiten für {service_name} bei {staff_name}.\n"
 
 
1891
  "Klicken Sie auf eine Zeit für die Buchung."
1892
 
1893
- #:
1894
  msgid "Card Security Code"
1895
  msgstr "Sicherheits Code der Karte"
1896
 
1897
- #:
1898
  msgid "Expiration Date"
1899
  msgstr "Ablauf Datum"
1900
 
1901
- #:
1902
- msgid "Credit Card Number"
1903
- msgstr "Kreditkarten Nummer"
1904
-
1905
- #:
1906
- msgid "Coupon"
1907
- msgstr "Coupon"
1908
-
1909
- #:
1910
- msgid "Employee"
1911
- msgstr "Mitarbeiter"
1912
-
1913
- #:
1914
- msgid "Finish by"
1915
- msgstr "Beenden durch"
1916
-
1917
- #:
1918
- msgid "I will pay now with Credit Card"
1919
- msgstr "Ich möchte mit Kredit Karte bezahlen"
1920
-
1921
- #:
1922
- msgid "I will pay locally"
1923
- msgstr "Barzahlung vor Ort"
1924
-
1925
- #:
1926
- msgid "I will pay now with Mollie"
1927
- msgstr "Ich zahle mit Mollie"
1928
-
1929
- #:
1930
- msgid "I will pay now with PayPal"
1931
- msgstr "Ich möchte per PayPal bezahlen"
1932
-
1933
- #:
1934
- msgid "I'm available on or after"
1935
- msgstr "Ich bin verfügbar am oder nach"
1936
-
1937
- #:
1938
- msgid "Start from"
1939
- msgstr "Beginn ab"
1940
-
1941
- #:
1942
- msgid "Please tell us your email"
1943
- msgstr "Bitte geben Sie unser Ihre E-Mail-Adresse an"
1944
-
1945
- #:
1946
- msgid "Please select an employee"
1947
- msgstr "Bitte wählen Sie einen Mitarbeiter"
1948
-
1949
- #:
1950
- msgid "Please tell us your name"
1951
- msgstr "Bitte nennen Sie uns Ihren Namen"
1952
-
1953
- #:
1954
- msgid "Please tell us your first name"
1955
- msgstr "Bitte nennen Sie uns Ihren Vornamen"
1956
-
1957
- #:
1958
- msgid "Please tell us your last name"
1959
- msgstr "Bitte nennen Sie uns Ihren Nachnamen"
1960
-
1961
- #:
1962
- msgid "Please tell us your phone"
1963
- msgstr "Bitte geben Sie uns Ihre Telefon Nr."
1964
-
1965
- #:
1966
- msgid "The selected time is not available anymore. Please, choose another time slot."
1967
- msgstr "Die eingestellte Zeit ist nicht mehr vorhanden. Bitte wählen Sie eine andere Zeit."
1968
-
1969
- #:
1970
- msgid "The highlighted time is not available anymore. Please, choose another time slot."
1971
- msgstr "Der hervorgehobene Zeit ist nicht mehr verfügbar. Bitte wählen Sie eine andere Zeit."
1972
-
1973
- #:
1974
- msgid "Done"
1975
- msgstr "Beendet"
1976
-
1977
- #:
1978
- msgid "Signed up"
1979
- msgstr "Registrieren"
1980
-
1981
- #:
1982
- msgid "Capacity"
1983
- msgstr "Kapazität"
1984
-
1985
- #:
1986
- msgid "Appointment"
1987
- msgstr "Termin"
1988
-
1989
- #:
1990
- msgid "sent to our system"
1991
- msgstr "an unser System gesendet"
1992
-
1993
- #:
1994
- msgid "more"
1995
- msgstr "mehr"
1996
-
1997
- #:
1998
- msgid "less"
1999
- msgstr "weniger"
2000
-
2001
- #:
2002
- msgid "Bookly SMS weekly summary"
2003
- msgstr "Bookly SMS wöchentliche Zusammenfassung"
2004
-
2005
- #:
2006
- msgid "Your don't have enough Bookly SMS credits to send this message. Please add funds to your balance and try again."
2007
- msgstr "Sie haben nicht mehr genug Bookly-SMS-Guthaben, um diese Nachricht zu senden. Bitte fügen Sie Guthaben hinzu und versuchen Sie es erneut."
2008
-
2009
- #:
2010
- msgid "Failed to send SMS."
2011
- msgstr "Fehler beim SMS versenden."
2012
-
2013
- #:
2014
- msgid "Phone number is empty."
2015
- msgstr "Telefonnummer ist leer."
2016
-
2017
- #:
2018
- msgid "Queued"
2019
- msgstr "Warteschlange"
2020
-
2021
- #:
2022
- msgid "Out of credit"
2023
- msgstr "keine Deckung mehr"
2024
-
2025
- #:
2026
- msgid "Country out of service"
2027
- msgstr "Land außer Betrieb"
2028
-
2029
- #:
2030
- msgid "Sending"
2031
- msgstr "Versendung"
2032
-
2033
- #:
2034
- msgid "Sent"
2035
- msgstr "Gesendet "
2036
-
2037
- #:
2038
- msgid "Delivered"
2039
- msgstr "Geliefert"
2040
 
2041
- #:
2042
- msgid "Failed"
2043
- msgstr "Fehlgeschlagen"
2044
 
2045
- #:
2046
- msgid "Undelivered"
2047
- msgstr "Nicht ausgeliefert"
2048
 
2049
- #:
2050
- msgid "Default"
2051
- msgstr "Standard"
2052
 
2053
- #:
2054
- msgid "Declined"
2055
- msgstr "Abgelehnt"
2056
 
2057
- #:
2058
- msgid "Cancelled"
2059
- msgstr "Abgesagt"
2060
 
2061
- #:
2062
- msgid "Error connecting to server."
2063
- msgstr "Fehler beim Verbinden mit Server."
2064
 
2065
- #:
2066
- msgid "Dear Bookly SMS customer.\n"
2067
- "We would like to notify you that your Bookly SMS balance fell lower than 5 USD. To use our service without interruptions please recharge your balance by visiting Bookly SMS page <a href='%s'>here</a>.\n"
2068
- "\n"
2069
- "If you want to stop receiving these notifications, please update your settings <a href='%s'>here</a>."
2070
- msgstr "Lieber Bookly SMS Kunde.\n"
2071
- "Wir möchten Sie darüber informieren, dass Ihr Bookly SMS Guthaben unter 5 USD steht. Um unseren Service ohne Unterbrechungen zu nutzen, laden Sie Ihr Guthaben über die Bookly SMS Seite <a href='%s'>hier</a> auf.\n"
2072
- "\n"
2073
- "Wenn Sie diese Benachrichtigungen nicht mehr erhalten möchten, aktualisieren Sie bitte Ihre Einstellungen <a href='%s'>hier</a>."
2074
 
2075
- #:
2076
- msgid "Bookly SMS - Low Balance"
2077
- msgstr "Bookly SMS - geringes Guthaben"
2078
 
2079
- #:
2080
- msgid "Empty password."
2081
- msgstr "Leeres Passwort."
2082
 
2083
- #:
2084
- msgid "Incorrect password."
2085
- msgstr "Falsches Passwort."
2086
 
2087
- #:
2088
- msgid "Incorrect recovery code."
2089
- msgstr "Falscher Wiederherstellungscode."
2090
 
2091
- #:
2092
- msgid "Incorrect email or password."
2093
- msgstr "Falsche E-Mail oder Passwort."
2094
 
2095
- #:
2096
- msgid "Incorrect sender ID"
2097
- msgstr "Falsche Sender-ID"
2098
 
2099
- #:
2100
- msgid "Pending sender ID already exists."
2101
- msgstr "Ausstehende Sender-ID ist bereits vorhanden."
2102
 
2103
- #:
2104
- msgid "Recovery code expired."
2105
- msgstr "Wiederherstellungscode abgelaufen."
2106
 
2107
- #:
2108
- msgid "Error sending email."
2109
- msgstr "Fehler beim E-Mail Versand."
2110
 
2111
- #:
2112
- msgid "User not found."
2113
- msgstr "Benutzer nicht gefunden."
2114
 
2115
- #:
2116
- msgid "Email already in use."
2117
- msgstr "E-Mail-Adresse bereits verwendet."
2118
 
2119
- #:
2120
- msgid "Invalid email"
2121
- msgstr "Ungültige E-Mail"
2122
 
2123
- #:
2124
- msgid "This email is already in use"
2125
- msgstr "Diese E-Mail-Adresse ist bereits in Gebrauch."
2126
 
2127
- #:
2128
- msgid "\"%s\" is too long (%d characters max)."
2129
- msgstr "\"%s\" ist zu lang (%d Zeichen max)."
2130
 
2131
- #:
2132
- msgid "Invalid number"
2133
- msgstr "Ungültige Nummer"
2134
 
2135
- #:
2136
- msgid "Invalid date"
2137
- msgstr "Ungültiges Datum"
2138
 
2139
- #:
2140
- msgid "Invalid time"
2141
- msgstr "Ungültiges Zeit"
 
 
2142
 
2143
- #:
2144
- msgid "Your %s: %s is already associated with another %s.<br/>Press Update if we should update your user data, or press Cancel to edit entered data."
2145
- msgstr "Ihr %s: %s ist bereits mit einem anderen %s verknüpft.<br/>Klicken Sie auf Update, um Ihre bisherigen Benutzerdaten mit den eben eingegebenen abweichenden Daten zu aktualisieren (überschreiben) oder klicken Sie auf Abbrechen, um die eben eingegebenen Benutzerdaten zu korrigieren."
2146
 
2147
- #:
2148
- msgid "Rejected"
2149
- msgstr "Abgelehnt"
2150
 
2151
- #:
2152
- msgid "Notification to customer about approved appointment"
2153
- msgstr "Benachrichtigung an Kunden über bestätigte Termin"
2154
 
2155
- #:
2156
- msgid "Notification to customer about approved appointments"
2157
- msgstr "Benachrichtigung an Kunden über bestätigte Termine"
2158
 
2159
- #:
2160
- msgid "Notification to customer about cancelled appointment"
2161
- msgstr "Benachrichtigung an Kunden über abgesagte Termine"
2162
 
2163
- #:
2164
- msgid "Notification to customer about rejected appointment"
2165
- msgstr "Benachrichtigung an Kunden über abgelehnte Termin"
2166
 
2167
- #:
2168
- msgid "Follow-up message in the same day after appointment (requires cron setup)"
2169
- msgstr "Folge-Nachricht am Tag nach dem Termin (erfordert Cron-Setup)"
2170
 
2171
- #:
2172
- msgid "Notification to customer about their WordPress user login details"
2173
- msgstr "Benachrichtigung an Kunden über ihre Wordpress Login-Daten"
2174
 
2175
- #:
2176
  msgid "Notification to customer about pending appointment"
2177
  msgstr "Benachrichtigung an Kunden über zu bestätigende Termine"
2178
 
2179
- #:
2180
- msgid "Evening reminder to customer about next day appointment (requires cron setup)"
2181
- msgstr "Erinnerung an Kunden für den Termin am nächsten Tag (erfordert Cron-Setup)"
2182
-
2183
- #:
2184
- msgid "1st reminder to customer about upcoming appointment (requires cron setup)"
2185
  msgstr "1.Errinerung für Kunden für bevorstehende Termine (Cron Setup nötig)"
2186
 
2187
- #:
2188
- msgid "2nd reminder to customer about upcoming appointment (requires cron setup)"
2189
  msgstr "2.Errinerung für Kunden für bevorstehende Termine (Cron Setup nötig)"
2190
 
2191
- #:
2192
- msgid "3rd reminder to customer about upcoming appointment (requires cron setup)"
2193
  msgstr "3.Errinerung für Kunden für bevorstehende Termine (Cron Setup nötig)"
2194
 
2195
- #:
2196
- msgid "Customer birthday greeting (requires cron setup)"
2197
- msgstr "Kunden Geburtstag Gruß (erfordert cron-Setup)"
2198
-
2199
- #:
2200
- msgid "Evening notification with the next day agenda to staff member (requires cron setup)"
2201
- msgstr "Vorabend Information über die Termine der Mitarbeiter am nächsten Tag (erfordert Cron-Setup)"
2202
-
2203
- #:
2204
- msgid "Notification to staff member about approved appointment"
2205
- msgstr "Benachrichtigung an Mitarbeiter über bestätigte Termine"
2206
-
2207
- #:
2208
- msgid "Notification to staff member about cancelled appointment"
2209
- msgstr "Benachrichtigung an Mitarbeiter über abgesagte Termine"
2210
 
2211
- #:
2212
- msgid "Notification to staff member about rejected appointment"
2213
- msgstr "Benachrichtigung an Mitarbeiter über abgelehnten Termin"
2214
 
2215
- #:
2216
  msgid "Notification to staff member about pending appointment"
2217
  msgstr "Benachrichtigung an Mitarbeiter über zu bestätigende Termine"
2218
 
2219
- #:
2220
- msgid "Test message"
2221
- msgstr "Testnachricht"
2222
-
2223
- #:
2224
- msgid "Local"
2225
- msgstr "Örtlich"
2226
-
2227
- #:
2228
- msgid "Completed"
2229
- msgstr "Fertiggestellt"
2230
 
2231
- #:
2232
- msgid "%d week"
2233
- msgid_plural "%d weeks"
2234
- msgstr[0] "%d Woche"
2235
- msgstr[1] "%d Wochen"
2236
 
2237
- #:
2238
- msgid "%d h"
2239
- msgstr "%d h"
2240
 
2241
- #:
2242
- msgid "%d min"
2243
- msgstr "%d min"
2244
 
2245
- #:
2246
- msgid "Form view in case of successful booking"
2247
- msgstr "Formularansicht bei erfolgreicher Buchung"
2248
 
2249
- #:
2250
- msgid "Form view in case the number of bookings exceeds the limit"
2251
- msgstr "Formularansicht bei erreichen der maximalen Anzahl der Buchungungen"
2252
 
2253
- #:
2254
- msgid "Form view in case of payment has been accepted for processing"
2255
- msgstr "Formularansicht bei akzeptiertem Bezahl-Prozess"
2256
 
2257
- #:
2258
- msgid "No result found"
2259
- msgstr "Kein Ergebnis gefunden"
2260
 
2261
- #:
2262
- msgid "Package"
2263
- msgstr "Paket"
2264
 
2265
- #:
2266
- msgid "Package schedule"
2267
- msgstr "Paket Zeitplan"
2268
 
2269
- #:
2270
- msgid "messages"
2271
- msgstr "Nachricht"
2272
 
2273
- #:
2274
- msgid "First"
2275
- msgstr "Erste/r"
2276
 
2277
- #:
2278
- msgid "Previous"
2279
- msgstr "Vorherige/r"
2280
 
2281
- #:
2282
- msgid "Last"
2283
- msgstr "Letzte/r"
2284
 
2285
- #:
2286
- msgid "URL of reject appointment link (to use inside <a> tag)"
2287
- msgstr "URL für abgelehnten Termin Link ( zur Nutzung in einem <a> tag)"
2288
 
2289
- #:
2290
- msgid "Custom notification"
2291
- msgstr "Anpassung der Nachrichten"
2292
 
2293
- #:
2294
- msgid "Customer's birthday"
2295
- msgstr "Geburtstag des Kunden"
 
 
 
2296
 
2297
- #:
2298
- msgid "days"
2299
- msgstr "Tage"
2300
 
2301
- #:
2302
- msgid "after"
2303
- msgstr "danach"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2304
 
2305
- #:
2306
- msgid "at"
2307
- msgstr "am"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2308
 
2309
- #:
2310
- msgid "before"
2311
- msgstr "vor"
 
 
2312
 
2313
- #:
2314
- msgid "Custom"
2315
- msgstr "Anpassung eigene Nachrichten"
 
 
2316
 
2317
- #:
2318
- msgid "Start and end times of the appointment"
2319
- msgstr "Startzeitpunkt und Endezeitpunkt des Termines"
 
 
2320
 
2321
- #:
2322
- msgid "Show confirmation dialog before updating customer's data"
2323
- msgstr "Bestätigungsdialog vor Anpassung der Kunden Daten anzeigen"
 
 
2324
 
2325
- #:
2326
- msgid "If this option is enabled and customer enters contact info different from the previous order, a warning message will appear asking to update the data."
2327
- msgstr "Ist diese Option aktiviert und die neu eingegebenen Kontaktdaten unterscheiden sich von den vorherigen, wird eine Warnmeldung angezeigt. Der Kunde kann die Anpassung seiner bisherigen Daten auf diese neuen bestätigen oder zur Korrektur der eingegebenen Daten abbrechen."
2328
 
2329
- #:
2330
- msgid "Reject appointment URL (success)"
2331
- msgstr "Termin-Ablehnung URL ( erfolgreich )"
2332
 
2333
- #:
2334
- msgid "Set the URL of a page that is shown to staff after they successfully rejected the appointment."
2335
- msgstr "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem sie den Termin erfolgreich abgelehnt haben"
2336
 
2337
- #:
2338
- msgid "Reject appointment URL (denied)"
2339
- msgstr "Termin-Ablehnung URL ( abgelehnt )"
2340
 
2341
- #:
2342
- msgid "Set the URL of a page that is shown to staff when the rejection of appointment cannot be done (due to changed status, etc.)."
2343
- msgstr "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem sie den Termin nicht erfolreich ablehnen konnten ( wegen Status Änderung, etc.)"
2344
 
2345
- #:
2346
- msgid "You are trying to use the service too often. Please contact us to make a booking."
2347
- msgstr "Sie haben die Anzahl der möglichen Buchungen pro Kunde erreicht. Bitte kontaktieren Sie uns mit Ihrem Buchungswunsch."
2348
 
2349
- #:
2350
- msgid "%s has reached the limit of bookings for this service"
2351
- msgstr "%s hat das Limit der Buchungen dieser Dienstleistung erreicht"
2352
 
2353
- #:
2354
- msgid "URL Settings"
2355
- msgstr "URL Einstellungen"
2356
 
2357
- #:
2358
- msgid "on the same day"
2359
- msgstr "Am gleichen Tag"
2360
 
2361
- #:
2362
- msgid "Administrators"
2363
- msgstr "Administratoren"
2364
 
2365
- #:
2366
- msgid "Show notes field"
2367
- msgstr "Notizfeld anzeigen"
2368
 
2369
- #:
2370
- msgid "customer notes for appointment"
2371
- msgstr "Kundennotizen für den geplanten Termin"
2372
 
2373
- #:
2374
- msgid "URL of cancel appointment link with confirmation (to use inside <a> tag)"
2375
- msgstr "URL des Links zum Stornieren des Termins (zur Nutzung in einem <a> tag)"
 
 
 
 
 
 
 
2376
 
2377
- #:
2378
- msgid "agenda date"
2379
- msgstr "Agendadatum"
 
 
 
 
 
 
 
2380
 
2381
- #:
2382
- msgid "Attach ICS file"
2383
- msgstr "ICS-Datei anhängen"
 
 
 
 
2384
 
2385
- #:
2386
- msgid "New booking"
2387
- msgstr "Neue Buchung"
2388
 
2389
- #:
2390
- msgid "Last client's appointment"
2391
- msgstr "Letzter Kundentermin"
2392
 
2393
- #:
2394
- msgid "Full day agenda"
2395
- msgstr "Komplette Tagesagenda"
2396
 
2397
- #:
2398
- msgid "Set period of time when system will attempt to deliver notification to user. Notification will be discarded after period expiration."
2399
- msgstr "Legen Sie einen Zeitraum fest, in dem das System versuchen soll den Nutzer zu benachrichtigen. Die Benachrichtigung wird nach Ablauf der Zeitspanne verworfen."
2400
 
2401
- #:
2402
- msgid "Attachments"
2403
- msgstr "Anhänge"
2404
 
2405
- #:
2406
- msgid "time zone of client"
2407
- msgstr "Zeitzone des Kunden"
2408
 
2409
- #:
2410
- msgid "Are you sure you want to dissociate this purchase code from %s?\n"
2411
- "\n"
2412
- "This will also remove the entered purchase code from this site."
2413
- msgstr "Sind Sie sicher, dass sie den Kaufcode von %s trennen wollen?\n"
2414
- "Das wird auch den eingegebenen Kaufcode von dieser Seite entfernen."
2415
 
2416
- #:
2417
- msgid "Price correction"
2418
- msgstr "Preiskorrektur"
2419
 
2420
- #:
2421
- msgid "Increase/Discount (%)"
2422
- msgstr "Preiserhöhung/-nachlass (%)"
2423
 
2424
- #:
2425
- msgid "Addition/Deduction"
2426
- msgstr "Aufschlag/Nachlass"
2427
 
2428
- #:
2429
- msgid "You are going to delete item which is involved in upcoming appointments. All related appointments will be deleted. Please double check and edit appointments before this item deletion if needed."
2430
- msgstr "Sie löschen ein Item, das in kommende Termine involviert ist. Alle zugehörigen Termine würden gelöscht. Bitte überprüfen Sie alles nochmals gründlich bevor Sie das Item löschen, falls das notwendig ist."
2431
 
2432
- #:
2433
- msgid "Edit appointments"
2434
- msgstr "Termin bearbeiten"
2435
 
2436
- #:
2437
- msgid "Error."
2438
- msgstr "Fehler."
2439
 
2440
- #:
2441
- msgid "Internal Notes"
2442
- msgstr "Interne Notizen"
2443
 
2444
- #:
2445
- msgid "%d year"
2446
- msgid_plural "%d years"
2447
- msgstr[0] "Jahr %d"
2448
- msgstr[1] "%d Jahre"
2449
 
2450
- #:
2451
- msgid "%d month"
2452
- msgid_plural "%d months"
2453
- msgstr[0] "%dter Monat"
2454
- msgstr[1] "%d Monate"
2455
 
2456
- #:
2457
- msgid "Set order of the fields in calendar"
2458
- msgstr "Reihenfolge der Kalenderfelder festlegen"
2459
 
2460
- #:
2461
- msgid "Attach payment"
2462
- msgstr "Bezahlung hinzufügen"
2463
 
2464
- #. Not really sure whats meant by this
2465
- #:
2466
- msgid "Bind payment"
2467
- msgstr "Zahlung binden"
2468
 
2469
- #:
2470
- msgid "Payment is not found."
2471
- msgstr "Zahlung nicht gefunden"
2472
 
2473
- #:
2474
- msgid "Invalid day"
2475
- msgstr "Ungültiger Tag"
2476
 
2477
- #:
2478
- msgid "Day is required"
2479
- msgstr "Eingabe \"Tag\" ist notwendig"
2480
 
2481
- #:
2482
- msgid "Month is required"
2483
- msgstr "Eingabe \"Monat\" ist notwendig "
 
 
 
 
 
 
2484
 
2485
- #:
2486
- msgid "Year is required"
2487
- msgstr "Eingabe \"Jahr\" ist notwendig "
2488
 
2489
- #:
2490
- msgid "Select day"
2491
- msgstr "Tag auswählen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2492
 
2493
- #:
2494
- msgid "Select month"
2495
- msgstr "Monat auswählen"
2496
 
2497
- #:
2498
- msgid "Select year"
2499
- msgstr "Jahr auswählen"
2500
 
2501
- #:
2502
- msgid "Birthday"
2503
- msgstr "Geburtstag"
2504
 
2505
- #:
2506
- msgid "Selected period doesn't match provider's schedule"
2507
- msgstr "Die ausgewählte Zeitspanne stimmt nicht mit dem Zeitplan des Anbieters überein"
2508
 
2509
- #:
2510
- msgid "Selected period doesn't match service schedule"
2511
- msgstr "Die ausgewählte Zeitspanne stimmt nicht mit dem Dienstleistungsplan überein"
2512
 
2513
- #:
2514
- msgid "The value is taken from client's browser."
2515
- msgstr "Der Wert wird vom Webbrowser des Nutzers bezogen."
 
 
 
2516
 
2517
- #:
2518
- msgid "Tax"
2519
- msgstr "Steuer"
2520
 
2521
- #:
2522
- msgid "Group discount"
2523
- msgstr "Gruppenrabatt"
2524
 
2525
- #:
2526
- msgid "Coupon discount"
2527
- msgstr "Rabatt durch Gutschein"
 
 
 
2528
 
2529
- #:
2530
- msgid "Send tax information"
2531
- msgstr "Steuerinformationen senden"
2532
 
2533
- #:
2534
- msgid "App ID"
2535
- msgstr "App ID"
2536
 
2537
- #:
2538
- msgid "State/Region"
2539
- msgstr "Staat/Region"
2540
 
2541
- #:
2542
- msgid "Postal Code"
2543
- msgstr "Postleitzahl"
2544
 
2545
- #:
2546
- msgid "City"
2547
- msgstr "Stadt"
2548
 
2549
- #:
2550
- msgid "Street Address"
2551
- msgstr "Straßenadresse"
2552
 
2553
- #:
2554
- msgid "Country is required"
2555
- msgstr "\"Land\" ist eine Pflichteingabe"
2556
 
2557
- #:
2558
- msgid "State is required"
2559
- msgstr "\"Staat\" ist eine Pflichteingabe"
2560
 
2561
- #:
2562
- msgid "Postcode is required"
2563
- msgstr "\"Postleitzahl\" ist eine Pflichteingabe"
2564
 
2565
- #:
2566
- msgid "City is required"
2567
- msgstr "\"Stadt\" ist eine Pflichteingabe"
2568
 
2569
- #:
2570
- msgid "Street is required"
2571
- msgstr "\"Straße\" ist eine Pflichteingabe"
2572
 
2573
- #:
2574
- msgid "address of client"
2575
- msgstr "Kundenadresse"
2576
 
2577
- #:
2578
- msgid "Invoice"
2579
- msgstr "Rechnung"
2580
 
2581
- #:
2582
- msgid "Phone field required"
2583
- msgstr "\"Telefon\" ist eine Pflichteingabe"
2584
 
2585
- #:
2586
- msgid "Email field required"
2587
- msgstr "\"E-Mail\" ist eine Pflichteingabe"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2588
 
2589
- #:
2590
- msgid "Both email and phone fields required"
2591
- msgstr "\"E-Mail\" und \"Telefon\" müssen beide ausgefüllt werden"
2592
 
2593
- #:
2594
- msgid "Additional Address"
2595
- msgstr "Zusätzliche Adresse"
2596
 
2597
- #:
2598
- msgid "To set up Facebook integration, do the following:"
2599
- msgstr "Um die Facebook-Integration einzurichten, gehen Sie folgendermaßen vor:"
2600
 
2601
- #:
2602
- msgid "Follow the steps at <a href=\"https://developers.facebook.com/docs/apps/register\" target=\"_blank\">https://developers.facebook.com/docs/apps/register</a> to create a Developer Account, register and configure your <b>Facebook App</b>. Below the App Details Panel click <b>Add Platform</b> button, select Website and enter your website URL."
2603
- msgstr "Folgen Sie den Schritten unter <a href=\"https://developers.facebook.com/docs/apps/register\" target=\"_blank\"> https://developers.facebook.com/docs/apps/register </a> um ein Entwicklerkonto zu erstellen, sich zu registrieren und die <b> Facebook App </b> zu konfigurieren. Unterhalb des App-Details-Bereichs klicken Sie auf die Schaltfläche <b> Plattform hinzufügen </b>, wählen Sie Website und geben Sie Ihre Website-URL ein."
2604
 
2605
- #:
2606
- msgid "Go to your <a href=\"https://developers.facebook.com/apps/\" target=\"_blank\">App Dashboard</a>. In the left side navigation panel of the App Dashboard, click <b>Settings > Basic</b> to view the App Details Panel with your <b>App ID</b>. Use it in the form below."
2607
- msgstr "Rufen Sie Ihr <a href=\"https://developers.facebook.com/apps/\" target=\"_blank\"> App-Dashboard </a> auf. Klicken Sie im linken Navigationsbereich des App Dashboards auf <b> Einstellungen > Einfach </b>, um das App-Details-panel mit Ihrer <b> App-ID </b> anzuzeigen, verwenden Sie sie bitte im Formular weiter unten."
2608
 
2609
- #:
2610
- msgid "Additional address is required"
2611
- msgstr "Zusätzliche Adresse ist notwendig"
2612
 
2613
- #:
2614
- msgid "Merge with"
2615
- msgstr "Zusammenführen mit"
2616
 
2617
- #:
2618
- msgid "Select for merge"
2619
- msgstr "für Zusammenführung auswählen"
2620
 
2621
- #:
2622
- msgid "Merge list"
2623
- msgstr "Listen zusammenführen"
2624
 
2625
- #:
2626
- msgid "Merge customers"
2627
- msgstr "Kunden Zusammenführen"
2628
 
2629
- #:
2630
- msgid "You are about to merge customers from the merge list with the selected one. This will result in losing the merged customers and moving all their appointments to the selected customer. Are you sure you want to continue?"
2631
- msgstr "Sie sind dabei die Kunden von der Zusammenführungsliste mit dem Ausgewählten zusammenzuführen. Dies wird zur Folge haben, dass die verschmolzenen Kunden verloren gehen und alle ihre Termine auf den ausgewählten Kunden übertragen werden. Sind sie sicher, dass sie fortfahren möchten?"
2632
 
2633
- #:
2634
- msgid "Merge"
2635
- msgstr "Zusammenführen"
2636
 
2637
- #:
2638
- msgid "Allow duplicate customers"
2639
- msgstr "Kundendupliakte erlauben"
2640
 
2641
- #:
2642
- msgid "If enabled, a new user will be created if any of the registration data during the booking is different."
2643
- msgstr "Wenn aktiviert, wird ein neuere Kunde erstellt, wenn Teile der Registrierungs-Daten unterschiedlich sind."
2644
 
2645
- #:
2646
- msgid "Sort by"
2647
- msgstr "Sortieren nach"
2648
 
2649
- #:
2650
- msgid "Best Sellers"
2651
- msgstr "Meistverakuft"
2652
 
2653
- #:
2654
- msgid "Best Rated"
2655
- msgstr "Bestbewertet"
2656
 
2657
- #:
2658
- msgid "Newest Items"
2659
- msgstr "Neuster Artikel"
2660
 
2661
- #:
2662
- msgid "Price: low to high"
2663
- msgstr "Preis: vom niedrigsten zum höchsten "
2664
 
2665
- #:
2666
- msgid "Price: high to low"
2667
- msgstr "Preis: vom höchsten zum niedrigsten"
2668
 
2669
- #:
2670
- msgid "New"
2671
- msgstr "Neu"
2672
 
2673
- #:
2674
- msgid "%d sale"
2675
- msgid_plural "%d sales"
2676
- msgstr[0] "\n"
2677
- "%d Verkauf"
2678
- msgstr[1] "\n"
2679
- "%d Verkäufe"
2680
 
2681
- #:
2682
- msgid "%d review"
2683
- msgid_plural "%d reviews"
2684
- msgstr[0] "%d Bewertung"
2685
- msgstr[1] "%d Bewertungen"
2686
 
2687
- #:
2688
- msgid "Installed"
2689
- msgstr "Installiert"
2690
 
2691
- #:
2692
- msgid "Get it!"
2693
- msgstr "Hohl es dir!"
2694
 
2695
- #:
2696
- msgid "I accept <a href=\"%1$s\" target=\"_blank\">Service Terms</a> and <a href=\"%2$s\" target=\"_blank\">Privacy Policy</a>"
2697
- msgstr "Ich akzeptiere <a href=\"%1$s\" target=\"_blank\">Geschäftsbedingungen</a> und <a href=\"%2$s\" target=\"_blank\">Datenschutzerklärung</a>\n"
2698
- ""
2699
 
2700
- #:
2701
- msgid "N/A"
2702
- msgstr "n.a."
2703
 
2704
- #:
2705
- msgid "Create payment"
2706
- msgstr "Zahlung erstellen"
2707
 
2708
- #:
2709
- msgid "Search payment"
2710
- msgstr "Zahlung suchen"
2711
 
2712
- #:
2713
- msgid "Payment ID"
2714
- msgstr "Zahlungs ID"
2715
 
2716
- #:
2717
- msgid "Addons"
2718
- msgstr "Addons"
2719
 
2720
- #:
2721
- msgid "This function is not available in the Bookly."
2722
- msgstr "Diese Funktion ist in Bookly nicht verfügbar."
2723
 
2724
- #:
2725
- msgid "In <b>Checkout Options</b> of your 2Checkout account do the following steps:"
2726
- msgstr "Führen Sie in den <b>Checkout-Optionen</b> Ihres 2Checkout-Kontos die folgenden Schritte durch."
2727
 
2728
- #:
2729
- msgid "In <b>Direct Return</b> select <b>Header Redirect (Your URL)</b>."
2730
- msgstr "Wählen Sie unter <b>Direkte Weiterleitung</b> die <b>Header Weiterleitung (Ihre URL)</b>"
2731
 
2732
- #:
2733
- msgid "In <b>Approved URL</b> enter the URL of your booking page."
2734
- msgstr "Geben Sie unter <b>Bestätigungs-URL</b> die URL Ihrer Buchungsseite ein."
2735
 
2736
- #:
2737
- msgid "Finally provide the necessary information in the form below."
2738
- msgstr "Zum schluss geben Sie noch die verbleibenden Informationen in das Formular unten ein."
2739
 
2740
- #:
2741
- msgid "Account Number"
2742
- msgstr "Kontonummer"
2743
 
2744
- #:
2745
- msgid "Secret Word"
2746
- msgstr "Geheimwort"
2747
 
2748
- #:
2749
- msgid "Sandbox Mode"
2750
- msgstr "Sandbox Modus"
2751
 
2752
- #:
2753
- msgid "Invalid token provided"
2754
- msgstr "Ungültiger Token bereitgestellt"
2755
 
2756
- #:
2757
- msgid "Invalid session"
2758
- msgstr "Ungültige Sitzung"
2759
 
2760
- #:
2761
- msgid "Google Calendar event"
2762
- msgstr "Google Kalender Event"
2763
 
2764
- #:
2765
- msgid "Synchronization mode"
2766
- msgstr "Syncronisationsmodus"
 
2767
 
2768
- #:
2769
- msgid "With \"One-way\" sync Bookly pushes new appointments and any further changes to Google Calendar. With \"Two-way front-end only\" sync Bookly will additionally fetch events from Google Calendar and remove corresponding time slots before displaying the Time step of the booking form (this may lead to a delay when users click Next to get to the Time step). With \"Two-way\" sync all bookings created in Bookly Calendar will be automatically copied to Google Calendar and vice versa. Important: your website must use HTTPS. Google Calendar API will be able to send notifications only if there is a valid SSL certificate installed on your web server."
2770
- msgstr "Mit der \"one-way\"-Synchronisation überträgt Bookly neue Termine und künftige Änderungen auf den Google Kalender. Mit der Option \"nur Two-way Frontend\"-Synchronisation fragt Bookly zusätzlich Ereignisse aus dem Google Kalender ab und blockt die zugehörigen Zeitintervalle auf Bookly aus, bevor die verfügbaren Zeiträume im Buchungsformular anzeigt werden(das kann zu einer Zeitverzögerung führen, wenn die Kunden auf Weiter klicken). Mit der \"Two-way\"-Synchronisation werden alle Buchungen, die im Bookly Kalender erstellt werden, in den Google Kalender kopiert und andersherum. Wichtig: Ihre Website muss HTTPS nutzen. Die Google Kalender API kann nur Benachrichtigungen verschicken, wenn auf Ihrem Server ein gültiges SSL-Zertifikat installiert ist."
2771
 
2772
- #:
2773
- msgid "One-way"
2774
- msgstr "Einweg"
2775
 
2776
- #:
2777
- msgid "Two-way front-end only"
2778
- msgstr "Bidirektional nur-Frontend"
2779
 
2780
- #:
2781
- msgid "Two-way"
2782
- msgstr "Two-way"
2783
 
2784
- #:
2785
- msgid "Sync appointments history"
2786
- msgstr "Terminhistorie synchronisieren"
2787
 
2788
- #:
2789
- msgid "Specify how many days of past calendar data you wish to sync at the time of initial sync. If you enter 0, synchronization of past events will not be performed."
2790
- msgstr "Legen Sie fest, wie viele Tage vom Zeitpunkt der Erstsynchronisation weit in die Vergangenheit hinein noch die Kalenderdaten synchronisiert werden sollen. Wenn Sie 0 eingeben, werden die Daten aus der Vergangenheit nicht übertragen."
2791
 
2792
- #:
2793
- msgid "Copy Google Calendar event titles"
2794
- msgstr "Google Kalender Ereignistitel kopieren"
 
2795
 
2796
- #:
2797
- msgid "If enabled then titles of Google Calendar events will be copied to Bookly appointments. If disabled, a standard title \"Google Calendar event\" will be used."
2798
- msgstr "Wenn aktiviert, werden die Titel der Google Kalenderereignisse auf die Bookly Termine kopiert. Wenn deaktiviert, wird standardmäßig der Titel \"Google Kalender Ereignis\" genutzt."
2799
 
2800
- #:
2801
- msgid "Synchronize with Google Calendar"
2802
- msgstr "Mit Google Kalender synchronisieren"
2803
 
2804
- #:
2805
- msgid "Google Calendar"
2806
- msgstr "Google Kalender"
2807
 
2808
- #:
2809
- msgid "Calendars synchronized successfully."
2810
- msgstr "Kalender erfolgreich synchronisiert"
2811
 
2812
- #:
2813
- msgid "API Login ID"
2814
- msgstr "API-Login-Identifikationsnummer"
2815
 
2816
- #:
2817
- msgid "API Transaction Key"
2818
- msgstr "API-Transaktionsschlüssel"
2819
 
2820
- #:
2821
- msgid "Columns"
2822
- msgstr "Spalten"
2823
 
2824
- #:
2825
- msgid "To use the cart, disable integration with WooCommerce <a href=\"%s\">here</a>."
2826
- msgstr "Um den Warenkorb zu benutzen, deaktivieren Sie die Integration mit WooCommerce <a href=\"%s\">hier</a>."
2827
 
2828
- #:
2829
- msgid "Remove"
2830
- msgstr "Entfernen"
2831
 
2832
- #:
2833
- msgid "Total tax"
2834
- msgstr "Steuer gesamt"
2835
 
2836
- #:
2837
- msgid "Waiting list"
2838
- msgstr "Warteliste"
2839
 
2840
- #:
2841
- msgid "Spare time"
2842
- msgstr "übrige Zeit"
 
 
 
2843
 
2844
- #:
2845
- msgid "Add simple service"
2846
- msgstr "In einfachen Dienst"
2847
 
2848
- #:
2849
- msgid "=== Spare time ==="
2850
- msgstr "=== übrige Zeit ==="
 
 
 
2851
 
2852
- #:
2853
- msgid "Compound"
2854
- msgstr "Verbindung"
2855
 
2856
- #:
2857
- msgid "Part of compound service"
2858
- msgstr "Ein Teil der Verbindung Service"
2859
 
2860
- #:
2861
- msgid "Compound service"
2862
- msgstr "kombinierte Dienstleistung"
2863
 
2864
- #:
2865
- msgid "The total price for the booking is {total_price}."
2866
- msgstr "Der Gesamtpreis für die Buchung ist {total_price}."
 
 
 
2867
 
2868
- #:
2869
- msgid "You selected to book {appointments_count} appointments with total price {total_price}."
2870
- msgstr "Sie haben ausgewählt, {appointments_count} Termine mit einem Gesamtpreis von {total_price} zu buchen."
2871
 
2872
- #:
2873
- msgid "Coupons"
2874
- msgstr "Gutscheine"
2875
 
2876
- #:
2877
- msgid "New coupon series"
2878
- msgstr "Neue Cuponserie"
2879
 
2880
- #:
2881
- msgid "New coupon"
2882
- msgstr "Neuer Gutschein"
2883
 
2884
- #:
2885
- msgid "Edit coupon"
2886
- msgstr "Gutschein bearbeiten"
2887
 
2888
- #:
2889
- msgid "You can enter a mask containing asterisks \"*\" for variables here and click Generate."
2890
- msgstr "Sie können eine Maske mit einem Stern \"*\" als Inhalt für die Variable hier eingeben und auf Generieren drücken. "
 
 
 
 
2891
 
2892
- #:
2893
- msgid "Generate"
2894
- msgstr "Generieren"
2895
 
2896
- #:
2897
- msgid "Mask"
2898
- msgstr "Maske"
2899
 
2900
- #:
2901
- msgid "Enter a mask containing asterisks \"*\" for variables."
2902
- msgstr "Geben Sie eine Maske mit einem Stern \"*\" als Inhalt für Variablen ein."
2903
 
2904
- #:
2905
- msgid "Discount (%)"
2906
- msgstr "Rabatt (%)"
2907
 
2908
- #:
2909
- msgid "Deduction"
2910
- msgstr "Abzug"
2911
 
2912
- #:
2913
- msgid "Usage limit"
2914
- msgstr "Nutzungsbeschränkung"
2915
 
2916
- #:
2917
- msgid "Once per customer"
2918
- msgstr "Einmal pro Kunde"
2919
 
2920
- #:
2921
- msgid "Select this option to limit the use of the coupon to 1 time per customer."
2922
- msgstr "Wählen Sie diese Option, um die Nutzung des Gutscheins auf 1x pro Kunden zu begrenzen."
2923
 
2924
- #:
2925
- msgid "Date limit (from and to)"
2926
- msgstr "Datenlimit (von und bis)"
 
2927
 
2928
- #:
2929
- msgid "No limit"
2930
- msgstr "Kein Limit"
2931
 
2932
- #:
2933
- msgid "Clear field"
2934
- msgstr "Feld leeren"
2935
 
2936
- #:
2937
- msgid "Limit appointments in cart (min and max)"
2938
- msgstr "Anzahl an Terminen im Einkaufskorb(min und max)"
2939
 
2940
- #:
2941
- msgid "Specify minimum and maximum (optional) number of services of the same type required to apply a coupon."
2942
- msgstr "Geben sie minimale und maximale (optional) Zahl an Dienstleistungen der selben Art an, die nötig sind, um den Gutschein anwenden zu dürfen."
2943
 
2944
- #:
2945
- msgid "Limit to customers"
2946
- msgstr "Limit für Kunden"
2947
 
2948
- #:
2949
- msgid "Create another coupon"
2950
- msgstr "Weiteren Coupon erstellen"
 
 
 
2951
 
2952
- #:
2953
- msgid "Add Coupon Series"
2954
- msgstr "Couponserie Hinzufügen"
2955
 
2956
- #:
2957
- msgid "Add Coupon"
2958
- msgstr "Gutschein hinzufügen"
 
 
 
2959
 
2960
- #:
2961
- msgid "Show only active"
2962
- msgstr "Nur aktive anzeigen"
2963
 
2964
- #:
2965
- msgid "Customers limit"
2966
- msgstr "Kundenlimit"
2967
 
2968
- #:
2969
- msgid "Number of times used"
2970
- msgstr "Anzahl der Buchungen"
2971
 
2972
- #:
2973
- msgid "Active until"
2974
- msgstr "Aktiv bis"
2975
 
2976
- #:
2977
- msgid "Min. appointments"
2978
- msgstr "Min. Anzahl Termine"
2979
 
2980
- #:
2981
- msgid "Duplicate"
2982
- msgstr "Duplikat"
 
 
 
 
2983
 
2984
- #:
2985
- msgid "No coupons found."
2986
- msgstr "Keine Gutscheine gefunden."
 
 
 
2987
 
2988
- #:
2989
- msgid "No service selected"
2990
- msgstr "Keine Dienstleistung ausgewählt"
2991
 
2992
- #:
2993
- msgid "All customers"
2994
- msgstr "Alle Kunden"
2995
 
2996
- #:
2997
- msgid "Discount should be between 0 and 100."
2998
- msgstr "Der Rabatt sollte zwischen 0 und 100 liegen."
 
 
 
 
 
 
 
 
2999
 
3000
- #:
3001
- msgid "Deduction should be a positive number."
3002
- msgstr "Der Abzug sollte eine positive Zahl sein."
3003
 
3004
- #:
3005
- msgid "Min appointments should be greater than zero."
3006
- msgstr "Die minimale Anzahl Termine muss größer als 0 sein."
3007
 
3008
- #:
3009
- msgid "Max appointments should be greater than zero."
3010
- msgstr "Die maximale Anzahl Termine muss größer als 0 sein."
3011
 
3012
- #:
3013
- msgid "Please enter a non empty mask."
3014
- msgstr "Bitte geben Sie eine nicht-leere Maske ein."
3015
 
3016
- #:
3017
- msgid "It is not possible to generate %d codes for this mask. Only %d codes available."
3018
- msgstr "Es ist nicht möglich %d Codes für diese Make zu erstellen. Nur %d Codes sind verfügbar."
3019
 
3020
- #:
3021
- msgid "All possible codes have already been generated for this mask."
3022
- msgstr "Alle Codes wurden für diese Maske schon generiert."
3023
 
3024
- #:
3025
- msgid "Default code mask"
3026
- msgstr "Standardcodemaske"
3027
 
3028
- #:
3029
- msgid "Enter default mask for auto-generated codes."
3030
- msgstr "Geben Sie sie Standartmaske für automatisch generierten Code ein."
3031
 
3032
- #:
3033
- msgid "This coupon code is invalid or has been used"
3034
- msgstr "Dieser Gutscheincode ist ungültig oder wurde bereits verwendet"
3035
 
3036
- #:
3037
- msgid "This coupon code has expired"
3038
- msgstr "Dieser Gutschein ist abgelaufen."
3039
 
3040
- #:
3041
- msgid "Set service duration. If you select Custom, a client, while booking, will have to choose the duration of the service from several time units. In the \"Unit Price\" field specify the cost of 1 unit, so the total cost of the service will increase linearly with the increase of its duration."
3042
- msgstr "Servicedauer Auswählen. Wenn Sie Benuterdefiniert auswählen, muss der Kunde während der Buchung die Dauer der Leistung aus verschiedenen Einheiten wählen. Spezifizieren Sie im Feld \"Stückpreis\" den Preis für 1 Einheit, so dass sich die Gesamtkosten linear mit der Dauer der Leistung erhöhen."
3043
 
3044
- #:
3045
- msgid "Unit duration"
3046
- msgstr "Länge einer Einheit"
3047
 
3048
- #:
3049
- msgid "Minimum units"
3050
- msgstr "minimale Einheiten"
3051
 
3052
- #:
3053
- msgid "Maximum units"
3054
- msgstr "maximale Einheiten"
3055
 
3056
- #:
3057
- msgid "Unit price"
3058
- msgstr "Stückpreis"
3059
 
3060
- #:
3061
- msgid "Show service price next to duration"
3062
- msgstr "Service"
3063
 
3064
- #:
3065
- msgid "Customer cabinet (all services displayed in tabs)"
3066
- msgstr "Kundenbereich (alle Dienstleistungen in Tabs angezeigt)"
3067
 
3068
- #:
3069
- msgid "Appointment management"
3070
- msgstr "Terminmanagement"
 
 
 
3071
 
3072
- #:
3073
- msgid "Reschedule"
3074
- msgstr "Neu planen"
3075
 
3076
- #:
3077
- msgid "Profile management"
3078
- msgstr "Profilverwaltung"
3079
 
3080
- #:
3081
- msgid "Wordpress password"
3082
- msgstr "Wordpress-Passwort"
3083
 
3084
- #:
3085
- msgid "Delete account"
3086
- msgstr "Konto löschen"
 
3087
 
3088
- #:
3089
- msgid "Add Customer Cabinet"
3090
- msgstr "Kundenbereich hinzufügen"
3091
 
3092
- #:
3093
- msgid "WP user"
3094
- msgstr "Wordpress-Nutzer"
 
 
 
3095
 
3096
- #:
3097
- msgid "Current password"
3098
- msgstr "Aktuelles Passwort"
3099
 
3100
- #:
3101
- msgid "Confirm password"
3102
- msgstr "Passwort bestätigen"
3103
 
3104
- #:
3105
- msgid "You don't have permissions to view this content."
3106
- msgstr "Sie besitzen nicht die nötigen Rechte, um diesen Inhalt anzusehen."
3107
 
3108
- #:
3109
- msgid "No appointments."
3110
- msgstr "Keine Termine."
3111
 
3112
- #:
3113
- msgid "Expired"
3114
- msgstr "Abgelaufen"
3115
 
3116
- #:
3117
- msgid "Not allowed"
3118
- msgstr "Nicht erlaubt"
3119
 
3120
- #:
3121
- msgid "Unfortunately, you're not able to cancel the appointment because the required time limit prior to canceling has expired."
3122
- msgstr "Leider können Sie diesen Termin nicht mehr stornieren, da der Minimalzeitraum vor der Stornierung unterschritten wurde."
3123
 
3124
- #:
3125
- msgid "Profile updated successfully."
3126
- msgstr "Profil erfolgreich aktualisiert."
3127
 
3128
- #:
3129
- msgid "Wrong current password"
3130
- msgstr "Falsches aktuelles Passwort"
 
 
 
3131
 
3132
- #:
3133
- msgid "Passwords mismatch"
3134
- msgstr "Paswörter stimmen nicht überein"
3135
 
3136
- #:
3137
- msgid "Cancel Appointment"
3138
- msgstr "Termin stornieren"
 
 
 
3139
 
3140
- #:
3141
- msgid "You are going to cancel a scheduled appointment. Are you sure?"
3142
- msgstr "Sie wollen einen geplanten Termin stornieren. Sind sie sicher?"
3143
 
3144
- #:
3145
- msgid "You are going to delete your account and all information associated with it. Click Confirm to continue or Cancel to cancel the action."
3146
- msgstr "Sie löschen gerade Ihr Konto und alle damit verbundenen Daten. Klicken sie auf Bestätigen, um fortzufahren oder auf Abbrechen, um die Aktion abzubrechen."
3147
 
3148
- #:
3149
- msgid "This account cannot be deleted because it is associated with scheduled appointments. Please cancel bookings or contact the service provider."
3150
- msgstr "Dieses Konto kann nicht gelöscht werden, weil es vereinbarte Terminen enthält. Bitte lösche die Termine oder kontaktiere den Dienstleister."
3151
 
3152
- #:
3153
- msgid "Confirm"
3154
- msgstr "Bestätigen"
3155
 
3156
- #:
3157
- msgid "OK"
3158
- msgstr "OK"
3159
 
3160
- #:
3161
- msgid "Customer Information"
3162
- msgstr "Kundeninformation"
3163
 
3164
- #:
3165
- msgid "Text Field"
3166
- msgstr "Text-Feld"
3167
 
3168
- #:
3169
- msgid "Text Area"
3170
- msgstr "Textbereich"
 
 
 
 
 
3171
 
3172
- #:
3173
- msgid "Text Content"
3174
- msgstr "Textinhalt"
 
3175
 
3176
- #:
3177
- msgid "Checkbox Group"
3178
- msgstr "CheckBox-Gruppe"
 
 
 
 
 
 
 
 
3179
 
3180
- #:
3181
- msgid "Radio Button Group"
3182
- msgstr "Radio Button-Gruppe"
 
3183
 
3184
- #:
3185
- msgid "Drop Down"
3186
- msgstr "Drop-Down"
 
 
 
 
 
 
3187
 
3188
- #:
3189
- msgid "HTML allowed in all texts and labels."
3190
- msgstr "HTML in allen Texten und Beschriftungen erlaubt."
3191
 
3192
- #:
3193
- msgid "Remove field"
3194
- msgstr "Feld entfernen"
 
 
 
 
 
3195
 
3196
- #:
3197
- msgid "Enter a label"
3198
- msgstr "Geben Sie eine Bezeichnung ein"
3199
 
3200
- #:
3201
- msgid "Required field"
3202
- msgstr "Pflichtfeld"
3203
 
3204
- #:
3205
- msgid "Ask once"
3206
- msgstr "Frage einmal"
3207
 
3208
- #:
3209
- msgid "Enter a content"
3210
- msgstr "Geben Sie einen Inhalt ein"
3211
 
3212
- #:
3213
- msgid "Checkbox"
3214
- msgstr "Checkbox"
3215
 
3216
- #:
3217
- msgid "Radio Button"
3218
- msgstr "Optionsfeld"
3219
 
3220
- #:
3221
- msgid "Option"
3222
- msgstr "Option"
3223
 
3224
- #:
3225
- msgid "Remove item"
3226
- msgstr "Buchung entfernen"
3227
 
3228
- #:
3229
- msgid "Incorrect code"
3230
- msgstr "Falscher Code"
3231
 
3232
- #:
3233
- msgid "combined values of all custom fields"
3234
- msgstr "Kombination der Werte aller benutzerdefinierten Felder"
 
 
 
3235
 
3236
- #:
3237
- msgid "Bind fields to services"
3238
- msgstr "Verknüpft Felder mit Dienstleistungen."
3239
 
3240
- #:
3241
- msgid "When this setting is enabled you will be able to create service specific custom fields."
3242
- msgstr "Wenn diese Einstellung aktiviert ist, können Sie Service-spezifische benutzerdefinierte Felder erstellen."
 
 
 
 
3243
 
3244
- #:
3245
- msgid "Merge repeating custom fields for multiple bookings of the service"
3246
- msgstr "Wiederholte benutzerdefinierte Felder für mehrere Buchungen des Service zusammenführen"
3247
 
3248
- #:
3249
- msgid "If enabled, customers will see custom fields for unique appointments while booking multiple instances of the service. Repeating custom fields are merged (collapsed) into one field. If disabled, customers will see custom fields for each appointment in the set of bookings."
3250
- msgstr "Wenn diese Option aktiviert ist, sehen Kunden beim Buchen mehrerer Instanzen des Service benutzerdefinierte Felder für eindeutige Termine. Wiederholte benutzerdefinierte Felder werden in einem Feld zusammengeführt (minimiert). Wenn diese Option deaktiviert ist, werden den Kunden benutzerdefinierte Felder für jeden Termin im Buchungssatz angezeigt."
 
 
 
3251
 
3252
- #:
3253
- msgid "Captcha"
3254
- msgstr "Captcha"
3255
 
3256
- #:
3257
- msgid "extended staff agenda for next day"
3258
- msgstr "Tagesordnung für den nächsten Tag erweitern"
 
 
 
3259
 
3260
- #:
3261
- msgid "combined values of all custom fields (formatted in 2 columns)"
3262
- msgstr "Kombination der Werte aller benutzerdefinierten Felder (in 2 Spalten formatiert)"
3263
 
3264
- #:
3265
- msgid "Another code"
3266
- msgstr "Ein weiterer Code"
 
 
 
3267
 
3268
- #:
3269
- msgid "Would you like to pay deposit or total price"
3270
- msgstr "Würden Sie gerne in Raten oder direkt den Gesamtpreis zahlen"
3271
 
3272
- #:
3273
- msgid "I will pay deposit"
3274
- msgstr "Ich zahle in Raten"
 
 
 
 
3275
 
3276
- #:
3277
- msgid "I will pay total price"
3278
- msgstr "Ich mache eine Einmalzahlung"
 
 
 
 
 
 
 
 
 
 
3279
 
3280
- #:
3281
- msgid "Deposit options"
3282
- msgstr "Ratenzahlungsoptionen"
3283
 
3284
- #:
3285
- msgid "If you enable \"Deposit only\", customers will be requested to pay only a deposit amount. If you enable \"Deposit or full price\", customers will be requested to pay a deposit amount or a full amount."
3286
- msgstr "Wenn Sie \"nur Ratenkauf\" aktivieren, werden Kunden veranlasst nur eine Anzahlung zu machen. Wenn Sie \"Ratenkauf oder Einmalzahlung\" aktivieren, werden Kunden veranlasst entweder eine Anzahlung zu machen oder den Gesamtpreis zu bezahlen."
3287
 
3288
- #:
3289
- msgid "Deposit only"
3290
- msgstr "nur Ratenkauf"
 
 
 
 
 
 
 
 
 
 
3291
 
3292
- #:
3293
- msgid "Deposit or full price"
3294
- msgstr "Ratenkauf oder Gesamtpreis"
 
 
 
 
 
 
 
 
3295
 
3296
- #:
3297
- msgid "amount due"
3298
- msgstr "fällige Summe"
3299
 
3300
- #:
3301
- msgid "amount to pay"
3302
- msgstr "zu zahlende Summe"
3303
 
3304
- #:
3305
- msgid "total deposit amount to be paid"
3306
- msgstr "gesamte zu bezahlende Kaution"
3307
 
3308
- #:
3309
- msgid "amount paid"
3310
- msgstr "Gezahlte Summe"
3311
 
3312
- #:
3313
- msgid "Disable deposit update"
3314
- msgstr "Kautionsupdate deaktivieren"
3315
 
3316
- #:
3317
- msgid "deposit value"
3318
- msgstr "Wert der Anzahlung"
3319
 
3320
- #:
3321
- msgid "Pay now"
3322
- msgstr "Jetzt bezahlen"
3323
 
3324
- #:
3325
- msgid "Pay now tax"
3326
- msgstr "Jetzt Steuern bezahlen"
 
 
 
 
 
3327
 
3328
- #:
3329
- msgid "download"
3330
- msgstr "Herunterladen"
3331
 
3332
- #:
3333
- msgid "File Upload Field"
3334
- msgstr "Feld zum Dateien Hochladen"
3335
 
3336
- #:
3337
- msgid "Files"
3338
- msgstr "Dateien"
 
 
 
 
 
 
 
 
 
 
 
 
3339
 
3340
- #:
3341
- msgid "Upload directory"
3342
- msgstr "Verzeichnis zum Hochladen"
3343
 
3344
- #:
3345
- msgid "Enter the network folder path where the files will be stored. If necessary, make sure that there is no free web access to the folder materials."
3346
- msgstr "Geben Sie den Netzwerkordnerpfad an, in dem die Dateien gespeichert werden sollen. Stellen Sie bei Bedarf sicher, dass es keinen freien Webzugang zu dem Ordnerinhalt gibt."
 
 
 
 
3347
 
3348
- #:
3349
- msgid "Browse"
3350
- msgstr "Durschsuchen"
3351
 
3352
- #:
3353
- msgid "File"
3354
- msgstr "Datei"
 
 
 
3355
 
3356
- #:
3357
- msgid "number of uploaded files"
3358
- msgstr "Anzahl hochgeladener Dateien"
3359
 
3360
- #:
3361
- msgid "Persons"
3362
- msgstr "Personen"
 
 
 
 
 
3363
 
3364
- #:
3365
- msgid "Capacity (min and max)"
3366
- msgstr "Kapazität (Min und Max)"
 
 
 
 
3367
 
3368
- #:
3369
- msgid "Group Booking"
3370
- msgstr "Gruppenbuchung"
3371
 
3372
- #:
3373
- msgid "Group bookings information format"
3374
- msgstr "Gruppenbuchungs-Informationsformat"
3375
 
3376
- #:
3377
- msgid "Select format for displaying the time slot occupancy for group bookings."
3378
- msgstr "Wählen Sie das Format für die Anzeige der Belegung des Zeitfensters für Gruppenbuchungen."
3379
 
3380
- #:
3381
- msgid "[Booked/Max capacity]"
3382
- msgstr "[Gebuchte / Max Kapazität]"
3383
 
3384
- #:
3385
- msgid "[Available left]"
3386
- msgstr "[Verbleibende Verfügbare]"
 
 
 
 
 
3387
 
3388
- #:
3389
- msgid "The minimum and maximum number of customers allowed to book the service for the certain time period."
3390
- msgstr "Die minimal und maximal Anzahl der Kunden für eine Dienstleistung."
3391
 
3392
- #:
3393
- msgid "Show information about group bookings"
3394
- msgstr "Informationen über Gruppenbuchungen anzeigen"
3395
 
3396
- #:
3397
- msgid "Disable capacity update"
3398
- msgstr "Kapazitätsaktualisierung deaktivieren"
3399
 
3400
- #:
3401
- msgid "BILL TO"
3402
- msgstr "RECHNUNG AN"
3403
 
3404
- #:
3405
- msgid "Invoice#"
3406
- msgstr "Abrechnung# "
3407
 
3408
- #:
3409
- msgid "Due date"
3410
- msgstr "Stichtag"
3411
 
3412
- #:
3413
- msgid "INVOICE"
3414
- msgstr "ABRECHNUNG"
3415
 
3416
- #:
3417
- msgid "Thank you for your business"
3418
- msgstr "Vielen Dank für Ihr Geschäft"
3419
 
3420
- #:
3421
- msgid "Invoice #{invoice_number} for your appointment"
3422
- msgstr "Abrechnung #{invoice_number} für Ihren Termin"
 
 
 
 
 
 
3423
 
3424
- #:
3425
- msgid "Dear {client_name}.\n"
3426
- "\n"
3427
- "Attached please find invoice #{invoice_number} for your appointment.\n"
3428
- "\n"
3429
- "Thank you for choosing our company.\n"
3430
- "\n"
3431
- "{company_name}\n"
3432
- "{company_phone}\n"
3433
- "{company_website}"
3434
- msgstr "\n"
3435
- " Lieber {client_name}.\n"
3436
- "\n"
3437
- "Im Anhang finden Sie die Abrechnung #{invoice_number} für Ihren Termin\n"
3438
- "\n"
3439
- "Vielen Dank, dass Sie unser Unternehmen gewählt haben\n"
3440
- "\n"
3441
- "{company_name}\n"
3442
- "{company_phone}\n"
3443
- "{company_website}\n"
3444
- ""
3445
 
3446
- #:
3447
- msgid "New invoice"
3448
- msgstr "Neue Abrechnung"
3449
 
3450
- #:
3451
- msgid "Hello.\n"
3452
- "You have a new invoice #{invoice_number} for an appointment scheduled by {client_first_name} {client_last_name}.\n"
3453
- "Please download invoice here: {invoice_link}"
3454
- msgstr "Hallo.\n"
3455
- "Sie haben eine neue Abrechnung #{invoice_number} für einen Termin, vorgesehen von {client_first_name} {client_last_name}.\n"
3456
- "Bitte laden Sie die Abrechnung hier {invoice_link} herunter"
3457
 
3458
- #:
3459
- msgid "Invoices"
3460
- msgstr "Abrechnungen"
3461
 
3462
- #:
3463
- msgid "Invoice due days"
3464
- msgstr "Abrechnung fällig am"
 
 
3465
 
3466
- #:
3467
- msgid "This setting specifies the due period for the invoice (in days)."
3468
- msgstr "Diese Einstellung bestimmt den Zeitraum für die Abrechnung (in Tagen)."
3469
 
3470
- #:
3471
- msgid "Invoice template"
3472
- msgstr "Abrechnungsvorlage"
 
 
 
 
 
 
 
 
3473
 
3474
- #:
3475
- msgid "Specify the template for the invoice."
3476
- msgstr "Bestimmen Sie die Vorlage für die Abrechnung."
 
 
 
3477
 
3478
- #:
3479
- msgid "Preview"
3480
- msgstr "Vorschau"
 
 
 
3481
 
3482
- #:
3483
- msgid "Download invoices"
3484
- msgstr "Abrechnungen herunterladen"
 
 
 
3485
 
3486
- #:
3487
- msgid "invoice creation date"
3488
- msgstr "Abrechnungserstellungsdatum"
 
 
 
 
 
3489
 
3490
- #:
3491
- msgid "due date of invoice"
3492
- msgstr "Tage bis zur Abrechnung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
3493
 
3494
- #:
3495
- msgid "number of days to submit payment"
3496
- msgstr "Anzahl der Tage zur Zahlungsübermittlung"
3497
 
3498
- #:
3499
- msgid "invoice link"
3500
- msgstr "Abrechnungslink"
3501
 
3502
- #:
3503
- msgid "invoice number"
3504
- msgstr "Abrechnungsnummer"
3505
 
3506
- #:
3507
- msgid "Attach invoice"
3508
- msgstr "Abrechnung anhängen"
3509
 
3510
- #:
3511
- msgid "Invoice due days: Please enter value in the following range (in days) - 1 to 365."
3512
- msgstr "Tage bis zur Abrechnung: Bitte geben Sie einen Wert in folgendem Bereich an(in Tage) - 1 bis 365"
3513
 
3514
- #:
3515
- msgid "Discount"
3516
- msgstr "Rabatt"
3517
 
3518
- #:
3519
- msgid "Select location"
3520
- msgstr "Ort auswählen"
3521
 
3522
- #:
3523
- msgid "Please select a location"
3524
- msgstr "Bitte wählen Sie einen Ort aus"
3525
 
3526
- #:
3527
- msgid "Locations"
3528
- msgstr "Orte"
3529
 
3530
- #:
3531
- msgid "Use custom settings"
3532
- msgstr "Benutzerdefinierte Einstellungen verwenden"
3533
 
3534
- #:
3535
- msgid "Select locations where the services are provided."
3536
- msgstr "Orte auswählen, an denen die Dienstleistung angeboten wird."
3537
 
3538
- #:
3539
- msgid "Custom settings for location"
3540
- msgstr "Angepasste Einstellungen für diesen Ort"
 
 
 
 
 
 
 
 
3541
 
3542
- #:
3543
- msgid "location info"
3544
- msgstr "Informationen des Orts"
3545
 
3546
- #:
3547
- msgid "location name"
3548
- msgstr "Name des Orts"
3549
 
3550
- #:
3551
- msgid "New Location"
3552
- msgstr "Neuer Ort"
3553
 
3554
- #:
3555
- msgid "Edit Location"
3556
- msgstr "Ort bearbeiten"
3557
 
3558
- #:
3559
- msgid "Add Location"
3560
- msgstr "Ort hinzufügen"
3561
 
3562
- #:
3563
- msgid "No locations found."
3564
- msgstr "Keine Orte gefunden."
3565
 
3566
- #:
3567
- msgid "W/o location"
3568
- msgstr "Ohne Ort"
3569
 
3570
- #:
3571
- msgid "Make selecting location required"
3572
- msgstr "Die Auswahl eines Ortes zur Voraussetzung machen"
3573
 
3574
- #:
3575
- msgid "Default value for location select"
3576
- msgstr "Standardwert der Ortsauswahl"
3577
 
3578
- #:
3579
- msgid "Mollie accepts payments in Euro only."
3580
- msgstr "Mollie akzeptiert nur Zahlungen in Euro."
3581
 
3582
- #:
3583
- msgid "Mollie error."
3584
- msgstr "Mollie-Fehler."
3585
 
3586
- #:
3587
- msgid "API Key"
3588
- msgstr "API-Schlüssel"
3589
 
3590
- #:
3591
- msgid "Time interval of payment gateway"
3592
- msgstr "Zeitintervall des Zahlungs-Gateways"
3593
 
3594
- #:
3595
- msgid "This setting determines the time limit after which the payment made via the payment gateway is considered to be incomplete. This functionality requires a scheduled cron job."
3596
- msgstr "Diese Einstellung bestimmt das Zeitlimit, nachdem die Zahlung über das Zahlungs-Gateway als unvollständig angesehen wird. Diese Funktionalität erfordert einen geplanten Cron-Job."
3597
 
3598
- #:
3599
- msgid "Quantity"
3600
- msgstr "Menge"
3601
 
3602
- #:
3603
- msgid "Max quantity"
3604
- msgstr "Maximale Menge"
 
 
 
 
 
 
 
 
3605
 
3606
- #:
3607
- msgid "Your package at {company_name}"
3608
- msgstr "ihr Paket bei {company_name}"
3609
 
3610
- #:
3611
- msgid "Dear {client_name}.\n"
3612
- "\n"
3613
- "This is a confirmation that you have booked {package_name}.\n"
3614
- "We are waiting you at {company_address}.\n"
3615
- "\n"
3616
- "Thank you for choosing our company.\n"
3617
- "\n"
3618
- "{company_name}\n"
3619
- "{company_phone}\n"
3620
- "{company_website}"
3621
- msgstr "Lieber {client_name_male}.\n"
3622
- "Liebe {client_name_female}.\n"
3623
- "\n"
3624
- "Dies ist eine Bestätigung, dass Sie folgendes Paket gebucht haben: {package_name}.\n"
3625
- "Wir erwarten Sie vor Ort: {company_address}.\n"
3626
- "\n"
3627
- "Danke, dass Sie sich für unser Angebot entschieden haben.\n"
3628
- "\n"
3629
- "{company_name}\n"
3630
- "{company_phone}\n"
3631
- "{company_website}\n"
3632
- ""
3633
 
3634
- #:
3635
- msgid "New package booking"
3636
- msgstr "Neues Paket gebucht"
3637
 
3638
- #:
3639
- msgid "Hello.\n"
3640
- "\n"
3641
- "You have new package booking.\n"
3642
- "\n"
3643
- "Package: {package_name}\n"
3644
- "\n"
3645
- "Client name: {client_name}\n"
3646
- "\n"
3647
- "Client phone: {client_phone}\n"
3648
- "\n"
3649
- "Client email: {client_email}"
3650
- msgstr "Hallo.\n"
3651
- "\n"
3652
- "Sie haben ein neues Paket gebucht.\n"
3653
- "\n"
3654
- "Paket: {package_name}\n"
3655
- "\n"
3656
- "Kunden-Name: {client_name}\n"
3657
- "\n"
3658
- "Kunden-Telefon: {client_phone}\n"
3659
- "\n"
3660
- "Kunden-E-mail: {client_email}"
3661
 
3662
- #:
3663
- msgid "Dear {client_name}.\n"
3664
- "This is a confirmation that you have booked {package_name}.\n"
3665
- "We are waiting you at {company_address}.\n"
3666
- "Thank you for choosing our company.\n"
3667
- "{company_name}\n"
3668
- "{company_phone}\n"
3669
- "{company_website}"
3670
- msgstr "Lieber {client_name}.\n"
3671
- "Dies ist eine Bestätigung, dass Sie {package_name} gebucht haben.\n"
3672
- "Wir erwarten Sie unter {company_address}.\n"
3673
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
3674
- "{company_name}\n"
3675
- "{company_phone}\n"
3676
- "{company_website}"
3677
 
3678
- #:
3679
- msgid "Hello.\n"
3680
- "You have new package booking.\n"
3681
- "Package: {package_name}\n"
3682
- "Client name: {client_name}\n"
3683
- "Client phone: {client_phone}\n"
3684
- "Client email: {client_email}"
3685
- msgstr "Hallo.\n"
3686
- "Sie haben eine neue Paketbuchung.\n"
3687
- "Paket: {package_name}\n"
3688
- "Kundenname: {client_name}\n"
3689
- "Kundentelefon: (client_phone)\n"
3690
- "Kunden-E-Mail: {client_email}"
3691
 
3692
- #:
3693
- msgid "Service package is deactivated"
3694
- msgstr "Servicepaket ist deaktiviert"
 
3695
 
3696
- #:
3697
- msgid "Dear {client_name}.\n"
3698
- "\n"
3699
- "Your package of services {package_name} has been deactivated.\n"
3700
- "\n"
3701
- "Thank you for choosing our company.\n"
3702
- "\n"
3703
- "If you have any questions, please contact us.\n"
3704
- "{company_name}\n"
3705
- "{company_phone}\n"
3706
- "{company_website}"
3707
- msgstr "Lieber {client_name}.\n"
3708
- "\n"
3709
- "Ihr Servicepaket {package_name} wurde deaktiviert.\n"
3710
- "\n"
3711
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
3712
- "\n"
3713
- "Wenn Sie Fragen haben, kontaktieren Sie uns bitte.\n"
3714
- "{company_name}\n"
3715
- "{company_phone}\n"
3716
- "{company_website}"
3717
 
3718
- #:
3719
- msgid "Hello.\n"
3720
- "\n"
3721
- "The following Package of services {package_name} has been deactivated.\n"
3722
- "\n"
3723
- "Client name: {client_name}\n"
3724
- "\n"
3725
- "Client phone: {client_phone}\n"
3726
- "\n"
3727
- "Client email: {client_email}"
3728
- msgstr "Hallo.\n"
3729
- "\n"
3730
- "Das folgende Paket von Diensten {package_name} wurde deaktiviert.\n"
3731
- "\n"
3732
- "Kundenname: {client_name}\n"
3733
- "\n"
3734
- "Kundentelefon: {client_phone}\n"
3735
- "\n"
3736
- "Kunden-E-Mail: {client_email}"
3737
 
3738
- #:
3739
- msgid "Dear {client_name}.\n"
3740
- "Your package of services {package_name} has been deactivated.\n"
3741
- "Thank you for choosing our company.\n"
3742
- "If you have any questions, please contact us.\n"
3743
- "{company_name}\n"
3744
- "{company_phone}\n"
3745
- "{company_website}"
3746
- msgstr "Lieber {client_name}.\n"
3747
- "Ihr Paket von Diensten {package_name} wurde deaktiviert.\n"
3748
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
3749
- "Wenn Sie Fragen haben, kontaktieren Sie uns bitte.\n"
3750
- "{company_name}\n"
3751
- "{company_phone}\n"
3752
- "{company_website}"
3753
 
3754
- #:
3755
- msgid "Hello.\n"
3756
- "The following Package of services {package_name} has been deactivated.\n"
3757
- "Client name: {client_name}\n"
3758
- "Client phone: {client_phone}\n"
3759
- "Client email: {client_email}"
3760
- msgstr "Hallo.\n"
3761
- "Das folgende Paket von Diensten {package_name} wurde deaktiviert.\n"
3762
- "Kundenname: {client_name}\n"
3763
- "Kundentelefon: {client_phone}\n"
3764
- "Hallo.\n"
3765
- "Das folgende Paket von Diensten {package_name} wurde deaktiviert.\n"
3766
- "Kundenname: {client_name}\n"
3767
- "Kundentelefon: {client_phone}\n"
3768
- "Kunden-E-Mail: {client_email}"
3769
 
3770
- #:
3771
- msgid "Notification to customer about purchased package"
3772
- msgstr "Benachrichtigung des Kunden über das gekaufte Paket"
3773
 
3774
- #:
3775
- msgid "Notification to staff member about purchased package"
3776
- msgstr "Benachrichtigung des Mitarbeiters über das gekaufte Paket"
3777
 
3778
- #:
3779
- msgid "Notification to customer about package deactivation"
3780
- msgstr "Benachrichtigung des Kunden über die Paketdeaktivierung"
3781
 
3782
- #:
3783
- msgid "Notification to staff member about package deactivation"
3784
- msgstr "Benachrichtigung des Mitarbeiters über die Paketdeaktivierung"
3785
 
3786
- #:
3787
- msgid "Packages"
3788
- msgstr "Pakete"
 
 
 
 
 
 
3789
 
3790
- #:
3791
- msgid "Unassigned"
3792
- msgstr "Nicht zugewiesen"
3793
 
3794
- #:
3795
- msgid "Enable this setting so that the package can be displayed and available for booking when clients have not specified a particular provider."
3796
- msgstr "Aktivieren Sie diese Einstellung, damit das Paket angezeigt und gebucht werden kann, wenn der Kunde keinen bestimmten Anbieter angegeben hat."
3797
 
3798
- #:
3799
- msgid "Life Time"
3800
- msgstr "Lebenslang"
3801
 
3802
- #:
3803
- msgid "The period in days when the customer can use a package of services."
3804
- msgstr "Der Zeitraum in Tagen, während ein Kunde ein Dienstleistungspaket verwenden kann."
3805
 
3806
- #:
3807
- msgid "New package"
3808
- msgstr "Neues Paket"
3809
 
3810
- #:
3811
- msgid "Creation Date"
3812
- msgstr "Erstellungsdatum"
3813
 
3814
- #:
3815
- msgid "Edit package"
3816
- msgstr "Paket bearbeiten"
3817
 
3818
- #:
3819
- msgid "No packages for selected period and criteria."
3820
- msgstr "Keine Pakete für ausgewählte Zeiten und Kriterien."
3821
 
3822
- #:
3823
- msgid "name of package"
3824
- msgstr "Paketname"
3825
 
3826
- #:
3827
- msgid "package size"
3828
- msgstr "Paketgröße"
3829
 
3830
- #:
3831
- msgid "price of package"
3832
- msgstr "Paketpreis"
3833
 
3834
- #:
3835
- msgid "package life time"
3836
- msgstr "lebenslanges Paket"
3837
 
3838
- #:
3839
- msgid "reason you mentioned while deleting package"
3840
- msgstr "Gründe, die Sie nannten während Sie ein Paket gelöscht haben"
3841
 
3842
- #:
3843
- msgid "Add customer packages list"
3844
- msgstr "Zur Kunden Paketliste hinzufügen"
 
 
 
 
 
 
3845
 
3846
- #:
3847
- msgid "Select service provider to see the packages provided. Or select unassigned package to see packages with no particular provider."
3848
- msgstr "Wählen Sie einen Dienstleistungsanbieter aus, um zu sehen, welche Paket angeboten werden. Oder wählen Sie Pakete ohne bestimmten Anbieter aus."
 
 
3849
 
3850
- #:
3851
- msgid "-- Select a package --"
3852
- msgstr "Packet auswählen"
3853
 
3854
- #:
3855
- msgid "Please select a package"
3856
- msgstr "Bitte Paket auswählen"
3857
 
3858
- #:
3859
- msgid "Incorrect location and package combination"
3860
- msgstr "Fehlerhafter Ort und Paket Kombination"
 
 
3861
 
3862
- #:
3863
- msgid "Please select a customer"
3864
- msgstr "Bitte Kunden auswählen"
3865
 
3866
- #:
3867
- msgid "Save & schedule"
3868
- msgstr "Sichern & terminieren"
3869
 
3870
- #:
3871
- msgid "Could not save package in database."
3872
- msgstr "Paket konnte nicht in Datenbank gesichert werden."
3873
 
3874
- #:
3875
- msgid "Selected appointment date exceeds the period when the customer can use a package of services."
3876
- msgstr "Ausgewähltes Termindatum überschreitet den Zeitraum, in dem der Kunde ein Paket von Dienstleistungen nutzen kann."
3877
 
3878
- #:
3879
- msgid "Ignore"
3880
- msgstr "Ignorieren"
3881
 
3882
- #:
3883
- msgid "Selected period is occupied by another appointment"
3884
- msgstr "Ausgewählter Zeitraum ist belegt durch einen anderen Termin"
3885
 
3886
- #:
3887
- msgid "Unfortunately, you're not able to book an appointment because the required time limit prior to booking has expired."
3888
- msgstr "Leider ist es für Sie nicht möglich einen Termin zu vereinbaren, weil die benötigte Vorlaufzeit zur Terminbuchung abgelaufen ist."
3889
 
3890
- #:
3891
- msgid "You are trying to schedule an appointment in the past. Please select another time slot."
3892
- msgstr "Sie versuchen einen Termin in der Vergangenheit zu vereinbaren. Bitte wählen Sie einen anderes Zeitfenster"
 
3893
 
3894
- #:
3895
- msgid "Select appointment date"
3896
- msgstr "Datum des Termins auswählen"
3897
 
3898
- #:
3899
- msgid "Delete package appointment"
3900
- msgstr "Termin Paket löschen"
3901
 
3902
- #:
3903
- msgid "Edit package appointment"
3904
- msgstr "Termin Paket bearbeiten"
 
 
3905
 
3906
- #:
3907
- msgid "Expires"
3908
- msgstr "Erlischt"
3909
 
3910
- #:
3911
- msgid "PayPal ID"
3912
- msgstr "PayPal Identifikationsnummer"
3913
 
3914
- #:
3915
- msgid "Your PayPal ID or an email address associated with your PayPal account. Email addresses must be confirmed."
3916
- msgstr "Ihre PayPal Identifikationsnummer oder eine, mit Ihrem PayPal Konto verbundene E-Mail-Adresse. E-Mail-Adressen müssen verifiziert werden."
3917
 
3918
- #:
3919
- msgid "Incorrect payment data"
3920
- msgstr "Falsche Zahlungsinformationen"
3921
 
3922
- #:
3923
- msgid "Agent ID"
3924
- msgstr "Agenten-Identifikationsnummer"
3925
 
3926
- #:
3927
- msgid "Account ID"
3928
- msgstr "Konto-ID"
 
 
 
 
 
3929
 
3930
- #:
3931
- msgid "Merchant ID"
3932
- msgstr "Händler-ID"
3933
 
3934
- #:
3935
- msgid "Transaction rejected"
3936
- msgstr "Transaktion zurückgezogen"
3937
 
3938
- #:
3939
- msgid "Pending payment"
3940
- msgstr "Ausstehende Zahlung"
3941
 
3942
- #:
3943
- msgid "License verification"
3944
- msgstr "Lizenzüberprüfung"
3945
 
3946
- #:
3947
- msgid "Form view in case of single booking"
3948
- msgstr "Formularansicht bei Einzelbuchung"
3949
 
3950
- #:
3951
- msgid "Form view in case of multiple booking"
3952
- msgstr "Formularansicht bei Mehrfachbuchung"
 
 
 
 
3953
 
3954
- #:
3955
- msgid "Export to CSV"
3956
- msgstr "Export in eine CSV-Datei"
3957
 
3958
- #:
3959
- msgid "Delimiter"
3960
- msgstr "Trennzeichen"
3961
 
3962
- #:
3963
- msgid "Comma (,)"
3964
- msgstr "Komma (,)"
3965
 
3966
- #:
3967
- msgid "Semicolon (;)"
3968
- msgstr "Semikolon (;)"
3969
 
3970
- #:
3971
- msgid "Booking Time"
3972
- msgstr "Reservierungszeit"
3973
 
3974
- #:
3975
- msgid "Print"
3976
- msgstr "Drucken"
3977
 
3978
- #:
3979
- msgid "Extras"
3980
- msgstr "Extras"
3981
 
3982
- #:
3983
- msgid "Date of birth"
3984
- msgstr "Geburtsdatum"
3985
 
3986
- #:
3987
- msgid "Import"
3988
- msgstr "Import"
3989
 
3990
- #:
3991
- msgid "Note"
3992
- msgstr "Hinweis"
3993
 
3994
- #:
3995
- msgid "Select file"
3996
- msgstr "Datei auswählen"
3997
 
3998
- #:
3999
- msgid "Please verify your license by providing a valid purchase code. Upon providing the purchase code you will get access to software updates, including feature improvements and important security fixes."
4000
- msgstr "Bitte überprüfen Sie Ihre Lizenz mit einem gültigen Bestellcode. Nach der Bereitstellung des Kauf-Code erhalten Sie Zugriff auf Software-Updates, einschließlich Feature-Verbesserungen und wichtige Sicherheits-Updates."
4001
 
4002
- #:
4003
- msgid "If you do not provide a valid purchase code within {days}, access to your bookings will be disabled."
4004
- msgstr "Wenn Sie innerhalb von {days} keinen gültigen Bestellcode angeben, wird der Zugang zu Ihren Buchungen deaktiviert."
 
 
 
 
 
4005
 
4006
- #:
4007
- msgid "I have already made the purchase"
4008
- msgstr "Ich habe bereits den Kauf gemacht"
4009
 
4010
- #:
4011
- msgid "I want to make a purchase now"
4012
- msgstr "Ich möchte jetzt einen Kauf tätigen"
4013
 
4014
- #:
4015
- msgid "I will provide license info later"
4016
- msgstr "Ich werde Lizenzinformationen später zur Verfügung stellen"
 
 
 
 
 
4017
 
4018
- #:
4019
- msgid "Access to your bookings has been disabled."
4020
- msgstr "Der Zugang zu Ihren Buchungen wurde deaktiviert."
4021
 
4022
- #:
4023
- msgid "To enable access to your bookings, please verify your license by providing a valid purchase code."
4024
- msgstr "Um den Zugang zu Ihren Buchungen zu ermöglichen, überprüfen Sie bitte Ihre Lizenz mit einem gültigen Kaufcode."
4025
 
4026
- #:
4027
- msgid "License verification required"
4028
- msgstr "Lizenzprüfung erforderlich"
4029
 
4030
- #:
4031
- msgid "Please contact your website administrator in order to verify the license."
4032
- msgstr "Bitte wenden Sie sich an den Administrator Ihrer Website, um die Lizenz zu überprüfen."
 
 
 
 
 
4033
 
4034
- #:
4035
- msgid "If you do not verify the license within {days}, access to your bookings will be disabled."
4036
- msgstr "Wenn Sie nicht in {days} einen gültigen Registrierungs-Code eingebenwird der Zugang zu ihren Buchungen gesperrt."
4037
 
4038
- #:
4039
- msgid "To enable access to your bookings, please contact your website administrator in order to verify the license."
4040
- msgstr "Bitte kontaktieren Sie Ihren Website-Administrator um ihre Lizenz zu überprüfenund wieder Zugriff auf ihre Buchungen zu erhalten."
4041
 
4042
- #:
4043
- msgid "Cannot find your purchase code? See this <a href=\"%s\" target=\"_blank\">page</a>."
4044
- msgstr "Sie finden den Registrierungs-Code nicht? Siehe diese <a href=\"%s\" target=\"_blank\">Seite</a>."
4045
 
4046
- #:
4047
- msgid "Purchase Code"
4048
- msgstr "Registrierungs-Code"
4049
 
4050
- #:
4051
- msgid "License verification succeeded"
4052
- msgstr "Lizenzprüfung erfolgreich"
4053
 
4054
- #:
4055
- msgid "Your license has been verified successfully."
4056
- msgstr "Ihre Lizenz wurde erfolgreich bestätigt."
4057
 
4058
- #:
4059
- msgid "You have access to software updates, including feature improvements and important security fixes."
4060
- msgstr "Sie haben Zugriff auf Software-Updates, einschließlich Funktionsverbesserungen und wichtige Sicherheitsupdates."
4061
 
4062
- #:
4063
- msgid "Proceed"
4064
- msgstr "Weiter"
 
 
 
 
 
4065
 
4066
- #:
4067
- msgid "Specified order"
4068
- msgstr "Festgelegte Reihenfolge"
4069
 
4070
- #:
4071
- msgid "Least occupied that day"
4072
- msgstr "Am geringsten belegt an diesem Tag"
4073
 
4074
- #:
4075
- msgid "Most occupied that day"
4076
- msgstr "Am meisten belegt an diesem Tag"
4077
 
4078
- #:
4079
- msgid "Least expensive"
4080
- msgstr "Der günstigste"
4081
 
4082
- #:
4083
- msgid "Most expensive"
4084
- msgstr "Der teuerste"
4085
 
4086
- #:
4087
- msgid "To make service invisible to your customers set the visibility to \"Private\"."
4088
- msgstr "Um den Dienst unsichtbar für Ihre Kunden zu machen, sezten Sie die Sichtbarkeit auf \"Privat\"."
4089
 
4090
- #:
4091
- msgid "Padding time (before and after)"
4092
- msgstr "Zusätzliche Zeit (vor und nach)"
4093
 
4094
- #:
4095
- msgid "Set padding time before and/or after an appointment. For example, if you require 15 minutes to prepare for the next appointment then you should set \"padding before\" to 15 min. If there is an appointment from 8:00 to 9:00 then the next available time slot will be 9:15 rather than 9:00."
4096
- msgstr "Stellen Sie die zusätzliche Zeit vor und / oder nach einem Termin ein. Wenn Sie zum Beispiel 15 Minuten benötigen, um sich für den nächsten Termin vorzubereiten, dann sollten Sie \"zusätzliche Zeit vor\" auf 15 min einstellen. Wenn ein Termin von 8:00 bis 09:00 Uhr dauert, wird der nächste verfügbare Zeit um 09:15 statt 09:00 sein."
 
 
 
 
4097
 
4098
- #:
4099
- msgid "Providers preference for ANY"
4100
- msgstr "Anbieter Voreinstellung für Jeder"
4101
 
4102
- #:
4103
- msgid "Allows you to define the rule of staff members auto assignment when ANY option is selected"
4104
- msgstr "Erlaubt die Regel auszuwählen welche automatisch Mitarbeiter zuordnet wenn die option Jeder ausgewählt wurde"
4105
 
4106
- #:
4107
- msgid "Select product"
4108
- msgstr "Produkt auswählen"
4109
 
4110
- #:
4111
- msgid "Create WordPress user account for customers"
4112
- msgstr "Neues Wordpress-Benutzerkonto für Kunden"
4113
 
4114
- #:
4115
- msgid "If this setting is enabled then Bookly will be creating WordPress user accounts for all new customers. If the user is logged in then the new customer will be associated with the existing user account."
4116
- msgstr "Wenn diese Einstellung aktiviert ist, wird Bookly Wordpress-Benutzerkonten für alle Neukunden erstellen. Wenn sich der Benutzer dann einloggt, wird der neue Kunde zu dem bestehenden Benutzerkonto zugeordnet."
 
4117
 
4118
- #:
4119
- msgid "New user account role"
4120
- msgstr "Neue Benutzerkonto-Rolle"
4121
 
4122
- #:
4123
- msgid "Select what role will be assigned to newly created WordPress user accounts for customers."
4124
- msgstr "Wählen Sie aus, welche Rolle neu erstellten WordPress-Benutzerkonten für Kunden zugewiesen werden soll."
4125
 
4126
- #:
4127
- msgid "Cancel appointment action"
4128
- msgstr "Abbrechen Termin Aktion"
 
 
 
 
 
4129
 
4130
- #:
4131
- msgid "Select what happens when customer clicks cancel appointment link. With \"Delete\" the appointment will be deleted from the calendar. With \"Cancel\" only appointment status will be changed to \"Cancelled\"."
4132
- msgstr "Wählen Sie, was passiert, wenn Kunde klickt Termin Link abzubrechen. Mit \"Löschen\" wird der Termin aus dem Kalender gestrichen. Mit \"Abbrechen\" wird nur der Termin auf Status \"Abgebrochen\" geändert"
4133
 
4134
- #:
4135
- msgid "Minimum time requirement prior to booking"
4136
- msgstr "Mögliche Zeit vor der Buchung"
4137
 
4138
- #:
4139
- msgid "Set how late appointments can be booked (for example, require customers to book at least 1 hour before the appointment time)."
4140
- msgstr "Festlegen der Zeit, bis wann Termine gebucht werden können (zum Beispiel können Termine mindestens 1 Stunde vorher gebucht werden)."
4141
 
4142
- #:
4143
- msgid "Minimum time requirement prior to canceling"
4144
- msgstr "Mindestzeit vor dem Abbruch"
 
 
 
4145
 
4146
- #:
4147
- msgid "Set how late appointments can be cancelled (for example, require customers to cancel at least 1 hour before the appointment time)."
4148
- msgstr "Festlegen der Zeit, bis Termine abgesagt werden können (es ist zum Beispiel nur möglich, dass Kunden mindestens 1 Stunde vor dem Termin absagen können)."
 
 
 
4149
 
4150
- #:
4151
- msgid "Final step URL"
4152
- msgstr "URL Letzter Schritt"
4153
 
4154
- #:
4155
- msgid "Set the URL of a page that the user will be forwarded to after successful booking. If disabled then the default Done step is displayed."
4156
- msgstr "URL einer Seite, auf die der Benutzer nach erfolgter Buchung weitergeleitet wird. Wenn deaktiviert, wird der Standard-Fertig Schritt angezeigt."
4157
 
4158
- #:
4159
- msgid "Enter a URL"
4160
- msgstr "Geben Sie eine URL ein"
4161
 
4162
- #:
4163
- msgid "To find your client ID and client secret, do the following:"
4164
- msgstr "Um Ihre Kundennummer und Sicherheitseinstellungen zur erhalten, gehen Sie folgendermaßen vor:"
4165
 
4166
- #:
4167
- msgid "Go to the <a href=\"https://console.developers.google.com/\" target=\"_blank\">Google Developers Console</a>."
4168
- msgstr "Gehe zu <a href=\"https://console.developers.google.com/\" target=\"_blank\">Google Developers Console</a>."
4169
 
4170
- #:
4171
- msgid "Select a project, or create a new one."
4172
- msgstr "Wählen Sie ein Projekt oder legen Sie ein neues an."
4173
 
4174
- #:
4175
- msgid "Click in the upper left part to see a sliding sidebar. Next, click <b>API Manager</b>. In the list of APIs look for <b>Calendar API</b> and make sure it is enabled."
4176
- msgstr "Klicken Sie in den linken oberen Teil, um die Sidebar darzustellen. Klicken Sie dort auf <b>API Manager</b> und <b>Bibliothek</b>. In der Liste der APIs suchen Sie unter <b>Google Apps APIs</b> den Eintrag <b>Calendar API</b>. Stellen Sie sicher, dass es aktiviert ist."
4177
 
4178
- #:
4179
- msgid "In the sidebar on the left, select <b>Credentials</b>."
4180
- msgstr "In der Seitenleiste auf der linken Seite wählen Sie <b>Zugangsdaten</b>."
4181
 
4182
- #:
4183
- msgid "Go to <b>OAuth consent screen</b> tab and give a name to the product, then click <b>Save</b>."
4184
- msgstr "Gehen Sie zu <b>OAuth Zustimmungsbildschirm</b> und geben einen Namen für das Produkt ein, klicken Sie auf <b>Save</b>."
4185
 
4186
- #:
4187
- msgid "Go to <b>Credentials</b> tab and in <b>New credentials</b> drop-down menu select <b>OAuth client ID</b>."
4188
- msgstr "Zum <b>Zugangsdaten</b> und <b>Anmeldedaten erstellen</b>. Im Dropdown-Menü wählen Sie <b>OAuth client ID</b>."
4189
 
4190
- #:
4191
- msgid "Select <b>Web application</b> and create your project's OAuth 2.0 credentials by providing the necessary information. For <b>Authorized redirect URIs</b> enter the <b>Redirect URI</b> found below on this page. Click <b>Create</b>."
4192
- msgstr "Wählen Sie <b>Web anwendung</b>, und erstellen Sie OAuth 2.0-Anmeldeinformationen für Ihr Projekt durch die Eingabe der notwendigen Informationen. In <b>Autorisierte Weiterleitungs-URIs</b> geben Sie die <b>Redirect URI</b> ein, die Sie unten auf dieser Seite sehen. Klicken Sie auf <b>Create</b>."
 
 
 
4193
 
4194
- #:
4195
- msgid "In the popup window look for the <b>Client ID</b> and <b>Client secret</b>. Use them in the form below on this page."
4196
- msgstr "Im Popup-Fenster sehen Sie <b>Client ID</b> und <b>Client secret</b>. Geben Sie diese in das Formular unten auf dieser Seite ein."
 
 
 
 
 
4197
 
4198
- #:
4199
- msgid "Go to Staff Members, select a staff member and click <b>Connect</b> which is located at the bottom of the page."
4200
- msgstr "Gehen Sie zu Mitarbeiter und wählen Sie einen Mitarbeiter. Klicken Sie auf <b>Connect</b> am unteren Rand der Seite."
 
 
 
4201
 
4202
- #:
4203
- msgid "Client ID"
4204
- msgstr "Client ID"
4205
 
4206
- #:
4207
- msgid "The client ID obtained from the Developers Console"
4208
- msgstr "Die von der Developers Console erhaltene Client-ID"
 
 
 
4209
 
4210
- #:
4211
- msgid "Client secret"
4212
- msgstr "Client secret"
4213
 
4214
- #:
4215
- msgid "The client secret obtained from the Developers Console"
4216
- msgstr "Die von der Developers Console erhalten Client secret"
4217
 
4218
- #:
4219
- msgid "Redirect URI"
4220
- msgstr "Redirect URI"
4221
 
4222
- #:
4223
- msgid "Enter this URL as a redirect URI in the Developers Console"
4224
- msgstr "Geben Sie diese URL als Redirect-URI in die Developers Console"
4225
 
4226
- #:
4227
- msgid "Limit number of fetched events"
4228
- msgstr "Limit der abgerufenen Ereignisse"
4229
 
4230
- #:
4231
- msgid "Template for event title"
4232
- msgstr "Vorlage für Titel des Eintrages"
4233
 
4234
- #:
4235
- msgid "Configure what information should be placed in the title of Google Calendar event. Available codes are {service_name}, {staff_name} and {client_names}."
4236
- msgstr "Konfigurieren Sie, welche Informationen für ein Ereignis im Titel Google Kalender eingetragen werden. Verfügbare Codes sind {service_name}, {staff_name} und {client_names}."
4237
 
4238
- #:
4239
- msgid "API Username"
4240
- msgstr "API Benutzername"
4241
 
4242
- #:
4243
- msgid "API Password"
4244
- msgstr "API Passwort"
4245
 
4246
- #:
4247
- msgid "API Signature"
4248
- msgstr "API Signatur"
4249
 
4250
- #:
4251
- msgid "Upon providing the purchase code you will have access to free updates of Bookly. Updates may contain functionality improvements and important security fixes. For more information on where to find your purchase code see this <a href=\"https://help.market.envato.com/hc/en-us/articles/202822600-Where-can-I-find-my-Purchase-Code-\" target=\"_blank\">page</a>."
4252
- msgstr "Durch die Bereitstellung des Code, haben Sie kostenlosen Zugang zu Updates des Plugins. Updates können Funktionalitätsverbesserungen und wichtige Sicherheitsupdates enthalten. Weitere Informationen, wo Sie Ihren Einkaufs-Code finden: <a href=\"https://help.market.envato.com/hc/en-us/articles/202822600-Where-can-I-find-my-Purchase-Code-\" target=\"_blank\">Seite</a>"
4253
 
4254
- #:
4255
- msgid "You need to install and activate WooCommerce plugin before using the options below.<br/><br/>Once the plugin is activated do the following steps:"
4256
- msgstr "Sie benötigen das WooCommerce Plugin, bevor Sie die folgenden Optionen nutzen können.<br/><br/>Sobald das Plugin aktiviert ist, führen Sie die folgenden Schritte aus:"
4257
 
4258
- #:
4259
- msgid "Create a product in WooCommerce that can be placed in cart."
4260
- msgstr "Erstellen Sie ein Produkt in WooCommerce, das in den Warenkorb gelegt werden kann."
4261
 
4262
- #:
4263
- msgid "In the form below enable WooCommerce option."
4264
- msgstr "Im Formular unten aktivieren Sie WooCommerce."
4265
 
4266
- #:
4267
- msgid "Select the product that you created at step 1 in the drop down list of products."
4268
- msgstr "Wählen Sie das Produkt in der Dropdown-Liste, das Sie im Schritt 1 erstellt haben."
4269
 
4270
- #:
4271
- msgid "Note that once you have enabled WooCommerce option in Bookly the built-in payment methods will no longer work. All your customers will be redirected to WooCommerce cart instead of standard payment step."
4272
- msgstr "Beachten Sie, dass sobald Sie WooCommerce in Bookly aktiviert haben, die integrierten Zahlungsmittel nicht mehr funktionieren. Alle Ihre Kunden werden zum WooCommerce Warenkorb umgeleitet, statt zum Standard-Zahlungs Schritt."
 
4273
 
4274
- #:
4275
- msgid "Booking product"
4276
- msgstr "Produkt für den Warenkorb"
4277
 
4278
- #:
4279
- msgid "Cart item data"
4280
- msgstr "Warenkorb Artikeldaten"
4281
 
4282
- #:
4283
- msgid "Google Calendar integration"
4284
- msgstr "Google Kalender Integration"
4285
 
4286
- #:
4287
- msgid "Synchronize staff member appointments with Google Calendar."
4288
- msgstr "Synchronisieren Sie die Termine der Mitarbeiter mit dem Google Kalender."
4289
 
4290
- #:
4291
- msgid "Connect"
4292
- msgstr "Verbinden"
4293
 
4294
- #:
4295
- msgid "Please configure Google Calendar <a href=\"%s\">settings</a> first"
4296
- msgstr "Bitte konfigurieren Sie die Google Kalender <a href=\"%s\">Einstellungen</a> zuerst"
4297
 
4298
- #:
4299
- msgid "Connected"
4300
- msgstr "Verbunden"
4301
 
4302
- #:
4303
- msgid "disconnect"
4304
- msgstr "Verbindung lösen"
4305
 
4306
- #:
4307
- msgid "Add Bookly appointments list"
4308
- msgstr "Bookly Terminliste hinzufügen"
4309
 
4310
- #:
4311
- msgid "Titles"
4312
- msgstr "Titel"
4313
 
4314
- #:
4315
- msgid "No appointments found."
4316
- msgstr "Keine Termine gefunden."
4317
 
4318
- #:
4319
- msgid "Show past appointments"
4320
- msgstr "Zeigen Sie vergangene Termine"
 
 
 
 
 
 
 
 
 
 
 
 
4321
 
4322
- #:
4323
- msgid "Sorry, the time slot %date_time% for %service% has been already occupied."
4324
- msgstr "Sorry, die Zeit %date_time% für %service% ist bereits besetzt."
4325
 
4326
- #:
4327
- msgid "Service was not found"
4328
- msgstr "Service wurde nicht gefunden"
4329
 
4330
- #:
4331
- msgid "%s is not a valid purchase code for %s."
4332
- msgstr "%s ist kein gültiger Kauf Code für %s."
4333
 
4334
- #:
4335
- msgid "Purchase code verification is temporarily unavailable. Please try again later."
4336
- msgstr "Registrierung Code-Verifikation ist vorübergehend nicht verfügbar. Bitte versuchen Sie es später noch einmal."
4337
 
4338
- #:
4339
- msgid "Your appointment at {company_name}"
4340
- msgstr "Ihr nächster Termin für {company_name}"
4341
 
4342
- #:
4343
- msgid "Dear {client_name}.\n"
4344
- "\n"
4345
- "We would like to remind you that you have booked {service_name} tomorrow at {appointment_time}. We are waiting for you at {company_address}.\n"
4346
- "\n"
4347
- "Thank you for choosing our company.\n"
4348
- "\n"
4349
- "{company_name}\n"
4350
- "{company_phone}\n"
4351
- "{company_website}"
4352
- msgstr "Sehr geehrte/r {client_name}.\n"
4353
- "\n"
4354
- "Wir möchten Sie gerne daran erinnern, das sie {service_name} für morgen um {appointment_time} gebucht haben . Wir erwarten Sie morgen hier: {company_address}.\n"
4355
- "\n"
4356
- "Vielen Dank, dass Sie uns gewählt haben.\n"
4357
- "\n"
4358
- "{company_name}\n"
4359
- "{company_phone}\n"
4360
- "{company_website}"
4361
 
4362
- #:
4363
- msgid "Your visit to {company_name}"
4364
- msgstr "Ihr Besuch von {company_name}"
4365
 
4366
- #:
4367
- msgid "Dear {client_name}.\n"
4368
- "\n"
4369
- "Thank you for choosing {company_name}. We hope you were satisfied with your {service_name}.\n"
4370
- "\n"
4371
- "Thank you and we look forward to seeing you again soon.\n"
4372
- "\n"
4373
- "{company_name}\n"
4374
- "{company_phone}\n"
4375
- "{company_website}"
4376
- msgstr "Sehr geehrte/r {client_name}.\n"
4377
- "\n"
4378
- "Vielen Dank, dass Sie sich für {company_name} entschieden haben. Wir hoffen, dass Sie mit Ihrem {service_name} zufrieden waren.\n"
4379
- "\n"
4380
- "Vielen Dank und wir freuen uns auf ein baldiges Wiedersehen.\n"
4381
- "\n"
4382
- "{company_name}\n"
4383
- "{company_phone}\n"
4384
- "{company_website}"
4385
 
4386
- #:
4387
- msgid "Your agenda for {tomorrow_date}"
4388
- msgstr "Ihre Terminplan für {tomorrow_date}"
4389
 
4390
- #:
4391
- msgid "Hello.\n"
4392
- "\n"
4393
- "Your agenda for tomorrow is:\n"
4394
- "\n"
4395
- "{next_day_agenda}"
4396
- msgstr "Hallo.\n"
4397
- "\n"
4398
- "Ihr Terminplan für morgen ist:\n"
4399
- "\n"
4400
- "{next_day_agenda}"
4401
 
4402
- #:
4403
- msgid "Please contact your website administrator in order to verify the license for Bookly add-ons. If you do not verify the license within {days}, the respective add-ons will be disabled."
4404
- msgstr "Bitte kontaktieren Sie Ihren Website-Administrator, um die Lizenz für Bookly Add-ons zu überprüfen. Wenn Sie nicht über die Lizenz innerhalb von {days} überprüfen, werden die jeweiligen Add-ons deaktiviert."
4405
 
4406
- #:
4407
- msgid "Contact your admin to verify Bookly add-ons license; {days} remaining."
4408
- msgstr "Kontaktieren Sie Ihren Administrator Bookly Add-ons Lizenz zu überprüfen; Noch {days}."
4409
 
4410
- #:
4411
- msgid "Please verify the license for Bookly add-ons in the administrative panel. If you do not verify the license within {days}, the respective add-ons will be disabled."
4412
- msgstr "Bitte überprüfen Sie die Lizenz für Bookly Add-ons in der Verwaltungs-Panel. Wenn Sie nicht über die Lizenz innerhalb von {days} überprüfen, werden die jeweiligen Add-ons deaktiviert."
 
 
 
4413
 
4414
- #:
4415
- msgid "Please verify Bookly add-ons license; {days} remaining."
4416
- msgstr "Bitte überprüfen Bookly Add-ons-Lizenz; Noch {days}."
4417
 
4418
- #:
4419
- msgid "Check for updates"
4420
- msgstr "Auf Updates prüfen"
4421
 
4422
- #:
4423
- msgid "This plugin is up to date."
4424
- msgstr "Dieses Plugin ist auf dem neuesten Stand."
 
4425
 
4426
- #:
4427
- msgid "A new version of this plugin is available."
4428
- msgstr "Eine neue Version des Plugins ist verfügbar."
4429
 
4430
- #:
4431
- msgid "Unknown update checker status \"%s\""
4432
- msgstr "Unbekannt Update Checker-Status \"%s\""
 
 
 
 
 
4433
 
4434
- #:
4435
- msgid "To update - enter the <a href=\"%s\">Purchase Code</a>"
4436
- msgstr "Zum aktualisieren geben Sie den <a href=\"%s\">Registrierungs-Code</a> ein"
4437
 
4438
- #:
4439
- msgid "You may import list of clients in CSV format. You can choose the columns contained in your file. The sequence of columns should coincide with the specified one."
4440
- msgstr "Sie können eine Kundenliste im CSV-Format importieren. Sie können die benötigten Spalten in Ihrer Datei auswählen. Die Reihenfolge Ihrer Spalten soll mit der vorgegebenen Spalten-Reihenfolge übereinstimmen."
4441
 
4442
- #:
4443
- msgid "Limit appointments per customer"
4444
- msgstr "Anzahl Termine pro Kunde"
4445
 
4446
- #:
4447
- msgid "per week"
4448
- msgstr "pro Woche"
4449
 
4450
- #:
4451
- msgid "per month"
4452
- msgstr "pro Monat"
4453
 
4454
- #:
4455
- msgid "per year"
4456
- msgstr "pro Jahr"
4457
 
4458
- #:
4459
- msgid "Custom service name"
4460
- msgstr "spezieller Dienstleistungs-Name"
4461
 
4462
- #:
4463
- msgid "Please enter a service name"
4464
- msgstr "Bitte geben Sie einen Dienstleistungsnamen ein"
4465
 
4466
- #:
4467
- msgid "Custom service price"
4468
- msgstr "Benutzerdefinierter Dienstleistungspreis"
4469
 
4470
- #:
4471
- msgid "Appointment cancellation confirmation URL"
4472
- msgstr "Terminkündigungs-Bestätigungs-URL"
4473
 
4474
- #:
4475
- msgid "Set the URL of an appointment cancellation confirmation page that is shown to clients when they press cancellation link."
4476
- msgstr "Legen Sie die URL einer Terminkündigungs-Bestätigungs-Seite fest, die den Kunden angezeigt wird, wenn sie auf den Kündigungslink klicken."
4477
 
4478
- #:
4479
- msgid "Add appointment cancellation confirmation"
4480
- msgstr "Terminkündigungsbestätigung hinzufügen"
4481
 
4482
- #:
4483
- msgid "Thank you for being with us"
4484
- msgstr "Wir danken ihnen für ihr Vertrauen"
4485
 
4486
- #:
4487
- msgid "Show time zone switcher"
4488
- msgstr "Zeige den Zeitzonen-Wechsler"
4489
 
4490
- #:
4491
- msgid "Reason"
4492
- msgstr "Begründung"
4493
 
4494
- #:
4495
- msgid "Manual adjustment"
4496
- msgstr "Manuelle Anpassung"
4497
 
4498
- #:
4499
- msgid "<a class=\"%s\" href=\"#\">Click here</a> to dissociate this purchase code from the current domain (use to move the plugin to another site)."
4500
- msgstr "<a class=\"%s\" href=\"#\"> Klicken Sie hier </a>, um den Kaufcode von der aktuellen Domain zu trennen (damit das Plug-in auf einer anderen Seite genutzt werden kann)."
 
 
 
 
4501
 
4502
- #:
4503
- msgid "Error dissociating purchase code."
4504
- msgstr "Fehler beim trennen des Kaufcodes."
 
 
 
4505
 
4506
- #:
4507
- msgid "Analytics"
4508
- msgstr "Analysen"
4509
 
4510
- #:
4511
- msgid "Show birthday field"
4512
- msgstr "Geburtstags-Eingabefeld anzeigen"
4513
 
4514
- #:
4515
- msgid "Show Facebook login button"
4516
- msgstr "Facebook Login-Button anzeigen"
 
 
 
 
 
 
 
 
 
 
 
 
4517
 
4518
- #:
4519
- msgid "Make address mandatory"
4520
- msgstr "Eingabe der Adresse zur Pflicht machen"
4521
 
4522
- #:
4523
- msgid "Show address fields"
4524
- msgstr "Adressfeld anzeigen"
 
 
 
 
4525
 
4526
- #:
4527
- msgid "-- Select calendar --"
4528
- msgstr "-- Kalender auswählen --"
 
4529
 
4530
- #:
4531
- msgid "If there is a lot of events in Google Calendar sometimes this leads to a lack of memory in PHP when Bookly tries to fetch all events. You can limit the number of fetched events here."
4532
- msgstr "Wenn es in Google Kalender viele Ereignisse gibt, führt dies manchmal zu Speichermangel in PHP, wenn Bookly versucht, alle Ereignisse abzurufen. Sie können die Anzahl der abgerufenen Ereignisse hier begrenzen."
 
 
 
 
 
 
4533
 
4534
- #:
4535
- msgid "Customer's address fields"
4536
- msgstr "Kundenadressen-Feld"
 
 
4537
 
4538
- #:
4539
- msgid "Choose address fields you want to request from the client."
4540
- msgstr "Wählen Sie Adressfelder, die Sie vom Client anfordern möchten."
4541
 
4542
- #:
4543
- msgid "Please configure Facebook App integration in <a href=\"%s\">settings</a> first."
4544
- msgstr "Bitte konfigurieren Sie die Facebook App-Integration zuerst in den <a href=\"%s\"> Einstellungen </a>."
4545
 
4546
- #:
4547
- msgid "Ok"
4548
- msgstr "OK"
 
 
4549
 
4550
- #:
4551
- msgid "With \"One-way\" sync Bookly pushes new appointments and any further changes to Google Calendar. With \"Two-way front-end only\" sync Bookly will additionally fetch events from Google Calendar and remove corresponding time slots before displaying the Time step of the booking form (this may lead to a delay when users click Next to get to the Time step)."
4552
- msgstr "Mit \"One-way\" synchronisiert Bookly neue Termine und weitere Änderungen in den Google Kalender. Mit \"bidirektionalem Nur-Frontend\" synchronisiert Bookly zusätzlich Ereignisse aus Google Kalender zu Bookly und entfernt das entsprechende Zeitfenster, bevor der Zeitabschnitt im Buchungsformulars angezeigt wird (dies kann zu einer Verzögerung führen, wenn Benutzer auf Weiter klicken, um zum Zeitabschnitt zu gelangen )."
 
4553
 
4554
- #:
4555
- msgid "Ratings"
4556
- msgstr "Bewertungen"
4557
 
4558
- #:
4559
- msgid "URL of the page for staff rating"
4560
- msgstr "URL der Seite für Mitarbeiterbewertungen"
4561
 
4562
- #:
4563
- msgid "Rating"
4564
- msgstr "Bewertung"
4565
 
4566
- #:
4567
- msgid "Comment"
4568
- msgstr "Kommentar"
4569
 
4570
- #:
4571
- msgid "Add staff rating form"
4572
- msgstr "Mitarbeiterbewertungsformular hinzufügen"
4573
 
4574
- #:
4575
- msgid "Displaying appointments rating in the backend"
4576
- msgstr "Terminbewertung im Backend anzeigen"
4577
 
4578
- #:
4579
- msgid "Enable this setting to display ratings in the back-end."
4580
- msgstr "Aktivieren Sie diese Einstellung, um die Bewertungen im Backend anzuzeigen."
4581
 
4582
- #:
4583
- msgid "Timeout for rating appointment"
4584
- msgstr "Timeout für Bewertungszeitpunkt"
4585
 
4586
- #:
4587
- msgid "Set a period of time after appointment when customer can rate and leave feedback for your services."
4588
- msgstr "Legen Sie einen Zeitraum nach dem Termin fest, in dem der Kunde Feedback für Ihre Dienstleistungen abgeben und bewerten kann."
4589
 
4590
- #:
4591
- msgid "Period for calculating rating average"
4592
- msgstr "Zeitraum um den Durchschnitt der Bewertungen zu berechnen"
4593
 
4594
- #:
4595
- msgid "Set a period of time during which the rating average is calculated."
4596
- msgstr "Legen Sie einen Zeitraum fest, in dem der Ratingmittelwert berechnet wird."
4597
 
4598
- #:
4599
- msgid "Rating page URL"
4600
- msgstr "URL der Bewertungsseite"
 
 
 
 
 
 
4601
 
4602
- #:
4603
- msgid "Set the URL of a page with a rating and comment form."
4604
- msgstr "Legen Sie die URL der Seite mit dem Bewertungs- und Kommentarformular fest."
4605
 
4606
- #:
4607
- msgid "The feedback period has expired."
4608
- msgstr "Der Zeitraum für ein Feedback ist abgelaufen"
4609
 
4610
- #:
4611
- msgid "You cannot rate this service before appointment."
4612
- msgstr "Sie können diese Dienstleistung nicht vor ihrer Durchführung bewerten."
4613
 
4614
- #:
4615
- msgid "Rate the quality of the %s provided to you on %s at %s by %s"
4616
- msgstr "Bewerten Sie die Qualität der Ihnen zur Verfügung gestellten %s basierend auf %s in %s nach %s."
4617
 
4618
- #:
4619
- msgid "Leave your comment"
4620
- msgstr "Hinterlassen Sie einen Kommentar "
4621
 
4622
- #:
4623
- msgid "Your rating has been saved. We appreciate your feedback."
4624
- msgstr "Ihre Bewertung wurde gespeichert. Wir danken Ihnen für Ihr Feedback."
4625
 
4626
- #:
4627
- msgid "Show staff member rating before employee name"
4628
- msgstr "Mitarbeiterbewertungen vor Mitarbeiternamen anzeigen"
 
 
 
4629
 
4630
- #:
4631
- msgid "pages with another time"
4632
- msgstr "Seiten mit einer anderen Zeit"
 
 
 
 
 
4633
 
4634
- #:
4635
- msgid "Restore"
4636
- msgstr "Wiederherstellen"
 
 
 
 
 
 
 
 
 
4637
 
4638
- #:
4639
- msgid "Some of the desired time slots are busy. System offers the nearest time slot instead. Click the Edit button to select another time if needed."
4640
- msgstr "Einige der gewünschten Zeitfenster sind belegt. Das System bietet Ihnen stattdessen das nächstgelegene Zeitfenster an. Klicken Sie auf die Schaltfläche Bearbeiten, um bei Bedarf einen anderen Zeitpunkt auszuwählen."
4641
 
4642
- #:
4643
- msgid "Deleted"
4644
- msgstr "Gelöscht"
4645
 
4646
- #:
4647
- msgid "Another time"
4648
- msgstr "anderer Zeitpunkt"
 
 
 
4649
 
4650
- #:
4651
- msgid "Another time was offered on pages"
4652
- msgstr "Ein weiteres Zeitfenster wurde auf den Seiten angeboten"
4653
 
4654
- #:
4655
- msgid "Repeat this appointment"
4656
- msgstr "Diesen Termin wiederholen"
4657
 
4658
- #:
4659
- msgid "Repeat"
4660
- msgstr "Wiederholen"
 
 
 
 
 
 
4661
 
4662
- #:
4663
- msgid "Daily"
4664
- msgstr "Täglich"
4665
 
4666
- #:
4667
- msgid "Weekly"
4668
- msgstr "Wöchentlich"
4669
 
4670
- #:
4671
- msgid "Biweekly"
4672
- msgstr "Alle zwei Wochen"
4673
 
4674
- #:
4675
- msgid "Monthly"
4676
- msgstr "Monatlich"
4677
 
4678
- #. if male: "Jeden", if female or neutral: "Jede"
4679
- #:
4680
- msgid "Every"
4681
- msgstr "Jede"
4682
 
4683
- #:
4684
- msgid "day(s)"
4685
- msgstr "Tag(e)"
4686
 
4687
- #. Need Context to define translation
4688
- #:
4689
- msgid "On"
4690
- msgstr "An"
4691
 
4692
- #:
4693
- msgid "Specific day"
4694
- msgstr "Spezifischer Tag"
4695
 
4696
- #. "Zweite" if female or neutral, "Zweiter" if male.
4697
- #:
4698
- msgid "Second"
4699
- msgstr "Zweite"
4700
 
4701
- #. "Dritte" if female or neutral, "Dritter" if male.
4702
- #:
4703
- msgid "Third"
4704
- msgstr "Dritte"
4705
 
4706
- #. "Vierte" if female or neutral, "Vierter" if male.
4707
- #:
4708
- msgid "Fourth"
4709
- msgstr "Vierte"
4710
 
4711
- #:
4712
- msgid "Until"
4713
- msgstr "Bis"
4714
 
4715
- #:
4716
- msgid "Delete Appointment"
4717
- msgstr "Termin löschen"
4718
 
4719
- #:
4720
- msgid "Delete only this appointment"
4721
- msgstr "Nur diesen Termin löschen"
4722
 
4723
- #:
4724
- msgid "Delete this and the following appointments"
4725
- msgstr "Diesen und zukünftige Termine löschen"
4726
 
4727
- #:
4728
- msgid "Delete all appointments in series"
4729
- msgstr "Alle Termine dieser Serie löschen"
4730
 
4731
- #:
4732
- msgid "Allow this service to have recurring appointments."
4733
- msgstr "Wiederkehrende Termine für diese Dienstleistung ermöglichen"
4734
 
4735
- #:
4736
- msgid "Frequencies"
4737
- msgstr "Häufigkeiten"
4738
 
4739
- #:
4740
- msgid "Nothing selected"
4741
- msgstr "Nichts ausgewählt"
4742
 
4743
- #:
4744
- msgid "recurring appointments schedule"
4745
- msgstr "wiederkehrender Terminplan"
 
 
 
4746
 
4747
- #:
4748
- msgid "recurring appointments schedule with cancel"
4749
- msgstr "Wiederkehrende Termine mit Absage"
4750
 
4751
- #:
4752
- msgid "recurring appointments"
4753
- msgstr "wiederkehrende Termine"
4754
 
4755
- #:
4756
- msgid "Recurring Appointments"
4757
- msgstr "Wiederkehrende Termine"
4758
 
4759
- #:
4760
- msgid "Online Payments"
4761
- msgstr "Online Zahlungen"
4762
 
4763
- #:
4764
- msgid "Customers must pay only for the 1st appointment"
4765
- msgstr "Kunden müssen lediglich für den ersten Termin zahlen"
4766
 
4767
- #:
4768
- msgid "Customers must pay for all appointments in series"
4769
- msgstr "Kunden müssen für alle Termine der Serie zahlen"
4770
 
4771
- #:
4772
- msgid "Dear {client_name}.\n"
4773
- "\n"
4774
- "This is a confirmation that you have booked {service_name} (x {recurring_count}).\n"
4775
- "\n"
4776
- "Please find the schedule of your booking below.\n"
4777
- "\n"
4778
- "{appointment_schedule}\n"
4779
- "\n"
4780
- "We are waiting you at {company_address}.\n"
4781
- "\n"
4782
- "Thank you for choosing our company.\n"
4783
- "\n"
4784
- "{company_name}\n"
4785
- "{company_phone}\n"
4786
- "{company_website}"
4787
- msgstr "Lieber {client_name}.\n"
4788
- "\n"
4789
- "Dies ist eine Bestätigung, dass Sie {service_name} (x {recurring_count}) gebucht haben.\n"
4790
- "\n"
4791
- "Nachfolgend finden Sie den Zeitplan Ihrer Buchung.\n"
4792
- "\n"
4793
- "(appointment_schedule)\n"
4794
- "\n"
4795
- "Wir erwarten Sie unter {company_address}.\n"
4796
- "\n"
4797
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
4798
- "\n"
4799
- "{company_name}\n"
4800
- "{company_phone}\n"
4801
- "{company_website}"
4802
 
4803
- #:
4804
- msgid "Hello.\n"
4805
- "\n"
4806
- "You have a new booking.\n"
4807
- "\n"
4808
- "Service: {service_name} (x {recurring_count})\n"
4809
- "Schedule:\n"
4810
- "{appointment_schedule}\n"
4811
- "Client name: {client_name}\n"
4812
- "Client phone: {client_phone}\n"
4813
- "Client email: {client_email}"
4814
- msgstr "Hallo.\n"
4815
- "\n"
4816
- "Sie haben eine neue Buchung.\n"
4817
- "\n"
4818
- "Service: {service_name} (x {recurring_count})\n"
4819
- "Zeitplan:\n"
4820
- "(appointment_schedule)\n"
4821
- "Kundenname: {client_name}\n"
4822
- "Kundentelefon: (client_phone)\n"
4823
- "Kunden-E-Mail: {client_email}"
4824
 
4825
- #:
4826
- msgid "Dear {client_name}.\n"
4827
- "\n"
4828
- "Your booking of {service_name} (x {recurring_count}) has been cancelled.\n"
4829
- "\n"
4830
- "Reason: {cancellation_reason}\n"
4831
- "\n"
4832
- "Please find the schedule of the cancelled booking below:\n"
4833
  "\n"
4834
- "{appointment_schedule}\n"
 
4835
  "\n"
4836
  "Thank you for choosing our company.\n"
4837
  "\n"
4838
  "{company_name}\n"
4839
  "{company_phone}\n"
4840
  "{company_website}"
4841
- msgstr "Lieber {client_name}.\n"
4842
- "\n"
4843
- "Ihre Buchung von {service_name} (x {recurring_count}) wurde storniert.\n"
4844
- "\n"
4845
- "Grund: {cancellation_reason}\n"
4846
- "\n"
4847
- "Den Zeitplan der stornierten Buchung finden Sie weiter unten:\n"
4848
  "\n"
4849
- "(appointment_schedule)\n"
 
 
4850
  "\n"
4851
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
4852
  "\n"
4853
  "{company_name}\n"
4854
  "{company_phone}\n"
4855
- "{company_website}"
4856
 
4857
- #:
4858
- msgid "Hello.\n"
4859
- "\n"
4860
- "The following booking has been cancelled.\n"
4861
- "\n"
4862
- "Reason: {cancellation_reason}\n"
4863
- "\n"
4864
- "Service: {service_name} (x {recurring_count})\n"
4865
- "Schedule:\n"
4866
- "{appointment_schedule}\n"
4867
- "Client name: {client_name}\n"
4868
- "Client phone: {client_phone}\n"
4869
- "Client email: {client_email}"
4870
- msgstr "Hallo.\n"
4871
- "\n"
4872
- "Die folgende Buchung wurde storniert.\n"
4873
- "\n"
4874
- "Grund: {cancellation_reason}\n"
4875
- "\n"
4876
- "Service: {service_name} (x {recurring_count})\n"
4877
- "Zeitplan:\n"
4878
- "(appointment_schedule)\n"
4879
- "Kundenname: {client_name}\n"
4880
- "Kundentelefon: (client_phone)\n"
4881
- "Kunden-E-Mail: {client_email}"
4882
 
4883
- #:
4884
- msgid "Dear {client_name}.\n"
4885
- "\n"
4886
- "Your booking of {service_name} (x {recurring_count}) has been rejected.\n"
4887
- "\n"
4888
- "Reason: {cancellation_reason}\n"
4889
- "\n"
4890
- "Please find the schedule of the cancelled booking below:\n"
4891
- "\n"
4892
- "{appointment_schedule}\n"
4893
- "\n"
4894
- "Thank you for choosing our company.\n"
4895
- "\n"
4896
- "{company_name}\n"
4897
- "{company_phone}\n"
4898
- "{company_website}"
4899
- msgstr "Lieber {client_name}.\n"
4900
- "\n"
4901
- "Ihre Buchung von {service_name} (x {recurring_count}) wurde abgelehnt.\n"
4902
- "\n"
4903
- "Grund: {cancellation_reason}\n"
4904
- "\n"
4905
- "Den Zeitplan der stornierten Buchung finden Sie weiter unten:\n"
4906
- "\n"
4907
- "(appointment_schedule)\n"
4908
- "\n"
4909
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
4910
- "\n"
4911
- "{company_name}\n"
4912
- "{company_phone}\n"
4913
- "{company_website}"
4914
 
4915
- #:
4916
- msgid "Hello.\n"
4917
  "\n"
4918
- "The following booking has been rejected.\n"
4919
  "\n"
4920
- "Reason: {cancellation_reason}\n"
4921
  "\n"
4922
- "Service: {service_name} (x {recurring_count})\n"
4923
- "Schedule:\n"
4924
- "{appointment_schedule}\n"
4925
  "Client name: {client_name}\n"
 
4926
  "Client phone: {client_phone}\n"
 
4927
  "Client email: {client_email}"
4928
- msgstr "Hallo.\n"
 
4929
  "\n"
4930
- "Die folgende Buchung wurde abgelehnt.\n"
4931
  "\n"
4932
- "Grund: {cancellation_reason}\n"
4933
  "\n"
4934
- "Service: {service_name} (x {recurring_count})\n"
4935
- "Zeitplan:\n"
4936
- "(appointment_schedule)\n"
4937
- "Kundenname: {client_name}\n"
4938
- "Kundentelefon: (client_phone)\n"
4939
- "Kunden-E-Mail: {client_email}"
4940
-
4941
- #:
4942
- msgid "Dear {client_name}.\n"
4943
- "This is a confirmation that you have booked {service_name} (x {recurring_count}).\n"
4944
- "Please find the schedule of your booking below.\n"
4945
- "{appointment_schedule}\n"
4946
  "\n"
4947
- "We are waiting you at {company_address}.\n"
4948
- "Thank you for choosing our company.\n"
4949
- "{company_name}\n"
4950
- "{company_phone}\n"
4951
- "{company_website}"
4952
- msgstr "Lieber {client_name}.\n"
4953
- "Dies ist eine Bestätigung, dass Sie {service_name} (x {recurring_count}) gebucht haben.\n"
4954
- "Nachfolgend finden Sie den Zeitplan Ihrer Buchung.\n"
4955
- "(appointment_schedule)\n"
4956
  "\n"
4957
- "Wir erwarten Sie unter {company_address}.\n"
4958
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
4959
- "{company_name}\n"
4960
- "{company_phone}\n"
4961
- "{company_website}"
4962
-
4963
- #:
4964
- msgid "Hello.\n"
4965
- "You have a new booking.\n"
4966
- "Service: {service_name} (x {recurring_count})\n"
4967
- "Schedule:\n"
4968
- "{appointment_schedule}\n"
4969
- "Client name: {client_name}\n"
4970
- "Client phone: {client_phone}\n"
4971
- "Client email: {client_email}"
4972
- msgstr "Hallo.\n"
4973
- "Sie haben eine neue Buchung.\n"
4974
- "Service: {service_name} (x {recurring_count})\n"
4975
- "Zeitplan:\n"
4976
- "(appointment_schedule)\n"
4977
- "Kundenname: {client_name}\n"
4978
- "Kundentelefon: (client_phone)\n"
4979
- "Kunden-E-Mail: {client_email}"
4980
 
4981
- #:
4982
- msgid "Dear {client_name}.\n"
4983
- "Your booking of {service_name} (x {recurring_count}) has been cancelled.\n"
4984
- "Reason: {cancellation_reason}\n"
4985
- "Please find the schedule of the cancelled booking below: {appointment_schedule}\n"
4986
  "Thank you for choosing our company.\n"
4987
  "{company_name}\n"
4988
  "{company_phone}\n"
4989
  "{company_website}"
4990
- msgstr "Lieber {client_name}.\n"
4991
- "Ihre Buchung von {service_name} (x {recurring_count}) wurde storniert.\n"
4992
- "Grund: {cancellation_reason}\n"
4993
- "Den Zeitplan der stornierten Buchung finden Sie weiter unten: (appointment_schedule)\n"
4994
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
4995
- "Kundenname: {client_name}\n"
4996
- "Kundentelefon: (client_phone)\n"
4997
- "Kunden-E-Mail: {client_email}"
4998
-
4999
- #:
5000
- msgid "Hello.\n"
5001
- "The following booking has been cancelled.\n"
5002
- "Reason: {cancellation_reason}\n"
5003
- "Service: {service_name} (x {recurring_count})\n"
5004
- "Schedule:\n"
5005
- "{appointment_schedule}\n"
5006
- "Client name: {client_name}\n"
5007
- "Client phone: {client_phone}\n"
5008
- "Client email: {client_email}"
5009
- msgstr "Hallo.\n"
5010
- "Die folgende Buchung wurde storniert.\n"
5011
- "Grund: {cancellation_reason}\n"
5012
- "Service: {service_name} (x {recurring_count})\n"
5013
- "Zeitplan:\n"
5014
- "(appointment_schedule)\n"
5015
- "Kundenname: {client_name}\n"
5016
- "Kundentelefon: (client_phone)\n"
5017
- "Kunden-E-Mail: {client_email}"
5018
-
5019
- #:
5020
- msgid "Dear {client_name}.\n"
5021
- "Your booking of {service_name} (x {recurring_count}) has been rejected.\n"
5022
- "Reason: {cancellation_reason}\n"
5023
- "Please find the schedule of the cancelled booking below: {appointment_schedule}\n"
5024
- "Thank you for choosing our company.\n"
5025
  "{company_name}\n"
5026
  "{company_phone}\n"
5027
  "{company_website}"
5028
- msgstr "Lieber {client_name}.\n"
5029
- "Ihre Buchung von {service_name} (x {recurring_count}) wurde abgelehnt.\n"
5030
- "Grund: {cancellation_reason}\n"
5031
- "Den Zeitplan der abgelehnten Buchung finden Sie weiter unten: (appointment_schedule)\n"
5032
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
5033
- "Kundenname: {client_name}\n"
5034
- "Kundentelefon: (client_phone)\n"
5035
- "Kunden-E-Mail: {client_email}"
5036
-
5037
- #:
5038
- msgid "Hello.\n"
5039
- "The following booking has been rejected.\n"
5040
- "Reason: {cancellation_reason}\n"
5041
- "Service: {service_name} (x {recurring_count})\n"
5042
- "Schedule:\n"
5043
- "{appointment_schedule}\n"
5044
- "Client name: {client_name}\n"
5045
- "Client phone: {client_phone}\n"
5046
- "Client email: {client_email}"
5047
- msgstr "Hallo.\n"
5048
- "Die folgende Buchung wurde abeglehnt.\n"
5049
- "Grund: {cancellation_reason}\n"
5050
- "Service: {service_name} (x {recurring_count})\n"
5051
- "Zeitplan:\n"
5052
- "(appointment_schedule)\n"
5053
- "Kundenname: {client_name}\n"
5054
- "Kundentelefon: (client_phone)\n"
5055
- "Kunden-E-Mail: {client_email}"
5056
-
5057
- #:
5058
- msgid "You selected a booking for {service_name} at {service_time} on {service_date}. If you would like to make this appointment recurring please check the box below and set appropriate parameters. Otherwise press Next button below."
5059
- msgstr "Sie haben eine Buchung für {service_name} um {service_time} am {service_date} ausgewählt. Wenn Sie diesen Termin wiederholen möchten, kreuzen Sie bitte das Kästchen unten an und stellen Sie die entsprechenden Parameter ein. Andernfalls klicken Sie unten auf Weiter."
5060
-
5061
- #:
5062
- msgid "every"
5063
- msgstr "alle"
5064
-
5065
- #:
5066
- msgid "The first recurring appointment was added to cart. You will be invoiced for the remaining appointments later."
5067
- msgstr "Der erste wiederkehrende Termin wurde in den Warenkorb gelegt. Die restlichen Termine werden Ihnen später in Rechnung gestellt."
5068
-
5069
- #:
5070
- msgid "There are no available time slots for this day"
5071
- msgstr "Für diesen Tag sind keine Termine verfügbar."
5072
-
5073
- #:
5074
- msgid "Please select some days"
5075
- msgstr "Bitte wählen Sie einige Tage aus"
5076
-
5077
- #:
5078
- msgid "Another time was offered on pages {list}."
5079
- msgstr "Eine andere Zeit wurde auf den Seiten {list} angeboten."
5080
 
5081
- #:
5082
- msgid "Notification to customer about pending recurring appointment"
5083
- msgstr "Benachrichtigung des Kunden über anstehende wiederkehrende Termine"
5084
-
5085
- #:
5086
- msgid "Notification to staff member about pending recurring appointment"
5087
- msgstr "Benachrichtigung des Mitarbeiters über anstehende wiederkehrende Termine"
5088
-
5089
- #:
5090
- msgid "Notification to customer about approved recurring appointment"
5091
- msgstr "Benachrichtigung des Kunden über genehmigte wiederkehrende Termine"
5092
-
5093
- #:
5094
- msgid "Notification to staff member about approved recurring appointment"
5095
- msgstr "Benachrichtigung des Mitarbeiters über genehmigte wiederkehrende Termine"
5096
-
5097
- #:
5098
- msgid "Notification to customer about cancelled recurring appointment"
5099
- msgstr "Benachrichtigung des Kunden über abgesagte wiederkehrende Termine"
5100
-
5101
- #:
5102
- msgid "Notification to staff member about cancelled recurring appointment "
5103
- msgstr "Benachrichtigung des Mitarbeiters über stornierte Wiederholungen appointment␣"
5104
-
5105
- #:
5106
- msgid "Notification to customer about rejected recurring appointment"
5107
- msgstr "Benachrichtigung des Kunden über abgelehnte wiederkehrende Termine"
5108
-
5109
- #:
5110
- msgid "Notification to staff member about rejected recurring appointment "
5111
- msgstr "Benachrichtigung des Mitarbeiters über abgelehnte Wiederholungen appointment␣"
5112
-
5113
- #:
5114
- msgid "time(s)"
5115
- msgstr "Zeit(en)"
5116
-
5117
- #:
5118
- msgid "Approve recurring appointment URL (success)"
5119
- msgstr "Wiederkehrende Termin-Bestätigungs-URL (Erfolg)"
5120
-
5121
- #:
5122
- msgid "Set the URL of a page that is shown to staff after they successfully approved recurring appointment."
5123
- msgstr "Legen Sie die URL einer Seite fest, die den Mitarbeitern angezeigt wird, nachdem sie einen wiederkehrenden Termin erfolgreich genehmigt haben."
5124
-
5125
- #:
5126
- msgid "Approve recurring appointment URL (denied)"
5127
- msgstr "Wiederkehrende Termin-Bestätigungs-URL (Erfolg)"
5128
 
5129
- #:
5130
- msgid "Set the URL of a page that is shown to staff when the approval of recurring appointment cannot be done (changed status, etc.)."
5131
- msgstr "Legen Sie die URL einer Seite fest, die dem Personal angezeigt wird, wenn die Genehmigung eines wiederkehrenden Termins nicht möglich ist (geänderter Status usw.)."
5132
 
5133
- #:
5134
- msgid "You have been added to waiting list for appointment"
5135
- msgstr "Sie wurden auf die Warteliste für einen Termin gesetzt."
5136
 
5137
- #:
5138
- msgid "Dear {client_name}.\n"
5139
- "\n"
5140
- "This is a confirmation that you have been added to the waiting list for {service_name} (x {recurring_count}).\n"
5141
- "\n"
5142
- "Please find the service schedule below.\n"
5143
  "\n"
5144
- "{appointment_schedule}\n"
5145
  "\n"
5146
  "Thank you for choosing our company.\n"
5147
  "\n"
 
5148
  "{company_name}\n"
5149
  "{company_phone}\n"
5150
  "{company_website}"
5151
- msgstr "Lieber {client_name}.\n"
5152
- "\n"
5153
- "Dies ist eine Bestätigung, dass Sie zur Warteliste für {service_name} (x {recurring_count}) hinzugefügt wurden.\n"
5154
- "\n"
5155
- "Nachfolgend finden Sie den Serviceplan.\n"
5156
  "\n"
5157
- "(appointment_schedule)\n"
5158
  "\n"
5159
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
5160
  "\n"
 
5161
  "{company_name}\n"
5162
  "{company_phone}\n"
5163
  "{company_website}"
5164
 
5165
- #:
5166
- msgid "New waiting list information"
5167
- msgstr "Neue Wartelisteninformationen"
5168
 
5169
- #:
5170
- msgid "Hello.\n"
5171
  "\n"
5172
- "You have new customer in the waiting list.\n"
5173
  "\n"
5174
- "Service: {service_name} (x {recurring_count})\n"
5175
- "Schedule:\n"
5176
- "{appointment_schedule}\n"
5177
  "Client name: {client_name}\n"
 
5178
  "Client phone: {client_phone}\n"
 
5179
  "Client email: {client_email}"
5180
- msgstr "Hallo.\n"
 
5181
  "\n"
5182
- "Sie haben einen neuen Kunden auf der Warteliste.\n"
5183
  "\n"
5184
- "Service: {service_name} (x {recurring_count})\n"
5185
- "Zeitplan:\n"
5186
- "(appointment_schedule)\n"
5187
  "Kundenname: {client_name}\n"
5188
- "Kundentelefon: (client_phone)\n"
 
 
5189
  "Kunden-E-Mail: {client_email}"
5190
 
5191
- #:
5192
- msgid "Dear {client_name}.\n"
5193
- "This is a confirmation that you have been added to the waiting list for {service_name} (x {recurring_count}).\n"
5194
- "Please find the service schedule below.\n"
5195
- "{appointment_schedule}\n"
5196
  "Thank you for choosing our company.\n"
 
5197
  "{company_name}\n"
5198
  "{company_phone}\n"
5199
  "{company_website}"
5200
- msgstr "Lieber {client_name}.\n"
5201
- "Dies ist eine Bestätigung, dass Sie zur Warteliste für {service_name} (x {recurring_count}) hinzugefügt wurden.\n"
5202
- "Nachfolgend finden Sie den Serviceplan.\n"
5203
- "(appointment_schedule)\n"
5204
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
5205
- "Kundenname: {client_name}\n"
5206
- "Kundentelefon: (client_phone)\n"
5207
- "Kunden-E-Mail: {client_email}"
 
5208
 
5209
- #:
5210
- msgid "Hello.\n"
5211
- "You have new customer in the waiting list.\n"
5212
- "Service: {service_name} (x {recurring_count})\n"
5213
- "Schedule:\n"
5214
- "{appointment_schedule}\n"
5215
  "Client name: {client_name}\n"
5216
  "Client phone: {client_phone}\n"
5217
  "Client email: {client_email}"
5218
- msgstr "Hallo.\n"
5219
- "Sie haben einen neuen Kunden auf der Warteliste.\n"
5220
- "Service: {service_name} (x {recurring_count})\n"
5221
- "Zeitplan:\n"
5222
- "(appointment_schedule)\n"
5223
  "Kundenname: {client_name}\n"
5224
- "Kundentelefon: (client_phone)\n"
 
 
 
 
5225
  "Kunden-E-Mail: {client_email}"
5226
 
5227
- #:
5228
- msgid "Notification to customer about placing on waiting list for recurring appointment"
5229
- msgstr "Benachrichtigung des Kunden über die Aufnahme auf die Warteliste für wiederkehrende Termine"
5230
-
5231
- #:
5232
- msgid "Notification to staff member about placing on waiting list for recurring appointment "
5233
- msgstr "Benachrichtigung des Mitarbeiters über die Aufnahme auf die Warteliste für wiederkehrende Anrufe appointment␣"
5234
-
5235
- #:
5236
- msgid "URL for approving the whole schedule"
5237
- msgstr "URL für die Genehmigung des gesamten Zeitplans"
5238
-
5239
- #:
5240
- msgid "Summary"
5241
- msgstr "Zusammenfassung"
5242
-
5243
- #:
5244
- msgid "New Item"
5245
- msgstr "Neuer Gegenstand"
5246
-
5247
- #:
5248
- msgid "Show extras"
5249
- msgstr "Extras anzeigen"
5250
-
5251
- #:
5252
- msgid "Show"
5253
- msgstr "Zeigen"
5254
-
5255
- #:
5256
- msgid "Extras price"
5257
- msgstr "Extras Preis"
5258
-
5259
- #:
5260
- msgid "Service Extras"
5261
- msgstr "Service-Extras"
5262
-
5263
- #:
5264
- msgid "extras titles"
5265
- msgstr "Extras Titel"
5266
-
5267
- #:
5268
- msgid "extras total price"
5269
- msgstr "Extras Gesamtpreis "
5270
-
5271
- #:
5272
- msgid "Select the Extras you'd like (Multiple Selection)"
5273
- msgstr "Wählen Sie die Extras, die Sie möchten (Mehrfachauswahl)"
5274
-
5275
- #:
5276
- msgid "If enabled, all extras will be multiplied by number of persons."
5277
- msgstr "Wenn aktiviert, werden die Extras mit der Anzahl der Personen multipliziert."
5278
-
5279
- #:
5280
- msgid "Multiply extras by number of persons"
5281
- msgstr "Extras anhand der Personenzahl multiplizieren."
5282
-
5283
- #:
5284
- msgid "Weekly Schedule"
5285
- msgstr "Wöchentlicher Plan"
5286
-
5287
- #:
5288
- msgid "Special Days"
5289
- msgstr "Besondere Tage"
5290
-
5291
- #:
5292
- msgid "Duplicate dates are not permitted."
5293
- msgstr "Duplicate dates are not permitted."
5294
 
5295
- #:
5296
- msgid "Add special day"
5297
- msgstr "Besonderen Tag hinzufügen"
 
5298
 
5299
- #:
5300
- msgid "Add Staff Special Days"
5301
- msgstr "Mitarbeiter-Sondertage hinzufügen"
5302
 
5303
- #:
5304
- msgid "Special prices for appointments which begin between:"
5305
- msgstr "Sonderpreise für Termine, die zwischen folgenden Zeiten beginnen:"
5306
 
5307
- #:
5308
- msgid "add special period"
5309
- msgstr "Sonderperiode hinzufügen"
 
 
 
5310
 
5311
- #:
5312
- msgid "Disable special hours update"
5313
- msgstr "Sonderstunden-Update deaktivieren"
5314
 
5315
- #:
5316
- msgid "Add Staff Cabinet"
5317
- msgstr "Mitarbeiterbereich hinzufügen"
 
5318
 
5319
- #:
5320
- msgid "Short Codes"
5321
- msgstr "Kurzcodes"
5322
 
5323
- #:
5324
- msgid "Add Staff Calendar"
5325
- msgstr "Mitarbeiterkalendar hinzufügen"
5326
 
5327
- #:
5328
- msgid "Add Staff Details"
5329
- msgstr "Mitarbeiterdetails hinzufügen"
5330
 
5331
- #:
5332
- msgid "Add Staff Services"
5333
- msgstr "Mitarbeiterdienstleistungen hinzufügen"
5334
 
5335
- #:
5336
- msgid "Add Staff Schedule"
5337
- msgstr "Mitarbeiter Stundenplan hinzufügen"
5338
 
5339
- #:
5340
- msgid "Add Staff Days Off"
5341
- msgstr "Mitarbeiterferien hinzufügen"
5342
 
5343
- #:
5344
- msgid "Hide visibility field"
5345
- msgstr "Unsichtbare Felder ausblenden"
5346
 
5347
- #:
5348
- msgid "Disable services update"
5349
- msgstr "Dienstleistungsaktualisierung deaktivieren"
5350
 
5351
- #:
5352
- msgid "Disable price update"
5353
- msgstr "Preisaktualisierung deaktivieren"
5354
 
5355
- #:
5356
- msgid "Displayed appointments"
5357
- msgstr "Angezeigte Termine"
5358
 
5359
- #:
5360
- msgid "Upcoming appointments"
5361
- msgstr "Kommende Termine"
 
 
 
5362
 
5363
- #:
5364
- msgid "All appointments"
5365
- msgstr "Alle Termine"
5366
 
5367
- #:
5368
- msgid "This text can be inserted into notifications to customers by Administrator."
5369
- msgstr "Dieser Text kann vom Administrator in Benachrichtigungen an Kunden eingefügt werden."
5370
 
5371
- #:
5372
- msgid "If you want to become invisible to your customers set the visibility to \"Private\"."
5373
- msgstr "Wenn Sie für Ihre Kunden unsichtbar werden wollen, setzen Sie die Sichtbarkeit auf \"Privat\"."
5374
 
5375
- #:
5376
- msgid "Secret Key"
5377
- msgstr "Geheimschlüssel"
5378
 
5379
- #:
5380
- msgid "Publishable Key"
5381
- msgstr "veröffentlichbarer Schlüssel"
5382
 
5383
- #:
5384
- msgid "Taxes"
5385
- msgstr "Steuern"
5386
 
5387
- #:
5388
- msgid "Price settings and display"
5389
- msgstr "Preiseinstellungen und Darstellung"
 
 
 
5390
 
5391
- #:
5392
- msgid "If the prices for your services include taxes, select include taxes. If the prices for your services do not include taxes, select exclude taxes."
5393
- msgstr "Wenn die Preise für Ihre Dienstleistungen Steuern enthalten, wählen Sie Steuern einbeziehen. Wenn die Preise für Ihre Dienstleistungen keine Steuern enthalten, wählen Sie Steuern ausschließen."
5394
 
5395
- #:
5396
- msgid "Include taxes"
5397
- msgstr "Steuern berücksichtigen"
5398
 
5399
- #:
5400
- msgid "Exclude taxes"
5401
- msgstr "Steuern nicht berücksichtigen"
 
 
 
5402
 
5403
- #:
5404
- msgid "Add Tax"
5405
- msgstr "Steuern hinzufügen"
 
 
 
5406
 
5407
- #:
5408
- msgid "Rate"
5409
- msgstr "Bewerten"
5410
 
5411
- #:
5412
- msgid "New tax"
5413
- msgstr "Neue Steuer"
5414
 
5415
- #:
5416
- msgid "Edit tax"
5417
- msgstr "Steuern bearbeiten"
5418
 
5419
- #:
5420
- msgid "No taxes found."
5421
- msgstr "Keine Steuern gefunden."
5422
 
5423
- #:
5424
- msgid "Taxation"
5425
- msgstr "Besteuerung"
5426
 
5427
- #:
5428
- msgid "service tax amount"
5429
- msgstr "Steuerhöhe der Dienstleistung"
5430
 
5431
- #:
5432
- msgid "service tax rate"
5433
- msgstr "Steuerrate der Dienstleistung"
5434
 
5435
- #:
5436
- msgid "total tax included in the appointment (summary for all items)"
5437
- msgstr "Steuersumme, die in diesem Termin einbegriffen sind (Summe aller Posten)"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5438
 
5439
- #:
5440
- msgid "total price without tax"
5441
- msgstr "Gesamtpreis ohne Steuern"
5442
 
5443
- #:
5444
- msgid "Dear {client_name}.\n"
5445
  "\n"
5446
- "This is a confirmation that you have been added to the waiting list for {service_name} on {appointment_date} at {appointment_time}.\n"
 
5447
  "\n"
5448
  "Thank you for choosing our company.\n"
5449
  "\n"
5450
  "{company_name}\n"
5451
  "{company_phone}\n"
5452
  "{company_website}"
5453
- msgstr "Lieber {client_name}.\n"
 
5454
  "\n"
5455
- "Dies ist eine Bestätigung, dass Sie zur Warteliste für {service_name} am {appointment_date} bei {appointment_time} hinzugefügt wurden.\n"
 
 
5456
  "\n"
5457
- "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
5458
  "\n"
5459
  "{company_name}\n"
5460
  "{company_phone}\n"
5461
  "{company_website}"
5462
 
5463
- #:
5464
- msgid "Hello.\n"
 
 
 
5465
  "\n"
5466
- "You have new customer in the waiting list.\n"
 
5467
  "\n"
5468
- "Service: {service_name}\n"
5469
- "Date: {appointment_date}\n"
5470
- "Time: {appointment_time}\n"
5471
- "Client name: {client_name}\n"
5472
- "Client phone: {client_phone}\n"
5473
- "Client email: {client_email}"
5474
- msgstr "Hallo. \n"
5475
  "\n"
5476
- "Sie haben einen neuen Kunden auf der Warteliste. \n"
 
 
 
 
5477
  "\n"
5478
- "Leistung: {service_name} \n"
5479
- "Datum: {appointment_date} \n"
5480
- "Zeit: {appointment_time} \n"
5481
- "Kundenname: {client_name} \n"
5482
- "Kundenhandy: {client_phone}\n"
5483
- "Kunden E-Mail: {client_email}"
 
 
5484
 
5485
- #:
5486
- msgid "Set appointment from waiting list"
5487
- msgstr "Termin von Warteliste vereinbaren"
5488
 
5489
- #:
5490
- msgid "Dear {staff_name},\n"
5491
  "\n"
5492
- "The time slot on {appointment_date} at {appointment_time} for {service_name} is now available for booking. Please see the list of customers on the waiting list and make a new appointment.\n"
5493
  "\n"
5494
- "{appointment_waiting_list}"
5495
- msgstr "Sehr geehrte/r {staff_name}, \n"
 
5496
  "\n"
5497
- "das Zeitfenster für {appointment_time} um {appointment_time} für {service_name} ist jetzt für die Buchung verfügbar. Bitte schauen Sie sich die Kunden auf der Warteliste an und machen Sie einen neuen Termin \n"
5498
  "\n"
5499
- "{appointment_waiting_list}"
5500
 
5501
- #:
5502
- msgid "Dear {client_name}.\n"
5503
- "This is a confirmation that you have been added to the waiting list for {service_name} on {appointment_date} at {appointment_time}.\n"
 
 
 
 
5504
  "Thank you for choosing our company.\n"
 
5505
  "{company_name}\n"
5506
  "{company_phone}\n"
5507
  "{company_website}"
5508
- msgstr "Sehr geehrte/r {client_name}. \n"
5509
- "Das ist eine Bestätigung, dass Sie zur Warteliste für {service_name} am {appointment_date} um {appointment_time} hinzugefügt wurden. Danke dass Sie unsere Firma gewählt haben.\n"
5510
- "{company_name} \n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5511
  "{company_phone} \n"
5512
  "{company_website}\n"
5513
  "\n"
5514
- ""
5515
 
5516
- #:
5517
- msgid "Hello.\n"
5518
- "You have new customer in the waiting list.\n"
5519
- "Service: {service_name}\n"
5520
- "Date: {appointment_date}\n"
5521
- "Time: {appointment_time}\n"
5522
- "Client name: {client_name}\n"
5523
- "Client phone: {client_phone}\n"
5524
- "Client email: {client_email}"
5525
- msgstr "Hallo. \n"
5526
- "Sie haben einen neuen Kunden auf der Warteliste. \n"
5527
- "Leistung: {service_name} \n"
5528
- "Datum: {appointment_date} \n"
5529
- "Zeit: {appointment_time} \n"
5530
- "Kundenname: {client_name} \n"
5531
- "Kundenhandy: {client_phone}\n"
5532
- "Kunden E-Mail: {client_email}"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5533
 
5534
- #:
5535
- msgid "Dear {staff_name},\n"
5536
- "The time slot on {appointment_date} at {appointment_time} for {service_name} is now available for booking. Please see the list of customers on the waiting list and make a new appointment.\n"
5537
- "{appointment_waiting_list}"
5538
- msgstr "Sehr geehrte/r {staff_name}, \n"
5539
- "das Zeitfenster für {appointment_time} um {appointment_time} für {service_name} ist jetzt für die Buchung verfügbar. Bitte schauen Sie sich die Kunden auf der Warteliste an und machen Sie einen neuen Termin \n"
5540
- "{appointment_waiting_list}\n"
5541
- "\n"
5542
- ""
5543
 
5544
- #:
5545
- msgid "To join the waiting list for a busy time slot, please select a slot marked with \"(N)\", where N is a number of customers on the waiting list."
5546
- msgstr "Um sich auf die Warteliste setzen zu lassen, wählen Sie bitte ein Kästchen mit „(N)“, N ist die Anzahl der Kunden auf der Warteliste."
5547
 
5548
- #:
5549
- msgid "number of persons on waiting list"
5550
- msgstr "Anzahl der Personen auf der Warteliste"
5551
 
5552
- #:
5553
- msgid "Notification to customer about placing on waiting list"
5554
- msgstr "Benachrichtigung an den Kunden über die Platzierung auf der Warteliste. "
5555
 
5556
- #:
5557
- msgid "Notification to staff member about placing on waiting list"
5558
- msgstr "Benachrichtigung an Mitarbeiter über die Platzierung auf der Warteliste."
5559
 
5560
- #:
5561
- msgid "Notification to staff member to set appointment from waiting list"
5562
- msgstr "Benachrichtigung an Mitarbeiter, um einen Termin aus der Warteliste festzulegen\n"
5563
- "\n"
5564
- ""
 
5565
 
5566
- #:
5567
- msgid "waiting list of appointment"
5568
- msgstr "Warteliste für einen Termin"
5569
 
5570
- #:
5571
- msgid "Set appointment"
5572
- msgstr "Termin abschließen"
 
 
 
5573
 
5574
- #:
5575
- msgid "Merchant Key"
5576
- msgstr "Händler Chiffre"
5577
 
5578
- #:
5579
- msgid "Merchant Salt"
5580
- msgstr "Händler Salz"
 
 
 
5581
 
5582
- #:
5583
- msgid "Follow these steps to get an API key:"
5584
- msgstr "Befolgen Sie diese Schritte, um einen API Schlüssel zu erhalten:"
 
 
 
 
5585
 
5586
- #:
5587
- msgid "Go to the <a href=\"https://console.developers.google.com/flows/enableapi?apiid=places_backend&reusekey=true\" target=\"_blank\">Google API Console</a>."
5588
- msgstr "Gehen Sie zur <a href=\"https://console.developers.google.com/flows/enableapi?apiid=places_backend&reusekey=true\" target=\"_blank\">Google API Konsole</a>."
 
5589
 
5590
- #:
5591
- msgid "Create or select a project. Click <b>Continue</b> to enable the API."
5592
- msgstr "Erstellen oder wählen Sie ein Projekt aus. Klicken Sie <b>Weiter</b> um die API zu aktivieren."
5593
 
5594
- #:
5595
- msgid "On the <b>Credentials</b> page, get an <b>API key</b> (and set the API key restrictions). Note: If you have an existing unrestricted API key, or a key with server restrictions, you may use that key."
5596
- msgstr "Auf der <b>Credentials</b> Seite, erhalten Sie einen <b>API Schlüssel</b> (und legen die API Schlüssel Einschränkungen fest). Hinweis: Wenn Sie einen uneingeschränkten API Schlüssel haben oder einen Schlüssel mit Servereinschränkungen, dann können Sie den Schlüssel nutzen."
 
 
 
5597
 
5598
- #:
5599
- msgid "Click <b>Library</b> on the left sidebar menu. Select Google Maps JavaScript API and make sure it's enabled."
5600
- msgstr "Klicken Sie <b>Library</b> im linken Seitenleisten Menü. Wählen Sie Google Maps JavaScript API und vergewissern Sie sich, dass es aktiviert ist. "
 
 
 
 
 
5601
 
5602
- #:
5603
- msgid "Use your <b>API key</b> in the form below."
5604
- msgstr "Benutzen Sie Ihren <b>API key</b> im nachfolgenden Formular."
 
 
 
 
 
 
5605
 
5606
- #:
5607
- msgid "Enter a Google API key that you got after registering your app project on the Google API Console."
5608
- msgstr "Geben Sie den Google API key ein, den Sie nach der Registrierung Ihres App-Projektes auf der Google API Konsole erhalten haben."
5609
 
5610
- #:
5611
- msgid "Google Maps"
5612
- msgstr "Google Maps"
5613
 
5614
- #:
5615
- msgid "When you connect a calendar all future and past events will be synchronized according to the selected synchronization mode. This may take a few minutes. Please wait."
5616
- msgstr "Wenn Sie einen Kalender hinzufügen, dann werden alle zukünftigen und vergangenen Ereignisse angeglichen, entsprechend dem Synchronisierungs-modus. Das kann ein paar Minuten dauern. Bitte warten Sie. "
5617
 
5618
- #:
5619
- msgid "If needed, edit item data which will be displayed in the cart. Besides cart item data Bookly passes address and account fields into WooCommerce if you collect them in your booking form."
5620
- msgstr "Wenn nötig, bearbeiten Sie Dateien, welche im Warenkorb angezeigt werden. Neben den Warenkorb-Artikeldaten übergibt Bookly Adress- und Kontofelder an WooCommerce, wenn Sie sie in Ihrem Buchungsformular sammeln."
 
 
 
5621
 
5622
- #:
5623
- msgid "Make birthday mandatory"
5624
- msgstr "Geburtstag verpflichtend machen"
5625
 
5626
- #:
5627
- msgid "If enabled, a customer will be required to enter a date of birth to proceed with a booking."
5628
- msgstr "Wenn es aktiviert ist, muss ein Kunde sein Geburtsdatum eingeben, um mit der Buchung fortzuführen."
5629
 
5630
- #:
5631
- msgid "Proceed without license verification"
5632
- msgstr "Ohne Lizenznachweis fortfahren"
5633
 
5634
- #:
5635
- msgid "Tasks"
5636
- msgstr "Aufgaben"
 
 
 
5637
 
5638
- #:
5639
- msgid "Skip time selection"
5640
- msgstr "Zeitauswahl überspringen"
5641
 
5642
- #:
5643
- msgid "Customer Groups"
5644
- msgstr "Kundengruppen"
5645
 
5646
- #:
5647
- msgid "New group"
5648
- msgstr "Neue Gruppe"
 
 
 
5649
 
5650
- #:
5651
- msgid "Group Name"
5652
- msgstr "Gruppenname"
5653
 
5654
- #:
5655
- msgid "Number of Users"
5656
- msgstr "Anzahl der Nutzer"
 
 
 
 
 
 
5657
 
5658
- #:
5659
- msgid "Description"
5660
- msgstr "Beschreibung"
 
 
 
 
 
 
5661
 
5662
- #:
5663
- msgid "Appointment Status"
5664
- msgstr "Terminstatus"
 
5665
 
5666
- #:
5667
- msgid "Customers without group"
5668
- msgstr "Kunden ohne Gruppe"
 
 
 
5669
 
5670
- #:
5671
- msgid "Groups"
5672
- msgstr "Gruppen"
5673
 
5674
- #:
5675
- msgid "All groups"
5676
- msgstr "Alle Gruppen"
 
 
 
 
 
 
5677
 
5678
- #:
5679
- msgid "No group selected"
5680
- msgstr "Keine Gruppe ausgewählt"
5681
 
5682
- #:
5683
- msgid "Group"
5684
- msgstr "Gruppe"
 
 
 
5685
 
5686
- #:
5687
- msgid "New Group"
5688
- msgstr "Neue Gruppe"
 
 
 
5689
 
5690
- #:
5691
- msgid "Edit Group"
5692
- msgstr "Gruppe bearbeiten"
 
 
 
 
 
 
 
 
5693
 
5694
- #:
5695
- msgid "No customer groups yet."
5696
- msgstr "Keine Kundengruppen vorhanden"
 
 
 
5697
 
5698
- #:
5699
- msgid "Customer group based"
5700
- msgstr "Kundengruppen basiert"
 
 
 
 
 
 
 
 
 
 
 
5701
 
5702
- #:
5703
- msgid "Customer Group"
5704
- msgstr "Kundengruppe"
5705
 
5706
- #:
5707
- msgid "No group"
5708
- msgstr "Keine Gruppe"
5709
 
5710
- #:
5711
- msgid "Group name"
5712
- msgstr "Gruppenname"
5713
 
5714
- #:
5715
- msgid "Total discount"
5716
- msgstr "Gesamter Rabatt"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5717
 
5718
- #:
5719
- msgid "Enter the fixed amount of discount (e.g. 10 off). To specify a percentage discount (e.g. 10% off), add '%' symbol to a numerical value."
5720
- msgstr "Geben Sie einen festen Rabattbetrag ein (z. B. 10% weniger). Um einen prozentualen Rabatt festzulegen (z. B. 10% Rabatt), fügen Sie einem numerischen Wert das Symbol \"%\" hinzu.\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5721
  "\n"
5722
- ""
5723
 
5724
- #:
5725
- msgid "Edit group"
5726
- msgstr "Gruppe bearbeiten"
 
 
 
5727
 
5728
- #:
5729
- msgid "Group name is required"
5730
- msgstr "Ein Gruppenname wird benötigt"
 
 
 
 
 
5731
 
5732
- #:
5733
- msgid "Important: for two-way sync, your website must use HTTPS. Google Calendar API will be able to send notifications to HTTPS address only if there is a valid SSL certificate installed on your web server. Follow the steps in this <a href=\"%s\" target=\"_blank\">document</a> to <b>verify and register your domain</b>."
5734
- msgstr "Wichtig: Für eine wechselseitige Synchronisierung muss Ihre Webseite HTTPS verwenden. Der Google Kalender-API kann nur dann Benachrichtigungen an die HTTPS-Adresse senden, wenn auf Ihrem Webserver ein gültiges SSL-Zertifikat installiert ist. Folgen Sie den Anweisungen hier<a href=\"%s\" target=\"_blank\"> Dokument </a>, um <b>, um Ihre Domain zu überprüfen und zu registrieren </b>."
 
 
 
 
 
 
 
 
 
 
5735
 
5736
- #:
5737
- msgid "Allows to set the start and end times for an appointment for services with the duration of 1 day or longer. This time will be displayed in notifications to customers, backend calendar and codes for booking form."
5738
- msgstr "Ermöglicht die Festlegung der Start- und Endzeiten für einen Termin für Leistungen mit einer Dauer von 1 Tag oder länger. Diese Zeit wird in Benachrichtigungen an Kunden, Backend-Kalender und Codes für das Buchungsformular angezeigt."
 
 
 
5739
 
5740
- #:
5741
- msgid "Street Number"
5742
- msgstr "Hausnummer"
5743
 
5744
- #:
5745
- msgid "Street number is required"
5746
- msgstr "Eine Hausnummer wird benötigt"
 
 
 
5747
 
5748
- #:
5749
- msgid "Total price"
5750
- msgstr "Gesamtpreis"
5751
 
5752
- #:
5753
- msgid "Below the App Details Panel click Add Platform button, select Website and enter your website URL."
5754
- msgstr "Unter dem App Detail Panel klicken Sie auf Plattform Button hinzufügen, wählen die Webseite aus und geben Ihre Webseiten URL ein."
5755
 
5756
- #:
5757
- msgid "Go to your App Dashboard. In the left side navigation panel of the App Dashboard, click Settings > Basic to view the App Details Panel with your App ID. Use it in the form below."
5758
- msgstr "Gehen Sie zu Ihrer Dashboard App. Auf der linken Seitennavigation der Dashboard App klicken Sie auf Einstellungen > Basic um den Detail Panel der App mit Ihrer ID anzusehen. Nutzen Sie diese in dem Formular unten."
 
 
 
 
5759
 
5760
- #:
5761
- msgid "To help us improve Bookly, the plugin anonymously collects usage information. You can opt out of sharing the information in Settings > General."
5762
- msgstr "Damit wir Bookly verbessern können, sammelt das Plugin anonym Informationen. Sie können in Ihren Einstellungen wählen, ob Sie die Weitergabe von Informationen deaktivieren wollen."
5763
 
5764
- #:
5765
- msgid "Disagree"
5766
- msgstr "Widersprechen"
5767
 
5768
- #:
5769
- msgid "Agree"
5770
- msgstr "Zustimmen"
5771
 
5772
- #:
5773
- msgid "Required field."
5774
- msgstr "Notwendiges Feld."
 
 
 
 
 
5775
 
5776
- #:
5777
- msgid "Ask once."
5778
- msgstr "Einmal nachfragen."
5779
 
5780
- #:
5781
- msgid "All unsaved changes will be lost."
5782
- msgstr "Alle ungesicherten Änderungen gehen verloren."
 
 
 
 
 
5783
 
5784
- #:
5785
- msgid "Don't save"
5786
- msgstr "Nicht sichern"
 
 
 
 
 
 
5787
 
5788
- #:
5789
- msgid "To get access to all Bookly features, lifetime free updates and 24/7 support, please upgrade to the Pro version of Bookly.<br>For more information visit"
5790
- msgstr "Um Zugang zu allen Bookly Funktionen, kostenlosen Updates und 24/7 Support zu erhalten, erweitern Sie die Pro Version von Bookly <br> Für mehr Informationen besuchen Sie"
5791
 
5792
- #:
5793
- msgid "Show Repeat step"
5794
- msgstr "Wiederholungsschritt zeigen"
 
 
 
 
 
 
 
 
5795
 
5796
- #:
5797
- msgid "Show Extras step"
5798
- msgstr "Extra Schritt zeigen"
5799
 
5800
- #:
5801
- msgid "Show Cart step"
5802
- msgstr "Einkaufswagen zeigen"
 
 
 
5803
 
5804
- #:
5805
- msgid "Show custom fields"
5806
- msgstr "Benutzerdefinierte Felder anzeigen"
5807
 
5808
- #:
5809
- msgid "Show customer information"
5810
- msgstr "Kundeninformationen anzeigen"
 
 
 
 
5811
 
5812
- #:
5813
- msgid "Show google maps field"
5814
- msgstr "Google Maps anzeigen"
5815
 
5816
- #:
5817
- msgid "Show coupons"
5818
- msgstr "Coupons anzeigen"
 
 
 
 
 
 
 
5819
 
5820
- #:
5821
- msgid "Show waiting list slots"
5822
- msgstr "Wartelistenplätze anzeigen"
5823
 
5824
- #:
5825
- msgid "Show chain appointments"
5826
- msgstr "Verkettete Termine anzeigen"
5827
 
5828
- #:
5829
- msgid "Show files"
5830
- msgstr "Dateien anzeigen"
5831
 
5832
- #:
5833
- msgid "Show timezone"
5834
- msgstr "Zeitzone anzeigen"
5835
 
5836
- #:
5837
- msgid "Timezone"
5838
- msgstr "Zeitzone"
5839
 
5840
- #:
5841
- msgid "Invoices add-on requires your customers address information. So options \"Make address field mandatory\" in Settings/Customers and \"Show address field\" in Appearance/Details are activated automatically and can be disabled after Invoices add-on is deactivated."
5842
- msgstr "Das Add-On für Rechnungen erfordert die Adressinformationen Ihrer Kunden. Daher werden die Optionen \"Adressfeld als Pflichtfeld\" in \"Einstellungen / Kunden\" und \"Adressfeld anzeigen\" in \"Aussehen / Details\" automatisch aktiviert und können deaktiviert werden, nachdem das Add-On \"Rechnungen\" deaktiviert wurde.\n"
5843
- "\n"
5844
- ""
5845
 
5846
- #:
5847
- msgid "Customers are required to enter address to proceed with a booking. To disable, deactivate Invoices add-on first."
5848
- msgstr "Kunden müssen eine Adresse angeben, um mit der Buchung fortzufahren. Um das zu deaktivieren, deaktivieren Sie zuerst das Add-on bei Rechnungen."
5849
 
5850
- #:
5851
- msgid "Bookly Pro - License verification required"
5852
- msgstr "Bookly Pro – Lizenzüberprüfung erforderlich"
5853
 
5854
- #:
5855
- msgid "Thank you for choosing Bookly Pro as your booking solution."
5856
- msgstr "Danke, dass Sie Bookly Pro als Ihre Buchungslösung gewählt haben.\n"
5857
- "\n"
5858
- ""
5859
 
5860
- #:
5861
- msgid "Proceed to Bookly Pro without license verification"
5862
- msgstr "Fahren Sie ohne Lizenzverifizierung mit Bookly Pro fort\n"
5863
- "\n"
5864
- ""
5865
 
5866
- #:
5867
- msgid "Please verify your Bookly Pro license"
5868
- msgstr "Bitte überprüfen Sie Ihre Bookly Pro Lizenz."
 
 
 
5869
 
5870
- #:
5871
- msgid "Bookly Pro will need to verify your license to restore access to your bookings. Please enter the purchase code in the administrative panel."
5872
- msgstr "Bookly Pro muss Ihre Lizenz überprüfen, um Zugang zu Ihren Buchungen zu bekommen. Bitte geben Sie den Einkaufscode im Verwaltungspanel ein.\n"
5873
- "\n"
5874
- ""
5875
 
5876
- #:
5877
- msgid "Please verify Bookly Pro license in the administrative panel. If you do not verify the license within {days}, access to your bookings will be disabled."
5878
- msgstr "Bitte überprüfen Sie Ihre Bookly Pro Lizenz im Verwaltungspanel. Wenn Sie die Lizenz nicht innerhalb von ein paar Tagen bestätigen lassen, wird Ihnen der Zugang zu Ihren Buchungen gesperrt.\n"
5879
- "\n"
5880
- ""
5881
 
5882
- #:
5883
- msgid "A new appointment has been created. To view the details of this appointment, please contact your website administrator in order to verify Bookly Pro license."
5884
- msgstr "Ein neuer Termin wurde erstellt. Um die Details dieses Termins einzusehen, kontaktieren Sie bitte Ihren Webseitenadministrator, um Ihre Bookly Pro Lizenz bestätigen zu lassen.\n"
5885
- "\n"
5886
- ""
5887
 
5888
- #:
5889
- msgid "You have a new appointment. To view it, contact your admin to verify Bookly Pro license."
5890
- msgstr "Sie haben einen neuen Termin. Um ihn anzusehen, kontaktieren Sie Ihren Admin, um Ihre Bookly Pro Lizenz zu bestätigen.\n"
5891
- "\n"
5892
- ""
5893
 
5894
- #:
5895
- msgid "A new appointment has been created. To view the details of this appointment, please verify Bookly Pro license in the administrative panel."
5896
- msgstr "Ein neuer Termin wurde erstellt. Um sich die Details dieses Termins anzusehen, lassen Sie sich Ihre Bookly Pro Lizenz im Verwaltungspanel bestätigen."
5897
 
5898
- #:
5899
- msgid "You have a new appointment. To view it, please verify Bookly Pro license."
5900
- msgstr "Sie haben einen neuen Termin. Um ihn anzusehen, lassen Sie sich Ihre Bookly Pro Lizenz bestätigen.\n"
5901
- "\n"
5902
- ""
5903
 
5904
- #:
5905
- msgid "Welcome to Bookly Pro and thank you for purchasing our product!"
5906
- msgstr "Willkommen bei Bookly Pro und danke für Ihren Einkauf unseres Produkts!"
5907
 
5908
- #:
5909
- msgid "Bookly will simplify the booking process for your customers. This plugin creates another touchpoint to convert your visitors into customers. With Bookly your clients can see your availability, pick the services you provide, book them online and much more."
5910
- msgstr "Bookly wird den Buchungsvorgang für seine Kunden vereinfachen. Dieses Plugin erzeugt einen Berührungspunkt, um Ihre Besucher in Ihre Kunden zu verwandeln. Mit Bookly können Ihre Kunden Ihre Verfügbarkeit sehen, die Leistungen auswählen, die Sie anbieten, sie online buchen und vieles mehr. \n"
5911
- "\n"
5912
- ""
5913
 
5914
- #:
5915
- msgid "To start using Bookly, you need to set up the services you provide and specify the staff members who will provide those services."
5916
- msgstr "Um Bookly zu nutzen, müssen Sie die von Ihnen bereitgestellten Dienste einrichten und die Mitarbeiter angeben, die diese Dienste bereitstellen."
5917
 
5918
- #:
5919
- msgid "Add services you provide and assign them to staff members."
5920
- msgstr "Fügen Sie Dienste hinzu, die Sie anbieten und ordnen Sie diese Ihren Mitarbeitern zu."
 
 
 
 
5921
 
5922
- #:
5923
- msgid "Go to Posts/Pages and click on the Add Bookly booking form button in the page editor to publish the booking form on your website."
5924
- msgstr "\n"
5925
- "Gehen Sie zu Posts/Seite und klicken Sie auf den Bookly Buchungsformular Button auf der Bearbeitungsseite, um das Buchungsformular auf Ihrer Webseite zu veröffentlichen.\n"
5926
- ""
5927
 
5928
- #:
5929
- msgid "Bookly can boost your sales and scale together with your business. With Bookly add-ons you can get more features and functionality to customize your online scheduling system according to your business needs and simplify the process even more."
5930
- msgstr "Bookly kann Ihren Umsatz und Ihr Geschäft zusammen mit Ihrem Unternehmen steigern. Mit den Add-Ons von Bookly erhalten Sie mehr Funktionen und Funktionsfähigkeiten, um Ihr Online-Planungssystem an Ihre Geschäftsanforderungen anzupassen und den Prozess noch weiter zu vereinfachen."
5931
 
5932
- #:
5933
- msgid "Bookly Add-ons"
5934
- msgstr "Bookly Add-ons"
5935
 
5936
- #:
5937
- msgid "SMS service"
5938
- msgstr "SMS Service"
5939
 
5940
- #:
5941
- msgid "Welcome to Bookly and thank you for your choice!"
5942
- msgstr "Willkommen bei Bookly und danke für Ihre Wahl!"
5943
 
5944
- #:
5945
- msgid "Add a staff member (you can add only one service provider with a free version of Bookly)."
5946
- msgstr "Fügen Sie einen Mitarbeiter hinzu (Sie können nur einen Serviceanbieter mit einer kostenlosen Version von Bookly ausstatten."
5947
 
5948
- #:
5949
- msgid "Add services you provide (up to five with a free version of Bookly) and assign them to a staff member."
5950
- msgstr "Fügen Sie Leistungen hinzu, die Sie anbieten (bis zu fünf mit einer kostenlosen Version von Bookly) und weisen Sie sie einem Mitarbeiter zu."
5951
 
5952
- #:
5953
- msgid "Please contact your website administrator to verify your license by providing a valid purchase code. Upon providing the purchase code you will get access to software updates, including feature improvements and important security fixes. If you do not provide a valid purchase code within {days}, access to your bookings will be disabled."
5954
- msgstr "Bitte kontaktieren Sie Ihren Webseiten Administrator, um Ihre Lizenz bestätigen zu lassen, indem Sie einen gültigen Einkaufscode bieten. Mit dem Einkaufscode erhalten Sie Zugang zu Software Updates, inklusive verbesserten Funktionen und wichtige Sicherheitsupdates. Wenn Sie keinen gültigen Einkaufscode innerhalb {days} vorweisen, dann wird Ihr Zugang verweigert."
5955
 
5956
- #:
5957
- msgid "Deactivate Bookly Pro"
5958
- msgstr "Bookly Pro deaktivieren"
 
 
 
 
 
5959
 
5960
- #:
5961
- msgid "To enable access to your bookings, please contact your website administrator to verify your license by providing a valid purchase code."
5962
- msgstr "Um Ihren Zugang zu den Buchungen zu aktivieren, kontaktieren Sie bitte Ihren Webseiten Administrator, um Ihre Lizenz zu bestätigen, indem Sie einen gültigen Einkaufscode vorweisen."
5963
 
5964
- #:
5965
- msgid "If you do not provide a valid purchase code within {days}, access to your bookings will be disabled. <a href=\"{url}\">Details</a>"
5966
- msgstr "Wenn Sie keinen gültigen Einkaufscode innerhalb von {days} vorweisen, dann werden Ihre Buchungen gesperrt. <a href=\"{url}\">Details</a>"
5967
 
5968
- #:
5969
- msgid "To enable access to your bookings, please verify your license by providing a valid purchase code. <a href=\"{url}\">Details</a>"
5970
- msgstr "Um den Zugang zu Ihren Buchungen zu aktivieren, bestätigen Sie bitte Ihre Lizenz, indem Sie einen gültigen Einkaufscode vorweisen <a href=\"{url}\">Details</a>\n"
5971
- "\n"
5972
- ""
 
5973
 
5974
- #:
5975
- msgid "Follow the steps at <a href=\"https://developers.facebook.com/docs/apps/register\" target=\"_blank\">https://developers.facebook.com/docs/apps/register</a> to create a Developer Account, register and configure your <b>Facebook App</b>. Then you'll need to submit your app for review. Learn more about the review process and what's required to pass review in the <a href=\"https://developers.facebook.com/docs/facebook-login/review\" target=\"_blank\">Login Review Guide</a>."
5976
- msgstr "Folgen Sie den Schritten hier <a href=\"https://developers.facebook.com/docs/apps/register\" target=\"_blank\">https://developers.facebook.com/docs/apps/register</a> um ein Developer Konto zu erstellen, registrieren und konfigurieren Sie Ihre <b>Facebook App</b>. Dann müssen Sie Ihre App zur Überprüfung einschicken. Lernen Sie mehr über den Überprüfungsvorgang und was nötig ist, um die Überprüfung im <a href=\"https://developers.facebook.com/docs/facebook-login/review\" target=\"_blank\">Login Review Guide</a> zu überstehen.\n"
5977
- "\n"
5978
- ""
5979
 
5980
- #:
5981
- msgid "To view the details of these appointments, please contact your website administrator in order to verify Bookly Pro license."
5982
- msgstr "Um die Details dieser Termine einzusehen, kontaktieren Sie Ihren Webseiten Administrator, um Ihre Bookly Pro Lizenz zu überprüfen."
5983
 
5984
- #:
5985
- msgid "Bookly can boost your sales and scale together with your business. Get more features and remove the limits by upgrading to the paid version with the <a href=\"%s\" target=\"_blank\">Bookly Pro add-on</a>, which allows you to use a vast number of additional features and settings for booking services, install other add-ons for Bookly, and includes six months of customer support."
5986
- msgstr "Bookly kann Ihren Umsatz und Ihr Geschäft zusammen mit Ihrem Unternehmen steigern. Holen Sie sich mehr Funktionen und entfernen Sie die Einschränkungen, indem Sie mit der <a href=\"%s\" target=\"_blank\"> Bookly Pro-Add-On </a> ein Upgrade auf die kostenpflichtige Version durchführen, wodurch Sie eine Vielzahl zusätzlicher Funktionen verwenden können, für Einstellungen für Buchungsservice, installieren Sie andere Add-Ons für Bookly und enthalten einen sechsmonatigen Kundendienst.\n"
5987
- "\n"
5988
- ""
5989
 
5990
- #:
5991
- msgid "Try Bookly Pro add-on"
5992
- msgstr "Versuchen Sie Bookly Pro add-on"
 
 
 
 
 
5993
 
5994
- #:
5995
- msgid "<b>Bookly Lite rebrands into Bookly with more features available.</b><br/><br/>We have changed the architecture of Bookly Lite and Bookly to optimize the development of both plugin versions and add more features to the new free Bookly. To learn more about the major Bookly update, check our <a href=\"%s\" target=\"_blank\">blog post</a>."
5996
- msgstr "<b> Bookly Lite wird in Bookly umbenannt und bietet weitere Funktionen. </b> <br/> <br/> Wir haben die Struktur von Bookly Lite und Bookly geändert, um die Entwicklung beider Plugin-Versionen zu optimieren und neue Funktionen für das neue kostenlos Bookly hinzuzufügen. Weitere Informationen zum großen Bookly-Update finden Sie in unserem <a href=\"%s\" target=\"_blank\"> Blogbeitrag </a>.\n"
5997
  "\n"
5998
- ""
 
 
 
5999
 
6000
- #:
6001
- msgid "Group appointments"
6002
- msgstr "Gruppen Termine"
6003
 
6004
- #:
6005
- msgid "Create new appointment for every recurring booking"
6006
- msgstr "Erstellen Sie neue Termine für jede auftretende Buchung."
6007
 
6008
- #:
6009
- msgid "Add customer to available group bookings"
6010
- msgstr "Fügen Sie Kunden zu verfügbaren Gruppenbuchungen hinzu"
 
 
 
 
6011
 
6012
- #:
6013
- msgid "One booking per time slot"
6014
- msgstr "Eine Buchung pro Zeitraum"
6015
 
6016
- #:
6017
- msgid "Enable this option if you want to limit the possibility of booking within the service capacity to one time."
6018
- msgstr "Aktivieren Sie diese Option, wenn Sie die Möglichkeit der Buchungen innerhalb der Leistungskapazität einschränken wollen. \n"
6019
- "\n"
6020
- "\n"
6021
- ""
6022
 
6023
- #:
6024
- msgid "Equal duration"
6025
- msgstr "Gleiche Dauer"
6026
 
6027
- #:
6028
- msgid "Make every service duration equal to the duration of the longest one."
6029
- msgstr "Machen Sie jede Servicedauer so lang, wie die längste.\n"
6030
- "\n"
6031
- ""
6032
 
6033
- #:
6034
- msgid "Collaborative"
6035
- msgstr "Kollaborativ"
6036
 
6037
- #:
6038
- msgid "Collaborative service"
6039
- msgstr "Kollaborative Leistung"
6040
 
6041
- #:
6042
- msgid "Part of collaborative service"
6043
- msgstr "Teil des kollaborativen Dienstes"
6044
 
6045
- #:
6046
- msgid "There are no time slots for selected date."
6047
- msgstr "Es gibt keine Zeitfenster mehr für das ausgewählte Datum."
6048
 
6049
- #:
6050
- msgid "Confirm email"
6051
- msgstr "E-Mail bestätigen"
6052
 
6053
- #:
6054
- msgid "Email confirmation doesn't match"
6055
- msgstr "E-Mail Bestätigung stimmt nicht überein"
6056
 
6057
- #:
6058
- msgid "Created at any time"
6059
- msgstr "Zu jeder Zeit erstellt"
6060
 
6061
- #:
6062
- msgid "Created"
6063
- msgstr "Erstellt"
6064
 
6065
- #:
6066
- msgid "Any time"
6067
- msgstr "Jederzeit"
6068
 
6069
- #:
6070
- msgid "Last 7 days"
6071
- msgstr "Letzten 7 Tage"
 
6072
 
6073
- #:
6074
- msgid "Last 30 days"
6075
- msgstr "Letzten 30 Tage"
 
 
 
 
 
 
 
 
6076
 
6077
- #:
6078
- msgid "This month"
6079
- msgstr "Diesen Monat"
6080
 
6081
- #:
6082
- msgid "Custom range"
6083
- msgstr "Benutzerdefinierter Bereich"
6084
 
6085
- #:
6086
- msgid "Archived"
6087
- msgstr "Archiviert"
6088
 
6089
- #:
6090
- msgid "Send invoice"
6091
- msgstr "Rechnung schicken"
6092
 
6093
- #:
6094
- msgid "Note: invoice will be sent to your PayPal email address"
6095
- msgstr "Achtung: die Rechnung wird Ihnen an Ihre Paypal E-Mail Adresse geschickt."
 
 
 
 
 
6096
 
6097
- #:
6098
- msgid "Company address"
6099
- msgstr "Firmenadresse"
 
 
 
6100
 
6101
- #:
6102
- msgid "Company address line 2"
6103
- msgstr "Firmenadresse Reihe 2"
6104
 
6105
- #:
6106
- msgid "VAT"
6107
- msgstr "MWST"
6108
 
6109
- #:
6110
- msgid "Company code"
6111
- msgstr "Firmen Code"
 
 
 
6112
 
6113
- #:
6114
- msgid "Additional text to include into invoice"
6115
- msgstr "Zusätzlicher Text, der in die Rechnung aufgenommen werden soll"
 
6116
 
6117
- #:
6118
- msgid "Confirm your email"
6119
- msgstr "Bestätigen Sie Ihre E-Mail"
6120
 
6121
- #:
6122
- msgid "Thank you for registration."
6123
- msgstr "Vielen Dank für Ihre Registrierung"
 
 
 
 
 
 
 
 
 
6124
 
6125
- #:
6126
- msgid "Confirmation is sent to %s."
6127
- msgstr "Bestätigung wird an %s geschickt."
6128
 
6129
- #:
6130
- msgid "Once you confirm your e-mail address, you will get an access to Bookly SMS service."
6131
- msgstr "Sobald Sie Ihre E-Mail Adresse bestätigt haben, werden Sie Zugang zum Bookly SMS Service erhalten."
 
 
 
6132
 
6133
- #:
6134
- msgid "If you do not see your country in the list please contact us at <a href=\"mailto:support@bookly.info\">support@bookly.info</a>."
6135
- msgstr "Wenn Sie Ihr Land in der Liste nicht sehen, kontaktieren Sie uns bitte unter <a href=\"mailto:support@bookly.info\">support@bookly.info</a>."
 
 
 
6136
 
6137
- #:
6138
- msgid "Last month"
6139
- msgstr "Letzter Monat"
6140
 
6141
- #:
6142
- msgid "Archive"
6143
- msgstr "Archiv"
6144
 
6145
- #:
6146
- msgid "Set slot length as service duration"
6147
- msgstr "Legen Sie die Zeitdauer als Servicedauer fest"
6148
 
6149
- #:
6150
- msgid "The time interval which is used as a step when building all time slots for the service at the Time step. The setting overrides global settings in Settings General. Use Default to apply global settings."
6151
- msgstr "Das Zeitintervall, das als Schritt verwendet wird, wenn alle Zeitfenster für den Dienst im Zeitschritt erstellt werden. Die Einstellung überschreibt die globalen Einstellungen in den allgemeinen Einstellungen. Verwenden Sie Standardeinstellungen, um die globalen Einstellungen anzuwenden"
 
 
6152
 
6153
- #:
6154
- msgid "Slot length as service duration"
6155
- msgstr "Zeitdauer als Servicedauer."
 
 
 
6156
 
6157
- #:
6158
- msgid "Align buttons to the left"
6159
- msgstr "Tasten nach links ausrichten"
 
6160
 
6161
- #:
6162
- msgid "Email confirmation field"
6163
- msgstr "E-Mail Bestätigungsfeld"
 
 
 
 
6164
 
6165
- #:
6166
- msgid "Booking exceeds the working hours limit for staff member"
6167
- msgstr "Die Buchung überschreitet die Arbeitsstundeneinschränkung für Mitarbeiter"
6168
 
6169
- #:
6170
- msgid "View series"
6171
- msgstr "Folgen ansehen"
6172
 
6173
- #:
6174
- msgid "Delete customers with existing bookings"
6175
- msgstr "Kunden mit bestehenden Buchungen löschen"
 
 
 
 
 
6176
 
6177
- #:
6178
- msgid "Deleted Customer"
6179
- msgstr "Gelöschter Kunde"
 
 
 
 
6180
 
6181
- #:
6182
- msgid "Please, check your email to confirm the subscription. Thank you!"
6183
- msgstr "Bitte überprüfen Sie Ihre E-Mail, um die Anmeldung zu bestätigen. Vielen Dank!"
6184
 
6185
- #:
6186
- msgid "Given email address is already subscribed, thank you!"
6187
- msgstr "Die angegebene E-Mail Adresse ist bereits registriert, vielen Dank!"
 
6188
 
6189
- #:
6190
- msgid "This email address is not valid."
6191
- msgstr "Diese E-Mail Adresse ist nicht gültig. "
6192
 
6193
- #:
6194
- msgid "Feature requests"
6195
- msgstr "Funktionsanfragen"
6196
 
6197
- #:
6198
- msgid "In the Feature Requests section of our Community, you can make suggestions about what you'd like to see in our future releases."
6199
- msgstr "Im Bereich Funktionsanfragen unserer Community können Sie Vorschläge dazu machen, was Sie in unseren zukünftigen Veröffentlichungen sehen möchten."
6200
 
6201
- #:
6202
- msgid "Before you post, please check if the same suggestion has already been made. If so, vote for ideas you like and add a comment with the details about your situation."
6203
- msgstr "Ehe Sie posten, überprüfen Sie bitte, ob der Vorschlag schon gemacht wurde. Wenn ja, dann wählen Sie Ideen, die Ihnen gefallen und fügen Sie einen Kommentar mit Details über Ihre Situation hinzu."
6204
 
6205
- #:
6206
- msgid "It's much easier for us to address a suggestion if we clearly understand the context of the issue, the problem, and why it matters to you. When commenting or posting, please consider these questions so we can get a better idea of the problem you're facing:"
6207
- msgstr "Es ist viel einfacher für uns, einen Vorschlag anzusprechen, wenn wir den Kontext des Problems, das Problem und warum es Ihnen wichtig ist, klar verstehen. Berücksichtigen Sie beim Kommentieren oder Posten diese Fragen, damit wir eine bessere Vorstellung von dem Problem erhalten, mit dem Sie konfrontiert sind:\n"
6208
- "\n"
6209
- ""
6210
 
6211
- #:
6212
- msgid "What is the issue you're struggling with?"
6213
- msgstr "Was für ein Problem haben Sie?"
6214
 
6215
- #:
6216
- msgid "Where in your workflow do you encounter this issue?"
6217
- msgstr "Wo in Ihrem Arbeitsvorgang befindet sich das Problem?"
6218
 
6219
- #:
6220
- msgid "Is this something that impacts just you, your whole team, or your customers?"
6221
- msgstr "Ist das etwas, was nur Sie betrifft oder Ihr ganzes Team oder Ihre Kunden?\n"
6222
- "\n"
6223
- "\n"
6224
- ""
6225
 
6226
- #:
6227
- msgid "don't show this notification again"
6228
- msgstr "Zeigen Sie diese Benachrichtigungen nicht noch einmal"
6229
 
6230
- #:
6231
- msgid "Proceed to Feature requests"
6232
- msgstr "Fahren Sie mit den Funktionsanfragen fort"
6233
 
6234
- #:
6235
- msgid "We care about your experience of using Bookly!<br/>Leave a review and tell others what you think."
6236
- msgstr "Wir interessieren uns für Ihre Erfahrung mit der Anwendung Bookly<br/>Hinterlassen Sie eine Bewertung und erzählen Sie anderen was Sie darüber denken. \n"
6237
- "\n"
6238
- "\n"
6239
- ""
6240
 
6241
- #:
6242
- msgid "%s is used on another domain %s.<br/>In order to use the purchase code on this domain, please dissociate it in the admin panel of the other domain.<br/>If you do not have access to the admin area, please contact our technical support at support@bookly.info to transfer the license manually."
6243
- msgstr "% s wird für eine andere Domain% s verwendet. <br/> Um den Kaufcode für diese Domain zu verwenden, trennen Sie ihn bitte im Admin-Panel von der anderen Domain. <br/> Wenn Sie keinen Zugriff auf den Adminbereich haben, dann kontaktieren Sie bitte unseren technischen Support unter support@bookly.info, um die Lizenz manuell zu übertragen."
6244
 
6245
- #:
6246
- msgid "Archiving Staff"
6247
- msgstr "Archivierungsmitarbeiter"
6248
 
6249
- #:
6250
- msgid "Ok, continue editing"
6251
- msgstr "Ok, weiterhin bearbeiten"
6252
 
6253
- #:
6254
- msgid "Limit working hours per day"
6255
- msgstr "Arbeitsstundengrenze pro Woche"
 
 
 
 
 
 
6256
 
6257
- #:
6258
- msgid "Unlimited"
6259
- msgstr "Uneingeschränkt"
6260
 
6261
- #:
6262
- msgid "Customer section"
6263
- msgstr "Kundenbereich"
6264
 
6265
- #:
6266
- msgid "Appointment section"
6267
- msgstr "Terminbereich"
6268
 
6269
- #:
6270
- msgid "Period (before and after)"
6271
- msgstr "Zeitraum (vorher und nachher)"
6272
 
6273
- #:
6274
- msgid "upcoming"
6275
- msgstr "Kommende"
6276
 
6277
- #:
6278
- msgid "per 24 hours"
6279
- msgstr "Je 24 Stunden"
6280
 
6281
- #:
6282
- msgid "per 7 days"
6283
- msgstr "je 7 Tage"
6284
 
6285
- #:
6286
- msgid "Least occupied for period"
6287
- msgstr "Am wenigstens besetzt für den Zeitraum"
6288
 
6289
- #:
6290
- msgid "Most occupied for period"
6291
- msgstr "Häufig besetzt für den Zeitraum"
6292
 
6293
- #:
6294
- msgid "Skip"
6295
- msgstr "Überspringen"
6296
 
6297
- #:
6298
  msgid "Your task is done"
6299
  msgstr "Ihre Aufgabe ist fertig"
6300
 
6301
- #:
6302
- msgid "Dear {client_name}.\n"
6303
  "\n"
6304
  "Your task {service_name} has been done.\n"
6305
  "\n"
@@ -6308,7 +6554,8 @@ msgid "Dear {client_name}.\n"
6308
  "{company_name}\n"
6309
  "{company_phone}\n"
6310
  "{company_website}"
6311
- msgstr "Sehr geehrte/r {client_name}. \n"
 
6312
  "\n"
6313
  "Ihr Auftrag {service_name} wurde erledigt. \n"
6314
  "\n"
@@ -6318,12 +6565,11 @@ msgstr "Sehr geehrte/r {client_name}. \n"
6318
  "{company_phone} \n"
6319
  "{company_website}"
6320
 
6321
- #:
6322
  msgid "Task is done"
6323
  msgstr "Der Auftrag ist erledigt"
6324
 
6325
- #:
6326
- msgid "Hello.\n"
6327
  "\n"
6328
  "The following task has been done.\n"
6329
  "\n"
@@ -6334,7 +6580,8 @@ msgid "Hello.\n"
6334
  "Client phone: {client_phone}\n"
6335
  "\n"
6336
  "Client email: {client_email}"
6337
- msgstr "Hallo. \n"
 
6338
  "\n"
6339
  "Die folgenden Aufgaben wurden erledigt.\n"
6340
  "\n"
@@ -6346,1088 +6593,934 @@ msgstr "Hallo. \n"
6346
  "\n"
6347
  "Kunden E-Mails: {client_email}"
6348
 
6349
- #:
6350
- msgid "Dear {client_name}.\n"
6351
  "Your task {service_name} has been done.\n"
6352
  "Thank you for choosing our company.\n"
6353
  "{company_name}\n"
6354
  "{company_phone}\n"
6355
  "{company_website}"
6356
- msgstr "Sehr geehrte/r {client_name}. \n"
 
6357
  "Ihr Auftrag {service_name} wurde erledigt. \n"
6358
  "Danke, dass Sie unser Unternehmen gewählt haben \n"
6359
  "{company_name} \n"
6360
  "{company_phone} \n"
6361
  "{company_website}"
6362
 
6363
- #:
6364
- msgid "Hello.\n"
6365
  "The following task has been done.\n"
6366
  "Service: {service_name}\n"
6367
  "Client name: {client_name}\n"
6368
  "Client phone: {client_phone}\n"
6369
  "Client email: {client_email}"
6370
- msgstr "Hallo. \n"
 
6371
  "Der folgenden Auftrag wurde erledigt. \n"
6372
  "Leistung: {service_name} \n"
6373
  "Kundenname: {client_name} \n"
6374
  "Kundenhandy: {client_phone}\n"
6375
  "Kunden E-Mail: {client_email}\n"
6376
  "\n"
6377
- ""
6378
 
6379
- #:
 
 
 
 
 
6380
  msgid "Time step settings"
6381
  msgstr "Zeitschritte Einstellungen"
6382
 
6383
- #:
6384
- msgid "This setting allows to display the step of selecting an appointment time, hide it and create a task without due time, or display the time step, but allow a customer to skip it."
6385
- msgstr "Mit dieser Einstellung können Sie den Schritt zum Auswählen einer Terminzeit anzeigen, sie ausblenden und eine Aufgabe ohne Fälligkeit erstellen oder den Zeitschritt anzeigen, aber einem Kunden das Überspringen ermöglichen."
 
 
 
 
 
6386
 
6387
- #:
6388
  msgid "Optional"
6389
  msgstr "Optional"
6390
 
6391
- #:
6392
- msgid "Coupon code"
6393
- msgstr "Coupon Code"
6394
-
6395
- #:
6396
- msgid "Extras Step"
6397
- msgstr "Extra Schritte"
6398
-
6399
- #:
6400
- msgid "After Service step"
6401
- msgstr "Nach dem Serviceschritt "
6402
-
6403
- #:
6404
- msgid "After Time step (Extras duration settings will be ignored)"
6405
- msgstr "Nach dem Zeitschritt (Extra Dauer Einstellungen werden ignoriert)"
6406
-
6407
- #:
6408
- msgid "Set Default values that will be used in all locations where Use default settings is selected. To use custom settings in a location, select Use custom settings and enter custom values."
6409
- msgstr "Legen Sie Standardwerte fest, die an allen Orten verwendet werden, an denen Standardeinstellungen verwenden ausgewählt ist. Um benutzerdefinierte Einstellungen an einem Ort zu verwenden, wählen Sie Benutzerdefinierte Einstellungen verwenden und geben Sie benutzerdefinierte Werte ein.\n"
6410
- "\n"
6411
- ""
6412
-
6413
- #:
6414
- msgid "Default settings"
6415
- msgstr "Standardeinstellungen"
6416
-
6417
- #:
6418
- msgid "Use default settings"
6419
- msgstr "Standardeinstellungen nutzen"
6420
 
6421
- #:
6422
- msgid "Enable this setting to be able to set custom settings for staff members for different locations."
6423
- msgstr "Aktivieren Sie diese Einstellung, um benutzerdefinierte Einstellungen für Mitarbeiter für verschiedene Standorte festlegen zu können.\n"
6424
- "\n"
6425
- ""
6426
 
6427
- #:
6428
- msgid "Booking exceeds your working hours limit"
6429
- msgstr "Die Buchungen überschreiten Ihr Arbeitszeitlimit"
6430
 
6431
- #:
6432
- msgid "This setting allows limiting the total time occupied by bookings per day for staff member. Padding time is not included."
6433
- msgstr "Diese Einstellung ermöglicht es Ihnen die Gesamtzeit einzuschränken für Buchungen pro Tag für Mitarbeiter. Eine Auffüllzeit ist nicht enthalten."
6434
 
6435
- #:
6436
- msgid "This section describes information that is displayed about appointment."
6437
- msgstr "Dieser Bereich gibt Informationen, die bei einem Termin angezeigt werden.\n"
6438
- "\n"
6439
- ""
6440
 
6441
- #:
6442
- msgid "This section describes information that is displayed about each participant of the appointment."
6443
- msgstr "Dieser Bereich gibt Information die über jeden Teilnehmer an dem Termin angezeigt wird."
 
 
 
6444
 
6445
- #:
6446
- msgid "Active from"
6447
- msgstr "Aktiv ab"
6448
 
6449
- #:
6450
- msgid "Max appointments"
6451
- msgstr "Max. Termine"
6452
 
6453
- #:
6454
- msgid "Your account has been disabled. Contact your website administrator to continue."
6455
- msgstr "Dein Konto wurde deaktiviert. Kontaktieren Sie Ihren Webseitenadministrator um weiterzumachen."
6456
 
6457
- #:
6458
- msgid "You are going to archive item which is involved in upcoming appointments. Please double check and edit appointments before this item archive if needed."
6459
- msgstr "Sie archivieren ein Artikel, der an bevorstehenden Terminen beteiligt ist. Bitte überprüfen und bearbeiten Sie Termine vor diesem Artikel-Archiv, falls erforderlich."
6460
 
6461
- #:
6462
- msgid "Set number of days before and after appointment that will be taken into account when calculating providers occupancy. 0 means the day of booking."
6463
- msgstr "Legen Sie die Anzahl der Tage vor und nach dem Termin fest, die bei der Berechnung der Anbieterbelegung berücksichtigt werden. 0 bedeutet den Tag der Buchung."
6464
 
6465
- #:
6466
- msgid "This setting allows you to limit the number of appointments that can be booked by a customer in any given period. Restriction may end after a fixed period or with the beginning of the next calendar period new day, week, month, etc."
6467
- msgstr "Mit dieser Einstellung können Sie die Anzahl der Termine begrenzen, die ein Kunde in einem bestimmten Zeitraum buchen kann. Die Einschränkung kann nach einem festgelegten Zeitraum oder mit dem Beginn des nächsten Kalenderzeitraums neuer Tag, Woche, Monat usw. enden."
6468
 
6469
- #:
6470
- msgid "per day"
6471
- msgstr "je Tag"
6472
 
6473
- #:
6474
- msgid "per 30 days"
6475
- msgstr "je 30 Tage"
6476
 
6477
- #:
6478
- msgid "per 365 days"
6479
- msgstr "je 365 Tage"
6480
 
6481
- #:
6482
- msgid "Copy invoice to another email(s)"
6483
- msgstr "Kopieren Sie die Rechnung in weitere E-Mails"
6484
 
6485
- #:
6486
- msgid "Enter one or more email addresses separated by commas."
6487
- msgstr "Geben Sie eine oder mehrere E-Mail Adressen ein, getrennt durch Kommas.\n"
6488
- "\n"
6489
- ""
6490
 
6491
- #:
6492
- msgid "Can't change calendar for archived staff"
6493
- msgstr "Der Kalender kann für die archivierten Mitarbeiter nicht verändert werden"
6494
 
6495
- #:
6496
- msgid "You are going to delete customers with existing bookings. Notifications will not be sent to them."
6497
- msgstr "Sie werden Kunden mit bestehenden Buchungen löschen. Benachrichtigungen werden Ihnen nicht geschickt."
6498
 
6499
- #:
6500
- msgid "You are going to delete customers, are you sure?"
6501
- msgstr "Sie wollen Kunden löschen, sind Sie sicher?"
6502
 
6503
- #:
6504
- msgid "Delete customers' WordPress accounts if there are any"
6505
- msgstr "Die WordPress Konten der Kunden löschen, wenn es welche gibt\n"
6506
- "\n"
6507
- ""
6508
 
6509
- #:
6510
  msgid "Export only active coupons"
6511
  msgstr "Nur aktive Coupons exportieren"
6512
 
6513
- #:
6514
- msgid "This setting affects the cost of the booking according to the payment gateway used. Specify a percentage or fixed amount. Use minus (\"-\") sign for decrease/discount. Note that tax will not be calculated for the additional amount to the cost. If you need to report the exact tax amount to the payment system, do not use additional charge."
6515
- msgstr "Diese Einstellung wirkt sich je nach verwendetem Zahlungsgateway auf die Buchungskosten aus. Geben Sie einen Prozentsatz oder einen festen Betrag an. Verwenden Sie das Minuszeichen (\"-\"), um den Rabatt zu verringern. Bitte beachten Sie, dass die Steuer nicht für den zusätzlichen Betrag berechnet wird. Wenn Sie den genauen Steuerbetrag dem Zahlungssystem mitteilen müssen, verwenden Sie keine zusätzlichen Gebühren."
6516
-
6517
- #:
6518
- msgid "How to publish this form on your web site?"
6519
- msgstr "Wie veröffentlichen Sie dieses Formular auf Ihrer Webseite?"
6520
-
6521
- #:
6522
- msgid "Open the page where you want to add the booking form in page edit mode and click on the \"Add Bookly booking form\" button. Choose which fields you'd like to keep or remove from the booking form. Click Insert, and the booking form will be added to the page."
6523
- msgstr "Öffnen Sie die Seite, auf der Sie das Buchungsformular hinzufügen wollen und klicken Sie auf „Bookly Buchungsformular hinzufügen“. Wählen Sie welche Felder Sie behalten oder vom Buchungsformular entfernen wollen. Klicken Sie eingeben und das Buchungsformular wird Ihrer Seite hinzugefügt.\n"
6524
- "\n"
6525
- ""
6526
 
6527
- #:
6528
- msgid "Notification to staff member about cancelled recurring appointment"
6529
- msgstr "Benachrichtigungen an Mitarbeiter über wiederkehrende stornierte Termine"
6530
 
6531
- #:
6532
- msgid "Notification to staff member about placing on waiting list for recurring appointment"
6533
- msgstr "Benachrichtigungen an Mitarbeiter über Platzierungen auf der Warteliste wegen wiederkehrender Termine"
6534
 
6535
- #:
6536
- msgid "Get Bookly Pro"
6537
- msgstr "Erhalten Sie Bookly Pro"
 
 
 
6538
 
6539
- #:
6540
- msgid "Read more"
6541
- msgstr "Lesen Sie weiter"
6542
 
6543
- #:
6544
- msgid "Demo"
6545
- msgstr "Demo"
6546
 
6547
- #:
6548
- msgid "payment status"
6549
- msgstr "Zahlungsstatus"
6550
 
6551
- #:
6552
- msgid "This setting affects the cost of the booking according to the payment gateway used. Specify a percentage or fixed amount. Use minus (\"-\") sign for decrease/discount."
6553
- msgstr "Diese Einstellung wirkt sich je nach verwendetem Zahlungsgateway auf die Buchungskosten aus. Geben Sie einen Prozentsatz oder einen festen Betrag an. Verwenden Sie das Minuszeichen (\"-\"), um den Rabatt zu verringern."
6554
 
6555
- #:
6556
- msgid "You are going to delete appointment(s). Notifications will be sent in accordance with your settings."
6557
- msgstr "Sie werden Termine löschen. Benachrichtigungen werden in Übereinstimmung mit Ihren Einstellungen verschickt."
 
 
6558
 
6559
- #:
6560
- msgid "View this page at Bookly Pro Demo"
6561
- msgstr "Schauen Sie sich diese Seite bei Bookly Pro Demo an."
6562
 
6563
- #:
6564
- msgid "Visit demo"
6565
- msgstr "Demo besuchen"
6566
 
6567
- #:
6568
- msgid "The demo is a version of Bookly Pro with all installed add-ons so that you can try all the features and capabilities of the system and then choose the most suitable configuration according to your business needs."
6569
- msgstr "Die Demo ist eine Version von Bookly Pro mit allen installierten Add-ons, damit Sie alle Funktionen und Fähigkeiten des Systems ausprobieren und dann die geeignetsten Einstellungen wählen können, je nach den Ansprüchen Ihrer Firma."
6570
 
6571
- #:
6572
- msgid "Proceed to demo"
6573
- msgstr "Weiter zum Demo gehen"
6574
 
6575
- #:
6576
- msgid "General settings"
6577
- msgstr "Allgemeine Einstellungen"
 
 
 
6578
 
6579
- #:
6580
- msgid "Save settings"
6581
- msgstr "Einstellungen speichern"
6582
 
6583
- #:
6584
- msgid "Test email notifications"
6585
- msgstr "E-Mail Benachrichtigungen testen"
6586
 
6587
- #:
6588
- msgid "Email notifications"
6589
- msgstr "E-Mail Benachrichtigungen"
6590
 
6591
- #:
6592
- msgid "General settings..."
6593
- msgstr "Allgemeine Einstellungen"
6594
 
6595
- #:
6596
- msgid "State"
6597
- msgstr "Status"
6598
 
6599
- #:
6600
- msgid "Delete..."
6601
- msgstr "Löschen"
6602
 
6603
- #:
6604
- msgid "Dear {client_name}.\n"
6605
- "\n"
6606
- "You have cancelled your booking of {service_name} on {appointment_date} at {appointment_time}.\n"
6607
- "\n"
6608
- "Thank you for choosing our company.\n"
6609
- "\n"
6610
- "{company_name}\n"
6611
- "{company_phone}\n"
6612
- "{company_website}"
6613
- msgstr "Sehr geehrte/r {client_name}. \n"
6614
- "\n"
6615
- "Sie haben Ihre Buchung von {service_name} am {appointment_date} um {appointment_time} storniert. \n"
6616
- "\n"
6617
- "Danke, dass Sie unsere Firma gewählt haben. \n"
6618
- "\n"
6619
- "{company_name}\n"
6620
- "{company_phone} \n"
6621
- "{company_website}"
6622
 
6623
- #:
6624
- msgid "Hello.\n"
6625
- "\n"
6626
- "The following booking has been cancelled.\n"
6627
- "\n"
6628
- "Service: {service_name}\n"
6629
- "Date: {appointment_date}\n"
6630
- "Time: {appointment_time}\n"
6631
- "Client name: {client_name}\n"
6632
- "Client phone: {client_phone}\n"
6633
- "Client email: {client_email}"
6634
- msgstr "Hallo. \n"
6635
- "\n"
6636
- "Die folgende Buchung wurde storniert. \n"
6637
- "\n"
6638
- "Leistung: {service_name} \n"
6639
- "Datum: {appointment_date} \n"
6640
- "Zeit: {appointment_time} \n"
6641
- "Kundenname: {client_name} \n"
6642
- "Kundenhandy: {client_phone} \n"
6643
- "Kunden E-mail: {client_email}\n"
6644
- "\n"
6645
- ""
6646
 
6647
- #:
6648
- msgid "Dear {client_name}.\n"
6649
- "This is a confirmation that you have booked {service_name}.\n"
6650
- "We are waiting you at {company_address} on {appointment_date} at {appointment_time}.\n"
6651
- "Thank you for choosing our company.\n"
6652
- "{company_name}\n"
6653
- "{company_phone}\n"
6654
- "{company_website}"
6655
- msgstr "Sehr geehrte/r {client_name}. \n"
6656
- "Dies ist eine Bestätigung, dass Sie {service_name} gebucht haben. Wir erwarten Sie bei {company_address} am {termin_date} um {termin_time}. Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben. \n"
6657
- "{company_name} \n"
6658
- "{company_phone} \n"
6659
- "{company_website}\n"
6660
- "\n"
6661
- ""
6662
 
6663
- #:
6664
- msgid "Hello.\n"
6665
- "You have a new booking.\n"
6666
- "Service: {service_name}\n"
6667
- "Date: {appointment_date}\n"
6668
- "Time: {appointment_time}\n"
6669
- "Client name: {client_name}\n"
6670
- "Client phone: {client_phone}\n"
6671
- "Client email: {client_email}"
6672
- msgstr "Hallo. \n"
6673
- "Sie haben eine neue Buchung. \n"
6674
- "Leistung: {service_name} \n"
6675
- "Datum: {appointment_date} \n"
6676
- "Zeit: {appointment_time} \n"
6677
- "Kundenname: {client_name} \n"
6678
- "Kundenhandy: {client_phone} \n"
6679
- "Kunden E-Mail: {client_email}\n"
6680
- "\n"
6681
- ""
6682
 
6683
- #:
6684
- msgid "Dear {client_name}.\n"
6685
- "You have cancelled your booking of {service_name} on {appointment_date} at {appointment_time}.\n"
6686
- "Thank you for choosing our company.\n"
6687
- "{company_name}\n"
6688
- "{company_phone}\n"
6689
- "{company_website}"
6690
- msgstr "Sehr geehrte/r {client_name}. \n"
6691
- "Sie haben Ihre Buchung für {service_name} am {appointment_date} um {appointment_time} storniert. \n"
6692
- "Danke, dass Sie unser Unternehmen gewählt haben. \n"
6693
- "{company_name} \n"
6694
- "{company_phone} \n"
6695
- "{company_website}"
6696
 
6697
- #:
6698
- msgid "Hello.\n"
6699
- "The following booking has been cancelled.\n"
6700
- "Service: {service_name}\n"
6701
- "Date: {appointment_date}\n"
6702
- "Time: {appointment_time}\n"
6703
- "Client name: {client_name}\n"
6704
- "Client phone: {client_phone}\n"
6705
- "Client email: {client_email}"
6706
- msgstr "Hallo. \n"
6707
- "Die folgende Buchung wurde storniert. \n"
6708
- "Leistung: {service_name} \n"
6709
- "Datum: {appointment_date} \n"
6710
- "Zeit: {appointment_time} \n"
6711
- "Kundenname: {client_name} \n"
6712
- "Kundenhandy: {client_phone}\n"
6713
- " Kunden E-Mail: {client_email}"
6714
 
6715
- #:
6716
- msgid "Dear {client_name}.\n"
6717
- "We would like to remind you that you have booked {service_name} tomorrow at {appointment_time}. We are waiting for you at {company_address}.\n"
6718
- "Thank you for choosing our company.\n"
6719
- "{company_name}\n"
6720
- "{company_phone}\n"
6721
- "{company_website}"
6722
- msgstr "Sehr geehrte/r {client_name}.\n"
6723
- "Wir würden Sie gerne daran erinnern, dass Sie {service_name} für morgen um {appointment_time} gebucht haben. Wir erwarten Sie in der\n"
6724
- "{company_address}. \n"
6725
- "Vielen Dank, dass Sie unsere Firma gewählt haben.\n"
6726
- "{company_name} \n"
6727
- "{company_phone} \n"
6728
- "{company_website}"
6729
 
6730
- #:
6731
- msgid "Dear {client_name}.\n"
6732
- "Thank you for choosing {company_name}. We hope you were satisfied with your {service_name}.\n"
6733
- "Thank you and we look forward to seeing you again soon.\n"
6734
- "{company_name}\n"
6735
- "{company_phone}\n"
6736
- "{company_website}"
6737
- msgstr "Sehr geehrte/r {client_name}. \n"
6738
- "Vielen Dank, dass Sie {company_name} gewählt haben. Wir hoffen, dass Sie mit Ihrer {service_name} zufrieden waren.\n"
6739
- "Vielen Dank und wir freuen uns sie schon bald wieder zu sehen. {company_name}\n"
6740
- "{company_phone} \n"
6741
- "{company_website}"
6742
 
6743
- #:
6744
- msgid "Hello.\n"
6745
- "Your agenda for tomorrow is:\n"
6746
- "{next_day_agenda}"
6747
- msgstr "Hallo. Ihr Kalender für morgen: {next_day_agenda}"
6748
 
6749
- #:
6750
- msgid "New booking combined notification"
6751
- msgstr "Neue Buchungen kombinierte Benachrichtigung"
6752
 
6753
- #:
6754
- msgid "New booking notification"
6755
- msgstr "Neue Buchungsbestätigung"
6756
 
6757
- #:
6758
- msgid "Notification about customer's appointment status change"
6759
- msgstr "Benachrichtigungen über die Statusveränderung des Termins"
6760
 
6761
- #:
6762
- msgid "Appointment reminder"
6763
- msgstr "Termin Erinnerung"
6764
 
6765
- #:
6766
- msgid "New customer's WordPress user login details"
6767
- msgstr "Neue Kunden WordPress Nutzer Login Details"
6768
 
6769
- #:
6770
- msgid "Customer's birthday greeting"
6771
- msgstr "Kunden Geburtstagsgrüße"
6772
 
6773
- #:
6774
- msgid "Customer's last appointment notification"
6775
- msgstr "Letzte Terminbenachrichtigung des Kunden"
6776
 
6777
- #:
6778
- msgid "Staff full day agenda"
6779
- msgstr "Mitarbeiter voller Tageskalender"
6780
 
6781
- #:
6782
- msgid "New recurring booking notification"
6783
- msgstr "Neue wiederkehrende Buchungsbenachrichtigung"
6784
 
6785
- #:
6786
- msgid "Notification about recurring appointment status changes"
6787
- msgstr "Benachrichtigung über wiederkehrende Terminstatusänderungen"
6788
 
6789
- #:
6790
- msgid "Unknown"
6791
- msgstr "Unbekannt"
6792
 
6793
- #:
6794
- msgid "Save administrator phone"
6795
- msgstr "Handynummer des Administrators speichern"
6796
 
6797
- #:
6798
- msgid "A custom block for displaying staff calendar"
6799
- msgstr "Ein benutzerdefinierter Block zum Anzeigen des Mitarbeiterkalenders"
6800
 
6801
- #:
6802
- msgid "A custom block for displaying staff details"
6803
- msgstr "Ein benutzerdefinierter Block zum Anzeigen von Mitarbeiterdetails"
6804
 
6805
- #:
6806
- msgid "A custom block for displaying staff services"
6807
- msgstr "Ein benutzerdefinierter Block zum Anzeigen von Mitarbeiterdienstleistungen"
6808
 
6809
- #:
6810
- msgid "A custom block for displaying staff schedule"
6811
- msgstr "Ein benutzerdefinierter Block zum Anzeigen des Mitarbeiterzeitplans"
6812
 
6813
- #:
6814
- msgid "Special days"
6815
- msgstr "Besondere Tage"
6816
 
6817
- #:
6818
- msgid "A custom block for displaying staff special days"
6819
- msgstr "Ein benutzerdefinierter Block zum Anzeigen von Spezialtagen der Mitarbeiter"
6820
 
6821
- #:
6822
- msgid "A custom block for displaying staff days off"
6823
- msgstr "Ein benutzerdefinierter Block zum Anzeigen von freien Tagen für Mitarbeiter"
6824
 
6825
- #:
6826
- msgid "Special hours"
6827
- msgstr "Besondere Tage "
6828
 
6829
- #:
6830
- msgid "Fields"
6831
- msgstr "Felder"
6832
 
6833
- #:
6834
- msgid "read only"
6835
- msgstr "Nur lesen"
 
 
 
 
 
 
6836
 
6837
- #:
6838
- msgid "Customer cabinet"
6839
- msgstr "Kunden Aktenschrank"
6840
 
6841
- #:
6842
- msgid "A custom block for displaying customer cabinet"
6843
- msgstr "Ein benutzerdefinierter Block zum Anzeigen des Kundenaktenschranks"
6844
 
6845
- #:
6846
- msgid "show"
6847
- msgstr "Anzeigen"
6848
 
6849
- #:
6850
- msgid "Custom field"
6851
- msgstr "Kundenfeld"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6852
 
6853
- #:
6854
- msgid "Customer information"
6855
- msgstr "Kunden Information"
6856
 
6857
- #:
6858
- msgid "Quick search notifications"
6859
- msgstr "Schnelle Suchbenachrichtigung"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6860
 
6861
- #:
6862
- msgid "To generate an invoice you should fill in company information in Bookly > SMS Notifications > Send invoice."
6863
- msgstr "Um eine Rechnung zu erstellen, müssen Sie die Firmeninformationen in Bookly eingeben> SMS Benachrichtigungen > Rechnung schicken."
 
 
6864
 
6865
- #:
6866
- msgid "enable"
6867
- msgstr "Aktivieren"
6868
 
6869
- #:
6870
- msgid "disable"
6871
- msgstr "Desaktivieren"
 
 
 
 
 
 
 
 
 
 
 
 
 
6872
 
6873
- #:
6874
- msgid "Edit..."
6875
- msgstr "Bearbeiten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6876
 
6877
- #:
6878
- msgid "Scheduled notifications retry period"
6879
- msgstr "Wiederholungszeitraum für geplante Benachrichtigungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6880
 
6881
- #:
6882
- msgid "Test email notifications..."
6883
- msgstr "Test E-Mail Benachrichtigung"
 
 
 
 
 
 
 
 
 
 
6884
 
6885
- #:
6886
- msgid "Notification settings"
6887
- msgstr "Benachrichtigungseinstellungen"
 
 
 
6888
 
6889
- #:
6890
- msgid "Enter notification name which will be displayed in the list."
6891
- msgstr "Geben Sie den Benachrichtigungsnamen ein, der in der Liste angezeigt wird"
 
6892
 
6893
- #:
6894
- msgid "Choose whether notification is enabled and sending messages or it is disabled and no messages are sent until you activate the notification."
6895
- msgstr "Wählen Sie, ob die Benachrichtigung aktiviert ist und Nachrichten sendet oder ob sie desaktiviert ist und keine Nachrichten verschickt werden, bis sie die Benachrichtigungen aktivieren."
6896
 
6897
- #:
6898
- msgid "Recipients"
6899
- msgstr "Empfänger"
6900
 
6901
- #:
6902
- msgid "Choose who will receive this notification."
6903
- msgstr "Wählen Sie, wer diese Benachrichtigung erhalten soll."
6904
 
6905
- #:
6906
- msgid "Select the type of event at which the notification is sent."
6907
- msgstr "Wählen Sie die Art des Vorgangs, bei dem die Benachrichtigung verschickt wird.\n"
6908
- ""
6909
 
6910
- #:
6911
- msgid "Instant notifications"
6912
- msgstr "Sofortige Benachrichtigung"
6913
 
6914
- #:
6915
- msgid "Scheduled notifications (require cron setup)"
6916
- msgstr "Geplante Benachrichtigungen (erfordern Cron Setup)"
6917
 
6918
- #:
6919
- msgid "This notification is sent once for a booking made by a customer and includes all cart items."
6920
- msgstr "Diese Benachrichtigung wird einmalig bei einer Buchung vom Kunden verschickt und umfasst alle Warenkorbpositionen.\n"
6921
- "\n"
6922
- "\n"
6923
- ""
6924
 
6925
- #:
6926
- msgid "Save notification"
6927
- msgstr "Benachrichtigung speichern"
6928
 
6929
- #:
6930
- msgid "Appointment status"
6931
- msgstr "Terminstatus"
 
 
 
 
6932
 
6933
- #:
6934
- msgid "Select what status an appointment should have for the notification to be sent."
6935
- msgstr "Wählen Sie welchen Status ein Termin haben sollte, damit die Benachrichtigung verschickt wird."
6936
 
6937
- #:
6938
- msgid "Choose whether notification should be sent for specific services only or not."
6939
- msgstr "Wählen Sie, ob Benachrichtigung nur für besondere Leistungen gesendet werden soll oder nicht.\n"
6940
- "\n"
6941
- ""
6942
 
6943
- #:
6944
- msgid "Body"
6945
- msgstr "Text"
6946
 
6947
- #:
6948
- msgid "Sms"
6949
- msgstr "Sms"
6950
 
6951
- #:
6952
- msgid "New sms notification"
6953
- msgstr "Neue Sms Benachrichtigung"
6954
 
6955
- #:
6956
- msgid "Edit sms notification"
6957
- msgstr "Sms Benachrichtigung bearbeiten"
6958
 
6959
- #:
6960
- msgid "Create notification"
6961
- msgstr "Benachrichtigung erstellen"
 
 
6962
 
6963
- #:
6964
- msgid "New notification..."
6965
- msgstr "Neue Benachrichtigung"
 
6966
 
6967
- #:
6968
- msgid "If you have added a new customer to this appointment or changed the appointment status for an existing customer, and for these records you want the corresponding email or SMS notifications to be sent to their recipients, select the \"Send if new or status changed\" option before clicking Save. You can also send notifications as if all customers were added as new by selecting \"Send as for new\"."
6969
- msgstr "Wenn Sie einen neuen Kunden für den Termin hinzufügen oder den Terminstatus für einen bestehenden Kunden ändern und für diese Aufzeichnungen die Korrespondenz E-Mail oder Sms Benachrichtigung an die Empfänger gesendet werden soll, wählen Sie die „Senden wenn neu oder Status verändern“ Option, ehe Sie speichern klicken. Sie können auch Benachrichtigungen senden, wenn alle Kunden als neu hinzugefügt wurden, indem sie „Als neu verschicken“, wählen."
6970
 
6971
- #:
6972
- msgid "Send if new or status changed"
6973
- msgstr "Senden wenn neu oder Status verändert"
 
6974
 
6975
- #:
6976
- msgid "Send as for new"
6977
- msgstr "Senden als neu"
6978
 
6979
- #:
6980
- msgid "New email notification"
6981
- msgstr "Neue E-Mail Benachrichtigung"
6982
 
6983
- #:
6984
- msgid "Edit email notification"
6985
- msgstr "E-Mail Benachrichtigung bearbeiten"
6986
 
6987
- #:
6988
- msgid "Contact us"
6989
- msgstr "Kontaktieren Sie uns"
6990
 
6991
- #:
6992
- msgid "Booking form"
6993
- msgstr "Buchungsformular"
6994
 
6995
- #:
6996
- msgid "A custom block for displaying booking form"
6997
- msgstr "Ein benutzerdefinierter Block zum Anzeigen des Buchungsformulars"
6998
 
6999
- #:
7000
- msgid "Form fields"
7001
- msgstr "Formular Felder"
7002
 
7003
- #:
7004
- msgid "Default value for location"
7005
- msgstr "Standardwert für den Standort"
7006
 
7007
- #:
7008
- msgid "Default value for category"
7009
- msgstr "Standardwert für Kategorie"
7010
 
7011
- #:
7012
- msgid "Default value for service"
7013
- msgstr "Standardwert für Leistung"
7014
 
7015
- #:
7016
- msgid "Default value for employee"
7017
- msgstr "Standardwert für Angestellten"
7018
 
7019
- #:
7020
- msgid "hide"
7021
- msgstr "Verstecken"
7022
 
7023
- #:
7024
- msgid "Notification about new package creation"
7025
- msgstr "Benachrichtigung über die Erstellung neuer Pakete"
7026
 
7027
- #:
7028
- msgid "Notification about package deletion"
7029
- msgstr "Benachrichtigung über Paketlöschung\n"
7030
- "\n"
7031
- ""
7032
 
7033
- #:
7034
- msgid "Packages list"
7035
- msgstr "Paketliste"
7036
 
7037
- #:
7038
- msgid "A custom block for displaying packages list"
7039
- msgstr "Ein benutzerdefinierter Block zum Anzeigen der Paketliste"
7040
 
7041
- #:
7042
- msgid "Dear {client_name}.\n"
7043
- "This is a confirmation that you have booked the following items:\n"
7044
- "{cart_info}\n"
7045
- "Thank you for choosing our company.\n"
7046
- "{company_name}\n"
7047
- "{company_phone}\n"
7048
- "{company_website}"
7049
- msgstr "Sehr geehrte/r {client_name}. \n"
7050
- "Dies ist eine Bestätigung, dass Sie die folgenden Gegenstände gebucht haben: {cart_info} \n"
7051
- "Vielen Dank, dass Sie unser Unternehmen gewählt haben. \n"
7052
- "{company_name}\n"
7053
- "{company_phone} \n"
7054
- "{company_website}\n"
7055
- "\n"
7056
- ""
7057
 
7058
- #:
7059
- msgid "Notification to customer about pending appointments"
7060
- msgstr "Benachrichtigung an Kunden über ausstehende Termine\n"
7061
- "\n"
7062
- "\n"
7063
- ""
7064
 
7065
- #:
7066
- msgid "Cancellation confirmation"
7067
- msgstr "Stornierungsbestätigung"
7068
 
7069
- #:
7070
- msgid "A custom block for displaying cancellation confirmation"
7071
- msgstr "Ein benutzerdefinierter Block zum Anzeigen der Stornierungsbestätigung\n"
7072
- "\n"
7073
- ""
7074
 
7075
- #:
7076
- msgid "Appointments list"
7077
- msgstr "Terminliste"
7078
 
7079
- #:
7080
- msgid "A custom block for displaying appointments list"
7081
- msgstr "Ein benutzerdefinierter Block zum Anzeigen der Terminliste"
7082
 
7083
- #:
7084
- msgid "Custom fields"
7085
- msgstr "Benutzerdefinierte Felder"
7086
 
7087
- #:
7088
- msgid "Notification for staff member to set up appointment from waiting list"
7089
- msgstr "Benachrichtigung an Mitarbeiter für Einrichtung von Terminen von der Warteliste\n"
7090
- ""
 
 
 
7091
 
7092
- #:
7093
- msgid "Add service"
7094
- msgstr "Dienstleistung hinzufügen"
 
 
 
 
 
7095
 
7096
- #:
7097
  msgid "Custom statuses"
7098
  msgstr "Benutzerdefinierter Status"
7099
 
7100
- #:
7101
  msgid "Add status"
7102
  msgstr "Status hinzufügen"
7103
 
7104
- #:
7105
  msgid "Free/Busy"
7106
  msgstr "Frei/Beschäftigt"
7107
 
7108
- #:
7109
  msgid "New Status"
7110
  msgstr "Neuer Status "
7111
 
7112
- #:
7113
  msgid "Edit Status"
7114
  msgstr "Status bearbeiten"
7115
 
7116
- #:
7117
  msgid "Free/busy"
7118
  msgstr "Frei/Beschäftigt"
7119
 
7120
- #:
7121
- msgid "If you select busy, then a customer with this status will occupy a place in appointment. If you select free, then a place will be considered as free."
7122
- msgstr "Wenn Sie beschäftigt wählen, dann wird ein Kunde mit diesem Status einen Platz in der Terminliste einnehmen. Wenn Sie sich für frei entscheiden, wird ein Platz als frei betrachtet.\n"
 
 
 
 
7123
  "\n"
7124
- ""
7125
 
7126
- #:
7127
- msgid "Free"
7128
- msgstr "Frei"
7129
-
7130
- #:
7131
  msgid "Busy"
7132
  msgstr "Beschäftigt"
7133
 
7134
- #:
7135
  msgid "No statuses found."
7136
  msgstr "Kein Status gefunden."
7137
 
7138
- #:
7139
  msgid "Custom Statuses"
7140
  msgstr "Benutzerdefinierter Status"
7141
 
7142
- #:
7143
- msgid "Staff ratings"
7144
- msgstr "Mitarbeiter Ratings"
7145
-
7146
- #:
7147
- msgid "A custom block for displaying staff ratings"
7148
- msgstr "Ein benutzerdefinierter Block zum Anzeigen von Mitarbeiterbewertungen"
7149
-
7150
- #:
7151
- msgid "Hide comment"
7152
- msgstr "Kommentar verbergen"
7153
 
7154
- #:
7155
- msgid "Outlook Calendar event"
7156
- msgstr "Outlook Kalender Ereignis"
 
 
 
7157
 
7158
- #:
7159
- msgid "Outlook Calendar integration"
7160
- msgstr "Outlook Kalender Integrierung"
7161
 
7162
- #:
7163
- msgid "Synchronize staff member appointments with Outlook Calendar."
7164
- msgstr "Synchronisieren Sie Mitgliedertermine mit Outlook-Kalender."
7165
 
7166
- #:
7167
- msgid "Please configure Outlook Calendar <a href=\"%s\">settings</a> first"
7168
- msgstr "Bitte konfigurieren Sie zuerst den Outlook Kalender <a href=\"%s\">settings</a> first\n"
7169
- "\n"
7170
- ""
7171
 
7172
- #:
7173
- msgid "Important: Your website must use <b>HTTPS</b>. The Outlook Calendar API will not work with your website if there is no valid SSL certificate installed on your web server."
7174
- msgstr "Wichtig: Deine Webseite muss <b>HTTPS</b> unterstützen. Der Outlook Kalender API wird mit Ihrer Webseite nicht funktionieren, wenn kein gültiges SSL Zertifikat auf ihrem Webserver installiert ist.\n"
7175
- "\n"
7176
- ""
7177
 
7178
- #:
7179
- msgid "To find your Application ID and Application Secret, do the following:"
7180
- msgstr "Gehen Sie folgendermaßen vor, um Ihre Anwendungs-ID und Ihr Anwendungsgeheimnis zu finden:\n"
7181
- "\n"
7182
- ""
7183
 
7184
- #:
7185
- msgid "<b>Save</b> your changes."
7186
- msgstr "\n"
7187
- "<b>Speichern</b> Sie Ihre Veränderungen.\n"
7188
- "\n"
 
 
 
 
7189
  "\n"
7190
- ""
7191
 
7192
- #:
7193
- msgid "Application ID"
7194
- msgstr "Anwendungs ID"
7195
 
7196
- #:
7197
- msgid "The Application ID obtained from the Microsoft App Registration Portal."
7198
- msgstr "\n"
7199
- "Die Anwendungs ID erhalten Sie aus dem Microsoft App Registrierungs Portal.\n"
7200
- "\n"
7201
- ""
7202
 
7203
- #:
7204
- msgid "Application secret"
7205
- msgstr "Anwendungspasswort"
7206
 
7207
- #:
7208
- msgid "The Application Secret password obtained from the Microsoft App Registration Portal."
7209
- msgstr "Das Anwendungspasswort erhalten Sie aus dem Microsoft App Registrierungsportal.\n"
7210
- "\n"
7211
- ""
7212
 
7213
- #:
7214
- msgid "Enter this URL as a Redirect URLs in the Microsoft App Registration Portal."
7215
- msgstr "Geben Sie diese URL als Weiterleitungs-URL im Microsoft App Registration Portal ein."
7216
 
7217
- #:
7218
- msgid "With \"One-way\" sync Bookly pushes new appointments and any further changes to Outlook Calendar. With \"Two-way front-end only\" sync Bookly will additionally fetch events from Outlook Calendar and remove corresponding time slots before displaying the Time step of the booking form (this may lead to a delay when users click Next to get to the Time step). With \"Two-way\" sync all bookings created in Bookly Calendar will be automatically copied to Outlook Calendar and vice versa."
7219
- msgstr "Mit \"One-Way\" -Synchronisation schiebt Bookly neue Termine und alle weiteren Änderungen in Outlook-Kalender. Mit \"Two-way front-end only \" synchronisiert Bookly zusätzlich Ereignisse aus dem Outlook-Kalender und entfernt entsprechende Zeitfenster, bevor der Zeitschritt des Buchungsformulars angezeigt wird. Dies kann zu einer Verzögerung führen, wenn Benutzer auf Weiter klicken, um zum Zeitschritt zu gelangen). Bei der \"Two-way\" -Synchronisierung werden alle Buchungen, die im Bookly Kalender erstellt wurden, automatisch in den Outlook-Kalender kopiert und umgekehrt.\n"
 
 
 
7220
  "\n"
7221
- ""
7222
-
7223
- #:
7224
- msgid "Copy Outlook Calendar event titles"
7225
- msgstr "Kopieren Sie die Ereignistitel des Outlook-Kalenders"
7226
 
7227
- #:
7228
- msgid "If enabled then titles of Outlook Calendar events will be copied to Bookly appointments. If disabled, a standard title \"Outlook Calendar event\" will be used."
7229
- msgstr "Wenn diese Option aktiviert ist, werden Titel von Outlook-Kalenderereignissen in Bookly-Termine kopiert. Wenn die Option deaktiviert ist, wird ein Standardtitel \"Outlook-Kalenderereignis\" verwendet."
7230
 
7231
- #:
7232
- msgid "If there is a lot of events in Outlook Calendar sometimes this leads to a lack of memory in PHP when Bookly tries to fetch all events. You can limit the number of fetched events here."
7233
- msgstr "Wenn in Outlook Kalender viele Ereignisse vorhanden sind, führt dies manchmal zu einem Mangel an Arbeitsspeicher in PHP, wenn Bookly versucht, alle Ereignisse abzurufen. Sie können die Anzahl der abgerufenen Ereignisse hier begrenzen."
7234
 
7235
- #:
7236
- msgid "Configure what information should be placed in the title of Outlook Calendar event. Available codes are {service_name}, {staff_name} and {client_names}."
7237
- msgstr "Konfigurieren Sie, welche Informationen in den Titel des Outlook-Kalenderereignisses eingefügt werden sollen. Verfügbare Codes sind {service_name}, {staff_name} und {client_names}."
7238
 
7239
- #:
7240
- msgid "Outlook Calendar"
7241
- msgstr "Outlook Kalender"
7242
 
7243
- #:
7244
- msgid "Synchronize with Outlook Calendar"
7245
- msgstr "Mit Outlook Kalender synchronisieren"
7246
 
7247
- #:
7248
- msgid "Set maximum value for Quantity field."
7249
- msgstr ""
7250
 
7251
- #:
7252
- msgid "Multiply Appointments"
7253
- msgstr ""
7254
 
7255
- #:
7256
- msgid "Advanced"
7257
- msgstr ""
7258
 
7259
- #:
7260
- msgid "Dashboard"
7261
- msgstr ""
7262
 
7263
- #:
7264
- msgid "See the number of appointments and total revenue for the selected period"
7265
- msgstr ""
7266
 
7267
- #:
7268
- msgid "Revenue"
7269
- msgstr ""
7270
 
7271
- #:
7272
- msgid "Approved appointments"
7273
- msgstr ""
7274
 
7275
- #:
7276
- msgid "Pending appointments"
7277
- msgstr ""
7278
 
7279
- #:
7280
- msgid "Limit"
7281
- msgstr ""
7282
 
7283
- #:
7284
- msgid "Note: If payment is made for several services, then for each service you will see the entire amount paid as revenue."
7285
- msgstr ""
7286
 
7287
- #:
7288
- msgid "Quick search services"
7289
  msgstr ""
 
7290
 
7291
- #:
7292
- msgid "Categories..."
7293
- msgstr ""
7294
 
7295
- #:
7296
- msgid "Add service..."
 
7297
  msgstr ""
 
 
7298
 
7299
- #:
7300
- msgid "Add..."
7301
- msgstr ""
7302
 
7303
- #:
7304
- msgid "Create service"
7305
  msgstr ""
 
7306
 
7307
- #:
7308
- msgid "Edit service"
7309
- msgstr ""
7310
 
7311
- #:
7312
- msgid "Categories"
7313
- msgstr ""
7314
 
7315
- #:
7316
- msgid "Add category"
7317
  msgstr ""
 
7318
 
7319
- #:
7320
- msgid "You must select at least one repeat option for recurring services."
7321
- msgstr ""
7322
 
7323
- #:
7324
- msgid "1. Provide <b>Secret</b> and <b>Publishable</b> keys which are available in the <a href=\"%s\" target=\"_blank\">Dashboard</a>."
7325
- msgstr ""
7326
 
7327
- #:
7328
- msgid "2. In the Dashboard's <a href=\"%s\" target=\"_blank\">Webhooks settings</a> section, click <b>Add endpoint</b> to reveal a form to add a new endpoint for receiving events."
7329
- msgstr ""
7330
 
7331
- #:
7332
- msgid "Quick search staff"
7333
- msgstr ""
7334
 
7335
- #:
7336
- msgid "Add staff..."
7337
- msgstr ""
7338
 
7339
- #:
7340
- msgid "Create staff"
7341
- msgstr ""
7342
 
7343
- #:
7344
- msgid "Edit staff"
7345
- msgstr ""
7346
 
7347
- #:
7348
- msgid "This service is no longer provided."
7349
- msgstr ""
7350
 
7351
- #:
7352
- msgid "3. Enter the following URL as the destination for events <b>%s</b> and click <b>Add endpoint</b>."
7353
- msgstr ""
7354
 
7355
- #:
7356
- msgid "4. Add these events: <b>payment_intent.succeeded</b>, <b>payment_intent.payment_failed</b> and click <b>Add endpoint</b>."
7357
  msgstr ""
 
 
7358
 
7359
- #:
7360
- msgid "Bookly Stripe add-on has been upgraded to support <a href=\"%s\" target=\"_blank\">SCA</a>. You must update your Stripe settings to keep the integration with the upgraded add-on."
7361
- msgstr ""
7362
 
7363
- #:
7364
- msgid "1. Make sure that <b>Publishable Key</b> is provided in <a href=\"%s\">payment settings</a>."
7365
- msgstr ""
7366
 
7367
- #:
7368
- msgid "Sign in to the <a href=\"%s\" target=\"_blank\">Azure portal</a> using either a work or school account or a personal Microsoft account."
 
 
7369
  msgstr ""
 
 
7370
 
7371
- #:
7372
- msgid "If your account gives you access to more than one tenant, select your account in the top right corner, and set your portal session to the Azure AD tenant that you want."
 
 
 
7373
  msgstr ""
 
 
 
7374
 
7375
- #:
7376
- msgid "In the left-hand navigation pane, select the <b>Azure Active Directory</b> service, and then select <b>App registrations &gt; New registration</b>."
 
 
7377
  msgstr ""
 
 
7378
 
7379
- #:
7380
- msgid "When the <b>Register an application</b> page appears, enter your application's <b>Name</b> and <b>Redirect URI</b> found below on this page. When finished, select <b>Register</b>."
 
7381
  msgstr ""
 
 
7382
 
7383
- #:
7384
- msgid "Azure AD assigns a unique application (client) ID to your app, and you're taken to your application's <b>Overview</b> page."
7385
- msgstr ""
7386
 
7387
- #:
7388
- msgid "Copy the <b>Application (client) ID</b> and insert it into the form below on this page."
7389
- msgstr ""
7390
 
7391
- #:
7392
- msgid "Under <b>Certificates &amp; secrets</b>, choose <b>New client secret</b>, set <b>Expires</b> to <b>Never</b> and click <b>Add</b>. Copy the app secret from the <b>Client secrets</b> list before leaving the page. Insert the secret into the form below on this page."
 
 
 
7393
  msgstr ""
 
 
 
 
7394
 
7395
- #:
7396
- msgid "Under <b>API permissions</b>, choose <b>Add a permission</b>, and select <b>Microsoft Graph &gt; Delegated permissions</b>. In <b>Select permissions</b> find <b>Calendars.ReadWrite</b>, select it and click <b>Add permissions</b> button."
 
 
7397
  msgstr ""
 
 
7398
 
7399
- #:
7400
- msgid "To receive REST API credentials, in <b>My Apps & Credentials</b> of your PayPal account do the following steps:"
 
 
7401
  msgstr ""
 
 
7402
 
7403
- #:
7404
- msgid "Click <b>Create App</b> and enter application details."
7405
- msgstr ""
7406
 
7407
- #:
7408
- msgid "Once created, copy <b>Client ID</b> and <b>Secret</b> and use them in the form below."
7409
- msgstr ""
7410
 
7411
- #:
7412
- msgid "Secret"
7413
- msgstr ""
7414
 
7415
- #:
7416
- msgid "Admins"
 
 
 
 
 
 
 
 
7417
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
7418
 
7419
- #:
7420
- msgid "Searching"
7421
- msgstr ""
7422
 
7423
- #:
7424
- msgid "Hope you had a good weekend! Here's a summary of messages we've delivered last week:\n"
7425
- "{notification_list}\n"
7426
- "\n"
7427
- "Your system sent a total of {total} messages last week (that's {delta} {sign} than the week before).\n"
7428
- "Cost of sending {total} messages was {amount}. Your current Bookly SMS balance is {balance}.\n"
7429
- "\n"
7430
- "Thank you for using Bookly SMS. We wish you a lucky week!\n"
7431
- "Bookly SMS Team"
7432
  msgstr ""
 
 
 
7433
 
 
 
3
  "MIME-Version: 1.0\n"
4
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "Content-Transfer-Encoding: 8bit\n"
6
+ "X-Generator: Loco https://localise.biz/\n"
7
  "Project-Id-Version: Bookly\n"
8
+ "Language: de_DE\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-12-09 15:21+0000\n"
12
+ "PO-Revision-Date: 2019-12-09 15:39+0000\n"
13
+ "Last-Translator: support@bookly.info\n"
14
+ "Language-Team: German\n"
15
+ "X-Loco-Version: 2.3.1; wp-5.3"
16
 
17
+ msgid "Invoice #{invoice_number} for your appointment"
18
+ msgstr "Abrechnung #{invoice_number} für Ihren Termin"
 
19
 
20
+ msgid ""
21
+ "Dear {client_name}.\n"
22
+ "\n"
23
+ "Attached please find invoice #{invoice_number} for your appointment.\n"
24
+ "\n"
25
+ "Thank you for choosing our company.\n"
26
+ "\n"
27
+ "{company_name}\n"
28
+ "{company_phone}\n"
29
+ "{company_website}"
30
+ msgstr ""
31
+ "\n"
32
+ " Lieber {client_name}.\n"
33
+ "\n"
34
+ "Im Anhang finden Sie die Abrechnung #{invoice_number} für Ihren Termin\n"
35
+ "\n"
36
+ "Vielen Dank, dass Sie unser Unternehmen gewählt haben\n"
37
+ "\n"
38
+ "{company_name}\n"
39
+ "{company_phone}\n"
40
+ "{company_website}\n"
41
 
42
+ msgid "New invoice"
43
+ msgstr "Neue Abrechnung"
 
44
 
45
+ msgid ""
46
+ "Hello.\n"
47
+ "You have a new invoice #{invoice_number} for an appointment scheduled by "
48
+ "{client_first_name} {client_last_name}.\n"
49
+ "Please download invoice here: {invoice_link}"
50
+ msgstr ""
51
+ "Hallo.\n"
52
+ "Sie haben eine neue Abrechnung #{invoice_number} für einen Termin, "
53
+ "vorgesehen von {client_first_name} {client_last_name}.\n"
54
+ "Bitte laden Sie die Abrechnung hier {invoice_link} herunter"
55
 
56
+ msgid "BILL TO"
57
+ msgstr "RECHNUNG AN"
 
58
 
59
+ msgid "Invoice#"
60
+ msgstr "Abrechnung# "
 
61
 
62
+ msgid "Date"
63
+ msgstr "Datum"
 
64
 
65
+ msgid "Due date"
66
+ msgstr "Stichtag"
 
67
 
68
+ msgid "INVOICE"
69
+ msgstr "ABRECHNUNG"
 
70
 
71
+ msgid "Thank you for your business"
72
+ msgstr "Vielen Dank für Ihr Geschäft"
 
73
 
74
+ msgid ""
75
+ "Invoices add-on requires your customers address information. So options "
76
+ "\"Make address field mandatory\" in Settings/Customers and \"Show address "
77
+ "field\" in Appearance/Details are activated automatically and can be "
78
+ "disabled after Invoices add-on is deactivated."
79
+ msgstr ""
80
+ "Das Add-On für Rechnungen erfordert die Adressinformationen Ihrer Kunden. "
81
+ "Daher werden die Optionen \"Adressfeld als Pflichtfeld\" in \"Einstellungen "
82
+ "/ Kunden\" und \"Adressfeld anzeigen\" in \"Aussehen / Details\" automatisch "
83
+ "aktiviert und können deaktiviert werden, nachdem das Add-On \"Rechnungen\" "
84
+ "deaktiviert wurde.\n"
85
+ "\n"
86
 
87
+ msgid "Invoice due days"
88
+ msgstr "Abrechnung fällig am"
 
89
 
90
+ msgid "This setting specifies the due period for the invoice (in days)."
91
+ msgstr "Diese Einstellung bestimmt den Zeitraum für die Abrechnung (in Tagen)."
 
92
 
93
+ msgid "Invoice template"
94
+ msgstr "Abrechnungsvorlage"
 
95
 
96
+ msgid "Specify the template for the invoice."
97
+ msgstr "Bestimmen Sie die Vorlage für die Abrechnung."
 
98
 
99
+ msgid "Preview"
100
+ msgstr "Vorschau"
101
+
102
+ msgid "Invoices"
103
+ msgstr "Abrechnungen"
104
 
 
105
  msgid "Settings saved."
106
  msgstr "Einstellung wurden gespeichert."
107
 
108
+ msgid "Download invoices"
109
+ msgstr "Abrechnungen herunterladen"
 
110
 
111
+ msgid "invoice creation date"
112
+ msgstr "Abrechnungserstellungsdatum"
 
113
 
114
+ msgid "due date of invoice"
115
+ msgstr "Tage bis zur Abrechnung"
 
116
 
117
+ msgid "number of days to submit payment"
118
+ msgstr "Anzahl der Tage zur Zahlungsübermittlung"
 
119
 
120
+ msgid "invoice link"
121
+ msgstr "Abrechnungslink"
 
122
 
123
+ msgid "invoice number"
124
+ msgstr "Abrechnungsnummer"
 
125
 
126
+ msgid "Attach invoice"
127
+ msgstr "Abrechnung anhängen"
 
128
 
129
+ msgid ""
130
+ "Invoice due days: Please enter value in the following range (in days) - 1 to "
131
+ "365."
132
+ msgstr ""
133
+ "Tage bis zur Abrechnung: Bitte geben Sie einen Wert in folgendem Bereich "
134
+ "an(in Tage) - 1 bis 365"
135
 
136
+ msgid "Service"
137
+ msgstr "Dienstleistung"
 
138
 
139
+ msgid "Provider"
140
+ msgstr "Dienstleister"
 
141
 
142
+ msgid "Deposit"
143
+ msgstr "Anzahlung"
 
144
 
145
+ msgid "Price"
146
+ msgstr "Preis"
 
147
 
148
+ msgid "Tax"
149
+ msgstr "Steuer"
 
150
 
151
+ msgid "N/A"
152
+ msgstr "n.a."
 
153
 
154
+ msgid "Subtotal"
155
+ msgstr "Zwischensumme"
 
156
 
157
+ msgid "Coupon discount"
158
+ msgstr "Rabatt durch Gutschein"
 
159
 
160
+ msgid "Group discount"
161
+ msgstr "Gruppenrabatt"
 
162
 
163
+ msgid "Total"
164
+ msgstr "Gesamt"
 
165
 
166
+ msgid "Paid"
167
+ msgstr "Bezahlt"
 
168
 
169
+ msgid "Due"
170
+ msgstr "Während"
 
171
 
172
+ msgid "Discount"
173
+ msgstr "Rabatt"
 
174
 
175
+ msgid "Outlook Calendar event"
176
+ msgstr "Outlook Kalender Ereignis"
 
177
 
178
+ msgid "Name"
179
+ msgstr "Name"
 
180
 
181
+ msgid "Email"
182
+ msgstr "E-Mail"
 
183
 
184
+ msgid "Phone"
185
+ msgstr "Telefon"
 
186
 
187
+ msgid "Outlook Calendar integration"
188
+ msgstr "Outlook Kalender Integrierung"
 
189
 
190
+ msgid "Synchronize staff member appointments with Outlook Calendar."
191
+ msgstr "Synchronisieren Sie Mitgliedertermine mit Outlook-Kalender."
 
192
 
193
+ msgid "Connect"
194
+ msgstr "Verbinden"
 
195
 
196
+ #, php-format
197
+ msgid "Please configure Outlook Calendar <a href=\"%s\">settings</a> first"
198
+ msgstr ""
199
+ "Bitte konfigurieren Sie zuerst den Outlook Kalender <a href=\"%s\">"
200
+ "settings</a> first\n"
201
+ "\n"
202
 
203
+ msgid "Connected"
204
+ msgstr "Verbunden"
 
205
 
206
+ msgid "disconnect"
207
+ msgstr "Verbindung lösen"
 
208
 
209
+ msgid "Calendar"
210
+ msgstr "Kalender"
 
211
 
212
+ msgid ""
213
+ "When you connect a calendar all future and past events will be synchronized "
214
+ "according to the selected synchronization mode. This may take a few minutes. "
215
+ "Please wait."
216
+ msgstr ""
217
+ "Wenn Sie einen Kalender hinzufügen, dann werden alle zukünftigen und "
218
+ "vergangenen Ereignisse angeglichen, entsprechend dem Synchronisierungs-modus."
219
+ " Das kann ein paar Minuten dauern. Bitte warten Sie. "
220
 
221
+ msgid "-- Select calendar --"
222
+ msgstr "-- Kalender auswählen --"
 
223
 
224
+ msgid "Can't change calendar for archived staff"
225
+ msgstr ""
226
+ "Der Kalender kann für die archivierten Mitarbeiter nicht verändert werden"
227
 
228
+ msgid "Instructions"
229
+ msgstr "Anweisungen"
 
230
 
231
+ msgid ""
232
+ "Important: Your website must use <b>HTTPS</b>. The Outlook Calendar API will "
233
+ "not work with your website if there is no valid SSL certificate installed on "
234
+ "your web server."
235
+ msgstr ""
236
+ "Wichtig: Deine Webseite muss <b>HTTPS</b> unterstützen. Der Outlook Kalender "
237
+ "API wird mit Ihrer Webseite nicht funktionieren, wenn kein gültiges SSL "
238
+ "Zertifikat auf ihrem Webserver installiert ist.\n"
239
+ "\n"
240
 
241
+ msgid "To find your Application ID and Application Secret, do the following:"
242
+ msgstr ""
243
+ "Gehen Sie folgendermaßen vor, um Ihre Anwendungs-ID und Ihr "
244
+ "Anwendungsgeheimnis zu finden:\n"
245
+ "\n"
246
 
247
+ #, php-format
248
+ msgid ""
249
+ "Sign in to the <a href=\"%s\" target=\"_blank\">Azure portal</a> using "
250
+ "either a work or school account or a personal Microsoft account."
251
+ msgstr ""
252
+ "Melden Sie sich beim <a href=\"%s\" target=\"_blank\">Azure-Portal</a> mit "
253
+ "einem Arbeits- oder Schulkonto oder einem persönlichen Microsoft-Konto an."
254
 
255
+ msgid ""
256
+ "If your account gives you access to more than one tenant, select your "
257
+ "account in the top right corner, and set your portal session to the Azure AD "
258
+ "tenant that you want."
259
+ msgstr ""
260
+ "Wenn Ihr Konto Ihnen Zugriff auf mehr als einen Mandanten gewährt, wählen "
261
+ "Sie Ihr Konto in der oberen rechten Ecke aus und stellen Sie Ihre "
262
+ "Portalsitzung auf den gewünschten Azure AD-Mieter ein."
263
 
264
+ msgid ""
265
+ "In the left-hand navigation pane, select the <b>Azure Active Directory</b> "
266
+ "service, and then select <b>App registrations &gt; New registration</b>."
267
+ msgstr ""
268
+ "Wählen Sie im linken Navigationsbereich den Dienst <b>Azure Active "
269
+ "Directory</b> und dann <b>App-Registrierungen &gt; Neue Registrierung</b>."
270
 
271
+ msgid ""
272
+ "When the <b>Register an application</b> page appears, enter your "
273
+ "application's <b>Name</b> and <b>Redirect URI</b> found below on this page. "
274
+ "When finished, select <b>Register</b>."
275
+ msgstr ""
276
+ "Wenn die Seite <b>Registrieren einer Anwendung</b> erscheint, geben Sie die "
277
+ "<b>Name</b> und <b>Redirect URI</b> Ihrer Anwendung ein, die Sie unten auf "
278
+ "dieser Seite finden. Wenn Sie fertig sind, wählen Sie <b>Registrieren</b>."
279
 
280
+ msgid ""
281
+ "Azure AD assigns a unique application (client) ID to your app, and you're "
282
+ "taken to your application's <b>Overview</b> page."
283
+ msgstr ""
284
+ "Azure AD weist Ihrer App eine eindeutige Anwendungs-ID (Client) zu, und Sie "
285
+ "werden zur Seite <b>Übersicht</b> Ihrer Anwendung weitergeleitet."
 
286
 
287
+ msgid ""
288
+ "Copy the <b>Application (client) ID</b> and insert it into the form below on "
289
+ "this page."
290
+ msgstr ""
291
+ "Kopieren Sie die <b>Application (client) ID</b> und fügen Sie sie in das "
292
+ "untenstehende Formular auf dieser Seite ein."
293
 
294
+ msgid ""
295
+ "Under <b>Certificates &amp; secrets</b>, choose <b>New client secret</b>, "
296
+ "set <b>Expires</b> to <b>Never</b> and click <b>Add</b>. Copy the app secret "
297
+ "from the <b>Client secrets</b> list before leaving the page. Insert the "
298
+ "secret into the form below on this page."
299
+ msgstr ""
300
+ "Wählen Sie unter <b>Zertifikate &amp; Geheimnisse</b> <b>Neues "
301
+ "Kundengeheimnis</b>, setzen Sie <b>Ausläufe</b> auf <b>Niemals</b> und "
302
+ "klicken Sie auf <b>Add</b>. Kopieren Sie das App-Geheimnis aus der Liste <b>"
303
+ "Clientgeheimnisse</b>, bevor Sie die Seite verlassen. Fügen Sie das Secret "
304
+ "in das untenstehende Formular auf dieser Seite ein."
305
 
306
+ msgid ""
307
+ "Under <b>API permissions</b>, choose <b>Add a permission</b>, and select <b>"
308
+ "Microsoft Graph &gt; Delegated permissions</b>. In <b>Select permissions</b> "
309
+ "find <b>Calendars.ReadWrite</b>, select it and click <b>Add permissions</b> "
310
+ "button."
311
+ msgstr ""
312
+ "Wählen Sie unter <b>API-Berechtigungen</b> <b>Add a permission</b>, und "
313
+ "wählen Sie <b>Microsoft Graph &gt; Delegierte Berechtigungen</b>. Wählen Sie "
314
+ "unter <b>Berechtigungen auswählen</b> <b>Kalender.ReadWrite</b>, markieren "
315
+ "Sie es und klicken Sie auf die Schaltfläche <b>Berechtigungen hinzufügen</b>."
316
 
317
+ msgid "<b>Save</b> your changes."
318
+ msgstr ""
319
+ "\n"
320
+ "<b>Speichern</b> Sie Ihre Veränderungen.\n"
321
+ "\n"
322
+ "\n"
323
 
324
+ msgid ""
325
+ "Go to Staff Members, select a staff member and click <b>Connect</b> which is "
326
+ "located at the bottom of the page."
327
+ msgstr ""
328
+ "Gehen Sie zu Mitarbeiter und wählen Sie einen Mitarbeiter. Klicken Sie auf "
329
+ "<b>Connect</b> am unteren Rand der Seite."
330
 
331
+ msgid "Application ID"
332
+ msgstr "Anwendungs ID"
 
333
 
334
+ msgid "The Application ID obtained from the Microsoft App Registration Portal."
335
+ msgstr ""
336
+ "\n"
337
+ "Die Anwendungs ID erhalten Sie aus dem Microsoft App Registrierungs Portal.\n"
338
+ "\n"
339
 
340
+ msgid "Application secret"
341
+ msgstr "Anwendungspasswort"
 
342
 
343
+ msgid ""
344
+ "The Application Secret password obtained from the Microsoft App Registration "
345
+ "Portal."
346
+ msgstr ""
347
+ "Das Anwendungspasswort erhalten Sie aus dem Microsoft App "
348
+ "Registrierungsportal.\n"
349
+ "\n"
350
 
351
+ msgid "Redirect URI"
352
+ msgstr "Redirect URI"
 
353
 
354
+ msgid ""
355
+ "Enter this URL as a Redirect URLs in the Microsoft App Registration Portal."
356
+ msgstr ""
357
+ "Geben Sie diese URL als Weiterleitungs-URL im Microsoft App Registration "
358
+ "Portal ein."
359
 
360
+ msgid "Synchronization mode"
361
+ msgstr "Syncronisationsmodus"
 
362
 
363
+ msgid ""
364
+ "With \"One-way\" sync Bookly pushes new appointments and any further changes "
365
+ "to Outlook Calendar. With \"Two-way front-end only\" sync Bookly will "
366
+ "additionally fetch events from Outlook Calendar and remove corresponding "
367
+ "time slots before displaying the Time step of the booking form (this may "
368
+ "lead to a delay when users click Next to get to the Time step). With \"Two-"
369
+ "way\" sync all bookings created in Bookly Calendar will be automatically "
370
+ "copied to Outlook Calendar and vice versa."
371
+ msgstr ""
372
+ "Mit \"One-Way\" -Synchronisation schiebt Bookly neue Termine und alle "
373
+ "weiteren Änderungen in Outlook-Kalender. Mit \"Two-way front-end only \" "
374
+ "synchronisiert Bookly zusätzlich Ereignisse aus dem Outlook-Kalender und "
375
+ "entfernt entsprechende Zeitfenster, bevor der Zeitschritt des "
376
+ "Buchungsformulars angezeigt wird. Dies kann zu einer Verzögerung führen, "
377
+ "wenn Benutzer auf Weiter klicken, um zum Zeitschritt zu gelangen). Bei der "
378
+ "\"Two-way\" -Synchronisierung werden alle Buchungen, die im Bookly Kalender "
379
+ "erstellt wurden, automatisch in den Outlook-Kalender kopiert und umgekehrt.\n"
380
+ "\n"
381
 
382
+ msgid "One-way"
383
+ msgstr "Einweg"
 
384
 
385
+ msgid "Two-way front-end only"
386
+ msgstr "Bidirektional nur-Frontend"
 
387
 
388
+ msgid "Two-way"
389
+ msgstr "Two-way"
 
390
 
391
+ msgid "Sync appointments history"
392
+ msgstr "Terminhistorie synchronisieren"
 
393
 
394
+ msgid ""
395
+ "Specify how many days of past calendar data you wish to sync at the time of "
396
+ "initial sync. If you enter 0, synchronization of past events will not be "
397
+ "performed."
398
+ msgstr ""
399
+ "Legen Sie fest, wie viele Tage vom Zeitpunkt der Erstsynchronisation weit in "
400
+ "die Vergangenheit hinein noch die Kalenderdaten synchronisiert werden sollen."
401
+ " Wenn Sie 0 eingeben, werden die Daten aus der Vergangenheit nicht "
402
+ "übertragen."
403
 
404
+ msgid "Copy Outlook Calendar event titles"
405
+ msgstr "Kopieren Sie die Ereignistitel des Outlook-Kalenders"
 
406
 
407
+ msgid ""
408
+ "If enabled then titles of Outlook Calendar events will be copied to Bookly "
409
+ "appointments. If disabled, a standard title \"Outlook Calendar event\" will "
410
+ "be used."
411
+ msgstr ""
412
+ "Wenn diese Option aktiviert ist, werden Titel von Outlook-"
413
+ "Kalenderereignissen in Bookly-Termine kopiert. Wenn die Option deaktiviert "
414
+ "ist, wird ein Standardtitel \"Outlook-Kalenderereignis\" verwendet."
415
 
416
+ msgid "Limit number of fetched events"
417
+ msgstr "Limit der abgerufenen Ereignisse"
 
418
 
419
+ msgid ""
420
+ "If there is a lot of events in Outlook Calendar sometimes this leads to a "
421
+ "lack of memory in PHP when Bookly tries to fetch all events. You can limit "
422
+ "the number of fetched events here."
423
+ msgstr ""
424
+ "Wenn in Outlook Kalender viele Ereignisse vorhanden sind, führt dies "
425
+ "manchmal zu einem Mangel an Arbeitsspeicher in PHP, wenn Bookly versucht, "
426
+ "alle Ereignisse abzurufen. Sie können die Anzahl der abgerufenen Ereignisse "
427
+ "hier begrenzen."
428
 
429
+ msgid "Template for event title"
430
+ msgstr "Vorlage für Titel des Eintrages"
 
431
 
432
+ msgid ""
433
+ "Configure what information should be placed in the title of Outlook Calendar "
434
+ "event. Available codes are {service_name}, {staff_name} and {client_names}."
435
+ msgstr ""
436
+ "Konfigurieren Sie, welche Informationen in den Titel des Outlook-"
437
+ "Kalenderereignisses eingefügt werden sollen. Verfügbare Codes sind "
438
+ "{service_name}, {staff_name} und {client_names}."
439
 
440
+ msgid "Appointment section"
441
+ msgstr "Terminbereich"
 
442
 
443
+ msgid "This section describes information that is displayed about appointment."
444
+ msgstr ""
445
+ "Dieser Bereich gibt Informationen, die bei einem Termin angezeigt werden.\n"
446
+ "\n"
447
 
448
+ msgid "Customer section"
449
+ msgstr "Kundenbereich"
 
450
 
451
+ msgid ""
452
+ "This section describes information that is displayed about each participant "
453
+ "of the appointment."
454
+ msgstr ""
455
+ "Dieser Bereich gibt Information die über jeden Teilnehmer an dem Termin "
456
+ "angezeigt wird."
457
 
458
+ msgid "customer notes for appointment"
459
+ msgstr "Kundennotizen für den geplanten Termin"
 
460
 
461
+ msgid "email of client"
462
+ msgstr "E-Mail des Kunden"
 
463
 
464
+ msgid "full name of client"
465
+ msgstr "vollständiger Name des Kunden"
 
466
 
467
+ msgid "first name of client"
468
+ msgstr "Vorname des Kunden"
 
469
 
470
+ msgid "last name of client"
471
+ msgstr "Nachname des Kunden"
 
472
 
473
+ msgid "phone of client"
474
+ msgstr "Telefon des Kunden"
 
475
 
476
+ msgid "status of payment"
477
+ msgstr "Status der Zahlung"
 
478
 
479
+ msgid "payment type"
480
+ msgstr "Zahlungsart"
 
481
 
482
+ msgid "status of appointment"
483
+ msgstr "Status des Termins"
 
484
 
485
+ msgid "total price of booking (sum of all cart items after applying coupon)"
486
+ msgstr ""
487
+ "Gesamtpreis der Buchung (Summe aller Buchungen nach Gutschein-Anwendung)"
488
 
489
+ msgid "date of appointment"
490
+ msgstr "Datum des Termins"
 
491
 
492
+ msgid "time of appointment"
493
+ msgstr "Zeitpunkt des Termins"
 
494
 
495
+ msgid "booking number"
496
+ msgstr "Buchungsnummer"
 
497
 
498
+ msgid "name of category"
499
+ msgstr "Name der Kategorie"
 
500
 
501
+ msgid "address of company"
502
+ msgstr "Adresse des Unternehmens"
 
503
 
504
+ msgid "name of company"
505
+ msgstr "Name des Unternehmens"
 
506
 
507
+ msgid "company phone"
508
+ msgstr "Firmentelefon"
 
509
 
510
+ msgid "company web-site address"
511
+ msgstr "Unternehmens Website-Adresse"
 
512
 
513
+ msgid "info of service"
514
+ msgstr "Informationen zur Dienstleistung"
 
515
 
516
+ msgid "name of service"
517
+ msgstr "Name der Dienstleistung"
 
518
 
519
+ msgid "price of service"
520
+ msgstr "Preis der Dienstleistung"
 
521
 
522
+ msgid "email of staff"
523
+ msgstr "E-Mail des Mitarbeiters"
 
524
 
525
+ msgid "info of staff"
526
+ msgstr "Informationen zum Mitarbeiter"
 
527
 
528
+ msgid "name of staff"
529
+ msgstr "Name des Mitarbeiters"
 
530
 
531
+ msgid "phone of staff"
532
+ msgstr "Telefon des Mitarbeiters"
 
533
 
534
+ msgid "Outlook Calendar"
535
+ msgstr "Outlook Kalender"
 
536
 
537
+ msgid "Disabled"
538
+ msgstr "Gesperrt"
 
539
 
540
+ msgid "Synchronize with Outlook Calendar"
541
+ msgstr "Mit Outlook Kalender synchronisieren"
 
542
 
543
+ msgid "Calendars synchronized successfully."
544
+ msgstr "Kalender erfolgreich synchronisiert"
 
545
 
546
+ msgid "Custom Fields"
547
+ msgstr "Benutzerdefinierte Felder"
 
548
 
549
+ msgid "Incorrect code"
550
+ msgstr "Falscher Code"
 
551
 
552
+ msgid "Required"
553
+ msgstr "Erforderlich"
 
554
 
555
+ msgid "combined values of all custom fields"
556
+ msgstr "Kombination der Werte aller benutzerdefinierten Felder"
 
557
 
558
+ msgid "Bind fields to services"
559
+ msgstr "Verknüpft Felder mit Dienstleistungen."
 
560
 
561
+ msgid ""
562
+ "When this setting is enabled you will be able to create service specific "
563
+ "custom fields."
564
+ msgstr ""
565
+ "Wenn diese Einstellung aktiviert ist, können Sie Service-spezifische "
566
+ "benutzerdefinierte Felder erstellen."
567
 
568
+ msgid "Merge repeating custom fields for multiple bookings of the service"
569
+ msgstr ""
570
+ "Wiederholte benutzerdefinierte Felder für mehrere Buchungen des Service "
571
+ "zusammenführen"
572
 
573
+ msgid ""
574
+ "If enabled, customers will see custom fields for unique appointments while "
575
+ "booking multiple instances of the service. Repeating custom fields are "
576
+ "merged (collapsed) into one field. If disabled, customers will see custom "
577
+ "fields for each appointment in the set of bookings."
578
+ msgstr ""
579
+ "Wenn diese Option aktiviert ist, sehen Kunden beim Buchen mehrerer Instanzen "
580
+ "des Service benutzerdefinierte Felder für eindeutige Termine. Wiederholte "
581
+ "benutzerdefinierte Felder werden in einem Feld zusammengeführt (minimiert). "
582
+ "Wenn diese Option deaktiviert ist, werden den Kunden benutzerdefinierte "
583
+ "Felder für jeden Termin im Buchungssatz angezeigt."
584
 
585
+ msgid "Text Field"
586
+ msgstr "Text-Feld"
 
587
 
588
+ msgid "Text Area"
589
+ msgstr "Textbereich"
 
590
 
591
+ msgid "Text Content"
592
+ msgstr "Textinhalt"
 
593
 
594
+ msgid "Checkbox Group"
595
+ msgstr "CheckBox-Gruppe"
 
596
 
597
+ msgid "Radio Button Group"
598
+ msgstr "Radio Button-Gruppe"
 
599
 
600
+ msgid "Drop Down"
601
+ msgstr "Drop-Down"
 
602
 
603
+ msgid "Captcha"
604
+ msgstr "Captcha"
 
605
 
606
+ msgid "HTML allowed in all texts and labels."
607
+ msgstr "HTML in allen Texten und Beschriftungen erlaubt."
 
 
 
608
 
609
+ msgid "Reorder"
610
+ msgstr "Nachbestellung"
 
611
 
612
+ msgid "Remove field"
613
+ msgstr "Feld entfernen"
 
614
 
615
+ msgid "Enter a label"
616
+ msgstr "Geben Sie eine Bezeichnung ein"
 
617
 
618
+ msgid "Required field"
619
+ msgstr "Pflichtfeld"
 
620
 
621
+ msgid "Enter a content"
622
+ msgstr "Geben Sie einen Inhalt ein"
 
623
 
624
+ msgid "Checkbox"
625
+ msgstr "Checkbox"
 
626
 
627
+ msgid "Radio Button"
628
+ msgstr "Optionsfeld"
 
629
 
630
+ msgid "Option"
631
+ msgstr "Option"
 
632
 
633
+ msgid "Remove item"
634
+ msgstr "Buchung entfernen"
 
635
 
636
+ msgid "All services"
637
+ msgstr "Alle Dienstleistungen"
 
638
 
639
+ msgid "No service selected"
640
+ msgstr "Keine Dienstleistung ausgewählt"
 
641
 
642
+ msgid "Show custom fields"
643
+ msgstr "Benutzerdefinierte Felder anzeigen"
 
644
 
645
+ msgid "extended staff agenda for next day"
646
+ msgstr "Tagesordnung für den nächsten Tag erweitern"
 
647
 
648
+ msgid "combined values of all custom fields (formatted in 2 columns)"
649
+ msgstr ""
650
+ "Kombination der Werte aller benutzerdefinierten Felder (in 2 Spalten "
651
+ "formatiert)"
652
 
653
+ msgid "Another code"
654
+ msgstr "Ein weiterer Code"
 
655
 
656
+ msgid "Notification to customer about approved recurring appointment"
657
+ msgstr "Benachrichtigung des Kunden über genehmigte wiederkehrende Termine"
 
658
 
659
+ msgid "Your appointment information"
660
+ msgstr "Ihre Termininformation"
 
661
 
662
+ msgid ""
663
+ "Dear {client_name}.\n"
664
+ "\n"
665
+ "This is a confirmation that you have booked {service_name} (x "
666
+ "{recurring_count}).\n"
667
+ "\n"
668
+ "Please find the schedule of your booking below.\n"
669
+ "\n"
670
+ "{appointment_schedule}\n"
671
+ "\n"
672
+ "We are waiting you at {company_address}.\n"
673
+ "\n"
674
+ "Thank you for choosing our company.\n"
675
+ "\n"
676
+ "{company_name}\n"
677
+ "{company_phone}\n"
678
+ "{company_website}"
679
+ msgstr ""
680
+ "Lieber {client_name}.\n"
681
+ "\n"
682
+ "Dies ist eine Bestätigung, dass Sie {service_name} (x {recurring_count}) "
683
+ "gebucht haben.\n"
684
+ "\n"
685
+ "Nachfolgend finden Sie den Zeitplan Ihrer Buchung.\n"
686
+ "\n"
687
+ "(appointment_schedule)\n"
688
+ "\n"
689
+ "Wir erwarten Sie unter {company_address}.\n"
690
+ "\n"
691
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
692
+ "\n"
693
+ "{company_name}\n"
694
+ "{company_phone}\n"
695
+ "{company_website}"
696
 
697
+ msgid "Notification to staff member about approved recurring appointment"
698
+ msgstr ""
699
+ "Benachrichtigung des Mitarbeiters über genehmigte wiederkehrende Termine"
700
 
701
+ msgid "New booking information"
702
+ msgstr "Neue Buchungsinformation"
 
703
 
704
+ msgid ""
705
+ "Hello.\n"
706
+ "\n"
707
+ "You have a new booking.\n"
708
+ "\n"
709
+ "Service: {service_name} (x {recurring_count})\n"
710
+ "Schedule:\n"
711
+ "{appointment_schedule}\n"
712
+ "Client name: {client_name}\n"
713
+ "Client phone: {client_phone}\n"
714
+ "Client email: {client_email}"
715
+ msgstr ""
716
+ "Hallo.\n"
717
+ "\n"
718
+ "Sie haben eine neue Buchung.\n"
719
+ "\n"
720
+ "Service: {service_name} (x {recurring_count})\n"
721
+ "Zeitplan:\n"
722
+ "(appointment_schedule)\n"
723
+ "Kundenname: {client_name}\n"
724
+ "Kundentelefon: (client_phone)\n"
725
+ "Kunden-E-Mail: {client_email}"
726
 
727
+ msgid "Notification to customer about cancelled recurring appointment"
728
+ msgstr "Benachrichtigung des Kunden über abgesagte wiederkehrende Termine"
 
729
 
730
+ msgid "Booking cancellation"
731
+ msgstr "Buchungsstornierung"
 
732
 
733
+ msgid ""
734
+ "Dear {client_name}.\n"
735
+ "\n"
736
+ "Your booking of {service_name} (x {recurring_count}) has been cancelled.\n"
737
+ "\n"
738
+ "Reason: {cancellation_reason}\n"
739
+ "\n"
740
+ "Please find the schedule of the cancelled booking below:\n"
741
+ "\n"
742
+ "{appointment_schedule}\n"
743
+ "\n"
744
+ "Thank you for choosing our company.\n"
745
+ "\n"
746
+ "{company_name}\n"
747
+ "{company_phone}\n"
748
+ "{company_website}"
749
+ msgstr ""
750
+ "Lieber {client_name}.\n"
751
+ "\n"
752
+ "Ihre Buchung von {service_name} (x {recurring_count}) wurde storniert.\n"
753
+ "\n"
754
+ "Grund: {cancellation_reason}\n"
755
+ "\n"
756
+ "Den Zeitplan der stornierten Buchung finden Sie weiter unten:\n"
757
+ "\n"
758
+ "(appointment_schedule)\n"
759
+ "\n"
760
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
761
+ "\n"
762
+ "{company_name}\n"
763
+ "{company_phone}\n"
764
+ "{company_website}"
765
 
766
+ msgid "Notification to staff member about cancelled recurring appointment"
767
+ msgstr ""
768
+ "Benachrichtigungen an Mitarbeiter über wiederkehrende stornierte Termine"
769
 
770
+ msgid ""
771
+ "Hello.\n"
772
+ "\n"
773
+ "The following booking has been cancelled.\n"
774
+ "\n"
775
+ "Reason: {cancellation_reason}\n"
776
+ "\n"
777
+ "Service: {service_name} (x {recurring_count})\n"
778
+ "Schedule:\n"
779
+ "{appointment_schedule}\n"
780
+ "Client name: {client_name}\n"
781
+ "Client phone: {client_phone}\n"
782
+ "Client email: {client_email}"
783
+ msgstr ""
784
+ "Hallo.\n"
785
+ "\n"
786
+ "Die folgende Buchung wurde storniert.\n"
787
+ "\n"
788
+ "Grund: {cancellation_reason}\n"
789
+ "\n"
790
+ "Service: {service_name} (x {recurring_count})\n"
791
+ "Zeitplan:\n"
792
+ "(appointment_schedule)\n"
793
+ "Kundenname: {client_name}\n"
794
+ "Kundentelefon: (client_phone)\n"
795
+ "Kunden-E-Mail: {client_email}"
796
 
797
+ msgid "Notification to customer about rejected recurring appointment"
798
+ msgstr "Benachrichtigung des Kunden über abgelehnte wiederkehrende Termine"
 
799
 
800
+ msgid "Booking rejection"
801
+ msgstr "Buchung Ablehnung"
802
+
803
+ msgid ""
804
+ "Dear {client_name}.\n"
805
+ "\n"
806
+ "Your booking of {service_name} (x {recurring_count}) has been rejected.\n"
807
+ "\n"
808
+ "Reason: {cancellation_reason}\n"
809
+ "\n"
810
+ "Please find the schedule of the cancelled booking below:\n"
811
+ "\n"
812
+ "{appointment_schedule}\n"
813
+ "\n"
814
+ "Thank you for choosing our company.\n"
815
+ "\n"
816
+ "{company_name}\n"
817
+ "{company_phone}\n"
818
+ "{company_website}"
819
+ msgstr ""
820
+ "Lieber {client_name}.\n"
821
+ "\n"
822
+ "Ihre Buchung von {service_name} (x {recurring_count}) wurde abgelehnt.\n"
823
+ "\n"
824
+ "Grund: {cancellation_reason}\n"
825
+ "\n"
826
+ "Den Zeitplan der stornierten Buchung finden Sie weiter unten:\n"
827
+ "\n"
828
+ "(appointment_schedule)\n"
829
+ "\n"
830
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
831
+ "\n"
832
+ "{company_name}\n"
833
+ "{company_phone}\n"
834
+ "{company_website}"
835
+
836
+ msgid "Notification to staff member about rejected recurring appointment "
837
+ msgstr ""
838
+ "Benachrichtigung des Mitarbeiters über abgelehnte Wiederholungen appointment␣"
839
+
840
+ msgid ""
841
+ "Hello.\n"
842
+ "\n"
843
+ "The following booking has been rejected.\n"
844
+ "\n"
845
+ "Reason: {cancellation_reason}\n"
846
+ "\n"
847
+ "Service: {service_name} (x {recurring_count})\n"
848
+ "Schedule:\n"
849
+ "{appointment_schedule}\n"
850
+ "Client name: {client_name}\n"
851
+ "Client phone: {client_phone}\n"
852
+ "Client email: {client_email}"
853
+ msgstr ""
854
+ "Hallo.\n"
855
+ "\n"
856
+ "Die folgende Buchung wurde abgelehnt.\n"
857
+ "\n"
858
+ "Grund: {cancellation_reason}\n"
859
+ "\n"
860
+ "Service: {service_name} (x {recurring_count})\n"
861
+ "Zeitplan:\n"
862
+ "(appointment_schedule)\n"
863
+ "Kundenname: {client_name}\n"
864
+ "Kundentelefon: (client_phone)\n"
865
+ "Kunden-E-Mail: {client_email}"
866
+
867
+ msgid ""
868
+ "Notification to customer about placing on waiting list for recurring "
869
+ "appointment"
870
+ msgstr ""
871
+ "Benachrichtigung des Kunden über die Aufnahme auf die Warteliste für "
872
+ "wiederkehrende Termine"
873
+
874
+ msgid "You have been added to waiting list for appointment"
875
+ msgstr "Sie wurden auf die Warteliste für einen Termin gesetzt."
876
+
877
+ msgid ""
878
+ "Dear {client_name}.\n"
879
+ "\n"
880
+ "This is a confirmation that you have been added to the waiting list for "
881
+ "{service_name} (x {recurring_count}).\n"
882
+ "\n"
883
+ "Please find the service schedule below.\n"
884
+ "\n"
885
+ "{appointment_schedule}\n"
886
+ "\n"
887
+ "Thank you for choosing our company.\n"
888
+ "\n"
889
+ "{company_name}\n"
890
+ "{company_phone}\n"
891
+ "{company_website}"
892
+ msgstr ""
893
+ "Lieber {client_name}.\n"
894
+ "\n"
895
+ "Dies ist eine Bestätigung, dass Sie zur Warteliste für {service_name} (x "
896
+ "{recurring_count}) hinzugefügt wurden.\n"
897
+ "\n"
898
+ "Nachfolgend finden Sie den Serviceplan.\n"
899
+ "\n"
900
+ "(appointment_schedule)\n"
901
+ "\n"
902
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
903
+ "\n"
904
+ "{company_name}\n"
905
+ "{company_phone}\n"
906
+ "{company_website}"
907
+
908
+ msgid ""
909
+ "Notification to staff member about placing on waiting list for recurring "
910
+ "appointment "
911
+ msgstr ""
912
+ "Benachrichtigung des Mitarbeiters über die Aufnahme auf die Warteliste für "
913
+ "wiederkehrende Anrufe appointment␣"
914
+
915
+ msgid "New waiting list information"
916
+ msgstr "Neue Wartelisteninformationen"
917
+
918
+ msgid ""
919
+ "Hello.\n"
920
+ "\n"
921
+ "You have new customer in the waiting list.\n"
922
+ "\n"
923
+ "Service: {service_name} (x {recurring_count})\n"
924
+ "Schedule:\n"
925
+ "{appointment_schedule}\n"
926
+ "Client name: {client_name}\n"
927
+ "Client phone: {client_phone}\n"
928
+ "Client email: {client_email}"
929
+ msgstr ""
930
+ "Hallo.\n"
931
+ "\n"
932
+ "Sie haben einen neuen Kunden auf der Warteliste.\n"
933
+ "\n"
934
+ "Service: {service_name} (x {recurring_count})\n"
935
+ "Zeitplan:\n"
936
+ "(appointment_schedule)\n"
937
+ "Kundenname: {client_name}\n"
938
+ "Kundentelefon: (client_phone)\n"
939
+ "Kunden-E-Mail: {client_email}"
940
+
941
+ msgid ""
942
+ "Dear {client_name}.\n"
943
+ "This is a confirmation that you have booked {service_name} (x "
944
+ "{recurring_count}).\n"
945
+ "Please find the schedule of your booking below.\n"
946
+ "{appointment_schedule}\n"
947
+ "\n"
948
+ "We are waiting you at {company_address}.\n"
949
+ "Thank you for choosing our company.\n"
950
+ "{company_name}\n"
951
+ "{company_phone}\n"
952
+ "{company_website}"
953
+ msgstr ""
954
+ "Lieber {client_name}.\n"
955
+ "Dies ist eine Bestätigung, dass Sie {service_name} (x {recurring_count}) "
956
+ "gebucht haben.\n"
957
+ "Nachfolgend finden Sie den Zeitplan Ihrer Buchung.\n"
958
+ "(appointment_schedule)\n"
959
+ "\n"
960
+ "Wir erwarten Sie unter {company_address}.\n"
961
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
962
+ "{company_name}\n"
963
+ "{company_phone}\n"
964
+ "{company_website}"
965
+
966
+ msgid ""
967
+ "Hello.\n"
968
+ "You have a new booking.\n"
969
+ "Service: {service_name} (x {recurring_count})\n"
970
+ "Schedule:\n"
971
+ "{appointment_schedule}\n"
972
+ "Client name: {client_name}\n"
973
+ "Client phone: {client_phone}\n"
974
+ "Client email: {client_email}"
975
+ msgstr ""
976
+ "Hallo.\n"
977
+ "Sie haben eine neue Buchung.\n"
978
+ "Service: {service_name} (x {recurring_count})\n"
979
+ "Zeitplan:\n"
980
+ "(appointment_schedule)\n"
981
+ "Kundenname: {client_name}\n"
982
+ "Kundentelefon: (client_phone)\n"
983
+ "Kunden-E-Mail: {client_email}"
984
+
985
+ msgid ""
986
+ "Dear {client_name}.\n"
987
+ "Your booking of {service_name} (x {recurring_count}) has been cancelled.\n"
988
+ "Reason: {cancellation_reason}\n"
989
+ "Please find the schedule of the cancelled booking below: "
990
+ "{appointment_schedule}\n"
991
+ "Thank you for choosing our company.\n"
992
+ "{company_name}\n"
993
+ "{company_phone}\n"
994
+ "{company_website}"
995
+ msgstr ""
996
+ "Lieber {client_name}.\n"
997
+ "Ihre Buchung von {service_name} (x {recurring_count}) wurde storniert.\n"
998
+ "Grund: {cancellation_reason}\n"
999
+ "Den Zeitplan der stornierten Buchung finden Sie weiter unten: "
1000
+ "(appointment_schedule)\n"
1001
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
1002
+ "Kundenname: {client_name}\n"
1003
+ "Kundentelefon: (client_phone)\n"
1004
+ "Kunden-E-Mail: {client_email}"
1005
+
1006
+ msgid "Notification to staff member about cancelled recurring appointment "
1007
+ msgstr ""
1008
+ "Benachrichtigung des Mitarbeiters über stornierte Wiederholungen appointment␣"
1009
+
1010
+ msgid ""
1011
+ "Hello.\n"
1012
+ "The following booking has been cancelled.\n"
1013
+ "Reason: {cancellation_reason}\n"
1014
+ "Service: {service_name} (x {recurring_count})\n"
1015
+ "Schedule:\n"
1016
+ "{appointment_schedule}\n"
1017
+ "Client name: {client_name}\n"
1018
+ "Client phone: {client_phone}\n"
1019
+ "Client email: {client_email}"
1020
+ msgstr ""
1021
+ "Hallo.\n"
1022
+ "Die folgende Buchung wurde storniert.\n"
1023
+ "Grund: {cancellation_reason}\n"
1024
+ "Service: {service_name} (x {recurring_count})\n"
1025
+ "Zeitplan:\n"
1026
+ "(appointment_schedule)\n"
1027
+ "Kundenname: {client_name}\n"
1028
+ "Kundentelefon: (client_phone)\n"
1029
+ "Kunden-E-Mail: {client_email}"
1030
+
1031
+ msgid ""
1032
+ "Dear {client_name}.\n"
1033
+ "Your booking of {service_name} (x {recurring_count}) has been rejected.\n"
1034
+ "Reason: {cancellation_reason}\n"
1035
+ "Please find the schedule of the cancelled booking below: "
1036
+ "{appointment_schedule}\n"
1037
+ "Thank you for choosing our company.\n"
1038
+ "{company_name}\n"
1039
+ "{company_phone}\n"
1040
+ "{company_website}"
1041
+ msgstr ""
1042
+ "Lieber {client_name}.\n"
1043
+ "Ihre Buchung von {service_name} (x {recurring_count}) wurde abgelehnt.\n"
1044
+ "Grund: {cancellation_reason}\n"
1045
+ "Den Zeitplan der abgelehnten Buchung finden Sie weiter unten: "
1046
+ "(appointment_schedule)\n"
1047
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
1048
+ "Kundenname: {client_name}\n"
1049
+ "Kundentelefon: (client_phone)\n"
1050
+ "Kunden-E-Mail: {client_email}"
1051
+
1052
+ msgid ""
1053
+ "Hello.\n"
1054
+ "The following booking has been rejected.\n"
1055
+ "Reason: {cancellation_reason}\n"
1056
+ "Service: {service_name} (x {recurring_count})\n"
1057
+ "Schedule:\n"
1058
+ "{appointment_schedule}\n"
1059
+ "Client name: {client_name}\n"
1060
+ "Client phone: {client_phone}\n"
1061
+ "Client email: {client_email}"
1062
+ msgstr ""
1063
+ "Hallo.\n"
1064
+ "Die folgende Buchung wurde abeglehnt.\n"
1065
+ "Grund: {cancellation_reason}\n"
1066
+ "Service: {service_name} (x {recurring_count})\n"
1067
+ "Zeitplan:\n"
1068
+ "(appointment_schedule)\n"
1069
+ "Kundenname: {client_name}\n"
1070
+ "Kundentelefon: (client_phone)\n"
1071
+ "Kunden-E-Mail: {client_email}"
1072
+
1073
+ msgid ""
1074
+ "Dear {client_name}.\n"
1075
+ "This is a confirmation that you have been added to the waiting list for "
1076
+ "{service_name} (x {recurring_count}).\n"
1077
+ "Please find the service schedule below.\n"
1078
+ "{appointment_schedule}\n"
1079
+ "Thank you for choosing our company.\n"
1080
+ "{company_name}\n"
1081
+ "{company_phone}\n"
1082
+ "{company_website}"
1083
+ msgstr ""
1084
+ "Lieber {client_name}.\n"
1085
+ "Dies ist eine Bestätigung, dass Sie zur Warteliste für {service_name} (x "
1086
+ "{recurring_count}) hinzugefügt wurden.\n"
1087
+ "Nachfolgend finden Sie den Serviceplan.\n"
1088
+ "(appointment_schedule)\n"
1089
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
1090
+ "Kundenname: {client_name}\n"
1091
+ "Kundentelefon: (client_phone)\n"
1092
+ "Kunden-E-Mail: {client_email}"
1093
+
1094
+ msgid ""
1095
+ "Hello.\n"
1096
+ "You have new customer in the waiting list.\n"
1097
+ "Service: {service_name} (x {recurring_count})\n"
1098
+ "Schedule:\n"
1099
+ "{appointment_schedule}\n"
1100
+ "Client name: {client_name}\n"
1101
+ "Client phone: {client_phone}\n"
1102
+ "Client email: {client_email}"
1103
+ msgstr ""
1104
+ "Hallo.\n"
1105
+ "Sie haben einen neuen Kunden auf der Warteliste.\n"
1106
+ "Service: {service_name} (x {recurring_count})\n"
1107
+ "Zeitplan:\n"
1108
+ "(appointment_schedule)\n"
1109
+ "Kundenname: {client_name}\n"
1110
+ "Kundentelefon: (client_phone)\n"
1111
+ "Kunden-E-Mail: {client_email}"
1112
+
1113
+ msgid "Repeat"
1114
+ msgstr "Wiederholen"
1115
+
1116
+ msgid "Next"
1117
+ msgstr "Weiter"
1118
+
1119
+ msgid ""
1120
+ "You selected a booking for {service_name} at {service_time} on {service_date}"
1121
+ ". If you would like to make this appointment recurring please check the box "
1122
+ "below and set appropriate parameters. Otherwise press Next button below."
1123
+ msgstr ""
1124
+ "Sie haben eine Buchung für {service_name} um {service_time} am {service_date}"
1125
+ " ausgewählt. Wenn Sie diesen Termin wiederholen möchten, kreuzen Sie bitte "
1126
+ "das Kästchen unten an und stellen Sie die entsprechenden Parameter ein. "
1127
+ "Andernfalls klicken Sie unten auf Weiter."
1128
+
1129
+ msgid "Another time"
1130
+ msgstr "anderer Zeitpunkt"
1131
+
1132
+ msgid "Biweekly"
1133
+ msgstr "Alle zwei Wochen"
1134
+
1135
+ msgid "Daily"
1136
+ msgstr "Täglich"
1137
+
1138
+ msgid "Day"
1139
+ msgstr "Tag"
1140
+
1141
+ msgid "day(s)"
1142
+ msgstr "Tag(e)"
1143
+
1144
+ msgid "Deleted"
1145
+ msgstr "Gelöscht"
1146
+
1147
+ msgid "every"
1148
+ msgstr "alle"
1149
+
1150
+ msgid ""
1151
+ "The first recurring appointment was added to cart. You will be invoiced for "
1152
+ "the remaining appointments later."
1153
+ msgstr ""
1154
+ "Der erste wiederkehrende Termin wurde in den Warenkorb gelegt. Die "
1155
+ "restlichen Termine werden Ihnen später in Rechnung gestellt."
1156
+
1157
+ msgid "Monthly"
1158
+ msgstr "Monatlich"
1159
 
1160
+ msgid "There are no available time slots for this day"
1161
+ msgstr "Für diesen Tag sind keine Termine verfügbar."
 
1162
 
1163
+ #. Need Context to define translation
1164
+ msgid "On"
1165
+ msgstr "An"
1166
 
1167
+ msgid "Please select some days"
1168
+ msgstr "Bitte wählen Sie einige Tage aus"
 
1169
 
1170
+ msgid "Schedule"
1171
+ msgstr "Zeitplan"
 
1172
 
1173
+ msgid "Another time was offered on pages {list}."
1174
+ msgstr "Eine andere Zeit wurde auf den Seiten {list} angeboten."
 
1175
 
1176
+ msgid ""
1177
+ "Some of the desired time slots are busy. System offers the nearest time slot "
1178
+ "instead. Click the Edit button to select another time if needed."
1179
+ msgstr ""
1180
+ "Einige der gewünschten Zeitfenster sind belegt. Das System bietet Ihnen "
1181
+ "stattdessen das nächstgelegene Zeitfenster an. Klicken Sie auf die "
1182
+ "Schaltfläche Bearbeiten, um bei Bedarf einen anderen Zeitpunkt auszuwählen."
1183
 
1184
+ msgid "Specific day"
1185
+ msgstr "Spezifischer Tag"
 
1186
 
1187
+ msgid "Repeat this appointment"
1188
+ msgstr "Diesen Termin wiederholen"
 
1189
 
1190
+ msgid "Until"
1191
+ msgstr "Bis"
 
1192
 
1193
+ msgid "Weekly"
1194
+ msgstr "Wöchentlich"
 
1195
 
1196
+ msgid "First"
1197
+ msgstr "Erste/r"
 
1198
 
1199
+ #. "Zweite" if female or neutral, "Zweiter" if male.
1200
+ msgid "Second"
1201
+ msgstr "Zweite"
1202
+
1203
+ #. "Dritte" if female or neutral, "Dritter" if male.
1204
+ msgid "Third"
1205
+ msgstr "Dritte"
1206
+
1207
+ #. "Vierte" if female or neutral, "Vierter" if male.
1208
+ msgid "Fourth"
1209
+ msgstr "Vierte"
1210
+
1211
+ msgid "Last"
1212
+ msgstr "Letzte/r"
1213
+
1214
+ msgid "or"
1215
+ msgstr "oder"
1216
+
1217
+ msgid "time(s)"
1218
+ msgstr "Zeit(en)"
1219
+
1220
+ msgid "Notification to customer about pending recurring appointment"
1221
+ msgstr "Benachrichtigung des Kunden über anstehende wiederkehrende Termine"
1222
+
1223
+ msgid "Notification to staff member about pending recurring appointment"
1224
+ msgstr ""
1225
+ "Benachrichtigung des Mitarbeiters über anstehende wiederkehrende Termine"
1226
+
1227
+ msgid ""
1228
+ "Notification to staff member about placing on waiting list for recurring "
1229
+ "appointment"
1230
+ msgstr ""
1231
+ "Benachrichtigungen an Mitarbeiter über Platzierungen auf der Warteliste "
1232
+ "wegen wiederkehrender Termine"
1233
+
1234
+ msgid "New recurring booking notification"
1235
+ msgstr "Neue wiederkehrende Buchungsbenachrichtigung"
1236
+
1237
+ msgid "Notification about recurring appointment status changes"
1238
+ msgstr "Benachrichtigung über wiederkehrende Terminstatusänderungen"
1239
+
1240
+ msgid "at"
1241
+ msgstr "am"
1242
+
1243
+ msgid "Online Payments"
1244
+ msgstr "Online Zahlungen"
1245
+
1246
+ msgid "Customers must pay only for the 1st appointment"
1247
+ msgstr "Kunden müssen lediglich für den ersten Termin zahlen"
1248
+
1249
+ msgid "Customers must pay for all appointments in series"
1250
+ msgstr "Kunden müssen für alle Termine der Serie zahlen"
1251
+
1252
+ msgid "Group appointments"
1253
+ msgstr "Gruppen Termine"
1254
+
1255
+ msgid "Create new appointment for every recurring booking"
1256
+ msgstr "Erstellen Sie neue Termine für jede auftretende Buchung."
1257
+
1258
+ msgid "Add customer to available group bookings"
1259
+ msgstr "Fügen Sie Kunden zu verfügbaren Gruppenbuchungen hinzu"
1260
+
1261
+ msgid "Recurring Appointments"
1262
+ msgstr "Wiederkehrende Termine"
1263
+
1264
+ msgid "Approve recurring appointment URL (success)"
1265
+ msgstr "Wiederkehrende Termin-Bestätigungs-URL (Erfolg)"
1266
+
1267
+ msgid ""
1268
+ "Set the URL of a page that is shown to staff after they successfully "
1269
+ "approved recurring appointment."
1270
+ msgstr ""
1271
+ "Legen Sie die URL einer Seite fest, die den Mitarbeitern angezeigt wird, "
1272
+ "nachdem sie einen wiederkehrenden Termin erfolgreich genehmigt haben."
1273
+
1274
+ msgid "Approve recurring appointment URL (denied)"
1275
+ msgstr "Wiederkehrende Termin-Bestätigungs-URL (Erfolg)"
1276
+
1277
+ msgid ""
1278
+ "Set the URL of a page that is shown to staff when the approval of recurring "
1279
+ "appointment cannot be done (changed status, etc.)."
1280
+ msgstr ""
1281
+ "Legen Sie die URL einer Seite fest, die dem Personal angezeigt wird, wenn "
1282
+ "die Genehmigung eines wiederkehrenden Termins nicht möglich ist (geänderter "
1283
+ "Status usw.)."
1284
+
1285
+ msgid "Allow this service to have recurring appointments."
1286
+ msgstr "Wiederkehrende Termine für diese Dienstleistung ermöglichen"
1287
 
 
1288
  msgid "Enabled"
1289
  msgstr "Aktiviert"
1290
 
1291
+ msgid "Frequencies"
1292
+ msgstr "Häufigkeiten"
 
1293
 
1294
+ msgid "All"
1295
+ msgstr "Alle"
 
1296
 
1297
+ msgid "Nothing selected"
1298
+ msgstr "Nichts ausgewählt"
 
1299
 
1300
+ msgid "Edit"
1301
+ msgstr "Bearbeiten"
 
1302
 
1303
+ msgid "Remove"
1304
+ msgstr "Entfernen"
 
1305
 
1306
+ msgid "Restore"
1307
+ msgstr "Wiederherstellen"
 
1308
 
1309
+ msgid "pages with another time"
1310
+ msgstr "Seiten mit einer anderen Zeit"
 
1311
 
1312
+ msgid "Show Repeat step"
1313
+ msgstr "Wiederholungsschritt zeigen"
 
1314
 
1315
+ msgid "recurring appointments schedule"
1316
+ msgstr "wiederkehrender Terminplan"
 
1317
 
1318
+ msgid "recurring appointments schedule with cancel"
1319
+ msgstr "Wiederkehrende Termine mit Absage"
 
1320
 
1321
+ msgid "URL for approving the whole schedule"
1322
+ msgstr "URL für die Genehmigung des gesamten Zeitplans"
 
1323
 
1324
+ msgid "recurring appointments"
1325
+ msgstr "wiederkehrende Termine"
 
1326
 
1327
+ #. if male: "Jeden", if female or neutral: "Jede"
1328
+ msgid "Every"
1329
+ msgstr "Jede"
1330
 
1331
+ msgid "Back"
1332
+ msgstr "Zurück"
 
1333
 
1334
+ msgid "Delete"
1335
+ msgstr "Löschen"
 
1336
 
1337
+ msgid "Apply"
1338
+ msgstr "Speichern"
 
1339
 
1340
+ msgid "Another time was offered on pages"
1341
+ msgstr "Ein weiteres Zeitfenster wurde auf den Seiten angeboten"
 
1342
 
1343
+ msgid "Delete Appointment"
1344
+ msgstr "Termin löschen"
 
1345
 
1346
+ msgid "Delete only this appointment"
1347
+ msgstr "Nur diesen Termin löschen"
 
1348
 
1349
+ msgid "Delete this and the following appointments"
1350
+ msgstr "Diesen und zukünftige Termine löschen"
 
1351
 
1352
+ msgid "Delete all appointments in series"
1353
+ msgstr "Alle Termine dieser Serie löschen"
 
1354
 
1355
+ msgid "Send notifications"
1356
+ msgstr "Benachrichtigungen senden"
 
1357
 
1358
+ msgid "Cancellation reason (optional)"
1359
+ msgstr "Stornierungsgrund (optional)"
 
1360
 
1361
+ msgid "Cancel"
1362
+ msgstr "Abbrechen"
 
 
 
1363
 
1364
+ msgid "Close"
1365
+ msgstr "Schließen"
 
1366
 
1367
+ msgid "Recurring appointments"
1368
+ msgstr "Wiederkehrende Termine"
 
1369
 
1370
+ msgid "Save"
1371
+ msgstr "Speichern"
 
1372
 
1373
+ msgid "Sandbox Mode"
1374
+ msgstr "Sandbox Modus"
 
1375
 
1376
+ msgid "No"
1377
+ msgstr "Nein"
 
1378
 
1379
+ msgid "Yes"
1380
+ msgstr "Ja"
1381
+
1382
+ msgid "Merchant Key"
1383
+ msgstr "Händler Chiffre"
1384
+
1385
+ msgid "Merchant Salt"
1386
+ msgstr "Händler Salz"
1387
+
1388
+ msgid "Duration"
1389
+ msgstr "Dauer"
1390
+
1391
+ msgid ""
1392
+ "Set service duration. If you select Custom, a client, while booking, will "
1393
+ "have to choose the duration of the service from several time units. In the "
1394
+ "\"Unit Price\" field specify the cost of 1 unit, so the total cost of the "
1395
+ "service will increase linearly with the increase of its duration."
1396
+ msgstr ""
1397
+ "Servicedauer Auswählen. Wenn Sie Benuterdefiniert auswählen, muss der Kunde "
1398
+ "während der Buchung die Dauer der Leistung aus verschiedenen Einheiten "
1399
+ "wählen. Spezifizieren Sie im Feld \"Stückpreis\" den Preis für 1 Einheit, so "
1400
+ "dass sich die Gesamtkosten linear mit der Dauer der Leistung erhöhen."
1401
+
1402
+ msgid "Unit duration"
1403
+ msgstr "Länge einer Einheit"
1404
+
1405
+ msgid "Minimum units"
1406
+ msgstr "minimale Einheiten"
1407
 
1408
+ msgid "Maximum units"
1409
+ msgstr "maximale Einheiten"
 
1410
 
1411
+ msgid "Unit price"
1412
+ msgstr "Stückpreis"
 
1413
 
1414
+ msgid "Custom"
1415
+ msgstr "Anpassung eigene Nachrichten"
 
1416
 
1417
+ msgid "Show service price next to duration"
1418
+ msgstr "Service"
 
1419
 
1420
+ msgid "Hide this field"
1421
+ msgstr "Dieses Feld ausblenden"
 
1422
 
1423
+ msgid "Delete break"
1424
+ msgstr "Löschen"
 
1425
 
1426
+ msgid "Breaks"
1427
+ msgstr "Pausen"
 
1428
 
1429
+ msgid "Add special day"
1430
+ msgstr "Besonderen Tag hinzufügen"
 
1431
 
1432
+ msgid "to"
1433
+ msgstr "bis"
 
1434
 
1435
+ msgid "add break"
1436
+ msgstr "Pause einfügen"
 
1437
 
1438
+ msgid "Special Days"
1439
+ msgstr "Besondere Tage"
 
1440
 
1441
+ msgid "Are you sure?"
1442
+ msgstr "Sind Sie sicher?"
 
1443
 
1444
+ msgid "Duplicate dates are not permitted."
1445
+ msgstr "Duplicate dates are not permitted."
 
1446
 
1447
+ msgid "The requested interval is not available"
1448
+ msgstr "Der gewünschte Zeitraum ist nicht verfügbar"
 
1449
 
1450
+ msgid "OFF"
1451
+ msgstr "Aus"
 
1452
 
1453
+ msgid "Add Staff Special Days"
1454
+ msgstr "Mitarbeiter-Sondertage hinzufügen"
 
1455
 
1456
+ msgid "Uncategorized"
1457
+ msgstr "Nicht kategorisiert"
 
1458
 
1459
+ msgid "Spare time"
1460
+ msgstr "übrige Zeit"
 
1461
 
1462
+ msgid "Add simple service"
1463
+ msgstr "In einfachen Dienst"
 
1464
 
1465
+ msgid "=== Spare time ==="
1466
+ msgstr "=== übrige Zeit ==="
 
1467
 
1468
+ msgid "Compound"
1469
+ msgstr "Verbindung"
 
1470
 
1471
+ msgid "Part of compound service"
1472
+ msgstr "Ein Teil der Verbindung Service"
 
1473
 
1474
+ msgid "Compound service"
1475
+ msgstr "kombinierte Dienstleistung"
 
1476
 
1477
+ msgid "Short Codes"
1478
+ msgstr "Kurzcodes"
 
1479
 
1480
+ msgid "Add Staff Calendar"
1481
+ msgstr "Mitarbeiterkalendar hinzufügen"
 
1482
 
1483
+ msgid "Add Staff Details"
1484
+ msgstr "Mitarbeiterdetails hinzufügen"
 
1485
 
1486
+ msgid "Add Staff Services"
1487
+ msgstr "Mitarbeiterdienstleistungen hinzufügen"
 
1488
 
1489
+ msgid "Add Staff Schedule"
1490
+ msgstr "Mitarbeiter Stundenplan hinzufügen"
 
1491
 
1492
+ msgid "Add Staff Days Off"
1493
+ msgstr "Mitarbeiterferien hinzufügen"
 
1494
 
1495
+ msgid "Hide visibility field"
1496
+ msgstr "Unsichtbare Felder ausblenden"
 
1497
 
1498
+ msgid "Disable services update"
1499
+ msgstr "Dienstleistungsaktualisierung deaktivieren"
 
1500
 
1501
+ msgid "Disable price update"
1502
+ msgstr "Preisaktualisierung deaktivieren"
 
1503
 
1504
+ msgid "Insert"
1505
+ msgstr "Einfügen"
 
1506
 
1507
+ msgid "Add Staff Cabinet"
1508
+ msgstr "Mitarbeiterbereich hinzufügen"
 
1509
 
1510
+ msgid "A custom block for displaying staff calendar"
1511
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen des Mitarbeiterkalenders"
 
1512
 
1513
+ msgid "Details"
1514
+ msgstr "Details"
 
1515
 
1516
+ msgid "A custom block for displaying staff details"
1517
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen von Mitarbeiterdetails"
 
1518
 
1519
+ msgid "Services"
1520
+ msgstr "Dienstleistungen"
 
1521
 
1522
+ msgid "A custom block for displaying staff services"
1523
+ msgstr ""
1524
+ "Ein benutzerdefinierter Block zum Anzeigen von Mitarbeiterdienstleistungen"
1525
 
1526
+ msgid "A custom block for displaying staff schedule"
1527
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen des Mitarbeiterzeitplans"
 
1528
 
1529
+ msgid "Special days"
1530
+ msgstr "Besondere Tage"
 
1531
 
1532
+ msgid "A custom block for displaying staff special days"
1533
+ msgstr ""
1534
+ "Ein benutzerdefinierter Block zum Anzeigen von Spezialtagen der Mitarbeiter"
1535
 
1536
+ msgid "Days off"
1537
+ msgstr "Freie Tage"
 
1538
 
1539
+ msgid "A custom block for displaying staff days off"
1540
+ msgstr ""
1541
+ "Ein benutzerdefinierter Block zum Anzeigen von freien Tagen für Mitarbeiter"
1542
 
1543
+ msgid "Capacity"
1544
+ msgstr "Kapazität"
 
1545
 
1546
+ msgid "Special hours"
1547
+ msgstr "Besondere Tage "
 
1548
 
1549
+ msgid "Fields"
1550
+ msgstr "Felder"
 
1551
 
1552
+ msgid "read only"
1553
+ msgstr "Nur lesen"
 
1554
 
1555
+ msgid "Repeat every year"
1556
+ msgstr "Wiederhole jedes Jahr"
 
1557
 
1558
+ msgid "We are not working on this day"
1559
+ msgstr "An diesem Tag stehen wir nicht zur Verfügung."
 
1560
 
1561
+ msgid "Min capacity should not be greater than max capacity."
1562
+ msgstr "Die Min Kapazität sollte nicht größer als die Max Kapazität sein"
 
1563
 
1564
+ msgid "Export to CSV"
1565
+ msgstr "Export in eine CSV-Datei"
 
1566
 
1567
+ msgid "Displayed appointments"
1568
+ msgstr "Angezeigte Termine"
 
1569
 
1570
+ msgid "Upcoming appointments"
1571
+ msgstr "Kommende Termine"
 
1572
 
1573
+ msgid "All appointments"
1574
+ msgstr "Alle Termine"
 
1575
 
1576
+ msgid "Delimiter"
1577
+ msgstr "Trennzeichen"
 
1578
 
1579
+ msgid "Comma (,)"
1580
+ msgstr "Komma (,)"
 
1581
 
1582
+ msgid "Semicolon (;)"
1583
+ msgstr "Semikolon (;)"
 
1584
 
1585
+ msgid "Booking Time"
1586
+ msgstr "Reservierungszeit"
 
1587
 
1588
+ msgid "Customer Name"
1589
+ msgstr "Kundenname"
 
1590
 
1591
+ msgid "Customer Phone"
1592
+ msgstr "Kundentelefon"
 
1593
 
1594
+ msgid "Customer Email"
1595
+ msgstr "Kunden-eMail"
 
1596
 
1597
+ msgid "Status"
1598
+ msgstr "Status"
 
1599
 
1600
+ msgid "Payment"
1601
+ msgstr "Bezahlung"
 
1602
 
1603
+ msgid "Today"
1604
+ msgstr "Heute"
 
1605
 
1606
+ msgid "Week"
1607
+ msgstr "Woche"
 
1608
 
1609
+ msgid "Month"
1610
+ msgstr "Monat"
 
1611
 
1612
+ msgid "All Day"
1613
+ msgstr "Den ganzen Tag"
 
1614
 
1615
+ msgid "On waiting list"
1616
+ msgstr "Auf der Warteliste"
 
1617
 
1618
+ msgid "Package"
1619
+ msgstr "Paket"
 
1620
 
1621
+ #, php-format
1622
+ msgid "%s of %s"
1623
+ msgstr "%s von %s"
1624
 
1625
+ msgid "Full name"
1626
+ msgstr "Ganzer Name"
 
1627
 
1628
+ msgid "Info"
1629
+ msgstr "Info"
 
1630
 
1631
+ msgid ""
1632
+ "This text can be inserted into notifications to customers by Administrator."
1633
+ msgstr ""
1634
+ "Dieser Text kann vom Administrator in Benachrichtigungen an Kunden eingefügt "
1635
+ "werden."
1636
 
1637
+ msgid "Visibility"
1638
+ msgstr "Sichtweite"
 
1639
 
1640
+ msgid ""
1641
+ "If you want to become invisible to your customers set the visibility to "
1642
+ "\"Private\"."
1643
+ msgstr ""
1644
+ "Wenn Sie für Ihre Kunden unsichtbar werden wollen, setzen Sie die "
1645
+ "Sichtbarkeit auf \"Privat\"."
1646
 
1647
+ msgid "Public"
1648
+ msgstr "Öffentlich"
 
1649
 
1650
+ msgid "Private"
1651
+ msgstr "Privat"
 
1652
 
1653
+ msgid "All locations"
1654
+ msgstr "Alle Orte"
 
1655
 
1656
+ msgid "No locations selected"
1657
+ msgstr "Keine Standorte ausgewählt"
 
1658
 
1659
+ msgid "You don't have permissions to view this content."
1660
+ msgstr "Sie besitzen nicht die nötigen Rechte, um diesen Inhalt anzusehen."
 
1661
 
1662
+ msgid ""
1663
+ "Your account has been disabled. Contact your website administrator to "
1664
+ "continue."
1665
+ msgstr ""
1666
+ "Dein Konto wurde deaktiviert. Kontaktieren Sie Ihren Webseitenadministrator "
1667
+ "um weiterzumachen."
1668
 
1669
+ msgid "API Login ID"
1670
+ msgstr "API-Login-Identifikationsnummer"
 
1671
 
1672
+ msgid "API Transaction Key"
1673
+ msgstr "API-Transaktionsschlüssel"
 
1674
 
1675
+ msgid "Taxes"
1676
+ msgstr "Steuern"
 
1677
 
1678
+ msgid "Price settings and display"
1679
+ msgstr "Preiseinstellungen und Darstellung"
 
1680
 
1681
+ msgid ""
1682
+ "If the prices for your services include taxes, select include taxes. If the "
1683
+ "prices for your services do not include taxes, select exclude taxes."
1684
+ msgstr ""
1685
+ "Wenn die Preise für Ihre Dienstleistungen Steuern enthalten, wählen Sie "
1686
+ "Steuern einbeziehen. Wenn die Preise für Ihre Dienstleistungen keine Steuern "
1687
+ "enthalten, wählen Sie Steuern ausschließen."
1688
 
1689
+ msgid "Include taxes"
1690
+ msgstr "Steuern berücksichtigen"
 
1691
 
1692
+ msgid "Exclude taxes"
1693
+ msgstr "Steuern nicht berücksichtigen"
 
1694
 
1695
+ msgid "Add Tax"
1696
+ msgstr "Steuern hinzufügen"
 
1697
 
1698
+ msgid "Title"
1699
+ msgstr "Name"
 
1700
 
1701
+ msgid "Rate"
1702
+ msgstr "Bewerten"
 
1703
 
1704
+ msgid "New tax"
1705
+ msgstr "Neue Steuer"
 
1706
 
1707
+ msgid "Edit tax"
1708
+ msgstr "Steuern bearbeiten"
 
1709
 
1710
+ msgid "No taxes found."
1711
+ msgstr "Keine Steuern gefunden."
 
1712
 
1713
+ msgid "Processing..."
1714
+ msgstr "Verarbeitung..."
 
1715
 
1716
+ msgid "Taxation"
1717
+ msgstr "Besteuerung"
 
1718
 
1719
+ msgid "service tax amount"
1720
+ msgstr "Steuerhöhe der Dienstleistung"
 
1721
 
1722
+ msgid "service tax rate"
1723
+ msgstr "Steuerrate der Dienstleistung"
 
1724
 
1725
+ msgid "total tax included in the appointment (summary for all items)"
1726
+ msgstr ""
1727
+ "Steuersumme, die in diesem Termin einbegriffen sind (Summe aller Posten)"
1728
 
1729
+ msgid "total price without tax"
1730
+ msgstr "Gesamtpreis ohne Steuern"
 
1731
 
1732
+ msgid ""
1733
+ "This setting affects the cost of the booking according to the payment "
1734
+ "gateway used. Specify a percentage or fixed amount. Use minus (\"-\") sign "
1735
+ "for decrease/discount. Note that tax will not be calculated for the "
1736
+ "additional amount to the cost. If you need to report the exact tax amount to "
1737
+ "the payment system, do not use additional charge."
1738
+ msgstr ""
1739
+ "Diese Einstellung wirkt sich je nach verwendetem Zahlungsgateway auf die "
1740
+ "Buchungskosten aus. Geben Sie einen Prozentsatz oder einen festen Betrag an. "
1741
+ "Verwenden Sie das Minuszeichen (\"-\"), um den Rabatt zu verringern. Bitte "
1742
+ "beachten Sie, dass die Steuer nicht für den zusätzlichen Betrag berechnet "
1743
+ "wird. Wenn Sie den genauen Steuerbetrag dem Zahlungssystem mitteilen müssen, "
1744
+ "verwenden Sie keine zusätzlichen Gebühren."
1745
 
1746
+ msgid "Customer Information"
1747
+ msgstr "Kundeninformation"
 
1748
 
1749
+ msgid "Required field."
1750
+ msgstr "Notwendiges Feld."
 
1751
 
1752
+ msgid "Ask once."
1753
+ msgstr "Einmal nachfragen."
 
1754
 
1755
+ msgid "Ask once"
1756
+ msgstr "Frage einmal"
 
1757
 
1758
+ msgid "Show customer information"
1759
+ msgstr "Kundeninformationen anzeigen"
 
1760
 
1761
+ msgid ""
1762
+ "To receive REST API credentials, in <b>My Apps & Credentials</b> of your "
1763
+ "PayPal account do the following steps:"
1764
+ msgstr ""
1765
+ "Um REST-API-Anmeldeinformationen zu erhalten, führen Sie unter <b>Meine "
1766
+ "Anwendungen & Anmeldeinformationen</b> Ihres PayPal-Kontos die folgenden "
1767
+ "Schritte aus:"
1768
 
1769
+ msgid "Click <b>Create App</b> and enter application details."
1770
+ msgstr ""
1771
+ "Klicken Sie auf <b>App erstellen</b> und geben Sie die Anwendungsdetails ein."
1772
 
1773
+ msgid ""
1774
+ "Once created, copy <b>Client ID</b> and <b>Secret</b> and use them in the "
1775
+ "form below."
1776
+ msgstr ""
1777
+ "Kopieren Sie nach der Erstellung <b>Client ID</b> und <b>Secret</b> und "
1778
+ "verwenden Sie sie in der folgenden Form."
1779
 
1780
+ msgid "Client ID"
1781
+ msgstr "Client ID"
 
1782
 
1783
+ msgid "Secret"
1784
+ msgstr "Geheimnis"
 
1785
 
1786
+ msgid "Invalid session"
1787
+ msgstr "Ungültige Sitzung"
 
1788
 
1789
+ msgid "Mollie accepts payments in Euro only."
1790
+ msgstr "Mollie akzeptiert nur Zahlungen in Euro."
 
1791
 
1792
+ msgid "Mollie error."
1793
+ msgstr "Mollie-Fehler."
 
1794
 
1795
+ msgid "I will pay now with Mollie"
1796
+ msgstr "Ich zahle mit Mollie"
 
1797
 
1798
+ msgid "API Key"
1799
+ msgstr "API-Schlüssel"
 
1800
 
1801
+ msgid "Time interval of payment gateway"
1802
+ msgstr "Zeitintervall des Zahlungs-Gateways"
 
1803
 
1804
+ msgid ""
1805
+ "This setting determines the time limit after which the payment made via the "
1806
+ "payment gateway is considered to be incomplete. This functionality requires "
1807
+ "a scheduled cron job."
1808
+ msgstr ""
1809
+ "Diese Einstellung bestimmt das Zeitlimit, nachdem die Zahlung über das "
1810
+ "Zahlungs-Gateway als unvollständig angesehen wird. Diese Funktionalität "
1811
+ "erfordert einen geplanten Cron-Job."
1812
 
1813
+ msgid "Persons"
1814
+ msgstr "Personen"
 
1815
 
1816
+ msgid "Number of persons"
1817
+ msgstr "Personenanzahl"
 
1818
 
1819
+ msgid "Capacity (min and max)"
1820
+ msgstr "Kapazität (Min und Max)"
 
1821
 
1822
+ msgid "Group bookings information format"
1823
+ msgstr "Gruppenbuchungs-Informationsformat"
 
1824
 
1825
+ msgid ""
1826
+ "Select format for displaying the time slot occupancy for group bookings."
1827
+ msgstr ""
1828
+ "Wählen Sie das Format für die Anzeige der Belegung des Zeitfensters für "
1829
+ "Gruppenbuchungen."
1830
 
1831
+ msgid "[Booked/Max capacity]"
1832
+ msgstr "[Gebuchte / Max Kapazität]"
 
1833
 
1834
+ msgid "[Available left]"
1835
+ msgstr "[Verbleibende Verfügbare]"
 
1836
 
1837
+ msgid "Group Booking"
1838
+ msgstr "Gruppenbuchung"
 
1839
 
1840
+ msgid "number of persons"
1841
+ msgstr "Personenanzahl"
 
1842
 
1843
+ msgid "number of persons already in the list"
1844
+ msgstr "Anzahl der Personen bereits in der liste"
 
1845
 
1846
+ msgid "capacity of service"
1847
+ msgstr "Kapazität der Dienstleistung"
 
1848
 
1849
+ msgid ""
1850
+ "The minimum and maximum number of customers allowed to book the service for "
1851
+ "the certain time period."
1852
+ msgstr "Die minimal und maximal Anzahl der Kunden für eine Dienstleistung."
1853
 
1854
+ msgid "One booking per time slot"
1855
+ msgstr "Eine Buchung pro Zeitraum"
 
1856
 
1857
+ msgid ""
1858
+ "Enable this option if you want to limit the possibility of booking within "
1859
+ "the service capacity to one time."
1860
+ msgstr ""
1861
+ "Aktivieren Sie diese Option, wenn Sie die Möglichkeit der Buchungen "
1862
+ "innerhalb der Leistungskapazität einschränken wollen. \n"
1863
+ "\n"
1864
+ "\n"
1865
 
1866
+ msgid "Show information about group bookings"
1867
+ msgstr "Informationen über Gruppenbuchungen anzeigen"
 
1868
 
1869
+ msgid "Disable capacity update"
1870
+ msgstr "Kapazitätsaktualisierung deaktivieren"
 
1871
 
1872
+ msgid "Address"
1873
+ msgstr "Adresse"
 
1874
 
1875
+ msgid "Follow these steps to get an API key:"
1876
+ msgstr "Befolgen Sie diese Schritte, um einen API Schlüssel zu erhalten:"
 
1877
 
1878
+ msgid ""
1879
+ "Go to the <a href=\"https://console.developers.google.com/flows/enableapi?"
1880
+ "apiid=places_backend&reusekey=true\" target=\"_blank\">Google API Console</a>"
1881
+ "."
1882
+ msgstr ""
1883
+ "Gehen Sie zur <a href=\"https://console.developers.google."
1884
+ "com/flows/enableapi?apiid=places_backend&reusekey=true\" target=\"_blank\">"
1885
+ "Google API Konsole</a>."
1886
 
1887
+ msgid "Create or select a project. Click <b>Continue</b> to enable the API."
1888
+ msgstr ""
1889
+ "Erstellen oder wählen Sie ein Projekt aus. Klicken Sie <b>Weiter</b> um die "
1890
+ "API zu aktivieren."
1891
 
1892
+ msgid ""
1893
+ "On the <b>Credentials</b> page, get an <b>API key</b> (and set the API key "
1894
+ "restrictions). Note: If you have an existing unrestricted API key, or a key "
1895
+ "with server restrictions, you may use that key."
1896
+ msgstr ""
1897
+ "Auf der <b>Credentials</b> Seite, erhalten Sie einen <b>API Schlüssel</b> "
1898
+ "(und legen die API Schlüssel Einschränkungen fest). Hinweis: Wenn Sie einen "
1899
+ "uneingeschränkten API Schlüssel haben oder einen Schlüssel mit "
1900
+ "Servereinschränkungen, dann können Sie den Schlüssel nutzen."
1901
 
1902
+ msgid ""
1903
+ "Click <b>Library</b> on the left sidebar menu. Select Google Maps JavaScript "
1904
+ "API and make sure it's enabled."
1905
+ msgstr ""
1906
+ "Klicken Sie <b>Library</b> im linken Seitenleisten Menü. Wählen Sie Google "
1907
+ "Maps JavaScript API und vergewissern Sie sich, dass es aktiviert ist. "
1908
 
1909
+ msgid "Use your <b>API key</b> in the form below."
1910
+ msgstr "Benutzen Sie Ihren <b>API key</b> im nachfolgenden Formular."
 
1911
 
1912
+ msgid ""
1913
+ "Enter a Google API key that you got after registering your app project on "
1914
+ "the Google API Console."
1915
+ msgstr ""
1916
+ "Geben Sie den Google API key ein, den Sie nach der Registrierung Ihres App-"
1917
+ "Projektes auf der Google API Konsole erhalten haben."
1918
 
1919
+ msgid "Google Maps"
1920
+ msgstr "Google Maps"
 
1921
 
1922
+ msgid "Show google maps field"
1923
+ msgstr "Google Maps anzeigen"
 
1924
 
1925
+ msgid "Equal duration"
1926
+ msgstr "Gleiche Dauer"
 
1927
 
1928
+ msgid "Make every service duration equal to the duration of the longest one."
1929
+ msgstr ""
1930
+ "Machen Sie jede Servicedauer so lang, wie die längste.\n"
1931
+ "\n"
1932
 
1933
+ msgid "Collaborative"
1934
+ msgstr "Kollaborativ"
 
1935
 
1936
+ msgid "Collaborative service"
1937
+ msgstr "Kollaborative Leistung"
 
1938
 
1939
+ msgid "Part of collaborative service"
1940
+ msgstr "Teil des kollaborativen Dienstes"
 
1941
 
1942
+ msgid "Customer cabinet (all services displayed in tabs)"
1943
+ msgstr "Kundenbereich (alle Dienstleistungen in Tabs angezeigt)"
 
1944
 
1945
+ msgid "Appointment management"
1946
+ msgstr "Terminmanagement"
 
1947
 
1948
+ msgid "Show timezone"
1949
+ msgstr "Zeitzone anzeigen"
 
1950
 
1951
+ msgid "Location"
1952
+ msgstr "Ort"
 
1953
 
1954
+ msgid "Category"
1955
+ msgstr "Kategorie"
 
1956
 
1957
+ msgid "Staff"
1958
+ msgstr "Mitarbeiter"
 
1959
 
1960
+ msgid "Reschedule"
1961
+ msgstr "Neu planen"
 
1962
 
1963
+ msgid "Profile management"
1964
+ msgstr "Profilverwaltung"
 
1965
 
1966
+ msgid "Birthday"
1967
+ msgstr "Geburtstag"
 
1968
 
1969
+ msgid "Wordpress password"
1970
+ msgstr "Wordpress-Passwort"
 
1971
 
1972
+ msgid "Delete account"
1973
+ msgstr "Konto löschen"
 
1974
 
1975
+ msgid "Add Customer Cabinet"
1976
+ msgstr "Kundenbereich hinzufügen"
 
1977
 
1978
+ msgid "Customer cabinet"
1979
+ msgstr "Kunden Aktenschrank"
 
1980
 
1981
+ msgid "A custom block for displaying customer cabinet"
1982
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen des Kundenaktenschranks"
 
1983
 
1984
+ msgid "show"
1985
+ msgstr "Anzeigen"
 
1986
 
1987
+ msgid "Show"
1988
+ msgstr "Zeigen"
 
1989
 
1990
+ msgid "Timezone"
1991
+ msgstr "Zeitzone"
1992
+
1993
+ msgid "Employee"
1994
  msgstr "Mitarbeiter"
1995
 
1996
+ msgid "Custom field"
1997
+ msgstr "Kundenfeld"
 
1998
 
1999
+ msgid "Customer information"
2000
+ msgstr "Kunden Information"
 
2001
 
2002
+ msgid "Appointments"
2003
+ msgstr "Termine"
 
2004
 
2005
+ msgid "Profile"
2006
+ msgstr "Profil"
 
2007
 
2008
+ msgid "WP user"
2009
+ msgstr "Wordpress-Nutzer"
 
2010
 
2011
+ msgid "Current password"
2012
+ msgstr "Aktuelles Passwort"
 
2013
 
2014
+ msgid "New password"
2015
+ msgstr "Neues Passwort"
 
2016
 
2017
+ msgid "Confirm password"
2018
+ msgstr "Passwort bestätigen"
 
2019
 
2020
+ msgid "No appointments."
2021
+ msgstr "Keine Termine."
 
2022
 
2023
+ msgid "Expired"
2024
+ msgstr "Abgelaufen"
 
2025
 
2026
+ msgid "Not allowed"
2027
+ msgstr "Nicht erlaubt"
 
2028
 
2029
+ msgid "There are no time slots for selected date."
2030
+ msgstr "Es gibt keine Zeitfenster mehr für das ausgewählte Datum."
 
2031
 
2032
+ msgid ""
2033
+ "Unfortunately, you're not able to cancel the appointment because the "
2034
+ "required time limit prior to canceling has expired."
2035
+ msgstr ""
2036
+ "Leider können Sie diesen Termin nicht mehr stornieren, da der "
2037
+ "Minimalzeitraum vor der Stornierung unterschritten wurde."
2038
 
2039
+ msgid "Profile updated successfully."
2040
+ msgstr "Profil erfolgreich aktualisiert."
 
2041
 
2042
+ msgid "Time"
2043
+ msgstr "Zeit"
 
2044
 
2045
+ msgid "Wrong current password"
2046
+ msgstr "Falsches aktuelles Passwort"
 
2047
 
2048
+ msgid "Passwords mismatch"
2049
+ msgstr "Paswörter stimmen nicht überein"
 
2050
 
2051
+ msgid "Cancel Appointment"
2052
+ msgstr "Termin stornieren"
 
2053
 
2054
+ msgid "You are going to cancel a scheduled appointment. Are you sure?"
2055
+ msgstr "Sie wollen einen geplanten Termin stornieren. Sind sie sicher?"
 
2056
 
2057
+ msgid ""
2058
+ "You are going to delete your account and all information associated with it. "
2059
+ "Click Confirm to continue or Cancel to cancel the action."
2060
+ msgstr ""
2061
+ "Sie löschen gerade Ihr Konto und alle damit verbundenen Daten. Klicken sie "
2062
+ "auf Bestätigen, um fortzufahren oder auf Abbrechen, um die Aktion "
2063
+ "abzubrechen."
2064
 
2065
+ msgid ""
2066
+ "This account cannot be deleted because it is associated with scheduled "
2067
+ "appointments. Please cancel bookings or contact the service provider."
2068
+ msgstr ""
2069
+ "Dieses Konto kann nicht gelöscht werden, weil es vereinbarte Terminen "
2070
+ "enthält. Bitte lösche die Termine oder kontaktiere den Dienstleister."
2071
 
2072
+ msgid "Confirm"
2073
+ msgstr "Bestätigen"
 
2074
 
2075
+ msgid "OK"
2076
+ msgstr "OK"
 
2077
 
2078
+ #, php-format
2079
  msgid " and %d more item"
2080
  msgid_plural " and %d more items"
2081
  msgstr[0] " und %d weiterer Artikel"
2082
  msgstr[1] " und %d weitere Artikel"
2083
 
2084
+ msgid "Notification to customer about approved appointment"
2085
+ msgstr "Benachrichtigung an Kunden über bestätigte Termin"
 
2086
 
2087
+ msgid ""
2088
+ "Dear {client_name}.\n"
2089
  "\n"
2090
  "This is a confirmation that you have booked {service_name}.\n"
2091
  "\n"
2092
+ "We are waiting you at {company_address} on {appointment_date} at "
2093
+ "{appointment_time}.\n"
2094
  "\n"
2095
  "Thank you for choosing our company.\n"
2096
  "\n"
2097
  "{company_name}\n"
2098
  "{company_phone}\n"
2099
  "{company_website}"
2100
+ msgstr ""
2101
+ "Sehr geehrte/r {client_name},\n"
2102
  "\n"
2103
  "dies ist die Bestätigung, dass Sie folgendes gebucht haben: {service_name}.\n"
2104
  "\n"
2105
+ "Wir begrüßen Sie in {company_address} am {appointment_date} um "
2106
+ "{appointment_time}.\n"
2107
  "\n"
2108
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
2109
  "\n"
2111
  "{company_phone}\n"
2112
  "{company_website}"
2113
 
2114
+ msgid "Notification to staff member about approved appointment"
2115
+ msgstr "Benachrichtigung an Mitarbeiter über bestätigte Termine"
2116
+
2117
+ msgid ""
2118
+ "Hello.\n"
2119
  "\n"
2120
+ "You have a new booking.\n"
2121
  "\n"
2122
+ "Service: {service_name}\n"
2123
+ "Date: {appointment_date}\n"
2124
+ "Time: {appointment_time}\n"
2125
+ "Client name: {client_name}\n"
2126
+ "Client phone: {client_phone}\n"
2127
+ "Client email: {client_email}"
2128
+ msgstr ""
2129
+ "Hallo,\n"
2130
+ "\n"
2131
+ "Sie haben eine neue Buchung\n"
2132
+ "\n"
2133
+ "Service.: {service_name}\n"
2134
+ "Datum: {appointment_date}\n"
2135
+ "Zeit: {appointment_time}\n"
2136
+ "Auftragsgeber Name: {client_name}\n"
2137
+ "Auftraggeber Telefon: {client_phone}\n"
2138
+ "Auftraggeber E-Mail: {client_email}"
2139
+
2140
+ msgid "Notification to customer about cancelled appointment"
2141
+ msgstr "Benachrichtigung an Kunden über abgesagte Termine"
2142
+
2143
+ msgid ""
2144
+ "Dear {client_name}.\n"
2145
+ "\n"
2146
+ "You have cancelled your booking of {service_name} on {appointment_date} at "
2147
+ "{appointment_time}.\n"
2148
  "\n"
2149
  "Thank you for choosing our company.\n"
2150
  "\n"
2151
  "{company_name}\n"
2152
  "{company_phone}\n"
2153
  "{company_website}"
2154
+ msgstr ""
2155
+ "Sehr geehrte/r {client_name}. \n"
 
2156
  "\n"
2157
+ "Sie haben Ihre Buchung von {service_name} am {appointment_date} um "
2158
+ "{appointment_time} storniert. \n"
2159
  "\n"
2160
+ "Danke, dass Sie unsere Firma gewählt haben. \n"
2161
  "\n"
2162
  "{company_name}\n"
2163
+ "{company_phone} \n"
2164
  "{company_website}"
2165
 
2166
+ msgid "Notification to staff member about cancelled appointment"
2167
+ msgstr "Benachrichtigung an Mitarbeiter über abgesagte Termine"
 
2168
 
2169
+ msgid ""
2170
+ "Hello.\n"
2171
  "\n"
2172
+ "The following booking has been cancelled.\n"
2173
  "\n"
2174
  "Service: {service_name}\n"
2175
  "Date: {appointment_date}\n"
2177
  "Client name: {client_name}\n"
2178
  "Client phone: {client_phone}\n"
2179
  "Client email: {client_email}"
2180
+ msgstr ""
2181
+ "Hallo. \n"
2182
  "\n"
2183
+ "Die folgende Buchung wurde storniert. \n"
2184
+ "\n"
2185
+ "Leistung: {service_name} \n"
2186
+ "Datum: {appointment_date} \n"
2187
+ "Zeit: {appointment_time} \n"
2188
+ "Kundenname: {client_name} \n"
2189
+ "Kundenhandy: {client_phone} \n"
2190
+ "Kunden E-mail: {client_email}\n"
2191
  "\n"
 
 
 
 
 
 
 
 
 
 
2192
 
2193
+ msgid "Notification to customer about rejected appointment"
2194
+ msgstr "Benachrichtigung an Kunden über abgelehnte Termin"
 
2195
 
2196
+ msgid ""
2197
+ "Dear {client_name}.\n"
2198
  "\n"
2199
+ "Your booking of {service_name} on {appointment_date} at {appointment_time} "
2200
+ "has been rejected.\n"
2201
  "\n"
2202
  "Reason: {cancellation_reason}\n"
2203
  "\n"
2206
  "{company_name}\n"
2207
  "{company_phone}\n"
2208
  "{company_website}"
2209
+ msgstr ""
2210
+ "Lieber {client_name}.\n"
2211
  "\n"
2212
+ "Die Buchung von {service_name} auf {appointment_date} auf {appointment_time} "
2213
+ "abgelehnt wurde.\n"
2214
  "\n"
2215
  "Grund: {cancellation_reason}\n"
2216
  "\n"
2220
  "{company_phone}\n"
2221
  "{company_website}"
2222
 
2223
+ msgid "Notification to staff member about rejected appointment"
2224
+ msgstr "Benachrichtigung an Mitarbeiter über abgelehnten Termin"
2225
+
2226
+ msgid ""
2227
+ "Hello.\n"
2228
  "\n"
2229
  "The following booking has been rejected.\n"
2230
  "\n"
2236
  "Client name: {client_name}\n"
2237
  "Client phone: {client_phone}\n"
2238
  "Client email: {client_email}"
2239
+ msgstr ""
2240
+ "Hallo.\n"
2241
  "\n"
2242
  "Die folgende Buchung wurde abgelehnt.\n"
2243
  "\n"
2250
  "Client Telefon : {client_phone}\n"
2251
  "Client E-Mail: {client_email}"
2252
 
2253
+ msgid ""
2254
+ "Dear {client_name}.\n"
2255
+ "This is a confirmation that you have booked {service_name}.\n"
2256
+ "We are waiting you at {company_address} on {appointment_date} at "
2257
+ "{appointment_time}.\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2258
  "Thank you for choosing our company.\n"
 
2259
  "{company_name}\n"
2260
  "{company_phone}\n"
2261
  "{company_website}"
2262
+ msgstr ""
2263
+ "Sehr geehrte/r {client_name}. \n"
2264
+ "Dies ist eine Bestätigung, dass Sie {service_name} gebucht haben. Wir "
2265
+ "erwarten Sie bei {company_address} am {termin_date} um {termin_time}. Vielen "
2266
+ "Dank, dass Sie sich für unser Unternehmen entschieden haben. \n"
2267
+ "{company_name} \n"
2268
+ "{company_phone} \n"
2269
+ "{company_website}\n"
2270
  "\n"
2271
+
2272
+ msgid ""
2273
+ "Hello.\n"
2274
+ "You have a new booking.\n"
2275
+ "Service: {service_name}\n"
2276
+ "Date: {appointment_date}\n"
2277
+ "Time: {appointment_time}\n"
2278
+ "Client name: {client_name}\n"
2279
+ "Client phone: {client_phone}\n"
2280
+ "Client email: {client_email}"
2281
+ msgstr ""
2282
+ "Hallo. \n"
2283
+ "Sie haben eine neue Buchung. \n"
2284
+ "Leistung: {service_name} \n"
2285
+ "Datum: {appointment_date} \n"
2286
+ "Zeit: {appointment_time} \n"
2287
+ "Kundenname: {client_name} \n"
2288
+ "Kundenhandy: {client_phone} \n"
2289
+ "Kunden E-Mail: {client_email}\n"
2290
  "\n"
2291
+
2292
+ msgid ""
2293
+ "Dear {client_name}.\n"
2294
+ "You have cancelled your booking of {service_name} on {appointment_date} at "
2295
+ "{appointment_time}.\n"
2296
+ "Thank you for choosing our company.\n"
2297
  "{company_name}\n"
2298
  "{company_phone}\n"
2299
  "{company_website}"
2300
+ msgstr ""
2301
+ "Sehr geehrte/r {client_name}. \n"
2302
+ "Sie haben Ihre Buchung für {service_name} am {appointment_date} um "
2303
+ "{appointment_time} storniert. \n"
2304
+ "Danke, dass Sie unser Unternehmen gewählt haben. \n"
2305
+ "{company_name} \n"
2306
+ "{company_phone} \n"
2307
+ "{company_website}"
2308
+
2309
+ msgid ""
2310
+ "Hello.\n"
2311
+ "The following booking has been cancelled.\n"
2312
+ "Service: {service_name}\n"
2313
+ "Date: {appointment_date}\n"
2314
+ "Time: {appointment_time}\n"
2315
+ "Client name: {client_name}\n"
2316
+ "Client phone: {client_phone}\n"
2317
+ "Client email: {client_email}"
2318
+ msgstr ""
2319
+ "Hallo. \n"
2320
+ "Die folgende Buchung wurde storniert. \n"
2321
+ "Leistung: {service_name} \n"
2322
+ "Datum: {appointment_date} \n"
2323
+ "Zeit: {appointment_time} \n"
2324
+ "Kundenname: {client_name} \n"
2325
+ "Kundenhandy: {client_phone}\n"
2326
+ " Kunden E-Mail: {client_email}"
2327
 
2328
+ msgid ""
2329
+ "Dear {client_name}.\n"
2330
+ "Your booking of {service_name} on {appointment_date} at {appointment_time} "
2331
+ "has been rejected.\n"
2332
  "Reason: {cancellation_reason}\n"
2333
  "Thank you for choosing our company.\n"
2334
  "{company_name}\n"
2335
  "{company_phone}\n"
2336
  "{company_website}"
2337
+ msgstr ""
2338
+ "Lieber {client_name}.\n"
2339
+ "Die Buchung von {service_name} auf {appointment_date} auf {appointment_time} "
2340
+ "wurde abgelehnt.\n"
2341
  "Grund: {cancellation_reason}\n"
2342
  "Vielen Dank dass Sie sich für unser Unternehmen entschieden haben.\n"
2343
  "{company_name}\n"
2344
  "{company_phone}\n"
2345
  "{company_website}"
2346
 
2347
+ msgid ""
2348
+ "Hello.\n"
2349
  "The following booking has been rejected.\n"
2350
  "Reason: {cancellation_reason}\n"
2351
  "Service: {service_name}\n"
2354
  "Client name: {client_name}\n"
2355
  "Client phone: {client_phone}\n"
2356
  "Client email: {client_email}"
2357
+ msgstr ""
2358
+ "Hallo.\n"
2359
  "Die folgende Buchung wurde abgelehnt\n"
2360
  "Grund: {cancellation_reason}\n"
2361
  "Servicegebühren: {service_name}\n"
2365
  "Client Telefon: {client_phone}\n"
2366
  "Client E-Mail: {client_email}"
2367
 
2368
+ msgid ""
2369
+ "Evening reminder to customer about next day appointment (requires cron setup)"
2370
+ msgstr ""
2371
+ "Erinnerung an Kunden für den Termin am nächsten Tag (erfordert Cron-Setup)"
 
 
 
 
 
 
 
 
 
 
 
2372
 
2373
+ msgid ""
2374
+ "Dear {client_name}.\n"
2375
+ "We would like to remind you that you have booked {service_name} tomorrow at "
2376
+ "{appointment_time}. We are waiting for you at {company_address}.\n"
 
2377
  "Thank you for choosing our company.\n"
2378
  "{company_name}\n"
2379
  "{company_phone}\n"
2380
  "{company_website}"
2381
+ msgstr ""
2382
+ "Sehr geehrte/r {client_name}.\n"
2383
+ "Wir würden Sie gerne daran erinnern, dass Sie {service_name} für morgen um "
2384
+ "{appointment_time} gebucht haben. Wir erwarten Sie in der\n"
2385
+ "{company_address}. \n"
2386
+ "Vielen Dank, dass Sie unsere Firma gewählt haben.\n"
2387
+ "{company_name} \n"
2388
+ "{company_phone} \n"
2389
+ "{company_website}"
2390
+
2391
+ msgid ""
2392
+ "Follow-up message in the same day after appointment (requires cron setup)"
2393
+ msgstr "Folge-Nachricht am Tag nach dem Termin (erfordert Cron-Setup)"
2394
+
2395
+ msgid ""
2396
+ "Dear {client_name}.\n"
2397
+ "Thank you for choosing {company_name}. We hope you were satisfied with your "
2398
+ "{service_name}.\n"
2399
+ "Thank you and we look forward to seeing you again soon.\n"
2400
  "{company_name}\n"
2401
  "{company_phone}\n"
2402
  "{company_website}"
2403
+ msgstr ""
2404
+ "Sehr geehrte/r {client_name}. \n"
2405
+ "Vielen Dank, dass Sie {company_name} gewählt haben. Wir hoffen, dass Sie mit "
2406
+ "Ihrer {service_name} zufrieden waren.\n"
2407
+ "Vielen Dank und wir freuen uns sie schon bald wieder zu sehen. {company_name}"
2408
+ "\n"
2409
+ "{company_phone} \n"
2410
+ "{company_website}"
2411
 
2412
+ msgid ""
2413
+ "Evening notification with the next day agenda to staff member (requires cron "
2414
+ "setup)"
2415
+ msgstr ""
2416
+ "Vorabend Information über die Termine der Mitarbeiter am nächsten Tag "
2417
+ "(erfordert Cron-Setup)"
2418
 
2419
+ msgid ""
2420
+ "Hello.\n"
2421
+ "Your agenda for tomorrow is:\n"
2422
+ "{next_day_agenda}"
2423
+ msgstr "Hallo. Ihr Kalender für morgen: {next_day_agenda}"
2424
 
2425
+ msgid ""
2426
+ "Thank you! Your booking is complete. An email with details of your booking "
2427
+ "has been sent to you."
2428
+ msgstr ""
2429
+ "Danke! Ihre Buchung ist abgeschlossen. Eine E-Mail mit den Details Ihrer "
2430
+ "Buchung wird Ihnen übermittelt."
2431
+
2432
+ msgid ""
2433
+ "You are trying to use the service too often. Please contact us to make a "
2434
+ "booking."
2435
+ msgstr ""
2436
+ "Sie haben die Anzahl der möglichen Buchungen pro Kunde erreicht. Bitte "
2437
+ "kontaktieren Sie uns mit Ihrem Buchungswunsch."
2438
 
2439
+ msgid "Your payment has been accepted for processing."
2440
+ msgstr "Ihre Zahlung wurde zur Verarbeitung übernommen."
 
2441
 
2442
+ msgid ""
2443
+ "You selected a booking for {service_name} by {staff_name} at {service_time} "
2444
+ "on {service_date}. The price for the service is {service_price}.\n"
2445
  "Please provide your details in the form below to proceed with booking."
2446
+ msgstr ""
2447
+ "Sie wählten eine Reservierung von {service_name} mit {staff_name} in der "
2448
+ "Zeit {service_time} Uhr am {service_date}. Das Entgelt für den Service "
2449
+ "beträgt {service_price}.\n"
2450
+ "Bitte tragen Sie Ihre Angaben in das Formular unten ein, um mit der Buchung "
2451
+ "fortzufahren."
2452
 
 
2453
  msgid "Please tell us how you would like to pay: "
2454
  msgstr "Bitte sagen Sie uns, wie Sie bezahlen möchten: "
2455
 
 
2456
  msgid "Please select service: "
2457
  msgstr "Bitte wählen Sie einen Service: "
2458
 
2459
+ msgid ""
2460
+ "Below you can find a list of available time slots for {service_name} by "
2461
+ "{staff_name}.\n"
2462
  "Click on a time slot to proceed with booking."
2463
+ msgstr ""
2464
+ "Hier finden Sie eine Liste der verfügbaren Zeiten für {service_name} bei "
2465
+ "{staff_name}.\n"
2466
  "Klicken Sie auf eine Zeit für die Buchung."
2467
 
 
2468
  msgid "Card Security Code"
2469
  msgstr "Sicherheits Code der Karte"
2470
 
 
2471
  msgid "Expiration Date"
2472
  msgstr "Ablauf Datum"
2473
 
2474
+ msgid "Credit Card Number"
2475
+ msgstr "Kreditkarten Nummer"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
2476
 
2477
+ msgid "Confirm email"
2478
+ msgstr "E-Mail bestätigen"
 
2479
 
2480
+ msgid "Finish by"
2481
+ msgstr "Beenden durch"
 
2482
 
2483
+ msgid "First name"
2484
+ msgstr "Vorname"
 
2485
 
2486
+ msgid "Last name"
2487
+ msgstr "Nachname"
 
2488
 
2489
+ msgid "Notes"
2490
+ msgstr "Mitteilung"
 
2491
 
2492
+ msgid "I will pay now with Credit Card"
2493
+ msgstr "Ich möchte mit Kredit Karte bezahlen"
 
2494
 
2495
+ msgid "I will pay locally"
2496
+ msgstr "Barzahlung vor Ort"
 
 
 
 
 
 
 
2497
 
2498
+ msgid "I'm available on or after"
2499
+ msgstr "Ich bin verfügbar am oder nach"
 
2500
 
2501
+ msgid "Start from"
2502
+ msgstr "Beginn ab"
 
2503
 
2504
+ msgid "Select category"
2505
+ msgstr "Wähle Kategorie"
 
2506
 
2507
+ msgid "Any"
2508
+ msgstr "Jeder"
 
2509
 
2510
+ msgid "Select service"
2511
+ msgstr "Wählen Sie den Service"
 
2512
 
2513
+ msgid "Select day"
2514
+ msgstr "Tag auswählen"
 
2515
 
2516
+ msgid "Select month"
2517
+ msgstr "Monat auswählen"
 
2518
 
2519
+ msgid "Select year"
2520
+ msgstr "Jahr auswählen"
 
2521
 
2522
+ msgid "Please tell us your email"
2523
+ msgstr "Bitte geben Sie unser Ihre E-Mail-Adresse an"
 
2524
 
2525
+ msgid "Email confirmation doesn't match"
2526
+ msgstr "E-Mail Bestätigung stimmt nicht überein"
 
2527
 
2528
+ msgid "Please select an employee"
2529
+ msgstr "Bitte wählen Sie einen Mitarbeiter"
 
2530
 
2531
+ msgid "Please tell us your name"
2532
+ msgstr "Bitte nennen Sie uns Ihren Namen"
 
2533
 
2534
+ msgid "Please tell us your first name"
2535
+ msgstr "Bitte nennen Sie uns Ihren Vornamen"
 
2536
 
2537
+ msgid "Please tell us your last name"
2538
+ msgstr "Bitte nennen Sie uns Ihren Nachnamen"
 
2539
 
2540
+ msgid "Please tell us your phone"
2541
+ msgstr "Bitte geben Sie uns Ihre Telefon Nr."
 
2542
 
2543
+ msgid "Please select a service"
2544
+ msgstr "Bitte wählen Sie eine Dienstleistung aus"
 
2545
 
2546
+ msgid ""
2547
+ "The selected time is not available anymore. Please, choose another time slot."
2548
+ msgstr ""
2549
+ "Die eingestellte Zeit ist nicht mehr vorhanden. Bitte wählen Sie eine andere "
2550
+ "Zeit."
2551
 
2552
+ msgid "Login"
2553
+ msgstr "Einloggen"
 
2554
 
2555
+ msgid "Done"
2556
+ msgstr "Beendet"
 
2557
 
2558
+ msgid "Signed up"
2559
+ msgstr "Registrieren"
 
2560
 
2561
+ msgid "Custom notification"
2562
+ msgstr "Anpassung der Nachrichten"
 
2563
 
2564
+ msgid "Appointment reminder"
2565
+ msgstr "Termin Erinnerung"
 
2566
 
2567
+ msgid "New booking"
2568
+ msgstr "Neue Buchung"
 
2569
 
2570
+ msgid "Notification about customer's appointment status change"
2571
+ msgstr "Benachrichtigungen über die Statusveränderung des Termins"
 
2572
 
2573
+ msgid "Customer birthday greeting (requires cron setup)"
2574
+ msgstr "Kunden Geburtstag Gruß (erfordert cron-Setup)"
 
2575
 
 
2576
  msgid "Notification to customer about pending appointment"
2577
  msgstr "Benachrichtigung an Kunden über zu bestätigende Termine"
2578
 
2579
+ msgid ""
2580
+ "1st reminder to customer about upcoming appointment (requires cron setup)"
 
 
 
 
2581
  msgstr "1.Errinerung für Kunden für bevorstehende Termine (Cron Setup nötig)"
2582
 
2583
+ msgid ""
2584
+ "2nd reminder to customer about upcoming appointment (requires cron setup)"
2585
  msgstr "2.Errinerung für Kunden für bevorstehende Termine (Cron Setup nötig)"
2586
 
2587
+ msgid ""
2588
+ "3rd reminder to customer about upcoming appointment (requires cron setup)"
2589
  msgstr "3.Errinerung für Kunden für bevorstehende Termine (Cron Setup nötig)"
2590
 
2591
+ msgid "Last client's appointment"
2592
+ msgstr "Letzter Kundentermin"
 
 
 
 
 
 
 
 
 
 
 
 
 
2593
 
2594
+ msgid "Full day agenda"
2595
+ msgstr "Komplette Tagesagenda"
 
2596
 
 
2597
  msgid "Notification to staff member about pending appointment"
2598
  msgstr "Benachrichtigung an Mitarbeiter über zu bestätigende Termine"
2599
 
2600
+ msgid "Invalid day"
2601
+ msgstr "Ungültiger Tag"
 
 
 
 
 
 
 
 
 
2602
 
2603
+ msgid "Day is required"
2604
+ msgstr "Eingabe \"Tag\" ist notwendig"
 
 
 
2605
 
2606
+ msgid "Month is required"
2607
+ msgstr "Eingabe \"Monat\" ist notwendig "
 
2608
 
2609
+ msgid "Year is required"
2610
+ msgstr "Eingabe \"Jahr\" ist notwendig "
 
2611
 
2612
+ msgid "Country"
2613
+ msgstr "Land"
 
2614
 
2615
+ msgid "State/Region"
2616
+ msgstr "Staat/Region"
 
2617
 
2618
+ msgid "Postal Code"
2619
+ msgstr "Postleitzahl"
 
2620
 
2621
+ msgid "City"
2622
+ msgstr "Stadt"
 
2623
 
2624
+ msgid "Street Address"
2625
+ msgstr "Straßenadresse"
 
2626
 
2627
+ msgid "Additional Address"
2628
+ msgstr "Zusätzliche Adresse"
 
2629
 
2630
+ msgid "Country is required"
2631
+ msgstr "\"Land\" ist eine Pflichteingabe"
 
2632
 
2633
+ msgid "State is required"
2634
+ msgstr "\"Staat\" ist eine Pflichteingabe"
 
2635
 
2636
+ msgid "Postcode is required"
2637
+ msgstr "\"Postleitzahl\" ist eine Pflichteingabe"
 
2638
 
2639
+ msgid "City is required"
2640
+ msgstr "\"Stadt\" ist eine Pflichteingabe"
 
2641
 
2642
+ msgid "Street is required"
2643
+ msgstr "\"Straße\" ist eine Pflichteingabe"
 
2644
 
2645
+ msgid "Additional address is required"
2646
+ msgstr "Zusätzliche Adresse ist notwendig"
 
2647
 
2648
+ msgid ""
2649
+ "The highlighted time is not available anymore. Please, choose another time "
2650
+ "slot."
2651
+ msgstr ""
2652
+ "Der hervorgehobene Zeit ist nicht mehr verfügbar. Bitte wählen Sie eine "
2653
+ "andere Zeit."
2654
 
2655
+ msgid "Happy Birthday!"
2656
+ msgstr "Alles Gute zum Geburtstag!"
 
2657
 
2658
+ msgid ""
2659
+ "Dear {client_name},\n"
2660
+ "\n"
2661
+ "Happy birthday!\n"
2662
+ "We wish you all the best.\n"
2663
+ "May you and your family be happy and healthy.\n"
2664
+ "\n"
2665
+ "Thank you for choosing our company.\n"
2666
+ "\n"
2667
+ "{company_name}\n"
2668
+ "{company_phone}\n"
2669
+ "{company_website}"
2670
+ msgstr ""
2671
+ "Lieber {client_name},\n"
2672
+ "\n"
2673
+ "Alles Gute zum Geburtstag!\n"
2674
+ "Wir wünschen Ihnen alles Gute.\n"
2675
+ "Mögen Sie und Ihre Familie glücklich und gesund sein.\n"
2676
+ "\n"
2677
+ "Vielen Dank für die Auswahl unserer Firma.\n"
2678
+ "\n"
2679
+ "{company_name}\n"
2680
+ "{company_phone}\n"
2681
+ "{company_website}"
2682
 
2683
+ msgid ""
2684
+ "Dear {client_name},\n"
2685
+ "Happy birthday!\n"
2686
+ "We wish you all the best.\n"
2687
+ "May you and your family be happy and healthy.\n"
2688
+ "Thank you for choosing our company.\n"
2689
+ "{company_name}\n"
2690
+ "{company_phone}\n"
2691
+ "{company_website}"
2692
+ msgstr ""
2693
+ "Lieber {client_name},\n"
2694
+ "Alles Gute zum Geburtstag!\n"
2695
+ "Wir wünschen Ihnen alles Gute.\n"
2696
+ "Mögen Sie und Ihre Familie glücklich und gesund sein.\n"
2697
+ "Vielen Dank für die Auswahl unserer Firma.\n"
2698
+ "{company_name}\n"
2699
+ "{company_phone}\n"
2700
+ "{company_website}"
2701
 
2702
+ #, php-format
2703
+ msgid "%d year"
2704
+ msgid_plural "%d years"
2705
+ msgstr[0] "Jahr %d"
2706
+ msgstr[1] "%d Jahre"
2707
 
2708
+ #, php-format
2709
+ msgid "%d month"
2710
+ msgid_plural "%d months"
2711
+ msgstr[0] "%dter Monat"
2712
+ msgstr[1] "%d Monate"
2713
 
2714
+ #, php-format
2715
+ msgid "%d week"
2716
+ msgid_plural "%d weeks"
2717
+ msgstr[0] "%d Woche"
2718
+ msgstr[1] "%d Wochen"
2719
 
2720
+ #, php-format
2721
+ msgid "%d day"
2722
+ msgid_plural "%d days"
2723
+ msgstr[0] "%d Tag"
2724
+ msgstr[1] "%d Tage"
2725
 
2726
+ #, php-format
2727
+ msgid "%d h"
2728
+ msgstr "%d h"
2729
 
2730
+ #, php-format
2731
+ msgid "%d min"
2732
+ msgstr "%d min"
2733
 
2734
+ msgid "Tomorrow"
2735
+ msgstr "Morgen"
 
2736
 
2737
+ msgid "Yesterday"
2738
+ msgstr "Gestern"
 
2739
 
2740
+ msgid "Last 7 days"
2741
+ msgstr "Letzten 7 Tage"
 
2742
 
2743
+ msgid "Last 30 days"
2744
+ msgstr "Letzten 30 Tage"
 
2745
 
2746
+ msgid "This month"
2747
+ msgstr "Diesen Monat"
 
2748
 
2749
+ msgid "Next month"
2750
+ msgstr "Nächster Monat"
 
2751
 
2752
+ msgid "Custom range"
2753
+ msgstr "Benutzerdefinierter Bereich"
 
2754
 
2755
+ msgid "To"
2756
+ msgstr "bis"
 
2757
 
2758
+ msgid "From"
2759
+ msgstr "von"
 
2760
 
2761
+ msgid "Important"
2762
+ msgstr "Wichtig"
 
2763
 
2764
+ msgid ""
2765
+ "Though, every new version is thoroughly tested to its highest quality before "
2766
+ "deploying, we can't guarantee that after update the plugin will work "
2767
+ "properly on all WordPress configurations and completely protect it from the "
2768
+ "influence of other plugins."
2769
+ msgstr ""
2770
+ "Obwohl jede neue Version vor dem Einsatz gründlich auf ihre höchste Qualität "
2771
+ "getestet wird, können wir nicht garantieren, dass das Plugin nach dem Update "
2772
+ "auf allen WordPress-Konfigurationen ordnungsgemäß funktioniert und "
2773
+ "vollständig vor dem Einfluss anderer Plugins geschützt ist."
2774
 
2775
+ #, php-format
2776
+ msgid ""
2777
+ "There is a small risk that some issues may appear as a result of updating "
2778
+ "the plugin. Please note that, according to %1$s Envato rules %2$s, we will "
2779
+ "be able to help you only if you have active item support period."
2780
+ msgstr ""
2781
+ "Es besteht ein geringes Risiko, dass einige Probleme durch die "
2782
+ "Aktualisierung des Plugins auftreten können. Bitte beachten Sie, dass wir "
2783
+ "Ihnen gemäß den Envato-Regeln %1$s nur dann helfen können, wenn Sie einen "
2784
+ "aktiven Zeitraum für die Artikelunterstützung haben."
2785
 
2786
+ #, php-format
2787
+ msgid ""
2788
+ "You can renew support %1$s here %3$s or %2$s I've already renewed support. "
2789
+ "%3$s"
2790
+ msgstr ""
2791
+ "Du kannst den Support %1$s hier verlängern %3$s oder %2$s Ich habe den "
2792
+ "Support bereits verlängert. %3$s"
2793
 
2794
+ msgid "Local"
2795
+ msgstr "Örtlich"
 
2796
 
2797
+ msgid "Free"
2798
+ msgstr "Frei"
 
2799
 
2800
+ msgid "Completed"
2801
+ msgstr "Fertiggestellt"
 
2802
 
2803
+ msgid "Pending"
2804
+ msgstr "Zu bestätigen"
 
2805
 
2806
+ msgid "Rejected"
2807
+ msgstr "Abgelehnt"
 
2808
 
2809
+ msgid "Approved"
2810
+ msgstr "Bestätigt"
 
2811
 
2812
+ msgid "Cancelled"
2813
+ msgstr "Abgesagt"
 
 
 
 
2814
 
2815
+ msgid "Untitled"
2816
+ msgstr "Ohne Bezeichnung"
 
2817
 
2818
+ msgid "Unknown"
2819
+ msgstr "Unbekannt"
 
2820
 
2821
+ msgid "New booking notification"
2822
+ msgstr "Neue Buchungsbestätigung"
 
2823
 
2824
+ msgid "New booking combined notification"
2825
+ msgstr "Neue Buchungen kombinierte Benachrichtigung"
 
2826
 
2827
+ msgid "New customer's WordPress user login details"
2828
+ msgstr "Neue Kunden WordPress Nutzer Login Details"
 
2829
 
2830
+ msgid "Customer's birthday greeting"
2831
+ msgstr "Kunden Geburtstagsgrüße"
 
2832
 
2833
+ msgid "Customer's last appointment notification"
2834
+ msgstr "Letzte Terminbenachrichtigung des Kunden"
 
2835
 
2836
+ msgid "Staff full day agenda"
2837
+ msgstr "Mitarbeiter voller Tageskalender"
 
 
 
2838
 
2839
+ msgid "Test message"
2840
+ msgstr "Testnachricht"
 
 
 
2841
 
2842
+ msgid "Invalid email"
2843
+ msgstr "Ungültige E-Mail"
 
2844
 
2845
+ msgid "This email is already in use"
2846
+ msgstr "Diese E-Mail-Adresse ist bereits in Gebrauch."
 
2847
 
2848
+ #, php-format
2849
+ msgid "\"%s\" is too long (%d characters max)."
2850
+ msgstr "\"%s\" ist zu lang (%d Zeichen max)."
 
2851
 
2852
+ msgid "Invalid number"
2853
+ msgstr "Ungültige Nummer"
 
2854
 
2855
+ msgid "Invalid date"
2856
+ msgstr "Ungültiges Datum"
 
2857
 
2858
+ msgid "Invalid time"
2859
+ msgstr "Ungültiges Zeit"
 
2860
 
2861
+ #, php-format
2862
+ msgid ""
2863
+ "Your %s: %s is already associated with another %s.<br/>Press Update if we "
2864
+ "should update your user data, or press Cancel to edit entered data."
2865
+ msgstr ""
2866
+ "Ihr %s: %s ist bereits mit einem anderen %s verknüpft.<br/>Klicken Sie auf "
2867
+ "Update, um Ihre bisherigen Benutzerdaten mit den eben eingegebenen "
2868
+ "abweichenden Daten zu aktualisieren (überschreiben) oder klicken Sie auf "
2869
+ "Abbrechen, um die eben eingegebenen Benutzerdaten zu korrigieren."
2870
 
2871
+ msgid "sent to our system"
2872
+ msgstr "an unser System gesendet"
 
2873
 
2874
+ msgid ""
2875
+ "Hope you had a good weekend! Here's a summary of messages we've delivered "
2876
+ "last week:\n"
2877
+ "{notification_list}\n"
2878
+ "\n"
2879
+ "Your system sent a total of {total} messages last week (that's {delta} {sign}"
2880
+ " than the week before).\n"
2881
+ "Cost of sending {total} messages was {amount}. Your current Bookly SMS "
2882
+ "balance is {balance}.\n"
2883
+ "\n"
2884
+ "Thank you for using Bookly SMS. We wish you a lucky week!\n"
2885
+ "Bookly SMS Team"
2886
+ msgstr ""
2887
+ "Ich hoffe, Sie hatten ein gutes Wochenende! Hier ist eine Zusammenfassung "
2888
+ "der Nachrichten, die wir letzte Woche erhalten haben:\n"
2889
+ "{Benachrichtigungsliste}\n"
2890
+ "\n"
2891
+ "Ihr System hat letzte Woche insgesamt {total} Nachrichten gesendet (das ist "
2892
+ "{delta} {sign} als die Woche zuvor).\n"
2893
+ "Die Kosten für das Senden von {total} Nachrichten waren {amount}. Ihr "
2894
+ "aktuelles Bookly SMS-Guthaben ist {balance}.\n"
2895
+ "\n"
2896
+ "Vielen Dank für die Nutzung von Bookly SMS. Wir wünschen dir eine glückliche "
2897
+ "Woche!\n"
2898
+ "Bookly SMS Team"
2899
 
2900
+ msgid "more"
2901
+ msgstr "mehr"
 
2902
 
2903
+ msgid "less"
2904
+ msgstr "weniger"
 
2905
 
2906
+ msgid "Bookly SMS weekly summary"
2907
+ msgstr "Bookly SMS wöchentliche Zusammenfassung"
 
2908
 
2909
+ msgid "Customer"
2910
+ msgstr "Kunde"
 
2911
 
2912
+ msgid "Internal Notes"
2913
+ msgstr "Interne Notizen"
 
2914
 
2915
+ msgid ""
2916
+ "To view the details of these appointments, please contact your website "
2917
+ "administrator in order to verify Bookly Pro license."
2918
+ msgstr ""
2919
+ "Um die Details dieser Termine einzusehen, kontaktieren Sie Ihren Webseiten "
2920
+ "Administrator, um Ihre Bookly Pro Lizenz zu überprüfen."
2921
 
2922
+ msgid "Admins"
2923
+ msgstr "Admins"
 
2924
 
2925
+ msgid "Passwords must be the same."
2926
+ msgstr "Passwörter müssen gleich sein."
 
2927
 
2928
+ msgid ""
2929
+ "Your don't have enough Bookly SMS credits to send this message. Please add "
2930
+ "funds to your balance and try again."
2931
+ msgstr ""
2932
+ "Sie haben nicht mehr genug Bookly-SMS-Guthaben, um diese Nachricht zu senden."
2933
+ " Bitte fügen Sie Guthaben hinzu und versuchen Sie es erneut."
2934
 
2935
+ msgid "Failed to send SMS."
2936
+ msgstr "Fehler beim SMS versenden."
 
2937
 
2938
+ msgid "Phone number is empty."
2939
+ msgstr "Telefonnummer ist leer."
 
2940
 
2941
+ msgid "Queued"
2942
+ msgstr "Warteschlange"
 
2943
 
2944
+ msgid "Error"
2945
+ msgstr "Fehler"
 
2946
 
2947
+ msgid "Out of credit"
2948
+ msgstr "keine Deckung mehr"
 
2949
 
2950
+ msgid "Country out of service"
2951
+ msgstr "Land außer Betrieb"
 
2952
 
2953
+ msgid "Sending"
2954
+ msgstr "Versendung"
 
2955
 
2956
+ msgid "Sent"
2957
+ msgstr "Gesendet "
 
2958
 
2959
+ msgid "Delivered"
2960
+ msgstr "Geliefert"
 
2961
 
2962
+ msgid "Failed"
2963
+ msgstr "Fehlgeschlagen"
 
2964
 
2965
+ msgid "Undelivered"
2966
+ msgstr "Nicht ausgeliefert"
 
2967
 
2968
+ msgid "Default"
2969
+ msgstr "Standard"
 
2970
 
2971
+ msgid "Declined"
2972
+ msgstr "Abgelehnt"
 
2973
 
2974
+ msgid "Error connecting to server."
2975
+ msgstr "Fehler beim Verbinden mit Server."
 
2976
 
2977
+ #, php-format
2978
+ msgid ""
2979
+ "Dear Bookly SMS customer.\n"
2980
+ "We would like to notify you that your Bookly SMS balance fell lower than 5 "
2981
+ "USD. To use our service without interruptions please recharge your balance "
2982
+ "by visiting Bookly SMS page <a href='%s'>here</a>.\n"
2983
+ "\n"
2984
+ "If you want to stop receiving these notifications, please update your "
2985
+ "settings <a href='%s'>here</a>."
2986
+ msgstr ""
2987
+ "Lieber Bookly SMS Kunde.\n"
2988
+ "Wir möchten Sie darüber informieren, dass Ihr Bookly SMS Guthaben unter 5 "
2989
+ "USD steht. Um unseren Service ohne Unterbrechungen zu nutzen, laden Sie Ihr "
2990
+ "Guthaben über die Bookly SMS Seite <a href='%s'>hier</a> auf.\n"
2991
+ "\n"
2992
+ "Wenn Sie diese Benachrichtigungen nicht mehr erhalten möchten, aktualisieren "
2993
+ "Sie bitte Ihre Einstellungen <a href='%s'>hier</a>."
2994
 
2995
+ msgid "Bookly SMS - Low Balance"
2996
+ msgstr "Bookly SMS - geringes Guthaben"
 
2997
 
2998
+ msgid "Empty password."
2999
+ msgstr "Leeres Passwort."
 
3000
 
3001
+ msgid "Incorrect password."
3002
+ msgstr "Falsches Passwort."
 
3003
 
3004
+ msgid "Incorrect recovery code."
3005
+ msgstr "Falscher Wiederherstellungscode."
 
3006
 
3007
+ msgid "Incorrect email or password."
3008
+ msgstr "Falsche E-Mail oder Passwort."
 
3009
 
3010
+ msgid "Incorrect sender ID"
3011
+ msgstr "Falsche Sender-ID"
 
3012
 
3013
+ msgid "Invalid email."
3014
+ msgstr "Ungültige E-Mail."
 
3015
 
3016
+ msgid "Pending sender ID already exists."
3017
+ msgstr "Ausstehende Sender-ID ist bereits vorhanden."
 
3018
 
3019
+ msgid "Recovery code expired."
3020
+ msgstr "Wiederherstellungscode abgelaufen."
 
3021
 
3022
+ msgid "Error sending email."
3023
+ msgstr "Fehler beim E-Mail Versand."
 
3024
 
3025
+ msgid "User not found."
3026
+ msgstr "Benutzer nicht gefunden."
 
3027
 
3028
+ msgid "Email already in use."
3029
+ msgstr "E-Mail-Adresse bereits verwendet."
 
3030
 
3031
+ msgid "Dashboard"
3032
+ msgstr "Dashboard"
 
3033
 
3034
+ msgid "Staff Members"
3035
+ msgstr "Mitarbeiter"
 
3036
 
3037
+ msgid "Email Notifications"
3038
+ msgstr "E-Mail Benachrichtigungen"
 
3039
 
3040
+ msgid "Customers"
3041
+ msgstr "Kunden"
 
3042
 
3043
+ msgid "Payments"
3044
+ msgstr "Zahlungsarten"
 
3045
 
3046
+ msgid "Appearance"
3047
+ msgstr "Darstellung"
 
3048
 
3049
+ msgid "Settings"
3050
+ msgstr "Einstellungen"
 
3051
 
3052
+ msgid "Get Bookly Pro"
3053
+ msgstr "Erhalten Sie Bookly Pro"
 
3054
 
3055
+ msgid "Messages"
3056
+ msgstr "Nachrichten"
 
3057
 
3058
+ msgid "Subject"
3059
+ msgstr "Gegenstand"
 
 
 
 
 
3060
 
3061
+ msgid "Message"
3062
+ msgstr "Mitteilung"
 
 
 
3063
 
3064
+ msgid "No records."
3065
+ msgstr "Keine Einträge."
 
3066
 
3067
+ msgid "messages"
3068
+ msgstr "Nachricht"
 
3069
 
3070
+ msgid "Previous"
3071
+ msgstr "Vorherige/r"
 
 
3072
 
3073
+ msgid "New appointment"
3074
+ msgstr "Neuer Termin"
 
3075
 
3076
+ msgid "No."
3077
+ msgstr "Nr."
 
3078
 
3079
+ msgid "Created at any time"
3080
+ msgstr "Zu jeder Zeit erstellt"
 
3081
 
3082
+ msgid "Appointment Date"
3083
+ msgstr "Termin Datum"
 
3084
 
3085
+ msgid "Created"
3086
+ msgstr "Erstellt"
 
3087
 
3088
+ msgid "Attachments"
3089
+ msgstr "Anhänge"
 
3090
 
3091
+ msgid "Any time"
3092
+ msgstr "Jederzeit"
 
3093
 
3094
+ msgid "No appointments for selected period."
3095
+ msgstr "Keine Termine für den ausgewählten Zeitraum."
 
3096
 
3097
+ msgid "No result found"
3098
+ msgstr "Kein Ergebnis gefunden"
 
3099
 
3100
+ msgid "Searching"
3101
+ msgstr "Sucht"
 
3102
 
3103
+ msgid "Archived"
3104
+ msgstr "Archiviert"
 
3105
 
3106
+ msgid "Send invoice"
3107
+ msgstr "Rechnung schicken"
 
3108
 
3109
+ msgid "Company name"
3110
+ msgstr "Firmenname"
 
3111
 
3112
+ msgid "Note: invoice will be sent to your PayPal email address"
3113
+ msgstr ""
3114
+ "Achtung: die Rechnung wird Ihnen an Ihre Paypal E-Mail Adresse geschickt."
3115
 
3116
+ msgid "Company address"
3117
+ msgstr "Firmenadresse"
 
3118
 
3119
+ msgid "Copy invoice to another email(s)"
3120
+ msgstr "Kopieren Sie die Rechnung in weitere E-Mails"
 
3121
 
3122
+ msgid "Enter one or more email addresses separated by commas."
3123
+ msgstr ""
3124
+ "Geben Sie eine oder mehrere E-Mail Adressen ein, getrennt durch Kommas.\n"
3125
+ "\n"
3126
 
3127
+ msgid "Company address line 2"
3128
+ msgstr "Firmenadresse Reihe 2"
 
3129
 
3130
+ msgid "VAT"
3131
+ msgstr "MWST"
 
3132
 
3133
+ msgid "Company code"
3134
+ msgstr "Firmen Code"
 
3135
 
3136
+ msgid "Additional text to include into invoice"
3137
+ msgstr "Zusätzlicher Text, der in die Rechnung aufgenommen werden soll"
 
3138
 
3139
+ msgid "SMS Notifications"
3140
+ msgstr "SMS Benachrichtigungen"
 
3141
 
3142
+ msgid "Your balance"
3143
+ msgstr "Ihr Guthaben"
 
3144
 
3145
+ msgid "Send email notification to administrators at low balance"
3146
+ msgstr ""
3147
+ "Senden von E-Mail-Benachrichtigung an die Administratoren bei niedrigen "
3148
+ "Guthaben"
3149
 
3150
+ msgid "Send weekly summary to administrators"
3151
+ msgstr "Senden wöchentliche Zusammenfassung für Administratoren"
 
3152
 
3153
+ msgid "Sender ID"
3154
+ msgstr "Sender-ID"
 
3155
 
3156
+ msgid "Change"
3157
+ msgstr "Ändern"
 
3158
 
3159
+ msgid "Approved at"
3160
+ msgstr "Zugelassen bei"
 
3161
 
3162
+ msgid "Log out"
3163
+ msgstr "Abmelden"
 
3164
 
3165
+ msgid "Notifications"
3166
+ msgstr "Benachrichtigungen"
 
3167
 
3168
+ msgid "Add money"
3169
+ msgstr "Geld hinzufügen"
 
3170
 
3171
+ msgid "Auto-Recharge"
3172
+ msgstr "Automatische Aufladefunktion"
 
3173
 
3174
+ msgid "Purchases"
3175
+ msgstr "Einkäufe"
 
3176
 
3177
+ msgid "SMS Details"
3178
+ msgstr "SMS-Details"
 
3179
 
3180
+ msgid "Price list"
3181
+ msgstr "Preisliste"
 
3182
 
3183
+ msgid ""
3184
+ "SMS Notifications (or \"Bookly SMS\") is a service for notifying your "
3185
+ "customers via text messages which are sent to mobile phones."
3186
+ msgstr ""
3187
+ "SMS Benachrichtigungen (oder \"Bookly SMS\") ist ein Dienst zur "
3188
+ "Benachrichtigung Ihre Kunden per SMS, die an Mobiltelefone gesendet werden."
3189
 
3190
+ msgid "It is necessary to register in order to start using this service."
3191
+ msgstr ""
3192
+ "Es ist notwendig, um zu registrieren, um mit der Anwendung dieses Service."
3193
 
3194
+ msgid ""
3195
+ "After registration you will need to configure notification messages and top "
3196
+ "up your balance in order to start sending SMS."
3197
+ msgstr ""
3198
+ "Nach der Registrierung müssen Sie die Benachrichtigungen konfigurieren und "
3199
+ "Ihr Ihrer Guthaben auffüllen, um das Senden von SMS zu starten."
3200
 
3201
+ msgid "Confirm your email"
3202
+ msgstr "Bestätigen Sie Ihre E-Mail"
 
3203
 
3204
+ msgid "Thank you for registration."
3205
+ msgstr "Vielen Dank für Ihre Registrierung"
 
3206
 
3207
+ #, php-format
3208
+ msgid "Confirmation is sent to %s."
3209
+ msgstr "Bestätigung wird an %s geschickt."
3210
 
3211
+ msgid ""
3212
+ "Once you confirm your e-mail address, you will get an access to Bookly SMS "
3213
+ "service."
3214
+ msgstr ""
3215
+ "Sobald Sie Ihre E-Mail Adresse bestätigt haben, werden Sie Zugang zum Bookly "
3216
+ "SMS Service erhalten."
3217
 
3218
+ msgid "Password"
3219
+ msgstr "Passwort"
 
3220
 
3221
+ msgid "Log In"
3222
+ msgstr "Einloggen"
 
3223
 
3224
+ msgid "Registration"
3225
+ msgstr "Anmeldung"
 
3226
 
3227
+ msgid "Forgot password"
3228
+ msgstr "Passwort vergessen"
 
3229
 
3230
+ msgid "Repeat password"
3231
+ msgstr "Passwort wiederholen"
 
3232
 
3233
+ #, php-format
3234
+ msgid ""
3235
+ "I accept <a href=\"%1$s\" target=\"_blank\">Service Terms</a> and <a "
3236
+ "href=\"%2$s\" target=\"_blank\">Privacy Policy</a>"
3237
+ msgstr ""
3238
+ "Ich akzeptiere <a href=\"%1$s\" target=\"_blank\">Geschäftsbedingungen</a> "
3239
+ "und <a href=\"%2$s\" target=\"_blank\">Datenschutzerklärung</a>\n"
3240
 
3241
+ msgid "Register"
3242
+ msgstr "Registrieren"
 
3243
 
3244
+ msgid "Enter code from email"
3245
+ msgstr "Code eingeben von E-Mail"
 
3246
 
3247
+ msgid "Repeat new password"
3248
+ msgstr "Neues Passwort wiederholen"
 
3249
 
3250
+ msgid "Change password"
3251
+ msgstr "Kennwort ändern"
 
3252
 
3253
+ msgid "Old password"
3254
+ msgstr "Altes Passwort"
 
3255
 
3256
+ msgid "Type"
3257
+ msgstr "Type"
 
3258
 
3259
+ msgid "Order"
3260
+ msgstr "Bestellen"
 
3261
 
3262
+ msgid "Amount"
3263
+ msgstr "Höhe"
 
3264
 
3265
+ msgid ""
3266
+ "We will only charge your PayPal account when your balance falls below $10."
3267
+ msgstr ""
3268
+ "Wir belasten nur Ihr PayPal-Konto, sobald Ihr Guthaben unter $10 fällt."
3269
 
3270
+ msgid "Enable Auto-Recharge"
3271
+ msgstr "Aktivieren Sie Automatische Aufladefunktion"
 
3272
 
3273
+ msgid "Disable Auto-Recharge"
3274
+ msgstr "Deaktivieren Sie Automatische Aufladefunktion"
 
3275
 
3276
+ msgid "Code"
3277
+ msgstr "Code"
 
3278
 
3279
+ msgid "Regular price"
3280
+ msgstr "Regulärer Preis"
 
3281
 
3282
+ msgid "Price with custom Sender ID"
3283
+ msgstr "Preis mit benutzerdefinierten Sender-ID"
 
3284
 
3285
+ msgid ""
3286
+ "If you do not see your country in the list please contact us at <a "
3287
+ "href=\"mailto:support@bookly.info\">support@bookly.info</a>."
3288
+ msgstr ""
3289
+ "Wenn Sie Ihr Land in der Liste nicht sehen, kontaktieren Sie uns bitte unter "
3290
+ "<a href=\"mailto:support@bookly.info\">support@bookly.info</a>."
3291
 
3292
+ msgid "Administrator phone"
3293
+ msgstr "Telefon von Administrator"
 
3294
 
3295
+ msgid ""
3296
+ "Enter a phone number in international format. E.g. for the United States a "
3297
+ "valid phone number would be +17327572923."
3298
+ msgstr ""
3299
+ "Geben Sie eine Telefonnummer im internationalen Format ein. Z.B. eine "
3300
+ "gültige Telefonnummer wie +49234555776"
3301
 
3302
+ msgid "Send test SMS"
3303
+ msgstr "Senden Sie Test SMS"
 
3304
 
3305
+ msgid "Save administrator phone"
3306
+ msgstr "Handynummer des Administrators speichern"
 
3307
 
3308
+ msgid "Quick search notifications"
3309
+ msgstr "Schnelle Suchbenachrichtigung"
 
3310
 
3311
+ msgid "State"
3312
+ msgstr "Status"
 
3313
 
3314
+ msgid "Delete..."
3315
+ msgstr "Löschen"
 
3316
 
3317
+ #, php-format
3318
+ msgid ""
3319
+ "To send scheduled notifications please refer to <a href=\"%1$s\">Bookly "
3320
+ "Multisite</a> add-on <a href=\"%2$s\">message</a>."
3321
+ msgstr ""
3322
+ "Um geplante Benachrichtigungen zu senden, sehen Sie den <a href=\"%2$s\">"
3323
+ "Hinweis</a> von <a href=\"%1$s\">Bookly Multisite</a>."
3324
 
3325
+ msgid ""
3326
+ "To send scheduled notifications please execute the following command hourly "
3327
+ "with your cron:"
3328
+ msgstr ""
3329
+ "Um geplante Benachrichtigungen zu senden, führen Sie bitte den folgenden "
3330
+ "Befehl stündlich mit Ihrem cron aus:"
3331
 
3332
+ msgid "Text"
3333
+ msgstr "Text"
 
3334
 
3335
+ msgid "Cost"
3336
+ msgstr "Kosten"
 
3337
 
3338
+ msgid ""
3339
+ "Please take into account that not all countries by law allow custom SMS "
3340
+ "sender ID. Please check if particular country supports custom sender ID in "
3341
+ "our price list. Also please note that prices for messages with custom sender "
3342
+ "ID are usually 20% - 25% higher than normal message price."
3343
+ msgstr ""
3344
+ "Bitte beachten Sie, dass nicht alle Länder gesetzlich individuelle SMS-"
3345
+ "Absender-ID ermöglichen. Bitte überprüfen Sie, ob bestimmten Land ID "
3346
+ "benutzerdefinierte Absender in unserer Preisliste unterstützt. Bitte "
3347
+ "beachten Sie auch, dass die Preise für Nachrichten mit benutzerdefinierten "
3348
+ "Sender-ID sind in der Regel 20% - 25% höher als normale Nachricht Preis."
3349
 
3350
+ msgid "Request Sender ID"
3351
+ msgstr "Anfrage Sender-ID"
 
3352
 
3353
+ msgid "Reset to default"
3354
+ msgstr "Zurücksetzen"
 
3355
 
3356
+ msgid "Can only contain letters or digits (up to 11 characters)."
3357
+ msgstr "Kann nur Buchstaben oder Ziffern (bis zu 11 Zeichen) enthalten."
 
3358
 
3359
+ msgid "Request"
3360
+ msgstr "Anfordern"
 
3361
 
3362
+ msgid "Cancel request"
3363
+ msgstr "Anfrage abbrechen"
 
3364
 
3365
+ msgid "Requested ID"
3366
+ msgstr "Gewünscht ID"
 
3367
 
3368
+ msgid "Status Date"
3369
+ msgstr "Datum Status"
 
3370
 
3371
+ msgid "Please accept terms and conditions."
3372
+ msgstr "Bitte akzeptieren Sie Nutzungsbedingungen."
 
3373
 
3374
+ msgid "Your payment has been interrupted."
3375
+ msgstr "Ihre Zahlung wurde unterbrochen."
 
3376
 
3377
+ msgid "Auto-Recharge enabled."
3378
+ msgstr "Automatische Aufladefunktion aktiviert."
 
3379
 
3380
+ msgid "You declined the Auto-Recharge of your balance."
3381
+ msgstr "Sie lehnten die automatische Aufladung Ihres Guthabens ab."
 
3382
 
3383
+ msgid "Please enter old password."
3384
+ msgstr "Bitte geben Sie Ihr altes Kennwort ein."
 
3385
 
3386
+ msgid "Last month"
3387
+ msgstr "Letzter Monat"
 
3388
 
3389
+ msgid "Sender ID request is sent."
3390
+ msgstr "Anforderung Sender-ID wird gesendet."
 
3391
 
3392
+ msgid "Sender ID is reset to default."
3393
+ msgstr "Sender-ID ist wieder auf Standard gesetzt."
 
3394
 
3395
+ msgid "No records for selected period."
3396
+ msgstr "Keine Datensätze für den gewünschten Zeitraum."
 
3397
 
3398
+ msgid "Invoice"
3399
+ msgstr "Rechnung"
 
3400
 
3401
+ msgid ""
3402
+ "To generate an invoice you should fill in company information in Bookly > "
3403
+ "SMS Notifications > Send invoice."
3404
+ msgstr ""
3405
+ "Um eine Rechnung zu erstellen, müssen Sie die Firmeninformationen in Bookly "
3406
+ "eingeben> SMS Benachrichtigungen > Rechnung schicken."
3407
 
3408
+ msgid "enable"
3409
+ msgstr "Aktivieren"
 
3410
 
3411
+ msgid "disable"
3412
+ msgstr "Desaktivieren"
 
3413
 
3414
+ msgid "Edit..."
3415
+ msgstr "Bearbeiten"
 
3416
 
3417
+ msgid "Auto-Recharge has failed, please replenish your balance directly."
3418
+ msgstr ""
3419
+ "Automatische Aufladefunktion ist fehlgeschlagen, bitte füllen Sie Ihre "
3420
+ "Guthaben direkt auf."
3421
 
3422
+ msgid "Auto-Recharge disabled"
3423
+ msgstr "Automatische Aufladefunktion deaktiviert"
 
3424
 
3425
+ msgid ""
3426
+ "Error. Can't disable Auto-Recharge, you can perform this action in your "
3427
+ "PayPal account."
3428
+ msgstr ""
3429
+ "Fehler. Wir können die automatische Aufladefunktion nicht deaktivieren. Sie "
3430
+ "können dies in Ihrem PayPal-Konto durchführen."
3431
 
3432
+ msgid "SMS has been sent successfully."
3433
+ msgstr "SMS wurde erfolgreich gesendet."
 
3434
 
3435
+ msgid "Quick search staff"
3436
+ msgstr "Schnellsuche Angestellte"
 
3437
 
3438
+ msgid "Show archived"
3439
+ msgstr "Archiviert anzeigen"
 
3440
 
3441
+ msgid "Add staff..."
3442
+ msgstr "Angestellte hinzufügen..."
 
3443
 
3444
+ msgid "User"
3445
+ msgstr "Benutzer"
 
3446
 
3447
+ msgid "Image"
3448
+ msgstr "Bild"
 
3449
 
3450
+ msgid "Website"
3451
+ msgstr "Webseite"
 
3452
 
3453
+ msgid "Time slot length"
3454
+ msgstr "Dauer Zeitintervall"
 
3455
 
3456
+ msgid ""
3457
+ "Select a time interval which will be used as a step when building all time "
3458
+ "slots in the system."
3459
+ msgstr ""
3460
+ "Wählen Sie eine Dauer aus, die bei der Erstellung aller Zeitintervalle im "
3461
+ "System verwendet wird."
3462
 
3463
+ msgid "Set slot length as service duration"
3464
+ msgstr "Legen Sie die Zeitdauer als Servicedauer fest"
 
3465
 
3466
+ msgid ""
3467
+ "Enable this option to make slot length equal to service duration at the Time "
3468
+ "step of booking form."
3469
+ msgstr ""
3470
+ "Aktivieren Sie diese Option, um die Zeitintervalle gleich der Servicedauer "
3471
+ "zum Zeitpunkt des Buchungsformulars zu machen."
3472
 
3473
+ msgid "Default appointment status"
3474
+ msgstr "Standardterminstatus"
 
3475
 
3476
+ msgid "Select status for newly booked appointments."
3477
+ msgstr "Wählen Sie Status für neu gebuchte Termine."
 
3478
 
3479
+ msgid "Number of days available for booking"
3480
+ msgstr "Anzahl der zur Verfügung stehenden Tage"
 
3481
 
3482
+ msgid "Set how far in the future the clients can book appointments."
3483
+ msgstr "Wie weit die Kunden in der Zukunft buchen können."
 
3484
 
3485
+ msgid "Display available time slots in client's time zone"
3486
+ msgstr "Anzeige der Zeiten in der Zeitzone des Kunden"
 
3487
 
3488
+ msgid "The value is taken from client's browser."
3489
+ msgstr "Der Wert wird vom Webbrowser des Nutzers bezogen."
 
3490
 
3491
+ msgid "Allow staff members to edit their profiles"
3492
+ msgstr "Mitarbeiter dürfen ihre Profile bearbeiten"
 
3493
 
3494
+ msgid ""
3495
+ "If this option is enabled then all staff members who are associated with "
3496
+ "WordPress users will be able to edit their own profiles, services, schedule "
3497
+ "and days off."
3498
+ msgstr ""
3499
+ "Wenn diese Option aktiviert ist, können alle Mitarbeiter, denen Wordpress-"
3500
+ "Nutzer zugeordnet sind, ihre eigenen Profile, Dienstleistungen, Zeitpläne "
3501
+ "und freie Tage bearbeiten."
3502
 
3503
+ msgid "Method to include Bookly JavaScript and CSS files on the page"
3504
+ msgstr ""
3505
+ "Verfahren, um in Bookly mit JavaScript und CSS-Dateien auf der Seite "
3506
+ "einzubinden"
3507
 
3508
+ msgid ""
3509
+ "With \"Enqueue\" method the JavaScript and CSS files of Bookly will be "
3510
+ "included on all pages of your website. This method should work with all "
3511
+ "themes. With \"Print\" method the files will be included only on the pages "
3512
+ "which contain Bookly booking form. This method may not work with all themes."
3513
+ msgstr ""
3514
+ "Mit \"Enqueue\" werden die JavaScript und CSS-Dateien von Bookly auf allen "
3515
+ "Seiten Ihrer Website eingebunden. Diese Methode sollte bei allen Themes "
3516
+ "funktionieren. Mit der \"Print\" Methode werden die Dateien nur auf den "
3517
+ "Seiten eingebunden, die das Bookly Buchungsformular enthalten. Dieses "
3518
+ "Verfahren läuft nicht mit allen Themes."
3519
 
3520
+ msgid "Help us improve Bookly by sending anonymous usage stats"
3521
+ msgstr ""
3522
+ "Helfen Sie uns durch senden anonymer Nutzungsstatistiken Bookly zu "
3523
+ "verbessern "
3524
 
3525
+ msgid ""
3526
+ "Allow the plugin to set a Powered by Bookly notice on the booking widget to "
3527
+ "spread information about the plugin. This will allow the team to improve the "
3528
+ "product and enhance its functionality"
3529
+ msgstr ""
3530
+ "Erlauben Sie dem Plugin, einen Powered by Bookly-Hinweis auf dem Buchungs-"
3531
+ "Widget zu setzen, um Informationen über das Plugin zu verbreiten. Dies "
3532
+ "ermöglicht es dem Team, das Produkt zu verbessern und seine Funktionalität "
3533
+ "zu verbessern."
3534
 
3535
+ msgid "Caching of pages with booking form"
3536
+ msgstr "Zwischenspeichern von Seiten mit dem Buchungsformular"
 
3537
 
3538
+ msgid ""
3539
+ "Select \"Prevent\" if you want Bookly to prevent caching by third-party "
3540
+ "caching plugins by adding a DONOTCACHEPAGE constant on pages with booking "
3541
+ "form."
3542
+ msgstr ""
3543
+ "Wählen Sie \"Verhindern\", wenn Sie möchten, dass Bookly das Caching durch "
3544
+ "Caching-Plugins von Drittanbietern verhindert, indem Sie eine DONOTCACHEPAGE-"
3545
+ "Konstante auf Seiten mit Buchungsformular hinzufügen."
3546
 
3547
+ msgid "Allow"
3548
+ msgstr ""
3549
+ "Erlauben\n"
3550
 
3551
+ msgid "Prevent"
3552
+ msgstr "Verhindern"
 
3553
 
3554
+ msgid "Service paid locally"
3555
+ msgstr "Service vor Ort bezahlt"
 
3556
 
3557
+ msgid "General"
3558
+ msgstr "Generell"
 
3559
 
3560
+ msgid "URL Settings"
3561
+ msgstr "URL Einstellungen"
 
3562
 
3563
+ msgid "Company"
3564
+ msgstr "Unternehmen"
 
3565
 
3566
+ msgid "Business Hours"
3567
+ msgstr "Servicezeiten"
 
3568
 
3569
+ msgid "Holidays"
3570
+ msgstr "Ferien"
 
3571
 
3572
+ msgid "Approve appointment URL (success)"
3573
+ msgstr "Termin-Genehmigung URL ( erfolgreich )"
 
3574
 
3575
+ msgid ""
3576
+ "Set the URL of a page that is shown to staff after they successfully "
3577
+ "approved the appointment."
3578
+ msgstr ""
3579
+ "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem "
3580
+ "sie den Termin erfolgreich genehmigt haben."
3581
 
3582
+ msgid "Approve appointment URL (denied)"
3583
+ msgstr "Termin-Genehmigung URL ( abgelehnt )"
 
3584
 
3585
+ msgid ""
3586
+ "Set the URL of a page that is shown to staff when the approval of "
3587
+ "appointment cannot be done (due to capacity, changed status, etc.)."
3588
+ msgstr ""
3589
+ "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem "
3590
+ "sie den Termin nicht erfolgreich genehmigen konnten ( wegen Kapazität, "
3591
+ "Status Änderung, etc. )"
3592
 
3593
+ msgid "Cancel appointment URL (success)"
3594
+ msgstr "Abgesagter Termin URL (erfolgreich)"
 
3595
 
3596
+ msgid ""
3597
+ "Set the URL of a page that is shown to clients after they successfully "
3598
+ "cancelled their appointment."
3599
+ msgstr ""
3600
+ "URL der Seite, die dem Kunden gezeigt wird, nachdem ein Termin storniert "
3601
+ "wurde."
3602
 
3603
+ msgid "Cancel appointment URL (denied)"
3604
+ msgstr "Abgesagter Termin URL ( abgelehnt )"
 
3605
 
3606
+ msgid ""
3607
+ "Set the URL of a page that is shown to clients when the cancellation of "
3608
+ "appointment is not available anymore."
3609
+ msgstr ""
3610
+ "URL der Seite, die dem Kunden angezeigt wird, wenn die Stornierung des "
3611
+ "Termins nicht mehr möglich ist."
3612
 
3613
+ msgid "Reject appointment URL (success)"
3614
+ msgstr "Termin-Ablehnung URL ( erfolgreich )"
 
3615
 
3616
+ msgid ""
3617
+ "Set the URL of a page that is shown to staff after they successfully "
3618
+ "rejected the appointment."
3619
+ msgstr ""
3620
+ "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem "
3621
+ "sie den Termin erfolgreich abgelehnt haben"
3622
 
3623
+ msgid "Reject appointment URL (denied)"
3624
+ msgstr "Termin-Ablehnung URL ( abgelehnt )"
 
3625
 
3626
+ msgid ""
3627
+ "Set the URL of a page that is shown to staff when the rejection of "
3628
+ "appointment cannot be done (due to changed status, etc.)."
3629
+ msgstr ""
3630
+ "Legen Sie die URL einer Seite fest, die Mitarbeitern angezeigt wird, nachdem "
3631
+ "sie den Termin nicht erfolreich ablehnen konnten ( wegen Status Änderung, "
3632
+ "etc.)"
3633
 
3634
+ msgid ""
3635
+ "Please note, the business hours below work as a template for all new staff "
3636
+ "members. To render a list of available time slots the system takes into "
3637
+ "account only staff members' schedule, not the company business hours. Be "
3638
+ "sure to check the schedule of your staff members if you have some unexpected "
3639
+ "behavior of the booking system."
3640
+ msgstr ""
3641
+ "Bitte beachten Sie, dass die unten aufgeführten Geschäftszeiten als Vorlage "
3642
+ "für alle neuen Mitarbeiter dienen. Um eine Liste der verfügbaren Zeiten zu "
3643
+ "erstellen, berücksichtigt das System nur den Zeitplan der Mitarbeiter, nicht "
3644
+ "die Öffnungszeiten des Unternehmens. Achten Sie darauf, den Zeitplan Ihrer "
3645
+ "Mitarbeiter zu überprüfen, wenn Sie einige unerwartete Verhalten des "
3646
+ "Buchungssystems haben."
3647
 
3648
+ msgid "duration of service"
3649
+ msgstr "Dauer der Dienstleistung"
 
3650
 
3651
+ msgid "To set up Facebook integration, do the following:"
3652
+ msgstr ""
3653
+ "Um die Facebook-Integration einzurichten, gehen Sie folgendermaßen vor:"
3654
 
3655
+ msgid ""
3656
+ "Follow the steps at <a href=\"https://developers.facebook."
3657
+ "com/docs/apps/register\" target=\"_blank\">https://developers.facebook."
3658
+ "com/docs/apps/register</a> to create a Developer Account, register and "
3659
+ "configure your <b>Facebook App</b>. Below the App Details Panel click <b>Add "
3660
+ "Platform</b> button, select Website and enter your website URL."
3661
+ msgstr ""
3662
+ "Folgen Sie den Schritten unter <a href=\"https://developers.facebook."
3663
+ "com/docs/apps/register\" target=\"_blank\"> https://developers.facebook."
3664
+ "com/docs/apps/register </a> um ein Entwicklerkonto zu erstellen, sich zu "
3665
+ "registrieren und die <b> Facebook App </b> zu konfigurieren. Unterhalb des "
3666
+ "App-Details-Bereichs klicken Sie auf die Schaltfläche <b> Plattform "
3667
+ "hinzufügen </b>, wählen Sie Website und geben Sie Ihre Website-URL ein."
3668
 
3669
+ msgid ""
3670
+ "Go to your <a href=\"https://developers.facebook.com/apps/\" "
3671
+ "target=\"_blank\">App Dashboard</a>. In the left side navigation panel of "
3672
+ "the App Dashboard, click <b>Settings > Basic</b> to view the App Details "
3673
+ "Panel with your <b>App ID</b>. Use it in the form below."
3674
+ msgstr ""
3675
+ "Rufen Sie Ihr <a href=\"https://developers.facebook.com/apps/\" "
3676
+ "target=\"_blank\"> App-Dashboard </a> auf. Klicken Sie im linken "
3677
+ "Navigationsbereich des App Dashboards auf <b> Einstellungen > Einfach </b>, "
3678
+ "um das App-Details-panel mit Ihrer <b> App-ID </b> anzuzeigen, verwenden Sie "
3679
+ "sie bitte im Formular weiter unten."
3680
 
3681
+ msgid "App ID"
3682
+ msgstr "App ID"
 
3683
 
3684
+ msgid "Set order of the fields in calendar"
3685
+ msgstr "Reihenfolge der Kalenderfelder festlegen"
 
3686
 
3687
+ msgid "Appointment with one participant"
3688
+ msgstr "Termin mit einen Teilnehmer"
 
3689
 
3690
+ msgid "Appointment with many participants"
3691
+ msgstr "Termin mit mehreren Teilnehmern"
 
3692
 
3693
+ msgid "Currency"
3694
+ msgstr "Währung"
 
3695
 
3696
+ msgid "Price format"
3697
+ msgstr "Preisformat"
 
3698
 
3699
+ msgid "Phone field default country"
3700
+ msgstr "Telefon Feld Standard Land"
 
3701
 
3702
+ msgid ""
3703
+ "Select default country for the phone field in the 'Details' step of booking. "
3704
+ "You can also let Bookly determine the country based on the IP address of the "
3705
+ "client."
3706
+ msgstr ""
3707
+ "Wählen Sie ein Standard Land für das Telefon Feld in dem Schritt der Buchung "
3708
+ "'Details'. Sie können auch Bookly das Land auf der Grundlage der IP-Adresse "
3709
+ "des Kunden bestimmen lassen."
3710
 
3711
+ msgid "Guess country by user's IP address"
3712
+ msgstr "Bestimme Land nach IP-Adresse des Benutzers"
 
3713
 
3714
+ msgid "Default country code"
3715
+ msgstr "Standard-Ländercode"
 
3716
 
3717
+ msgid ""
3718
+ "Your clients must have their phone numbers in international format in order "
3719
+ "to receive text messages. However you can specify a default country code "
3720
+ "that will be used as a prefix for all phone numbers that do not start with "
3721
+ "\"+\" or \"00\". E.g. if you enter \"1\" as the default country code and a "
3722
+ "client enters their phone as \"(600) 555-2222\" the resulting phone number "
3723
+ "to send the SMS to will be \"+1600555222\"."
3724
+ msgstr ""
3725
+ "Ihre Kunden müssen ihre Telefonnummern im internationalen Format, um SMS-"
3726
+ "Nachrichten zu empfangen. Wie auch immer Sie eine Standardlandesvorwahl, die "
3727
+ "als Präfix für alle Telefonnummern, die nicht mit \"+\" oder \"00\" lohnt "
3728
+ "Start verwendet werden können angeben. Z.B. wenn Sie \"1\" als Standard-"
3729
+ "Ländercode eingeben und ein Client gibt seine Handy als \"(600) 555-2222\" "
3730
+ "die resultierende Telefonnummer, um die SMS zu senden, um wird "
3731
+ "\"+1600555222\"."
3732
 
3733
+ msgid "Remember personal information in cookies"
3734
+ msgstr "Kundendaten in Cookies speichern"
 
3735
 
3736
+ msgid ""
3737
+ "If this setting is enabled then returning customers will have their personal "
3738
+ "information fields filled in at the Details step with the data previously "
3739
+ "saved in cookies."
3740
+ msgstr ""
3741
+ "Ist diese Einstellung aktiviert werden die gespeicherten Kundendaten aus den "
3742
+ "Cookies automatisch für wiederkehrende Kunden ausgefüllt"
3743
 
3744
+ msgid "Allow duplicate customers"
3745
+ msgstr "Kundendupliakte erlauben"
 
3746
 
3747
+ msgid ""
3748
+ "If enabled, a new user will be created if any of the registration data "
3749
+ "during the booking is different."
3750
+ msgstr ""
3751
+ "Wenn aktiviert, wird ein neuere Kunde erstellt, wenn Teile der "
3752
+ "Registrierungs-Daten unterschiedlich sind."
3753
 
3754
+ msgid "Show confirmation dialog before updating customer's data"
3755
+ msgstr "Bestätigungsdialog vor Anpassung der Kunden Daten anzeigen"
 
3756
 
3757
+ msgid ""
3758
+ "If this option is enabled and customer enters contact info different from "
3759
+ "the previous order, a warning message will appear asking to update the data."
3760
+ msgstr ""
3761
+ "Ist diese Option aktiviert und die neu eingegebenen Kontaktdaten "
3762
+ "unterscheiden sich von den vorherigen, wird eine Warnmeldung angezeigt. Der "
3763
+ "Kunde kann die Anpassung seiner bisherigen Daten auf diese neuen bestätigen "
3764
+ "oder zur Korrektur der eingegebenen Daten abbrechen."
3765
 
3766
+ #, php-format
3767
+ msgid ""
3768
+ "WooCommerce cart is not set up. Follow the <a href=\"%s\">link</a> to "
3769
+ "correct this problem."
3770
+ msgstr ""
3771
+ "WooCommerce Warenkorb nicht eingerichtet ist. Folgen Sie dem <a href=\"%s\">"
3772
+ "Link</a>, um dieses Problem zu beheben."
3773
 
3774
+ msgid "Quick search services"
3775
+ msgstr "Schnellsuche Dienste"
 
3776
 
3777
+ msgid "Categories..."
3778
+ msgstr "Kategorien..."
 
3779
 
3780
+ msgid "Add service..."
3781
+ msgstr "Dienst hinzufügen..."
 
3782
 
3783
+ msgid "Update service setting"
3784
+ msgstr "Update-Service-Einstellung"
 
3785
 
3786
+ msgid ""
3787
+ "You are about to change a service setting which is also configured "
3788
+ "separately for each staff member. Do you want to update it in staff settings "
3789
+ "too?"
3790
+ msgstr ""
3791
+ "Sie sind dabei, eine Service-Einstellung, die auch separat für jeden "
3792
+ "Mitarbeiter konfiguriert ist, zu ändern. Wollen Sie es in allgemeinen Team-"
3793
+ "Einstellungen aktualisieren?"
3794
 
3795
+ msgid "Remember my choice"
3796
+ msgstr "Auswahl merken"
 
3797
 
3798
+ msgid "No, update just here in services"
3799
+ msgstr "Nein, nur hier im Servicebereich aktualisieren"
 
3800
 
3801
+ msgid "Color"
3802
+ msgstr "Farbe"
 
3803
 
3804
+ msgid "Providers"
3805
+ msgstr "Anbieter"
 
3806
 
3807
+ msgid "All staff"
3808
+ msgstr "Alle Mitarbeiter"
 
3809
 
3810
+ msgid "No staff selected"
3811
+ msgstr "Kein Mitarbeiter ausgewählt"
 
3812
 
3813
+ #, php-format
3814
+ msgid "This text can be inserted into notifications with %s code."
3815
+ msgstr "Dieser Text kann mit %s Code in Benachrichtigungen eingefügt werden."
3816
 
3817
+ msgid "Start and end times of the appointment"
3818
+ msgstr "Startzeitpunkt und Endezeitpunkt des Termines"
 
3819
 
3820
+ msgid ""
3821
+ "Allows to set the start and end times for an appointment for services with "
3822
+ "the duration of 1 day or longer. This time will be displayed in "
3823
+ "notifications to customers, backend calendar and codes for booking form."
3824
+ msgstr ""
3825
+ "Ermöglicht die Festlegung der Start- und Endzeiten für einen Termin für "
3826
+ "Leistungen mit einer Dauer von 1 Tag oder länger. Diese Zeit wird in "
3827
+ "Benachrichtigungen an Kunden, Backend-Kalender und Codes für das "
3828
+ "Buchungsformular angezeigt."
3829
 
3830
+ msgid ""
3831
+ "The time interval which is used as a step when building all time slots for "
3832
+ "the service at the Time step. The setting overrides global settings in "
3833
+ "Settings General. Use Default to apply global settings."
3834
+ msgstr ""
3835
+ "Das Zeitintervall, das als Schritt verwendet wird, wenn alle Zeitfenster für "
3836
+ "den Dienst im Zeitschritt erstellt werden. Die Einstellung überschreibt die "
3837
+ "globalen Einstellungen in den allgemeinen Einstellungen. Verwenden Sie "
3838
+ "Standardeinstellungen, um die globalen Einstellungen anzuwenden"
 
 
 
 
 
 
 
 
 
 
 
 
3839
 
3840
+ msgid "Slot length as service duration"
3841
+ msgstr "Zeitdauer als Servicedauer."
 
3842
 
3843
+ msgid "You must select at least one repeat option for recurring services."
3844
+ msgstr ""
3845
+ "Für wiederkehrende Leistungen müssen Sie mindestens eine Wiederholungsoption "
3846
+ "auswählen."
 
 
 
3847
 
3848
+ msgid "Simple"
3849
+ msgstr "Einfach"
 
3850
 
3851
+ #, php-format
3852
+ msgid "%d service"
3853
+ msgid_plural "%d services"
3854
+ msgstr[0] "%d Dienst"
3855
+ msgstr[1] "%d Dienste"
3856
 
3857
+ msgid "Welcome to Bookly and thank you for your choice!"
3858
+ msgstr "Willkommen bei Bookly und danke für Ihre Wahl!"
 
3859
 
3860
+ msgid ""
3861
+ "Bookly will simplify the booking process for your customers. This plugin "
3862
+ "creates another touchpoint to convert your visitors into customers. With "
3863
+ "Bookly your clients can see your availability, pick the services you provide,"
3864
+ " book them online and much more."
3865
+ msgstr ""
3866
+ "Bookly wird den Buchungsvorgang für seine Kunden vereinfachen. Dieses Plugin "
3867
+ "erzeugt einen Berührungspunkt, um Ihre Besucher in Ihre Kunden zu verwandeln."
3868
+ " Mit Bookly können Ihre Kunden Ihre Verfügbarkeit sehen, die Leistungen "
3869
+ "auswählen, die Sie anbieten, sie online buchen und vieles mehr. \n"
3870
+ "\n"
3871
 
3872
+ msgid ""
3873
+ "To start using Bookly, you need to set up the services you provide and "
3874
+ "specify the staff members who will provide those services."
3875
+ msgstr ""
3876
+ "Um Bookly zu nutzen, müssen Sie die von Ihnen bereitgestellten Dienste "
3877
+ "einrichten und die Mitarbeiter angeben, die diese Dienste bereitstellen."
3878
 
3879
+ msgid ""
3880
+ "Add a staff member (you can add only one service provider with a free "
3881
+ "version of Bookly)."
3882
+ msgstr ""
3883
+ "Fügen Sie einen Mitarbeiter hinzu (Sie können nur einen Serviceanbieter mit "
3884
+ "einer kostenlosen Version von Bookly ausstatten."
3885
 
3886
+ msgid ""
3887
+ "Add services you provide (up to five with a free version of Bookly) and "
3888
+ "assign them to a staff member."
3889
+ msgstr ""
3890
+ "Fügen Sie Leistungen hinzu, die Sie anbieten (bis zu fünf mit einer "
3891
+ "kostenlosen Version von Bookly) und weisen Sie sie einem Mitarbeiter zu."
3892
 
3893
+ msgid ""
3894
+ "Go to Posts/Pages and click on the Add Bookly booking form button in the "
3895
+ "page editor to publish the booking form on your website."
3896
+ msgstr ""
3897
+ "\n"
3898
+ "Gehen Sie zu Posts/Seite und klicken Sie auf den Bookly Buchungsformular "
3899
+ "Button auf der Bearbeitungsseite, um das Buchungsformular auf Ihrer Webseite "
3900
+ "zu veröffentlichen.\n"
3901
 
3902
+ #, php-format
3903
+ msgid ""
3904
+ "Bookly can boost your sales and scale together with your business. Get more "
3905
+ "features and remove the limits by upgrading to the paid version with the <a "
3906
+ "href=\"%s\" target=\"_blank\">Bookly Pro add-on</a>, which allows you to use "
3907
+ "a vast number of additional features and settings for booking services, "
3908
+ "install other add-ons for Bookly, and includes six months of customer "
3909
+ "support."
3910
+ msgstr ""
3911
+ "Bookly kann Ihren Umsatz und Ihr Geschäft zusammen mit Ihrem Unternehmen "
3912
+ "steigern. Holen Sie sich mehr Funktionen und entfernen Sie die "
3913
+ "Einschränkungen, indem Sie mit der <a href=\"%s\" target=\"_blank\"> Bookly "
3914
+ "Pro-Add-On </a> ein Upgrade auf die kostenpflichtige Version durchführen, "
3915
+ "wodurch Sie eine Vielzahl zusätzlicher Funktionen verwenden können, für "
3916
+ "Einstellungen für Buchungsservice, installieren Sie andere Add-Ons für "
3917
+ "Bookly und enthalten einen sechsmonatigen Kundendienst.\n"
3918
+ "\n"
3919
 
3920
+ msgid "Add Staff Members"
3921
+ msgstr "Mitarbeiter hinzufügen"
 
3922
 
3923
+ msgid "Add Services"
3924
+ msgstr "Dienstleistungen hinzufügen"
 
3925
 
3926
+ msgid "Try Bookly Pro add-on"
3927
+ msgstr "Versuchen Sie Bookly Pro add-on"
 
3928
 
3929
+ msgid "No payments for selected period and criteria."
3930
+ msgstr "Keine Zahlungen für den gewünschten Zeitraum und Bedingungen."
 
3931
 
3932
+ msgid "See details for more items"
3933
+ msgstr "Sehe Details für weitere Buchungen"
 
3934
 
3935
+ msgid "Edit custom CSS"
3936
+ msgstr "Bearbeite benutzerdefinierte CSS"
 
3937
 
3938
+ msgid "Set up your custom CSS styles"
3939
+ msgstr "Richten Sie Ihre benutzerdefinierten CSS-Stile ein"
 
3940
 
3941
+ msgid "Show form progress tracker"
3942
+ msgstr "Anzeige des Fortschritts"
 
3943
 
3944
+ msgid "Align buttons to the left"
3945
+ msgstr "Tasten nach links ausrichten"
 
3946
 
3947
+ msgid "Click on the underlined text to edit."
3948
+ msgstr "Zum Ändern klicke auf den unterstrichenen Text."
 
3949
 
3950
+ msgid "How to publish this form on your web site?"
3951
+ msgstr "Wie veröffentlichen Sie dieses Formular auf Ihrer Webseite?"
 
3952
 
3953
+ msgid ""
3954
+ "Open the page where you want to add the booking form in page edit mode and "
3955
+ "click on the \"Add Bookly booking form\" button. Choose which fields you'd "
3956
+ "like to keep or remove from the booking form. Click Insert, and the booking "
3957
+ "form will be added to the page."
3958
+ msgstr ""
3959
+ "Öffnen Sie die Seite, auf der Sie das Buchungsformular hinzufügen wollen und "
3960
+ "klicken Sie auf „Bookly Buchungsformular hinzufügen“. Wählen Sie welche "
3961
+ "Felder Sie behalten oder vom Buchungsformular entfernen wollen. Klicken Sie "
3962
+ "eingeben und das Buchungsformular wird Ihrer Seite hinzugefügt.\n"
3963
+ "\n"
3964
 
3965
+ msgid "Read more"
3966
+ msgstr "Lesen Sie weiter"
 
3967
 
3968
+ msgid "Make selecting employee required"
3969
+ msgstr "Auswahl eines Mitarbeiters erforderlich"
 
3970
 
3971
+ msgid "Show service price next to employee name"
3972
+ msgstr "Preis der Dienstleistung neben dem Mitarbeiternamen anzeigen"
 
3973
 
3974
+ msgid "Show service duration next to service name"
3975
+ msgstr "Dauer der Dienstleistung neben dem Mitarbeiternamen anzeigen"
 
3976
 
3977
+ msgid "Show calendar"
3978
+ msgstr "Zeige Kalender"
 
3979
 
3980
+ msgid "Show blocked timeslots"
3981
+ msgstr "Zeige blockierte Zeiten"
 
3982
 
3983
+ msgid "Show each day in one column"
3984
+ msgstr "Zeige jeden Tag in einer Spalte"
 
3985
 
3986
+ msgid "Phone field required"
3987
+ msgstr "\"Telefon\" ist eine Pflichteingabe"
 
3988
 
3989
+ msgid "Email field required"
3990
+ msgstr "\"E-Mail\" ist eine Pflichteingabe"
 
3991
 
3992
+ msgid "Both email and phone fields required"
3993
+ msgstr "\"E-Mail\" und \"Telefon\" müssen beide ausgefüllt werden"
 
3994
 
3995
+ msgid "Show Login button"
3996
+ msgstr "Zeige Login Button"
 
3997
 
3998
+ msgid "Do not forget to update your email and SMS codes for customer names"
3999
+ msgstr ""
4000
+ "Aktualisierung deiner Email und SMS Codes für Kundennamen nicht vergessen"
4001
 
4002
+ msgid "Use first and last name instead of full name"
4003
+ msgstr "Benutze Vorname und Nachname anstelle des vollständigen Namens"
 
4004
 
4005
+ msgid "Email confirmation field"
4006
+ msgstr "E-Mail Bestätigungsfeld"
 
4007
 
4008
+ msgid "Show notes field"
4009
+ msgstr "Notizfeld anzeigen"
 
4010
 
4011
+ msgid ""
4012
+ "The booking form on this step may have different set or states of its "
4013
+ "elements. It depends on various conditions such as installed/activated add-"
4014
+ "ons, settings configuration or choices made on previous steps. Select option "
4015
+ "and click on the underlined text to edit."
4016
+ msgstr ""
4017
+ "Das Buchungsformular in diesem Schritt kann unterschiedliche Sätze oder "
4018
+ "Zustände seiner Elemente haben. Es hängt von verschiedenen Bedingungen ab, "
4019
+ "wie installierte/aktivierte Add-ons, Einstellungen, Konfiguration oder "
4020
+ "Entscheidungen die in vorherigen Schritten gemacht wurden. Wählen Sie Option "
4021
+ "und klicken Sie auf den unterstrichenen Text, um diese zu bearbeiten."
4022
 
4023
+ msgid "Form view in case of successful booking"
4024
+ msgstr "Formularansicht bei erfolgreicher Buchung"
 
4025
 
4026
+ msgid "Form view in case the number of bookings exceeds the limit"
4027
+ msgstr "Formularansicht bei erreichen der maximalen Anzahl der Buchungungen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4028
 
4029
+ msgid "Form view in case of payment has been accepted for processing"
4030
+ msgstr "Formularansicht bei akzeptiertem Bezahl-Prozess"
 
4031
 
4032
+ msgid "Visible when the chosen time slot has been already booked"
4033
+ msgstr "Sichtbar, für bereits gebuchte Zeiten"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4034
 
4035
+ msgid "Visible to non-logged in customers only"
4036
+ msgstr "Sichtbar nur für anonyme Kunden"
 
 
 
 
 
 
 
 
 
 
 
 
 
4037
 
4038
+ msgid "Previous month"
4039
+ msgstr "Vorheriger Monat"
 
 
 
 
 
 
 
 
 
 
 
4040
 
4041
+ msgid "Your custom CSS was saved. Please refresh the page to see your changes."
4042
+ msgstr ""
4043
+ "Ihre benutzerdefinierte CSS wurde gespeichert. Bitte aktualisieren Sie die "
4044
+ "Seite, um Ihre Änderungen zu sehen."
4045
 
4046
+ msgid "Quick search customer"
4047
+ msgstr "Schnellsuche Kunden"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4048
 
4049
+ msgid "New customer"
4050
+ msgstr "Neuer Kunde"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4051
 
4052
+ msgid "Last appointment"
4053
+ msgstr "Letzter Termin"
 
 
 
 
 
 
 
 
 
 
 
 
 
4054
 
4055
+ msgid "Total appointments"
4056
+ msgstr "Termine insgesamt"
 
 
 
 
 
 
 
 
 
 
 
 
 
4057
 
4058
+ msgid "Merge with"
4059
+ msgstr "Zusammenführen mit"
 
4060
 
4061
+ msgid "Select for merge"
4062
+ msgstr "für Zusammenführung auswählen"
 
4063
 
4064
+ msgid "Merge list"
4065
+ msgstr "Listen zusammenführen"
 
4066
 
4067
+ msgid "Merge customers"
4068
+ msgstr "Kunden Zusammenführen"
 
4069
 
4070
+ msgid ""
4071
+ "You are about to merge customers from the merge list with the selected one. "
4072
+ "This will result in losing the merged customers and moving all their "
4073
+ "appointments to the selected customer. Are you sure you want to continue?"
4074
+ msgstr ""
4075
+ "Sie sind dabei die Kunden von der Zusammenführungsliste mit dem Ausgewählten "
4076
+ "zusammenzuführen. Dies wird zur Folge haben, dass die verschmolzenen Kunden "
4077
+ "verloren gehen und alle ihre Termine auf den ausgewählten Kunden übertragen "
4078
+ "werden. Sind sie sicher, dass sie fortfahren möchten?"
4079
 
4080
+ msgid "Merge"
4081
+ msgstr "Zusammenführen"
 
4082
 
4083
+ msgid "No customers found."
4084
+ msgstr "Keine Kunden gefunden."
 
4085
 
4086
+ msgid "Edit customer"
4087
+ msgstr "Kunden bearbeiten"
 
4088
 
4089
+ msgid "Create customer"
4090
+ msgstr "Neuer Kunde"
 
4091
 
4092
+ msgid "Addons"
4093
+ msgstr "Addons"
 
4094
 
4095
+ msgid "Sort by"
4096
+ msgstr "Sortieren nach"
 
4097
 
4098
+ msgid "Best Sellers"
4099
+ msgstr "Meistverakuft"
 
4100
 
4101
+ msgid "Best Rated"
4102
+ msgstr "Bestbewertet"
 
4103
 
4104
+ msgid "Newest Items"
4105
+ msgstr "Neuster Artikel"
 
4106
 
4107
+ msgid "Price: low to high"
4108
+ msgstr "Preis: vom niedrigsten zum höchsten "
 
4109
 
4110
+ msgid "Price: high to low"
4111
+ msgstr "Preis: vom höchsten zum niedrigsten"
 
4112
 
4113
+ msgid "Demo"
4114
+ msgstr "Demo"
 
4115
 
4116
+ msgid "New"
4117
+ msgstr "Neu"
 
4118
 
4119
+ #, php-format
4120
+ msgid "%d sale"
4121
+ msgid_plural "%d sales"
4122
+ msgstr[0] ""
4123
+ "\n"
4124
+ "%d Verkauf"
4125
+ msgstr[1] ""
4126
+ "\n"
4127
+ "%d Verkäufe"
4128
 
4129
+ #, php-format
4130
+ msgid "%d review"
4131
+ msgid_plural "%d reviews"
4132
+ msgstr[0] "%d Bewertung"
4133
+ msgstr[1] "%d Bewertungen"
4134
 
4135
+ msgid "Installed"
4136
+ msgstr "Installiert"
 
4137
 
4138
+ msgid "Get it!"
4139
+ msgstr "Hohl es dir!"
 
4140
 
4141
+ msgid ""
4142
+ "See the number of appointments and total revenue for the selected period"
4143
+ msgstr ""
4144
+ "Zeigt die Anzahl der Termine und den Gesamterlös für den ausgewählten "
4145
+ "Zeitraum an."
4146
 
4147
+ msgid "end date of appointment"
4148
+ msgstr "Enddatum des Termins"
 
4149
 
4150
+ msgid "end time of appointment"
4151
+ msgstr "Endzeit des Termins"
 
4152
 
4153
+ msgid "cart information"
4154
+ msgstr "Warenkorb Informationen"
 
4155
 
4156
+ msgid "cart information with cancel"
4157
+ msgstr "Warenkorb Informationen mit Löschfunktion"
 
4158
 
4159
+ msgid "address of client"
4160
+ msgstr "Kundenadresse"
 
4161
 
4162
+ msgid "time zone of client"
4163
+ msgstr "Zeitzone des Kunden"
 
4164
 
4165
+ msgid "URL of approve appointment link (to use inside <a> tag)"
4166
+ msgstr "URL zur Termin \"Genehmigung\" (im <a>Tag verwenden)"
 
4167
 
4168
+ msgid ""
4169
+ "URL of cancel appointment link with confirmation (to use inside <a> tag)"
4170
+ msgstr ""
4171
+ "URL des Links zum Stornieren des Termins (zur Nutzung in einem <a> tag)"
4172
 
4173
+ msgid "URL of cancel appointment link (to use inside <a> tag)"
4174
+ msgstr "URL zur Termin \"Abbrechen\" (im <a>Tag verwenden)"
 
4175
 
4176
+ msgid "reason you mentioned while deleting appointment"
4177
+ msgstr "Grund während der Terminstornierung"
 
4178
 
4179
+ msgid ""
4180
+ "URL for adding event to client's Google Calendar (to use inside <a> tag)"
4181
+ msgstr ""
4182
+ "URL für das Hinzufügen von Terminen zum Google Kalender des Kunden (im <a>"
4183
+ "Tag verwenden)"
4184
 
4185
+ msgid "URL of reject appointment link (to use inside <a> tag)"
4186
+ msgstr "URL für abgelehnten Termin Link ( zur Nutzung in einem <a> tag)"
 
4187
 
4188
+ msgid "payment status"
4189
+ msgstr "Zahlungsstatus"
 
4190
 
4191
+ msgid "agenda date"
4192
+ msgstr "Agendadatum"
 
4193
 
4194
+ msgid "staff agenda for next day"
4195
+ msgstr "Termin-Plan für den nächsten Tag"
 
4196
 
4197
+ msgid "date of next day"
4198
+ msgstr "Datum des nächsten Tages"
 
4199
 
4200
+ msgid "customer new password"
4201
+ msgstr "Neues Passwort für Kunden"
4202
+
4203
+ msgid "customer new username"
4204
+ msgstr "Neuer Benutzername für Kunden"
4205
+
4206
+ msgid "site address"
4207
+ msgstr "Website-Adresse"
4208
 
4209
+ msgid "company logo"
4210
+ msgstr "Firmenlogo"
 
4211
 
4212
+ msgid "cancel appointment link"
4213
+ msgstr "Link zum Termin stornieren"
 
4214
 
4215
+ msgid "photo of staff"
4216
+ msgstr "Foto des Mitarbeiters"
 
4217
 
4218
+ msgid "General settings"
4219
+ msgstr "Allgemeine Einstellungen"
 
4220
 
4221
+ msgid "Scheduled notifications retry period"
4222
+ msgstr "Wiederholungszeitraum für geplante Benachrichtigungen"
 
4223
 
4224
+ msgid ""
4225
+ "Set period of time when system will attempt to deliver notification to user. "
4226
+ "Notification will be discarded after period expiration."
4227
+ msgstr ""
4228
+ "Legen Sie einen Zeitraum fest, in dem das System versuchen soll den Nutzer "
4229
+ "zu benachrichtigen. Die Benachrichtigung wird nach Ablauf der Zeitspanne "
4230
+ "verworfen."
4231
 
4232
+ msgid "Save settings"
4233
+ msgstr "Einstellungen speichern"
 
4234
 
4235
+ msgid "Test email notifications"
4236
+ msgstr "E-Mail Benachrichtigungen testen"
 
4237
 
4238
+ msgid "To email"
4239
+ msgstr "An E-Mail"
 
4240
 
4241
+ msgid "Notification templates"
4242
+ msgstr "Benachrichtigungsvorlagen"
 
4243
 
4244
+ msgid "All templates"
4245
+ msgstr "Alle Vorlagen"
 
4246
 
4247
+ msgid "Send"
4248
+ msgstr "Senden"
 
4249
 
4250
+ msgid "Email notifications"
4251
+ msgstr "E-Mail Benachrichtigungen"
 
4252
 
4253
+ msgid "General settings..."
4254
+ msgstr "Allgemeine Einstellungen"
 
4255
 
4256
+ msgid "Test email notifications..."
4257
+ msgstr "Test E-Mail Benachrichtigung"
 
4258
 
4259
+ msgid "Sender name"
4260
+ msgstr "Name des Absenders"
 
4261
 
4262
+ msgid "Sender email"
4263
+ msgstr "Absender E-Mail-Adresse"
 
4264
 
4265
+ msgid "Send emails as"
4266
+ msgstr "Senden Sie E-Mails als"
 
4267
 
4268
+ msgid ""
4269
+ "HTML allows formatting, colors, fonts, positioning, etc. With Text you must "
4270
+ "use Text mode of rich-text editors below. On some servers only text emails "
4271
+ "are sent successfully."
4272
+ msgstr ""
4273
+ "HTML ermöglicht die Formatierung, Farben, Schriftarten, Positionierung, etc. "
4274
+ "Der Text muss im Text-Modus in den Editor eingegeben werden. Einige Server "
4275
+ "senden nur Text-E-Mails."
4276
 
4277
+ msgid "HTML"
4278
+ msgstr "HTML"
 
4279
 
4280
+ msgid "Reply directly to customers"
4281
+ msgstr "Antwort direkt an Kunden"
 
4282
 
4283
+ msgid ""
4284
+ "If this option is enabled then the email address of the customer is used as "
4285
+ "a sender email address for notifications sent to staff members and "
4286
+ "administrators."
4287
+ msgstr ""
4288
+ "Wenn diese Option aktiviert ist, wird die E-Mail-Adresse des Kunden wird als "
4289
+ "Absender E-Mail-Anschrift für Mitteilungen an Mitarbeiter und "
4290
+ "Administratoren gesendet werden."
4291
 
4292
+ msgid "Sent successfully."
4293
+ msgstr "Erfolgreich gesendet."
 
4294
 
4295
+ msgid "Default value for category select"
4296
+ msgstr "Den Standardwert für die Kategorie wählen"
 
4297
 
4298
+ msgid "Default value for service select"
4299
+ msgstr "Standardwert für den Service gewählt"
 
4300
 
4301
+ msgid ""
4302
+ "Please be aware that a value in this field is required in the frontend. If "
4303
+ "you choose to hide this field, please be sure to select a default value for "
4304
+ "it"
4305
+ msgstr ""
4306
+ "Bitte beachten Sie, dass ein Wert in diesem Feld im Frontend erforderlich "
4307
+ "ist. Wenn Sie dieses Feld verbergen, legen Sie bitten einen Standardwert "
4308
+ "fest."
4309
 
4310
+ msgid "Default value for employee select"
4311
+ msgstr "Den Standardwert für die Mitarbeiter wählen"
 
4312
 
4313
+ msgid "Week days"
4314
+ msgstr "Wochentage"
 
4315
 
4316
+ msgid "Time range"
4317
+ msgstr "Zeitspanne"
 
4318
 
4319
+ msgid "Add Bookly booking form"
4320
+ msgstr "Bookly Buchungsformular hinzufügen"
 
4321
 
4322
+ msgid "Insert Appointment Booking Form"
4323
+ msgstr "Termin einfügen in das Reservierungsformular"
 
4324
 
4325
+ msgid "Send tax information"
4326
+ msgstr "Steuerinformationen senden"
 
4327
 
4328
+ msgid "Price correction"
4329
+ msgstr "Preiskorrektur"
 
4330
 
4331
+ msgid ""
4332
+ "This setting affects the cost of the booking according to the payment "
4333
+ "gateway used. Specify a percentage or fixed amount. Use minus (\"-\") sign "
4334
+ "for decrease/discount."
4335
+ msgstr ""
4336
+ "Diese Einstellung wirkt sich je nach verwendetem Zahlungsgateway auf die "
4337
+ "Buchungskosten aus. Geben Sie einen Prozentsatz oder einen festen Betrag an. "
4338
+ "Verwenden Sie das Minuszeichen (\"-\"), um den Rabatt zu verringern."
4339
 
4340
+ msgid "Increase/Discount (%)"
4341
+ msgstr "Preiserhöhung/-nachlass (%)"
 
4342
 
4343
+ msgid "Addition/Deduction"
4344
+ msgstr "Aufschlag/Nachlass"
 
4345
 
4346
+ msgid "Enter a value"
4347
+ msgstr "Geben Sie einen Wert an"
 
4348
 
4349
+ msgid "Add..."
4350
+ msgstr "Hinzufügen..."
 
4351
 
4352
+ msgid "Reset"
4353
+ msgstr "Zurücksetzen"
 
4354
 
4355
+ msgid "Notification settings"
4356
+ msgstr "Benachrichtigungseinstellungen"
 
4357
 
4358
+ msgid "Enter notification name which will be displayed in the list."
4359
+ msgstr ""
4360
+ "Geben Sie den Benachrichtigungsnamen ein, der in der Liste angezeigt wird"
4361
 
4362
+ msgid ""
4363
+ "Choose whether notification is enabled and sending messages or it is "
4364
+ "disabled and no messages are sent until you activate the notification."
4365
+ msgstr ""
4366
+ "Wählen Sie, ob die Benachrichtigung aktiviert ist und Nachrichten sendet "
4367
+ "oder ob sie desaktiviert ist und keine Nachrichten verschickt werden, bis "
4368
+ "sie die Benachrichtigungen aktivieren."
4369
 
4370
+ msgid "Recipients"
4371
+ msgstr "Empfänger"
 
4372
 
4373
+ msgid "Choose who will receive this notification."
4374
+ msgstr "Wählen Sie, wer diese Benachrichtigung erhalten soll."
 
4375
 
4376
+ msgid "Client"
4377
+ msgstr "Kunde"
 
4378
 
4379
+ msgid "Administrators"
4380
+ msgstr "Administratoren"
 
4381
 
4382
+ msgid "Select the type of event at which the notification is sent."
4383
+ msgstr ""
4384
+ "Wählen Sie die Art des Vorgangs, bei dem die Benachrichtigung verschickt "
4385
+ "wird.\n"
4386
 
4387
+ msgid "Instant notifications"
4388
+ msgstr "Sofortige Benachrichtigung"
 
4389
 
4390
+ msgid "Scheduled notifications (require cron setup)"
4391
+ msgstr "Geplante Benachrichtigungen (erfordern Cron Setup)"
 
4392
 
4393
+ msgid ""
4394
+ "This notification is sent once for a booking made by a customer and includes "
4395
+ "all cart items."
4396
+ msgstr ""
4397
+ "Diese Benachrichtigung wird einmalig bei einer Buchung vom Kunden verschickt "
4398
+ "und umfasst alle Warenkorbpositionen.\n"
4399
+ "\n"
4400
+ "\n"
4401
 
4402
+ msgid "Save notification"
4403
+ msgstr "Benachrichtigung speichern"
 
4404
 
4405
+ msgid "Codes"
4406
+ msgstr "Codes"
 
4407
 
4408
+ msgid "Appointment status"
4409
+ msgstr "Terminstatus"
 
4410
 
4411
+ msgid ""
4412
+ "Select what status an appointment should have for the notification to be "
4413
+ "sent."
4414
+ msgstr ""
4415
+ "Wählen Sie welchen Status ein Termin haben sollte, damit die "
4416
+ "Benachrichtigung verschickt wird."
4417
 
4418
+ msgid ""
4419
+ "Choose whether notification should be sent for specific services only or not."
4420
+ msgstr ""
4421
+ "Wählen Sie, ob Benachrichtigung nur für besondere Leistungen gesendet werden "
4422
+ "soll oder nicht.\n"
4423
+ "\n"
4424
 
4425
+ msgid "days"
4426
+ msgstr "Tage"
 
4427
 
4428
+ msgid "before"
4429
+ msgstr "vor"
 
4430
 
4431
+ msgid "after"
4432
+ msgstr "danach"
 
4433
 
4434
+ msgid "on the same day"
4435
+ msgstr "Am gleichen Tag"
 
4436
 
4437
+ msgid "Body"
4438
+ msgstr "Text"
 
4439
 
4440
+ msgid "Sms"
4441
+ msgstr "Sms"
 
4442
 
4443
+ msgid "New sms notification"
4444
+ msgstr "Neue Sms Benachrichtigung"
 
4445
 
4446
+ msgid "Edit sms notification"
4447
+ msgstr "Sms Benachrichtigung bearbeiten"
 
4448
 
4449
+ msgid "Create notification"
4450
+ msgstr "Benachrichtigung erstellen"
 
4451
 
4452
+ msgid "New notification..."
4453
+ msgstr "Neue Benachrichtigung"
 
4454
 
4455
+ msgid ""
4456
+ "If this staff member requires separate login to access personal calendar, a "
4457
+ "regular WP user needs to be created for this purpose."
4458
+ msgstr ""
4459
+ "Wenn dieser Mitarbeiter ein separates Login für den Zugriff auf persönliche "
4460
+ "Kalender erfordert, muss ein WP Anwender für diesen Zweck erstellt werden."
4461
 
4462
+ msgid ""
4463
+ "User with \"Administrator\" role will have access to calendars and settings "
4464
+ "of all staff members, user with another role will have access only to "
4465
+ "personal calendar and settings."
4466
+ msgstr ""
4467
+ "Benutzer mit \"Administrator\" Rechten haben Zugriff zum Kalender und "
4468
+ "Einstellung aller Dienstleister, Benutzer mit anderen Rechten haben nur "
4469
+ "Zugriff zum persönlichen Kalender und Einstellungen"
4470
 
4471
+ msgid ""
4472
+ "If you leave this field blank, this staff member will not be able to access "
4473
+ "personal calendar using WP backend."
4474
+ msgstr ""
4475
+ "Wenn Sie dieses Feld leer lassen hat der Dienstleister keinen Zugriff auf "
4476
+ "seinen persönlichen Kalender über das Wordpress Backend"
4477
 
4478
+ msgid "Select from WP users"
4479
+ msgstr "Auswahl eines gespeichertenWP-Benutzers"
 
4480
 
4481
+ msgid ""
4482
+ "To make staff member invisible to your customers set the visibility to "
4483
+ "\"Private\"."
4484
+ msgstr ""
4485
+ "Um Mitarbeiter vor den Kunden zu verbergen, stellen Sie die Sichtbarkeit auf "
4486
+ "\"Privat\"."
4487
 
4488
+ msgid "Archive"
4489
+ msgstr "Archiv"
 
4490
 
4491
+ msgid "No services found. Please add services."
4492
+ msgstr "Keine Dienste gefunden. Bitte Dienste hinzufügen."
 
4493
 
4494
+ msgid "Add Service"
4495
+ msgstr "Service hinzufügen."
 
4496
 
4497
+ msgid "Days Off"
4498
+ msgstr "Urlaubstage"
 
4499
 
4500
+ msgid "Create staff"
4501
+ msgstr "Angestellte erstellen"
 
4502
 
4503
+ msgid "Edit staff"
4504
+ msgstr "Angestellte bearbeiten"
 
4505
 
4506
+ msgid "The start time must be less than the end one"
4507
+ msgstr "Die Startzeit muss kleiner als das Termin-Ende sein"
 
4508
 
4509
+ msgid "Error adding the break interval"
4510
+ msgstr "Fehler beim Hinzufügen der Pausenzeiten"
 
4511
 
4512
+ msgid "Complete payment"
4513
+ msgstr "Vollständige Bezahlung"
 
4514
 
4515
+ #. Not really sure whats meant by this
4516
+ msgid "Bind payment"
4517
+ msgstr "Zahlung binden"
4518
 
4519
+ msgid "Payment is not found."
4520
+ msgstr "Zahlung nicht gefunden"
 
4521
 
4522
+ msgid "-- Select a service --"
4523
+ msgstr "-- Wählen Sie einen Service --"
 
4524
 
4525
+ msgid "Period"
4526
+ msgstr "Zeitraum"
 
4527
 
4528
+ msgid "Selected period doesn't match service duration"
4529
+ msgstr ""
4530
+ "Der gewählte Zeitraum passt nicht zur Dauer der gewählten Dienstleistung"
4531
 
4532
+ msgid "The selected period is occupied by another appointment"
4533
+ msgstr "Der gewählte Zeitraum ist bereits durch einen anderen Termin belegt"
 
4534
 
4535
+ msgid "Selected period doesn't match provider's schedule"
4536
+ msgstr ""
4537
+ "Die ausgewählte Zeitspanne stimmt nicht mit dem Zeitplan des Anbieters "
4538
+ "überein"
4539
 
4540
+ msgid "Selected period doesn't match service schedule"
4541
+ msgstr ""
4542
+ "Die ausgewählte Zeitspanne stimmt nicht mit dem Dienstleistungsplan überein"
4543
 
4544
+ msgid "Booking exceeds the working hours limit for staff member"
4545
+ msgstr ""
4546
+ "Die Buchung überschreitet die Arbeitsstundeneinschränkung für Mitarbeiter"
4547
 
4548
+ msgid "Booking exceeds your working hours limit"
4549
+ msgstr "Die Buchungen überschreiten Ihr Arbeitszeitlimit"
 
4550
 
4551
+ msgid "Selected / maximum"
4552
+ msgstr "Ausgewählt / max."
 
4553
 
4554
+ msgid "Minimum capacity"
4555
+ msgstr "Mindest Kapazität"
 
4556
 
4557
+ msgid "Edit booking details"
4558
+ msgstr "Buchungsdetails bearbeiten"
 
4559
 
4560
+ msgid "Package schedule"
4561
+ msgstr "Paket Zeitplan"
 
4562
 
4563
+ msgid "View series"
4564
+ msgstr "Folgen ansehen"
 
4565
 
4566
+ msgid "Remove customer"
4567
+ msgstr "Entferne Kunde"
 
4568
 
4569
+ msgid "-- Search customers --"
4570
+ msgstr "--Suche Kunden--"
 
4571
 
4572
+ msgid "Internal note"
4573
+ msgstr "Interner Hinweis"
 
4574
 
4575
+ msgid ""
4576
+ "If you have added a new customer to this appointment or changed the "
4577
+ "appointment status for an existing customer, and for these records you want "
4578
+ "the corresponding email or SMS notifications to be sent to their recipients, "
4579
+ "select the \"Send if new or status changed\" option before clicking Save. "
4580
+ "You can also send notifications as if all customers were added as new by "
4581
+ "selecting \"Send as for new\"."
4582
+ msgstr ""
4583
+ "Wenn Sie einen neuen Kunden für den Termin hinzufügen oder den Terminstatus "
4584
+ "für einen bestehenden Kunden ändern und für diese Aufzeichnungen die "
4585
+ "Korrespondenz E-Mail oder Sms Benachrichtigung an die Empfänger gesendet "
4586
+ "werden soll, wählen Sie die „Senden wenn neu oder Status verändern“ Option, "
4587
+ "ehe Sie speichern klicken. Sie können auch Benachrichtigungen senden, wenn "
4588
+ "alle Kunden als neu hinzugefügt wurden, indem sie „Als neu verschicken“, "
4589
+ "wählen."
4590
 
4591
+ msgid "Send if new or status changed"
4592
+ msgstr "Senden wenn neu oder Status verändert"
 
4593
 
4594
+ msgid "Send as for new"
4595
+ msgstr "Senden als neu"
 
4596
 
4597
+ msgid "Edit appointment"
4598
+ msgstr "Termin bearbeiten"
 
4599
 
4600
+ msgid "Start time must not be empty"
4601
+ msgstr "Startzeit darf nicht leer sein"
 
4602
 
4603
+ msgid "End time must not be empty"
4604
+ msgstr "Endzeit darf nicht leer sein"
 
4605
 
4606
+ msgid "End time must not be equal to start time"
4607
+ msgstr "Die Startzeit muss früher als das Termin-Ende sein"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4608
 
4609
+ #, php-format
4610
+ msgid "The number of customers should not be more than %d"
4611
+ msgstr "Die Anzahl der Kunden sollte nicht größer als %d sein"
4612
 
4613
+ msgid "Could not save appointment in database."
4614
+ msgstr "Termin konnte nicht in Datenbank gespeichert werden."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
4615
 
4616
+ #, php-format
4617
+ msgid "%s has reached the limit of bookings for this service"
4618
+ msgstr "%s hat das Limit der Buchungen dieser Dienstleistung erreicht"
4619
 
4620
+ msgid ""
4621
+ "You are going to delete appointment(s). Notifications will be sent in "
4622
+ "accordance with your settings."
4623
+ msgstr ""
4624
+ "Sie werden Termine löschen. Benachrichtigungen werden in Übereinstimmung mit "
4625
+ "Ihren Einstellungen verschickt."
 
 
 
 
 
4626
 
4627
+ msgid "New Customer"
4628
+ msgstr "Neuer Kunde"
 
4629
 
4630
+ msgid "Delete customers"
4631
+ msgstr "Kunden löschen"
 
4632
 
4633
+ msgid ""
4634
+ "You are going to delete customers with existing bookings. Notifications will "
4635
+ "not be sent to them."
4636
+ msgstr ""
4637
+ "Sie werden Kunden mit bestehenden Buchungen löschen. Benachrichtigungen "
4638
+ "werden Ihnen nicht geschickt."
4639
 
4640
+ msgid "You are going to delete customers, are you sure?"
4641
+ msgstr "Sie wollen Kunden löschen, sind Sie sicher?"
 
4642
 
4643
+ msgid "Delete customers with existing bookings"
4644
+ msgstr "Kunden mit bestehenden Buchungen löschen"
 
4645
 
4646
+ msgid "Delete customers' WordPress accounts if there are any"
4647
+ msgstr ""
4648
+ "Die WordPress Konten der Kunden löschen, wenn es welche gibt\n"
4649
+ "\n"
4650
 
4651
+ msgid "Deleted Customer"
4652
+ msgstr "Gelöschter Kunde"
 
4653
 
4654
+ msgid ""
4655
+ "You are going to delete item which is involved in upcoming appointments. All "
4656
+ "related appointments will be deleted. Please double check and edit "
4657
+ "appointments before this item deletion if needed."
4658
+ msgstr ""
4659
+ "Sie löschen ein Item, das in kommende Termine involviert ist. Alle "
4660
+ "zugehörigen Termine würden gelöscht. Bitte überprüfen Sie alles nochmals "
4661
+ "gründlich bevor Sie das Item löschen, falls das notwendig ist."
4662
 
4663
+ msgid "Edit appointments"
4664
+ msgstr "Termin bearbeiten"
 
4665
 
4666
+ msgid "All unsaved changes will be lost."
4667
+ msgstr "Alle ungesicherten Änderungen gehen verloren."
 
4668
 
4669
+ msgid "Don't save"
4670
+ msgstr "Nicht sichern"
 
4671
 
4672
+ msgid "Create service"
4673
+ msgstr ""
4674
+ "Service anlegen\n"
4675
 
4676
+ msgid "Edit service"
4677
+ msgstr ""
4678
+ "Service bearbeiten\n"
4679
 
4680
+ msgid "Advanced"
4681
+ msgstr ""
4682
+ "Fortgeschritten\n"
4683
 
4684
+ msgid "Categories"
4685
+ msgstr ""
4686
+ "Kategorien\n"
4687
 
4688
+ msgid "Add category"
4689
+ msgstr "Kategorie hinzufügen"
 
4690
 
4691
+ msgid "Attach ICS file"
4692
+ msgstr "ICS-Datei anhängen"
 
4693
 
4694
+ msgid "New email notification"
4695
+ msgstr "Neue E-Mail Benachrichtigung"
 
4696
 
4697
+ msgid "Edit email notification"
4698
+ msgstr "E-Mail Benachrichtigung bearbeiten"
 
4699
 
4700
+ msgid "total quantity of appointments in cart"
4701
+ msgstr "Gesamtmenge der Termine im Einkaufswagen"
 
4702
 
4703
+ msgid "login form"
4704
+ msgstr "Login Formular"
 
4705
 
4706
+ msgid "date of service"
4707
+ msgstr "Datum der Dienstleistung"
 
4708
 
4709
+ msgid "time of service"
4710
+ msgstr "Zeit der Dienstleistung"
 
4711
 
4712
+ msgid "total price of booking"
4713
+ msgstr "Gesamtpreis der Buchung"
 
4714
 
4715
+ msgid ""
4716
+ "To help us improve Bookly, the plugin anonymously collects usage information."
4717
+ " You can opt out of sharing the information in Settings > General."
4718
+ msgstr ""
4719
+ "Damit wir Bookly verbessern können, sammelt das Plugin anonym Informationen."
4720
+ " Sie können in Ihren Einstellungen wählen, ob Sie die Weitergabe von "
4721
+ "Informationen deaktivieren wollen."
4722
 
4723
+ msgid ""
4724
+ "Let the plugin anonymously collect usage information to help Bookly team "
4725
+ "improve the product."
4726
+ msgstr ""
4727
+ "Lassen Sie das Plugin anonym Nutzungsinformationen sammeln, um das Bookly-"
4728
+ "Team bei der Verbesserung des Produkts zu unterstützen."
4729
 
4730
+ msgid "Disagree"
4731
+ msgstr "Widersprechen"
 
4732
 
4733
+ msgid "Agree"
4734
+ msgstr "Zustimmen"
 
4735
 
4736
+ #, php-format
4737
+ msgid ""
4738
+ "<b>Bookly Lite rebrands into Bookly with more features available.</b><br/>"
4739
+ "<br/>We have changed the architecture of Bookly Lite and Bookly to optimize "
4740
+ "the development of both plugin versions and add more features to the new "
4741
+ "free Bookly. To learn more about the major Bookly update, check our <a "
4742
+ "href=\"%s\" target=\"_blank\">blog post</a>."
4743
+ msgstr ""
4744
+ "<b> Bookly Lite wird in Bookly umbenannt und bietet weitere Funktionen. </b> "
4745
+ "<br/> <br/> Wir haben die Struktur von Bookly Lite und Bookly geändert, um "
4746
+ "die Entwicklung beider Plugin-Versionen zu optimieren und neue Funktionen "
4747
+ "für das neue kostenlos Bookly hinzuzufügen. Weitere Informationen zum großen "
4748
+ "Bookly-Update finden Sie in unserem <a href=\"%s\" target=\"_blank\"> "
4749
+ "Blogbeitrag </a>.\n"
4750
+ "\n"
4751
 
4752
+ msgid "This function is not available in the Bookly."
4753
+ msgstr "Diese Funktion ist in Bookly nicht verfügbar."
 
4754
 
4755
+ msgid ""
4756
+ "To get access to all Bookly features, lifetime free updates and 24/7 support,"
4757
+ " please upgrade to the Pro version of Bookly.<br>For more information visit"
4758
+ msgstr ""
4759
+ "Um Zugang zu allen Bookly Funktionen, kostenlosen Updates und 24/7 Support "
4760
+ "zu erhalten, erweitern Sie die Pro Version von Bookly <br> Für mehr "
4761
+ "Informationen besuchen Sie"
4762
 
4763
+ msgid "Subscribe to monthly emails about Bookly improvements and new releases."
4764
+ msgstr ""
4765
+ "Melden Sie sich für monatliche E-Mails über Bookly Verbesserungen und neue "
4766
+ "Versionen an."
4767
 
4768
+ msgid ""
4769
+ "Allow the plugin to set a Powered by Bookly notice on the booking widget to "
4770
+ "spread information about the plugin. This will allow the team to improve the "
4771
+ "product and enhance its functionality."
4772
+ msgstr ""
4773
+ "Erlauben Sie dem Plugin, einen Powered by Bookly-Hinweis auf dem Buchungs-"
4774
+ "Widget zu setzen, um Informationen über das Plugin zu verbreiten. Dies "
4775
+ "ermöglicht es dem Team, das Produkt zu verbessern und seine Funktionalität "
4776
+ "zu verbessern."
4777
 
4778
+ msgid ""
4779
+ "How likely is it that you would recommend Bookly to a friend or colleague?"
4780
+ msgstr ""
4781
+ "Wie wahrscheinlich ist es, dass Sie Bookly an einen Freund oder Kollegen "
4782
+ "empfehlen würden?"
4783
 
4784
+ msgid "What do you think should be improved?"
4785
+ msgstr "Was denken Sie, sollte verbessert werden?"
 
4786
 
4787
+ msgid "Please enter your email (optional)"
4788
+ msgstr "Bitte geben Sie Ihre E-Mail (optional)"
 
4789
 
4790
+ #, php-format
4791
+ msgid "Please leave your feedback <a href=\"%s\" target=\"_blank\">here</a>."
4792
+ msgstr ""
4793
+ "Bitte hinterlassen Sie Ihr Feedback <a href=\"%s\" target=\"_blank\">hier</a>"
4794
+ "."
4795
 
4796
+ msgid "Please, check your email to confirm the subscription. Thank you!"
4797
+ msgstr ""
4798
+ "Bitte überprüfen Sie Ihre E-Mail, um die Anmeldung zu bestätigen. Vielen "
4799
+ "Dank!"
4800
 
4801
+ msgid "Given email address is already subscribed, thank you!"
4802
+ msgstr "Die angegebene E-Mail Adresse ist bereits registriert, vielen Dank!"
 
4803
 
4804
+ msgid "This email address is not valid."
4805
+ msgstr "Diese E-Mail Adresse ist nicht gültig. "
 
4806
 
4807
+ msgid "Revenue"
4808
+ msgstr "Umsatz"
 
4809
 
4810
+ msgid "Approved appointments"
4811
+ msgstr ""
4812
+ "Genehmigte Termine\n"
4813
 
4814
+ msgid "Pending appointments"
4815
+ msgstr "Ausstehende Termine"
 
4816
 
4817
+ msgid "All fields marked with an asterisk (*) are required."
4818
+ msgstr "Alle Felder, mit einem Sternchen markiert (*), sind erforderlich."
 
4819
 
4820
+ msgid "Error sending support request."
4821
+ msgstr "Fehler Support-Anfrage senden."
 
4822
 
4823
+ msgid "Show all notifications"
4824
+ msgstr "Zeige alle Nachrichten"
 
4825
 
4826
+ msgid "Mark all notifications as read"
4827
+ msgstr "Markiere alle Nachrichten als gelesen"
 
4828
 
4829
+ msgid "View this page at Bookly Pro Demo"
4830
+ msgstr "Schauen Sie sich diese Seite bei Bookly Pro Demo an."
 
4831
 
4832
+ msgid "Visit demo"
4833
+ msgstr "Demo besuchen"
 
4834
 
4835
+ msgid ""
4836
+ "The demo is a version of Bookly Pro with all installed add-ons so that you "
4837
+ "can try all the features and capabilities of the system and then choose the "
4838
+ "most suitable configuration according to your business needs."
4839
+ msgstr ""
4840
+ "Die Demo ist eine Version von Bookly Pro mit allen installierten Add-ons, "
4841
+ "damit Sie alle Funktionen und Fähigkeiten des Systems ausprobieren und dann "
4842
+ "die geeignetsten Einstellungen wählen können, je nach den Ansprüchen Ihrer "
4843
+ "Firma."
4844
 
4845
+ msgid "don't show this notification again"
4846
+ msgstr "Zeigen Sie diese Benachrichtigungen nicht noch einmal"
 
4847
 
4848
+ msgid "Proceed to demo"
4849
+ msgstr "Weiter zum Demo gehen"
 
4850
 
4851
+ msgid "Documentation"
4852
+ msgstr "Dokumentation"
 
4853
 
4854
+ msgid "Contact us"
4855
+ msgstr "Kontaktieren Sie uns"
 
4856
 
4857
+ msgid "Need help? Contact us here."
4858
+ msgstr "Brauchen Sie Hilfe? Kontaktieren Sie uns hier."
 
4859
 
4860
+ msgid "Feature requests"
4861
+ msgstr "Funktionsanfragen"
 
4862
 
4863
+ msgid ""
4864
+ "In the Feature Requests section of our Community, you can make suggestions "
4865
+ "about what you'd like to see in our future releases."
4866
+ msgstr ""
4867
+ "Im Bereich Funktionsanfragen unserer Community können Sie Vorschläge dazu "
4868
+ "machen, was Sie in unseren zukünftigen Veröffentlichungen sehen möchten."
4869
 
4870
+ msgid ""
4871
+ "Before you post, please check if the same suggestion has already been made. "
4872
+ "If so, vote for ideas you like and add a comment with the details about your "
4873
+ "situation."
4874
+ msgstr ""
4875
+ "Ehe Sie posten, überprüfen Sie bitte, ob der Vorschlag schon gemacht wurde. "
4876
+ "Wenn ja, dann wählen Sie Ideen, die Ihnen gefallen und fügen Sie einen "
4877
+ "Kommentar mit Details über Ihre Situation hinzu."
4878
 
4879
+ msgid ""
4880
+ "It's much easier for us to address a suggestion if we clearly understand the "
4881
+ "context of the issue, the problem, and why it matters to you. When "
4882
+ "commenting or posting, please consider these questions so we can get a "
4883
+ "better idea of the problem you're facing:"
4884
+ msgstr ""
4885
+ "Es ist viel einfacher für uns, einen Vorschlag anzusprechen, wenn wir den "
4886
+ "Kontext des Problems, das Problem und warum es Ihnen wichtig ist, klar "
4887
+ "verstehen. Berücksichtigen Sie beim Kommentieren oder Posten diese Fragen, "
4888
+ "damit wir eine bessere Vorstellung von dem Problem erhalten, mit dem Sie "
4889
+ "konfrontiert sind:\n"
4890
+ "\n"
4891
 
4892
+ msgid "What is the issue you're struggling with?"
4893
+ msgstr "Was für ein Problem haben Sie?"
 
4894
 
4895
+ msgid "Where in your workflow do you encounter this issue?"
4896
+ msgstr "Wo in Ihrem Arbeitsvorgang befindet sich das Problem?"
 
4897
 
4898
+ msgid ""
4899
+ "Is this something that impacts just you, your whole team, or your customers?"
4900
+ msgstr ""
4901
+ "Ist das etwas, was nur Sie betrifft oder Ihr ganzes Team oder Ihre Kunden?\n"
4902
+ "\n"
4903
+ "\n"
4904
 
4905
+ msgid "Proceed to Feature requests"
4906
+ msgstr "Fahren Sie mit den Funktionsanfragen fort"
 
4907
 
4908
+ msgid "Feedback"
4909
+ msgstr "Feedback"
 
4910
 
4911
+ msgid ""
4912
+ "We care about your experience of using Bookly!<br/>Leave a review and tell "
4913
+ "others what you think."
4914
+ msgstr ""
4915
+ "Wir interessieren uns für Ihre Erfahrung mit der Anwendung Bookly<br/>"
4916
+ "Hinterlassen Sie eine Bewertung und erzählen Sie anderen was Sie darüber "
4917
+ "denken. \n"
4918
+ "\n"
4919
+ "\n"
4920
 
4921
+ msgid "Leave us a message"
4922
+ msgstr "Hinterlassen Sie uns eine Nachricht"
 
4923
 
4924
+ msgid "Your name"
4925
+ msgstr "Ihr Name"
 
4926
 
4927
+ msgid "Email address"
4928
+ msgstr "E-Mail-Addresse "
 
4929
 
4930
+ msgid "How can we help you?"
4931
+ msgstr "Wie können wir Ihnen helfen?"
 
4932
 
4933
+ msgid "Booking form"
4934
+ msgstr "Buchungsformular"
 
 
4935
 
4936
+ msgid "A custom block for displaying booking form"
4937
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen des Buchungsformulars"
 
4938
 
4939
+ msgid "Select location"
4940
+ msgstr "Ort auswählen"
 
 
4941
 
4942
+ msgid "Form fields"
4943
+ msgstr "Formular Felder"
 
4944
 
4945
+ msgid "Default value for location"
4946
+ msgstr "Standardwert für den Standort"
 
 
4947
 
4948
+ msgid "Default value for category"
4949
+ msgstr "Standardwert für Kategorie"
 
 
4950
 
4951
+ msgid "Default value for service"
4952
+ msgstr "Standardwert für Leistung"
 
 
4953
 
4954
+ msgid "Default value for employee"
4955
+ msgstr "Standardwert für Angestellten"
 
4956
 
4957
+ msgid "Quantity"
4958
+ msgstr "Menge"
 
4959
 
4960
+ msgid "hide"
4961
+ msgstr "Verstecken"
 
4962
 
4963
+ msgid "Loading..."
4964
+ msgstr "Wird geladen ..."
 
4965
 
4966
+ msgid "Powered by"
4967
+ msgstr "Powered by"
 
4968
 
4969
+ msgid "No time is available for selected criteria."
4970
+ msgstr "Es stehen keine Zeiten für die ausgewählten Kriterien zur Verfügung."
 
4971
 
4972
+ msgid "Data already in use"
4973
+ msgstr "Diese Daten werden bereits verwendet"
 
4974
 
4975
+ msgid "Page Redirection"
4976
+ msgstr "Seite Umleitung"
 
4977
 
4978
+ #, php-format
4979
+ msgid ""
4980
+ "If you are not redirected automatically, follow the <a href=\"%s\">link</a>."
4981
+ msgstr ""
4982
+ "Wenn Sie nicht automatisch umgeleitet werden, folgen Sie bitte diesem <a "
4983
+ "href=\"%s\">Link</a>."
4984
 
4985
+ msgid "Show more"
4986
+ msgstr "Zeige mehr"
 
4987
 
4988
+ msgid "Session error."
4989
+ msgstr "Sitzungsfehler."
 
4990
 
4991
+ msgid "Form ID error."
4992
+ msgstr "Form ID Fehler."
 
4993
 
4994
+ msgid "Pay locally is not available."
4995
+ msgstr "Vor Ort zahlen ist nicht verfügbar."
 
4996
 
4997
+ msgid "Invalid gateway."
4998
+ msgstr "Ungültige Gateway."
 
4999
 
5000
+ msgid "Error."
5001
+ msgstr "Fehler."
 
5002
 
5003
+ msgid "Notification to customer about purchased package"
5004
+ msgstr "Benachrichtigung des Kunden über das gekaufte Paket"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5005
 
5006
+ msgid "Your package at {company_name}"
5007
+ msgstr "ihr Paket bei {company_name}"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5008
 
5009
+ msgid ""
5010
+ "Dear {client_name}.\n"
 
 
 
 
 
 
5011
  "\n"
5012
+ "This is a confirmation that you have booked {package_name}.\n"
5013
+ "We are waiting you at {company_address}.\n"
5014
  "\n"
5015
  "Thank you for choosing our company.\n"
5016
  "\n"
5017
  "{company_name}\n"
5018
  "{company_phone}\n"
5019
  "{company_website}"
5020
+ msgstr ""
5021
+ "Lieber {client_name_male}.\n"
5022
+ "Liebe {client_name_female}.\n"
 
 
 
 
5023
  "\n"
5024
+ "Dies ist eine Bestätigung, dass Sie folgendes Paket gebucht haben: "
5025
+ "{package_name}.\n"
5026
+ "Wir erwarten Sie vor Ort: {company_address}.\n"
5027
  "\n"
5028
+ "Danke, dass Sie sich für unser Angebot entschieden haben.\n"
5029
  "\n"
5030
  "{company_name}\n"
5031
  "{company_phone}\n"
5032
+ "{company_website}\n"
5033
 
5034
+ msgid "Notification to staff member about purchased package"
5035
+ msgstr "Benachrichtigung des Mitarbeiters über das gekaufte Paket"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5036
 
5037
+ msgid "New package booking"
5038
+ msgstr "Neues Paket gebucht"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5039
 
5040
+ msgid ""
5041
+ "Hello.\n"
5042
  "\n"
5043
+ "You have new package booking.\n"
5044
  "\n"
5045
+ "Package: {package_name}\n"
5046
  "\n"
 
 
 
5047
  "Client name: {client_name}\n"
5048
+ "\n"
5049
  "Client phone: {client_phone}\n"
5050
+ "\n"
5051
  "Client email: {client_email}"
5052
+ msgstr ""
5053
+ "Hallo.\n"
5054
  "\n"
5055
+ "Sie haben ein neues Paket gebucht.\n"
5056
  "\n"
5057
+ "Paket: {package_name}\n"
5058
  "\n"
5059
+ "Kunden-Name: {client_name}\n"
 
 
 
 
 
 
 
 
 
 
 
5060
  "\n"
5061
+ "Kunden-Telefon: {client_phone}\n"
 
 
 
 
 
 
 
 
5062
  "\n"
5063
+ "Kunden-E-mail: {client_email}"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5064
 
5065
+ msgid ""
5066
+ "Dear {client_name}.\n"
5067
+ "This is a confirmation that you have booked {package_name}.\n"
5068
+ "We are waiting you at {company_address}.\n"
 
5069
  "Thank you for choosing our company.\n"
5070
  "{company_name}\n"
5071
  "{company_phone}\n"
5072
  "{company_website}"
5073
+ msgstr ""
5074
+ "Lieber {client_name}.\n"
5075
+ "Dies ist eine Bestätigung, dass Sie {package_name} gebucht haben.\n"
5076
+ "Wir erwarten Sie unter {company_address}.\n"
5077
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5078
  "{company_name}\n"
5079
  "{company_phone}\n"
5080
  "{company_website}"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5081
 
5082
+ msgid ""
5083
+ "Hello.\n"
5084
+ "You have new package booking.\n"
5085
+ "Package: {package_name}\n"
5086
+ "Client name: {client_name}\n"
5087
+ "Client phone: {client_phone}\n"
5088
+ "Client email: {client_email}"
5089
+ msgstr ""
5090
+ "Hallo.\n"
5091
+ "Sie haben eine neue Paketbuchung.\n"
5092
+ "Paket: {package_name}\n"
5093
+ "Kundenname: {client_name}\n"
5094
+ "Kundentelefon: (client_phone)\n"
5095
+ "Kunden-E-Mail: {client_email}"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5096
 
5097
+ msgid "Notification to customer about package deactivation"
5098
+ msgstr "Benachrichtigung des Kunden über die Paketdeaktivierung"
 
5099
 
5100
+ msgid "Service package is deactivated"
5101
+ msgstr "Servicepaket ist deaktiviert"
 
5102
 
5103
+ msgid ""
5104
+ "Dear {client_name}.\n"
 
 
 
 
5105
  "\n"
5106
+ "Your package of services {package_name} has been deactivated.\n"
5107
  "\n"
5108
  "Thank you for choosing our company.\n"
5109
  "\n"
5110
+ "If you have any questions, please contact us.\n"
5111
  "{company_name}\n"
5112
  "{company_phone}\n"
5113
  "{company_website}"
5114
+ msgstr ""
5115
+ "Lieber {client_name}.\n"
 
 
 
5116
  "\n"
5117
+ "Ihr Servicepaket {package_name} wurde deaktiviert.\n"
5118
  "\n"
5119
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
5120
  "\n"
5121
+ "Wenn Sie Fragen haben, kontaktieren Sie uns bitte.\n"
5122
  "{company_name}\n"
5123
  "{company_phone}\n"
5124
  "{company_website}"
5125
 
5126
+ msgid "Notification to staff member about package deactivation"
5127
+ msgstr "Benachrichtigung des Mitarbeiters über die Paketdeaktivierung"
 
5128
 
5129
+ msgid ""
5130
+ "Hello.\n"
5131
  "\n"
5132
+ "The following Package of services {package_name} has been deactivated.\n"
5133
  "\n"
 
 
 
5134
  "Client name: {client_name}\n"
5135
+ "\n"
5136
  "Client phone: {client_phone}\n"
5137
+ "\n"
5138
  "Client email: {client_email}"
5139
+ msgstr ""
5140
+ "Hallo.\n"
5141
  "\n"
5142
+ "Das folgende Paket von Diensten {package_name} wurde deaktiviert.\n"
5143
  "\n"
 
 
 
5144
  "Kundenname: {client_name}\n"
5145
+ "\n"
5146
+ "Kundentelefon: {client_phone}\n"
5147
+ "\n"
5148
  "Kunden-E-Mail: {client_email}"
5149
 
5150
+ msgid ""
5151
+ "Dear {client_name}.\n"
5152
+ "Your package of services {package_name} has been deactivated.\n"
 
 
5153
  "Thank you for choosing our company.\n"
5154
+ "If you have any questions, please contact us.\n"
5155
  "{company_name}\n"
5156
  "{company_phone}\n"
5157
  "{company_website}"
5158
+ msgstr ""
5159
+ "Lieber {client_name}.\n"
5160
+ "Ihr Paket von Diensten {package_name} wurde deaktiviert.\n"
 
5161
  "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
5162
+ "Wenn Sie Fragen haben, kontaktieren Sie uns bitte.\n"
5163
+ "{company_name}\n"
5164
+ "{company_phone}\n"
5165
+ "{company_website}"
5166
 
5167
+ msgid ""
5168
+ "Hello.\n"
5169
+ "The following Package of services {package_name} has been deactivated.\n"
 
 
 
5170
  "Client name: {client_name}\n"
5171
  "Client phone: {client_phone}\n"
5172
  "Client email: {client_email}"
5173
+ msgstr ""
5174
+ "Hallo.\n"
5175
+ "Das folgende Paket von Diensten {package_name} wurde deaktiviert.\n"
 
 
5176
  "Kundenname: {client_name}\n"
5177
+ "Kundentelefon: {client_phone}\n"
5178
+ "Hallo.\n"
5179
+ "Das folgende Paket von Diensten {package_name} wurde deaktiviert.\n"
5180
+ "Kundenname: {client_name}\n"
5181
+ "Kundentelefon: {client_phone}\n"
5182
  "Kunden-E-Mail: {client_email}"
5183
 
5184
+ msgid "Notification about new package creation"
5185
+ msgstr "Benachrichtigung über die Erstellung neuer Pakete"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
5186
 
5187
+ msgid "Notification about package deletion"
5188
+ msgstr ""
5189
+ "Benachrichtigung über Paketlöschung\n"
5190
+ "\n"
5191
 
5192
+ msgid "Packages"
5193
+ msgstr "Pakete"
 
5194
 
5195
+ msgid "Unassigned"
5196
+ msgstr "Nicht zugewiesen"
 
5197
 
5198
+ msgid ""
5199
+ "Enable this setting so that the package can be displayed and available for "
5200
+ "booking when clients have not specified a particular provider."
5201
+ msgstr ""
5202
+ "Aktivieren Sie diese Einstellung, damit das Paket angezeigt und gebucht "
5203
+ "werden kann, wenn der Kunde keinen bestimmten Anbieter angegeben hat."
5204
 
5205
+ msgid "Life Time"
5206
+ msgstr "Lebenslang"
 
5207
 
5208
+ msgid "The period in days when the customer can use a package of services."
5209
+ msgstr ""
5210
+ "Der Zeitraum in Tagen, während ein Kunde ein Dienstleistungspaket verwenden "
5211
+ "kann."
5212
 
5213
+ msgid "New package"
5214
+ msgstr "Neues Paket"
 
5215
 
5216
+ msgid "Creation Date"
5217
+ msgstr "Erstellungsdatum"
 
5218
 
5219
+ msgid "Edit package"
5220
+ msgstr "Paket bearbeiten"
 
5221
 
5222
+ msgid "No packages for selected period and criteria."
5223
+ msgstr "Keine Pakete für ausgewählte Zeiten und Kriterien."
 
5224
 
5225
+ msgid "name of package"
5226
+ msgstr "Paketname"
 
5227
 
5228
+ msgid "package size"
5229
+ msgstr "Paketgröße"
 
5230
 
5231
+ msgid "price of package"
5232
+ msgstr "Paketpreis"
 
5233
 
5234
+ msgid "package life time"
5235
+ msgstr "lebenslanges Paket"
 
5236
 
5237
+ msgid "reason you mentioned while deleting package"
5238
+ msgstr "Gründe, die Sie nannten während Sie ein Paket gelöscht haben"
 
5239
 
5240
+ msgid "Add customer packages list"
5241
+ msgstr "Zur Kunden Paketliste hinzufügen"
 
5242
 
5243
+ msgid ""
5244
+ "Select service provider to see the packages provided. Or select unassigned "
5245
+ "package to see packages with no particular provider."
5246
+ msgstr ""
5247
+ "Wählen Sie einen Dienstleistungsanbieter aus, um zu sehen, welche Paket "
5248
+ "angeboten werden. Oder wählen Sie Pakete ohne bestimmten Anbieter aus."
5249
 
5250
+ msgid "-- Select a package --"
5251
+ msgstr "Packet auswählen"
 
5252
 
5253
+ msgid "Please select a package"
5254
+ msgstr "Bitte Paket auswählen"
 
5255
 
5256
+ msgid "Incorrect location and package combination"
5257
+ msgstr "Fehlerhafter Ort und Paket Kombination"
 
5258
 
5259
+ msgid "Please select a customer"
5260
+ msgstr "Bitte Kunden auswählen"
 
5261
 
5262
+ msgid "Save & schedule"
5263
+ msgstr "Sichern & terminieren"
 
5264
 
5265
+ msgid "Could not save package in database."
5266
+ msgstr "Paket konnte nicht in Datenbank gesichert werden."
 
5267
 
5268
+ msgid ""
5269
+ "Selected appointment date exceeds the period when the customer can use a "
5270
+ "package of services."
5271
+ msgstr ""
5272
+ "Ausgewähltes Termindatum überschreitet den Zeitraum, in dem der Kunde ein "
5273
+ "Paket von Dienstleistungen nutzen kann."
5274
 
5275
+ msgid "Ignore"
5276
+ msgstr "Ignorieren"
 
5277
 
5278
+ msgid "Selected period is occupied by another appointment"
5279
+ msgstr "Ausgewählter Zeitraum ist belegt durch einen anderen Termin"
 
5280
 
5281
+ msgid ""
5282
+ "Unfortunately, you're not able to book an appointment because the required "
5283
+ "time limit prior to booking has expired."
5284
+ msgstr ""
5285
+ "Leider ist es für Sie nicht möglich einen Termin zu vereinbaren, weil die "
5286
+ "benötigte Vorlaufzeit zur Terminbuchung abgelaufen ist."
5287
 
5288
+ msgid ""
5289
+ "You are trying to schedule an appointment in the past. Please select another "
5290
+ "time slot."
5291
+ msgstr ""
5292
+ "Sie versuchen einen Termin in der Vergangenheit zu vereinbaren. Bitte wählen "
5293
+ "Sie einen anderes Zeitfenster"
5294
 
5295
+ msgid "Select appointment date"
5296
+ msgstr "Datum des Termins auswählen"
 
5297
 
5298
+ msgid "Delete package appointment"
5299
+ msgstr "Termin Paket löschen"
 
5300
 
5301
+ msgid "Edit package appointment"
5302
+ msgstr "Termin Paket bearbeiten"
 
5303
 
5304
+ msgid "Packages list"
5305
+ msgstr "Paketliste"
 
5306
 
5307
+ msgid "A custom block for displaying packages list"
5308
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen der Paketliste"
 
5309
 
5310
+ msgid "Expires"
5311
+ msgstr "Erlischt"
 
5312
 
5313
+ msgid "Notification to customer about their WordPress user login details"
5314
+ msgstr "Benachrichtigung an Kunden über ihre Wordpress Login-Daten"
 
5315
 
5316
+ msgid ""
5317
+ "Hello.\n"
5318
+ "\n"
5319
+ "An account was created for you at {site_address}\n"
5320
+ "\n"
5321
+ "Your user details:\n"
5322
+ "user: {new_username}\n"
5323
+ "password: {new_password}\n"
5324
+ "\n"
5325
+ "Thanks."
5326
+ msgstr ""
5327
+ "Hallo.\n"
5328
+ "\n"
5329
+ "Ein Benutzerkonto wurde für Sie auf der Seite {site_address} erstellt\n"
5330
+ "\n"
5331
+ "Ihre Benutzerdaten lauten:\n"
5332
+ "Benutzer: {new_username}\n"
5333
+ "Passwort: {new_password}\n"
5334
+ "\n"
5335
+ "Vielen Dank"
5336
 
5337
+ msgid "Your appointment at {company_name}"
5338
+ msgstr "Ihr nächster Termin für {company_name}"
 
5339
 
5340
+ msgid ""
5341
+ "Dear {client_name}.\n"
5342
  "\n"
5343
+ "We would like to remind you that you have booked {service_name} tomorrow at "
5344
+ "{appointment_time}. We are waiting for you at {company_address}.\n"
5345
  "\n"
5346
  "Thank you for choosing our company.\n"
5347
  "\n"
5348
  "{company_name}\n"
5349
  "{company_phone}\n"
5350
  "{company_website}"
5351
+ msgstr ""
5352
+ "Sehr geehrte/r {client_name}.\n"
5353
  "\n"
5354
+ "Wir möchten Sie gerne daran erinnern, das sie {service_name} für morgen um "
5355
+ "{appointment_time} gebucht haben . Wir erwarten Sie morgen hier: "
5356
+ "{company_address}.\n"
5357
  "\n"
5358
+ "Vielen Dank, dass Sie uns gewählt haben.\n"
5359
  "\n"
5360
  "{company_name}\n"
5361
  "{company_phone}\n"
5362
  "{company_website}"
5363
 
5364
+ msgid "Your visit to {company_name}"
5365
+ msgstr "Ihr Besuch von {company_name}"
5366
+
5367
+ msgid ""
5368
+ "Dear {client_name}.\n"
5369
  "\n"
5370
+ "Thank you for choosing {company_name}. We hope you were satisfied with your "
5371
+ "{service_name}.\n"
5372
  "\n"
5373
+ "Thank you and we look forward to seeing you again soon.\n"
 
 
 
 
 
 
5374
  "\n"
5375
+ "{company_name}\n"
5376
+ "{company_phone}\n"
5377
+ "{company_website}"
5378
+ msgstr ""
5379
+ "Sehr geehrte/r {client_name}.\n"
5380
  "\n"
5381
+ "Vielen Dank, dass Sie sich für {company_name} entschieden haben. Wir hoffen, "
5382
+ "dass Sie mit Ihrem {service_name} zufrieden waren.\n"
5383
+ "\n"
5384
+ "Vielen Dank und wir freuen uns auf ein baldiges Wiedersehen.\n"
5385
+ "\n"
5386
+ "{company_name}\n"
5387
+ "{company_phone}\n"
5388
+ "{company_website}"
5389
 
5390
+ msgid "Your agenda for {tomorrow_date}"
5391
+ msgstr "Ihre Terminplan für {tomorrow_date}"
 
5392
 
5393
+ msgid ""
5394
+ "Hello.\n"
5395
  "\n"
5396
+ "Your agenda for tomorrow is:\n"
5397
  "\n"
5398
+ "{next_day_agenda}"
5399
+ msgstr ""
5400
+ "Hallo.\n"
5401
  "\n"
5402
+ "Ihr Terminplan für morgen ist:\n"
5403
  "\n"
5404
+ "{next_day_agenda}"
5405
 
5406
+ msgid ""
5407
+ "Dear {client_name}.\n"
5408
+ "\n"
5409
+ "This is a confirmation that you have booked the following items:\n"
5410
+ "\n"
5411
+ "{cart_info}\n"
5412
+ "\n"
5413
  "Thank you for choosing our company.\n"
5414
+ "\n"
5415
  "{company_name}\n"
5416
  "{company_phone}\n"
5417
  "{company_website}"
5418
+ msgstr ""
5419
+ "Lieber {client_name}.\n"
5420
+ "\n"
5421
+ "Dies ist eine Bestätigung, dass Sie die folgendes gebucht haben:\n"
5422
+ "\n"
5423
+ "{cart_info}\n"
5424
+ "\n"
5425
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
5426
+ "\n"
5427
+ "{company_name}\n"
5428
+ "{company_phone}\n"
5429
+ "{company_website}"
5430
+
5431
+ msgid ""
5432
+ "Hello.\n"
5433
+ "An account was created for you at {site_address}\n"
5434
+ "Your user details:\n"
5435
+ "user: {new_username}\n"
5436
+ "password: {new_password}\n"
5437
+ "\n"
5438
+ "Thanks."
5439
+ msgstr ""
5440
+ "Hallo.\n"
5441
+ "Ein benutzer-Konto wurde für Sie auf {site_address} eingerichtet\n"
5442
+ "Ihre Benutzerdaten lauten wie folgt:\n"
5443
+ "Benutzer: {new_username}\n"
5444
+ "Passwort: {new_password}\n"
5445
+ "\n"
5446
+ "Vielen Dank."
5447
+
5448
+ msgid ""
5449
+ "Dear {client_name}.\n"
5450
+ "This is a confirmation that you have booked the following items:\n"
5451
+ "{cart_info}\n"
5452
+ "Thank you for choosing our company.\n"
5453
+ "{company_name}\n"
5454
+ "{company_phone}\n"
5455
+ "{company_website}"
5456
+ msgstr ""
5457
+ "Sehr geehrte/r {client_name}. \n"
5458
+ "Dies ist eine Bestätigung, dass Sie die folgenden Gegenstände gebucht haben: "
5459
+ "{cart_info} \n"
5460
+ "Vielen Dank, dass Sie unser Unternehmen gewählt haben. \n"
5461
+ "{company_name}\n"
5462
  "{company_phone} \n"
5463
  "{company_website}\n"
5464
  "\n"
 
5465
 
5466
+ msgid "I will pay now with PayPal"
5467
+ msgstr "Ich möchte per PayPal bezahlen"
5468
+
5469
+ msgid ""
5470
+ "You are not required to pay for the booked services, click Next to complete "
5471
+ "the booking process."
5472
+ msgstr ""
5473
+ "Sie sind nicht verpflichtet, für die gebuchten Leistungen zu bezahlen, "
5474
+ "klicken Sie auf Weiter, um den Buchungsprozess abzuschließen."
5475
+
5476
+ msgid "Street Number"
5477
+ msgstr "Hausnummer"
5478
+
5479
+ msgid "Street number is required"
5480
+ msgstr "Eine Hausnummer wird benötigt"
5481
+
5482
+ msgid "Appointment"
5483
+ msgstr "Termin"
5484
+
5485
+ msgid "Customer's birthday"
5486
+ msgstr "Geburtstag des Kunden"
5487
+
5488
+ msgid "Notification to customer about approved appointments"
5489
+ msgstr "Benachrichtigung an Kunden über bestätigte Termine"
5490
+
5491
+ msgid "Notification to customer about pending appointments"
5492
+ msgstr ""
5493
+ "Benachrichtigung an Kunden über ausstehende Termine\n"
5494
+ "\n"
5495
+ "\n"
5496
+
5497
+ msgid "Extras"
5498
+ msgstr "Extras"
5499
+
5500
+ msgid "Check for updates"
5501
+ msgstr "Auf Updates prüfen"
5502
+
5503
+ msgid "This plugin is up to date."
5504
+ msgstr "Dieses Plugin ist auf dem neuesten Stand."
5505
+
5506
+ msgid "A new version of this plugin is available."
5507
+ msgstr "Eine neue Version des Plugins ist verfügbar."
5508
+
5509
+ #, php-format
5510
+ msgid "Unknown update checker status \"%s\""
5511
+ msgstr "Unbekannt Update Checker-Status \"%s\""
5512
+
5513
+ #, php-format
5514
+ msgid "To update - enter the <a href=\"%s\">Purchase Code</a>"
5515
+ msgstr ""
5516
+ "Zum aktualisieren geben Sie den <a href=\"%s\">Registrierungs-Code</a> ein"
5517
+
5518
+ msgid "Please verify your Bookly Pro license"
5519
+ msgstr "Bitte überprüfen Sie Ihre Bookly Pro Lizenz."
5520
+
5521
+ msgid ""
5522
+ "Bookly Pro will need to verify your license to restore access to your "
5523
+ "bookings. Please enter the purchase code in the administrative panel."
5524
+ msgstr ""
5525
+ "Bookly Pro muss Ihre Lizenz überprüfen, um Zugang zu Ihren Buchungen zu "
5526
+ "bekommen. Bitte geben Sie den Einkaufscode im Verwaltungspanel ein.\n"
5527
+ "\n"
5528
+
5529
+ msgid ""
5530
+ "Please verify Bookly Pro license in the administrative panel. If you do not "
5531
+ "verify the license within {days}, access to your bookings will be disabled."
5532
+ msgstr ""
5533
+ "Bitte überprüfen Sie Ihre Bookly Pro Lizenz im Verwaltungspanel. Wenn Sie "
5534
+ "die Lizenz nicht innerhalb von ein paar Tagen bestätigen lassen, wird Ihnen "
5535
+ "der Zugang zu Ihren Buchungen gesperrt.\n"
5536
+ "\n"
5537
+
5538
+ msgid "License verification"
5539
+ msgstr "Lizenzüberprüfung"
5540
+
5541
+ msgid ""
5542
+ "A new appointment has been created. To view the details of this appointment, "
5543
+ "please contact your website administrator in order to verify Bookly Pro "
5544
+ "license."
5545
+ msgstr ""
5546
+ "Ein neuer Termin wurde erstellt. Um die Details dieses Termins einzusehen, "
5547
+ "kontaktieren Sie bitte Ihren Webseitenadministrator, um Ihre Bookly Pro "
5548
+ "Lizenz bestätigen zu lassen.\n"
5549
+ "\n"
5550
+
5551
+ msgid ""
5552
+ "You have a new appointment. To view it, contact your admin to verify Bookly "
5553
+ "Pro license."
5554
+ msgstr ""
5555
+ "Sie haben einen neuen Termin. Um ihn anzusehen, kontaktieren Sie Ihren Admin,"
5556
+ " um Ihre Bookly Pro Lizenz zu bestätigen.\n"
5557
+ "\n"
5558
+
5559
+ msgid ""
5560
+ "A new appointment has been created. To view the details of this appointment, "
5561
+ "please verify Bookly Pro license in the administrative panel."
5562
+ msgstr ""
5563
+ "Ein neuer Termin wurde erstellt. Um sich die Details dieses Termins "
5564
+ "anzusehen, lassen Sie sich Ihre Bookly Pro Lizenz im Verwaltungspanel "
5565
+ "bestätigen."
5566
+
5567
+ msgid ""
5568
+ "You have a new appointment. To view it, please verify Bookly Pro license."
5569
+ msgstr ""
5570
+ "Sie haben einen neuen Termin. Um ihn anzusehen, lassen Sie sich Ihre Bookly "
5571
+ "Pro Lizenz bestätigen.\n"
5572
+ "\n"
5573
+
5574
+ msgid ""
5575
+ "Please contact your website administrator in order to verify the license for "
5576
+ "Bookly add-ons. If you do not verify the license within {days}, the "
5577
+ "respective add-ons will be disabled."
5578
+ msgstr ""
5579
+ "Bitte kontaktieren Sie Ihren Website-Administrator, um die Lizenz für Bookly "
5580
+ "Add-ons zu überprüfen. Wenn Sie nicht über die Lizenz innerhalb von {days} "
5581
+ "überprüfen, werden die jeweiligen Add-ons deaktiviert."
5582
+
5583
+ msgid "Contact your admin to verify Bookly add-ons license; {days} remaining."
5584
+ msgstr ""
5585
+ "Kontaktieren Sie Ihren Administrator Bookly Add-ons Lizenz zu überprüfen; "
5586
+ "Noch {days}."
5587
+
5588
+ msgid ""
5589
+ "Please verify the license for Bookly add-ons in the administrative panel. If "
5590
+ "you do not verify the license within {days}, the respective add-ons will be "
5591
+ "disabled."
5592
+ msgstr ""
5593
+ "Bitte überprüfen Sie die Lizenz für Bookly Add-ons in der Verwaltungs-Panel. "
5594
+ "Wenn Sie nicht über die Lizenz innerhalb von {days} überprüfen, werden die "
5595
+ "jeweiligen Add-ons deaktiviert."
5596
+
5597
+ msgid "Please verify Bookly add-ons license; {days} remaining."
5598
+ msgstr "Bitte überprüfen Bookly Add-ons-Lizenz; Noch {days}."
5599
+
5600
+ #, php-format
5601
+ msgid ""
5602
+ "%s is used on another domain %s.<br/>In order to use the purchase code on "
5603
+ "this domain, please dissociate it in the admin panel of the other domain."
5604
+ "<br/>If you do not have access to the admin area, please contact our "
5605
+ "technical support at support@bookly.info to transfer the license manually."
5606
+ msgstr ""
5607
+ "% s wird für eine andere Domain% s verwendet. <br/> Um den Kaufcode für "
5608
+ "diese Domain zu verwenden, trennen Sie ihn bitte im Admin-Panel von der "
5609
+ "anderen Domain. <br/> Wenn Sie keinen Zugriff auf den Adminbereich haben, "
5610
+ "dann kontaktieren Sie bitte unseren technischen Support unter support@bookly."
5611
+ "info, um die Lizenz manuell zu übertragen."
5612
+
5613
+ #, php-format
5614
+ msgid "%s is not a valid purchase code for %s."
5615
+ msgstr "%s ist kein gültiger Kauf Code für %s."
5616
+
5617
+ msgid ""
5618
+ "Purchase code verification is temporarily unavailable. Please try again "
5619
+ "later."
5620
+ msgstr ""
5621
+ "Registrierung Code-Verifikation ist vorübergehend nicht verfügbar. Bitte "
5622
+ "versuchen Sie es später noch einmal."
5623
+
5624
+ #, php-format
5625
+ msgid "Your support period has expired on %s."
5626
+ msgstr "Ihr Support-Zeitraum ist für %s abgelaufen."
5627
+
5628
+ msgid "Print"
5629
+ msgstr "Drucken"
5630
+
5631
+ msgid "Google Calendar integration"
5632
+ msgstr "Google Kalender Integration"
5633
+
5634
+ msgid "Synchronize staff member appointments with Google Calendar."
5635
+ msgstr ""
5636
+ "Synchronisieren Sie die Termine der Mitarbeiter mit dem Google Kalender."
5637
+
5638
+ #, php-format
5639
+ msgid "Please configure Google Calendar <a href=\"%s\">settings</a> first"
5640
+ msgstr ""
5641
+ "Bitte konfigurieren Sie die Google Kalender <a href=\"%s\">Einstellungen</a> "
5642
+ "zuerst"
5643
+
5644
+ msgid "Limit working hours per day"
5645
+ msgstr "Arbeitsstundengrenze pro Woche"
5646
+
5647
+ msgid ""
5648
+ "This setting allows limiting the total time occupied by bookings per day for "
5649
+ "staff member. Padding time is not included."
5650
+ msgstr ""
5651
+ "Diese Einstellung ermöglicht es Ihnen die Gesamtzeit einzuschränken für "
5652
+ "Buchungen pro Tag für Mitarbeiter. Eine Auffüllzeit ist nicht enthalten."
5653
 
5654
+ msgid "Unlimited"
5655
+ msgstr "Uneingeschränkt"
 
 
 
 
 
 
 
5656
 
5657
+ msgid "API Username"
5658
+ msgstr "API Benutzername"
 
5659
 
5660
+ msgid "API Password"
5661
+ msgstr "API Passwort"
 
5662
 
5663
+ msgid "API Signature"
5664
+ msgstr "API Signatur"
 
5665
 
5666
+ msgid "Minimum time requirement prior to booking"
5667
+ msgstr "Mögliche Zeit vor der Buchung"
 
5668
 
5669
+ msgid ""
5670
+ "Set how late appointments can be booked (for example, require customers to "
5671
+ "book at least 1 hour before the appointment time)."
5672
+ msgstr ""
5673
+ "Festlegen der Zeit, bis wann Termine gebucht werden können (zum Beispiel "
5674
+ "können Termine mindestens 1 Stunde vorher gebucht werden)."
5675
 
5676
+ msgid "Minimum time requirement prior to canceling"
5677
+ msgstr "Mindestzeit vor dem Abbruch"
 
5678
 
5679
+ msgid ""
5680
+ "Set how late appointments can be cancelled (for example, require customers "
5681
+ "to cancel at least 1 hour before the appointment time)."
5682
+ msgstr ""
5683
+ "Festlegen der Zeit, bis Termine abgesagt werden können (es ist zum Beispiel "
5684
+ "nur möglich, dass Kunden mindestens 1 Stunde vor dem Termin absagen können)."
5685
 
5686
+ msgid "Appointment cancellation confirmation URL"
5687
+ msgstr "Terminkündigungs-Bestätigungs-URL"
 
5688
 
5689
+ msgid ""
5690
+ "Set the URL of an appointment cancellation confirmation page that is shown "
5691
+ "to clients when they press cancellation link."
5692
+ msgstr ""
5693
+ "Legen Sie die URL einer Terminkündigungs-Bestätigungs-Seite fest, die den "
5694
+ "Kunden angezeigt wird, wenn sie auf den Kündigungslink klicken."
5695
 
5696
+ msgid ""
5697
+ "You need to install and activate WooCommerce plugin before using the options "
5698
+ "below.<br/><br/>Once the plugin is activated do the following steps:"
5699
+ msgstr ""
5700
+ "Sie benötigen das WooCommerce Plugin, bevor Sie die folgenden Optionen "
5701
+ "nutzen können.<br/><br/>Sobald das Plugin aktiviert ist, führen Sie die "
5702
+ "folgenden Schritte aus:"
5703
 
5704
+ msgid "Create a product in WooCommerce that can be placed in cart."
5705
+ msgstr ""
5706
+ "Erstellen Sie ein Produkt in WooCommerce, das in den Warenkorb gelegt werden "
5707
+ "kann."
5708
 
5709
+ msgid "In the form below enable WooCommerce option."
5710
+ msgstr "Im Formular unten aktivieren Sie WooCommerce."
 
5711
 
5712
+ msgid ""
5713
+ "Select the product that you created at step 1 in the drop down list of "
5714
+ "products."
5715
+ msgstr ""
5716
+ "Wählen Sie das Produkt in der Dropdown-Liste, das Sie im Schritt 1 erstellt "
5717
+ "haben."
5718
 
5719
+ msgid ""
5720
+ "If needed, edit item data which will be displayed in the cart. Besides cart "
5721
+ "item data Bookly passes address and account fields into WooCommerce if you "
5722
+ "collect them in your booking form."
5723
+ msgstr ""
5724
+ "Wenn nötig, bearbeiten Sie Dateien, welche im Warenkorb angezeigt werden. "
5725
+ "Neben den Warenkorb-Artikeldaten übergibt Bookly Adress- und Kontofelder an "
5726
+ "WooCommerce, wenn Sie sie in Ihrem Buchungsformular sammeln."
5727
 
5728
+ msgid ""
5729
+ "Note that once you have enabled WooCommerce option in Bookly the built-in "
5730
+ "payment methods will no longer work. All your customers will be redirected "
5731
+ "to WooCommerce cart instead of standard payment step."
5732
+ msgstr ""
5733
+ "Beachten Sie, dass sobald Sie WooCommerce in Bookly aktiviert haben, die "
5734
+ "integrierten Zahlungsmittel nicht mehr funktionieren. Alle Ihre Kunden "
5735
+ "werden zum WooCommerce Warenkorb umgeleitet, statt zum Standard-Zahlungs "
5736
+ "Schritt."
5737
 
5738
+ msgid "Booking product"
5739
+ msgstr "Produkt für den Warenkorb"
 
5740
 
5741
+ msgid "Cart item data"
5742
+ msgstr "Warenkorb Artikeldaten"
 
5743
 
5744
+ msgid "Make address mandatory"
5745
+ msgstr "Eingabe der Adresse zur Pflicht machen"
 
5746
 
5747
+ msgid ""
5748
+ "Customers are required to enter address to proceed with a booking. To "
5749
+ "disable, deactivate Invoices add-on first."
5750
+ msgstr ""
5751
+ "Kunden müssen eine Adresse angeben, um mit der Buchung fortzufahren. Um das "
5752
+ "zu deaktivieren, deaktivieren Sie zuerst das Add-on bei Rechnungen."
5753
 
5754
+ msgid "Customer's address fields"
5755
+ msgstr "Kundenadressen-Feld"
 
5756
 
5757
+ msgid "Choose address fields you want to request from the client."
5758
+ msgstr "Wählen Sie Adressfelder, die Sie vom Client anfordern möchten."
 
5759
 
5760
+ msgid "Final step URL"
5761
+ msgstr "URL Letzter Schritt"
 
5762
 
5763
+ msgid ""
5764
+ "Set the URL of a page that the user will be forwarded to after successful "
5765
+ "booking. If disabled then the default Done step is displayed."
5766
+ msgstr ""
5767
+ "URL einer Seite, auf die der Benutzer nach erfolgter Buchung weitergeleitet "
5768
+ "wird. Wenn deaktiviert, wird der Standard-Fertig Schritt angezeigt."
5769
 
5770
+ msgid "Enter a URL"
5771
+ msgstr "Geben Sie eine URL ein"
 
5772
 
5773
+ msgid "Make birthday mandatory"
5774
+ msgstr "Geburtstag verpflichtend machen"
 
5775
 
5776
+ msgid ""
5777
+ "If enabled, a customer will be required to enter a date of birth to proceed "
5778
+ "with a booking."
5779
+ msgstr ""
5780
+ "Wenn es aktiviert ist, muss ein Kunde sein Geburtsdatum eingeben, um mit der "
5781
+ "Buchung fortzuführen."
5782
 
5783
+ msgid "Columns"
5784
+ msgstr "Spalten"
 
5785
 
5786
+ msgid ""
5787
+ "Select columns that you want to display in a cart summary before the booking "
5788
+ "confirmation. Uncheck the box to hide the column. Drag the sandwich icon to "
5789
+ "change the order of fields."
5790
+ msgstr ""
5791
+ "Wählen Sie Spalten aus, die Sie in einer Warenkorbübersicht vor der "
5792
+ "Buchungsbestätigung anzeigen möchten. Deaktivieren Sie das Kontrollkästchen, "
5793
+ "um die Spalte auszublenden. Ziehen Sie das Sandwich-Symbol, um die "
5794
+ "Reihenfolge der Felder zu ändern."
5795
 
5796
+ msgid ""
5797
+ "If you use {cart_info} code in notifications, you can select the columns "
5798
+ "that you want to display and set the order of fields here. Uncheck the box "
5799
+ "to hide the column."
5800
+ msgstr ""
5801
+ "Wenn Sie den Code {cart_info} in Benachrichtigungen verwenden, können Sie "
5802
+ "die Spalten, die Sie anzeigen möchten, auswählen und die Reihenfolge der "
5803
+ "Felder hier festlegen. Deaktivieren Sie das Kontrollkästchen, um die Spalte "
5804
+ "auszublenden."
5805
 
5806
+ msgid "To find your client ID and client secret, do the following:"
5807
+ msgstr ""
5808
+ "Um Ihre Kundennummer und Sicherheitseinstellungen zur erhalten, gehen Sie "
5809
+ "folgendermaßen vor:"
5810
 
5811
+ msgid ""
5812
+ "Go to the <a href=\"https://console.developers.google.com/\" "
5813
+ "target=\"_blank\">Google Developers Console</a>."
5814
+ msgstr ""
5815
+ "Gehe zu <a href=\"https://console.developers.google.com/\" target=\"_blank\">"
5816
+ "Google Developers Console</a>."
5817
 
5818
+ msgid "Select a project, or create a new one."
5819
+ msgstr "Wählen Sie ein Projekt oder legen Sie ein neues an."
 
5820
 
5821
+ msgid ""
5822
+ "Click in the upper left part to see a sliding sidebar. Next, click <b>API "
5823
+ "Manager</b>. In the list of APIs look for <b>Calendar API</b> and make sure "
5824
+ "it is enabled."
5825
+ msgstr ""
5826
+ "Klicken Sie in den linken oberen Teil, um die Sidebar darzustellen. Klicken "
5827
+ "Sie dort auf <b>API Manager</b> und <b>Bibliothek</b>. In der Liste der APIs "
5828
+ "suchen Sie unter <b>Google Apps APIs</b> den Eintrag <b>Calendar API</b>. "
5829
+ "Stellen Sie sicher, dass es aktiviert ist."
5830
 
5831
+ msgid "In the sidebar on the left, select <b>Credentials</b>."
5832
+ msgstr ""
5833
+ "In der Seitenleiste auf der linken Seite wählen Sie <b>Zugangsdaten</b>."
5834
 
5835
+ msgid ""
5836
+ "Go to <b>OAuth consent screen</b> tab and give a name to the product, then "
5837
+ "click <b>Save</b>."
5838
+ msgstr ""
5839
+ "Gehen Sie zu <b>OAuth Zustimmungsbildschirm</b> und geben einen Namen für "
5840
+ "das Produkt ein, klicken Sie auf <b>Save</b>."
5841
 
5842
+ msgid ""
5843
+ "Go to <b>Credentials</b> tab and in <b>New credentials</b> drop-down menu "
5844
+ "select <b>OAuth client ID</b>."
5845
+ msgstr ""
5846
+ "Zum <b>Zugangsdaten</b> und <b>Anmeldedaten erstellen</b>. Im Dropdown-Menü "
5847
+ "wählen Sie <b>OAuth client ID</b>."
5848
 
5849
+ msgid ""
5850
+ "Select <b>Web application</b> and create your project's OAuth 2.0 "
5851
+ "credentials by providing the necessary information. For <b>Authorized "
5852
+ "redirect URIs</b> enter the <b>Redirect URI</b> found below on this page. "
5853
+ "Click <b>Create</b>."
5854
+ msgstr ""
5855
+ "Wählen Sie <b>Web anwendung</b>, und erstellen Sie OAuth 2.0-"
5856
+ "Anmeldeinformationen für Ihr Projekt durch die Eingabe der notwendigen "
5857
+ "Informationen. In <b>Autorisierte Weiterleitungs-URIs</b> geben Sie die <b>"
5858
+ "Redirect URI</b> ein, die Sie unten auf dieser Seite sehen. Klicken Sie auf "
5859
+ "<b>Create</b>."
5860
 
5861
+ msgid ""
5862
+ "In the popup window look for the <b>Client ID</b> and <b>Client secret</b>. "
5863
+ "Use them in the form below on this page."
5864
+ msgstr ""
5865
+ "Im Popup-Fenster sehen Sie <b>Client ID</b> und <b>Client secret</b>. Geben "
5866
+ "Sie diese in das Formular unten auf dieser Seite ein."
5867
 
5868
+ #, php-format
5869
+ msgid ""
5870
+ "Important: for two-way sync, your website must use HTTPS. Google Calendar "
5871
+ "API will be able to send notifications to HTTPS address only if there is a "
5872
+ "valid SSL certificate installed on your web server. Follow the steps in this "
5873
+ "<a href=\"%s\" target=\"_blank\">document</a> to <b>verify and register your "
5874
+ "domain</b>."
5875
+ msgstr ""
5876
+ "Wichtig: Für eine wechselseitige Synchronisierung muss Ihre Webseite HTTPS "
5877
+ "verwenden. Der Google Kalender-API kann nur dann Benachrichtigungen an die "
5878
+ "HTTPS-Adresse senden, wenn auf Ihrem Webserver ein gültiges SSL-Zertifikat "
5879
+ "installiert ist. Folgen Sie den Anweisungen hier<a href=\"%s\" "
5880
+ "target=\"_blank\"> Dokument </a>, um <b>, um Ihre Domain zu überprüfen und "
5881
+ "zu registrieren </b>."
5882
 
5883
+ msgid "The client ID obtained from the Developers Console"
5884
+ msgstr "Die von der Developers Console erhaltene Client-ID"
 
5885
 
5886
+ msgid "Client secret"
5887
+ msgstr "Client secret"
 
5888
 
5889
+ msgid "The client secret obtained from the Developers Console"
5890
+ msgstr "Die von der Developers Console erhalten Client secret"
 
5891
 
5892
+ msgid "Enter this URL as a redirect URI in the Developers Console"
5893
+ msgstr "Geben Sie diese URL als Redirect-URI in die Developers Console"
5894
+
5895
+ msgid ""
5896
+ "With \"One-way\" sync Bookly pushes new appointments and any further changes "
5897
+ "to Google Calendar. With \"Two-way front-end only\" sync Bookly will "
5898
+ "additionally fetch events from Google Calendar and remove corresponding time "
5899
+ "slots before displaying the Time step of the booking form (this may lead to "
5900
+ "a delay when users click Next to get to the Time step)."
5901
+ msgstr ""
5902
+ "Mit \"One-way\" synchronisiert Bookly neue Termine und weitere Änderungen in "
5903
+ "den Google Kalender. Mit \"bidirektionalem Nur-Frontend\" synchronisiert "
5904
+ "Bookly zusätzlich Ereignisse aus Google Kalender zu Bookly und entfernt das "
5905
+ "entsprechende Zeitfenster, bevor der Zeitabschnitt im Buchungsformulars "
5906
+ "angezeigt wird (dies kann zu einer Verzögerung führen, wenn Benutzer auf "
5907
+ "Weiter klicken, um zum Zeitabschnitt zu gelangen )."
5908
+
5909
+ msgid ""
5910
+ "If there is a lot of events in Google Calendar sometimes this leads to a "
5911
+ "lack of memory in PHP when Bookly tries to fetch all events. You can limit "
5912
+ "the number of fetched events here."
5913
+ msgstr ""
5914
+ "Wenn es in Google Kalender viele Ereignisse gibt, führt dies manchmal zu "
5915
+ "Speichermangel in PHP, wenn Bookly versucht, alle Ereignisse abzurufen. Sie "
5916
+ "können die Anzahl der abgerufenen Ereignisse hier begrenzen."
5917
 
5918
+ msgid ""
5919
+ "Configure what information should be placed in the title of Google Calendar "
5920
+ "event. Available codes are {service_name}, {staff_name} and {client_names}."
5921
+ msgstr ""
5922
+ "Konfigurieren Sie, welche Informationen für ein Ereignis im Titel Google "
5923
+ "Kalender eingetragen werden. Verfügbare Codes sind {service_name}, "
5924
+ "{staff_name} und {client_names}."
5925
+
5926
+ msgid ""
5927
+ "Follow the steps at <a href=\"https://developers.facebook."
5928
+ "com/docs/apps/register\" target=\"_blank\">https://developers.facebook."
5929
+ "com/docs/apps/register</a> to create a Developer Account, register and "
5930
+ "configure your <b>Facebook App</b>. Then you'll need to submit your app for "
5931
+ "review. Learn more about the review process and what's required to pass "
5932
+ "review in the <a href=\"https://developers.facebook.com/docs/facebook-"
5933
+ "login/review\" target=\"_blank\">Login Review Guide</a>."
5934
+ msgstr ""
5935
+ "Folgen Sie den Schritten hier <a href=\"https://developers.facebook."
5936
+ "com/docs/apps/register\" target=\"_blank\">https://developers.facebook."
5937
+ "com/docs/apps/register</a> um ein Developer Konto zu erstellen, registrieren "
5938
+ "und konfigurieren Sie Ihre <b>Facebook App</b>. Dann müssen Sie Ihre App zur "
5939
+ "Überprüfung einschicken. Lernen Sie mehr über den Überprüfungsvorgang und "
5940
+ "was nötig ist, um die Überprüfung im <a href=\"https://developers.facebook."
5941
+ "com/docs/facebook-login/review\" target=\"_blank\">Login Review Guide</a> zu "
5942
+ "überstehen.\n"
5943
  "\n"
 
5944
 
5945
+ msgid ""
5946
+ "Below the App Details Panel click Add Platform button, select Website and "
5947
+ "enter your website URL."
5948
+ msgstr ""
5949
+ "Unter dem App Detail Panel klicken Sie auf Plattform Button hinzufügen, "
5950
+ "wählen die Webseite aus und geben Ihre Webseiten URL ein."
5951
 
5952
+ msgid ""
5953
+ "Go to your App Dashboard. In the left side navigation panel of the App "
5954
+ "Dashboard, click Settings > Basic to view the App Details Panel with your "
5955
+ "App ID. Use it in the form below."
5956
+ msgstr ""
5957
+ "Gehen Sie zu Ihrer Dashboard App. Auf der linken Seitennavigation der "
5958
+ "Dashboard App klicken Sie auf Einstellungen > Basic um den Detail Panel der "
5959
+ "App mit Ihrer ID anzusehen. Nutzen Sie diese in dem Formular unten."
5960
 
5961
+ msgid ""
5962
+ "Upon providing the purchase code you will have access to free updates of "
5963
+ "Bookly. Updates may contain functionality improvements and important "
5964
+ "security fixes. For more information on where to find your purchase code see "
5965
+ "this <a href=\"https://help.market.envato.com/hc/en-us/articles/202822600-"
5966
+ "Where-can-I-find-my-Purchase-Code-\" target=\"_blank\">page</a>."
5967
+ msgstr ""
5968
+ "Durch die Bereitstellung des Code, haben Sie kostenlosen Zugang zu Updates "
5969
+ "des Plugins. Updates können Funktionalitätsverbesserungen und wichtige "
5970
+ "Sicherheitsupdates enthalten. Weitere Informationen, wo Sie Ihren Einkaufs-"
5971
+ "Code finden: <a href=\"https://help.market.envato.com/hc/en-"
5972
+ "us/articles/202822600-Where-can-I-find-my-Purchase-Code-\" target=\"_blank\">"
5973
+ "Seite</a>"
5974
 
5975
+ msgid ""
5976
+ "If you do not provide a valid purchase code within {days}, access to your "
5977
+ "bookings will be disabled."
5978
+ msgstr ""
5979
+ "Wenn Sie innerhalb von {days} keinen gültigen Bestellcode angeben, wird der "
5980
+ "Zugang zu Ihren Buchungen deaktiviert."
5981
 
5982
+ msgid "Customer address"
5983
+ msgstr "Kundenadresse"
 
5984
 
5985
+ msgid ""
5986
+ "Configure how the customer's address will be displayed in notifications."
5987
+ msgstr ""
5988
+ "\n"
5989
+ "Konfigurieren Sie, wie die Adresse des Kunden in Benachrichtigungen "
5990
+ "angezeigt wird."
5991
 
5992
+ msgid "Cart"
5993
+ msgstr "Warenkorb"
 
5994
 
5995
+ msgid "Select product"
5996
+ msgstr "Produkt auswählen"
 
5997
 
5998
+ #, php-format
5999
+ msgid ""
6000
+ "To use the cart, disable integration with WooCommerce <a href=\"%s\">here</a>"
6001
+ "."
6002
+ msgstr ""
6003
+ "Um den Warenkorb zu benutzen, deaktivieren Sie die Integration mit "
6004
+ "WooCommerce <a href=\"%s\">hier</a>."
6005
 
6006
+ msgid "Google Calendar"
6007
+ msgstr "Google Kalender"
 
6008
 
6009
+ msgid "Purchase Code"
6010
+ msgstr "Registrierungs-Code"
 
6011
 
6012
+ msgid "Create WordPress user account for customers"
6013
+ msgstr "Neues Wordpress-Benutzerkonto für Kunden"
 
6014
 
6015
+ msgid ""
6016
+ "If this setting is enabled then Bookly will be creating WordPress user "
6017
+ "accounts for all new customers. If the user is logged in then the new "
6018
+ "customer will be associated with the existing user account."
6019
+ msgstr ""
6020
+ "Wenn diese Einstellung aktiviert ist, wird Bookly Wordpress-Benutzerkonten "
6021
+ "für alle Neukunden erstellen. Wenn sich der Benutzer dann einloggt, wird der "
6022
+ "neue Kunde zu dem bestehenden Benutzerkonto zugeordnet."
6023
 
6024
+ msgid "Cancel appointment action"
6025
+ msgstr "Abbrechen Termin Aktion"
 
6026
 
6027
+ msgid ""
6028
+ "Select what happens when customer clicks cancel appointment link. With "
6029
+ "\"Delete\" the appointment will be deleted from the calendar. With "
6030
+ "\"Cancel\" only appointment status will be changed to \"Cancelled\"."
6031
+ msgstr ""
6032
+ "Wählen Sie, was passiert, wenn Kunde klickt Termin Link abzubrechen. Mit "
6033
+ "\"Löschen\" wird der Termin aus dem Kalender gestrichen. Mit \"Abbrechen\" "
6034
+ "wird nur der Termin auf Status \"Abgebrochen\" geändert"
6035
 
6036
+ msgid "New user account role"
6037
+ msgstr "Neue Benutzerkonto-Rolle"
6038
+
6039
+ msgid ""
6040
+ "Select what role will be assigned to newly created WordPress user accounts "
6041
+ "for customers."
6042
+ msgstr ""
6043
+ "Wählen Sie aus, welche Rolle neu erstellten WordPress-Benutzerkonten für "
6044
+ "Kunden zugewiesen werden soll."
6045
 
6046
+ msgid "Padding time (before and after)"
6047
+ msgstr "Zusätzliche Zeit (vor und nach)"
 
6048
 
6049
+ msgid ""
6050
+ "Set padding time before and/or after an appointment. For example, if you "
6051
+ "require 15 minutes to prepare for the next appointment then you should set "
6052
+ "\"padding before\" to 15 min. If there is an appointment from 8:00 to 9:00 "
6053
+ "then the next available time slot will be 9:15 rather than 9:00."
6054
+ msgstr ""
6055
+ "Stellen Sie die zusätzliche Zeit vor und / oder nach einem Termin ein. Wenn "
6056
+ "Sie zum Beispiel 15 Minuten benötigen, um sich für den nächsten Termin "
6057
+ "vorzubereiten, dann sollten Sie \"zusätzliche Zeit vor\" auf 15 min "
6058
+ "einstellen. Wenn ein Termin von 8:00 bis 09:00 Uhr dauert, wird der nächste "
6059
+ "verfügbare Zeit um 09:15 statt 09:00 sein."
6060
 
6061
+ msgid "Providers preference for ANY"
6062
+ msgstr "Anbieter Voreinstellung für Jeder"
 
6063
 
6064
+ msgid ""
6065
+ "Allows you to define the rule of staff members auto assignment when ANY "
6066
+ "option is selected"
6067
+ msgstr ""
6068
+ "Erlaubt die Regel auszuwählen welche automatisch Mitarbeiter zuordnet wenn "
6069
+ "die option Jeder ausgewählt wurde"
6070
 
6071
+ msgid "Period (before and after)"
6072
+ msgstr "Zeitraum (vorher und nachher)"
 
6073
 
6074
+ msgid ""
6075
+ "Set number of days before and after appointment that will be taken into "
6076
+ "account when calculating providers occupancy. 0 means the day of booking."
6077
+ msgstr ""
6078
+ "Legen Sie die Anzahl der Tage vor und nach dem Termin fest, die bei der "
6079
+ "Berechnung der Anbieterbelegung berücksichtigt werden. 0 bedeutet den Tag "
6080
+ "der Buchung."
6081
 
6082
+ msgid "Limit appointments per customer"
6083
+ msgstr "Anzahl Termine pro Kunde"
 
6084
 
6085
+ msgid ""
6086
+ "This setting allows you to limit the number of appointments that can be "
6087
+ "booked by a customer in any given period. Restriction may end after a fixed "
6088
+ "period or with the beginning of the next calendar period new day, week, "
6089
+ "month, etc."
6090
+ msgstr ""
6091
+ "Mit dieser Einstellung können Sie die Anzahl der Termine begrenzen, die ein "
6092
+ "Kunde in einem bestimmten Zeitraum buchen kann. Die Einschränkung kann nach "
6093
+ "einem festgelegten Zeitraum oder mit dem Beginn des nächsten "
6094
+ "Kalenderzeitraums neuer Tag, Woche, Monat usw. enden."
6095
 
6096
+ msgid "upcoming"
6097
+ msgstr "Kommende"
 
6098
 
6099
+ msgid "per 24 hours"
6100
+ msgstr "Je 24 Stunden"
 
6101
 
6102
+ msgid "per day"
6103
+ msgstr "je Tag"
 
6104
 
6105
+ msgid "per 7 days"
6106
+ msgstr "je 7 Tage"
 
6107
 
6108
+ msgid "per week"
6109
+ msgstr "pro Woche"
 
6110
 
6111
+ msgid "per 30 days"
6112
+ msgstr "je 30 Tage"
 
 
 
6113
 
6114
+ msgid "per month"
6115
+ msgstr "pro Monat"
 
6116
 
6117
+ msgid "per 365 days"
6118
+ msgstr "je 365 Tage"
 
6119
 
6120
+ msgid "per year"
6121
+ msgstr "pro Jahr"
 
 
 
6122
 
6123
+ msgid "Limit"
6124
+ msgstr "Limit"
 
 
 
6125
 
6126
+ msgid ""
6127
+ "To make service invisible to your customers set the visibility to "
6128
+ "\"Private\"."
6129
+ msgstr ""
6130
+ "Um den Dienst unsichtbar für Ihre Kunden zu machen, sezten Sie die "
6131
+ "Sichtbarkeit auf \"Privat\"."
6132
 
6133
+ msgid "Specified order"
6134
+ msgstr "Festgelegte Reihenfolge"
 
 
 
6135
 
6136
+ msgid "Least occupied that day"
6137
+ msgstr "Am geringsten belegt an diesem Tag"
 
 
 
6138
 
6139
+ msgid "Most occupied that day"
6140
+ msgstr "Am meisten belegt an diesem Tag"
 
 
 
6141
 
6142
+ msgid "Least occupied for period"
6143
+ msgstr "Am wenigstens besetzt für den Zeitraum"
 
 
 
6144
 
6145
+ msgid "Most occupied for period"
6146
+ msgstr "Häufig besetzt für den Zeitraum"
 
6147
 
6148
+ msgid "Least expensive"
6149
+ msgstr "Der günstigste"
 
 
 
6150
 
6151
+ msgid "Most expensive"
6152
+ msgstr "Der teuerste"
 
6153
 
6154
+ msgid "Form view in case of single booking"
6155
+ msgstr "Formularansicht bei Einzelbuchung"
6156
+
6157
+ msgid "Form view in case of multiple booking"
6158
+ msgstr "Formularansicht bei Mehrfachbuchung"
6159
 
6160
+ #, php-format
6161
+ msgid "Form in case of 100% discount"
6162
+ msgstr "Formular bei 100% Rabatt"
6163
 
6164
+ #, php-format
6165
+ msgid ""
6166
+ "Please configure Facebook App integration in <a href=\"%s\">settings</a> "
6167
+ "first."
6168
+ msgstr ""
6169
+ "Bitte konfigurieren Sie die Facebook App-Integration zuerst in den <a "
6170
+ "href=\"%s\"> Einstellungen </a>."
6171
 
6172
+ msgid "Ok"
6173
+ msgstr "OK"
 
 
 
6174
 
6175
+ msgid "Show birthday field"
6176
+ msgstr "Geburtstags-Eingabefeld anzeigen"
 
6177
 
6178
+ msgid "Show address fields"
6179
+ msgstr "Adressfeld anzeigen"
 
6180
 
6181
+ msgid "Show Facebook login button"
6182
+ msgstr "Facebook Login-Button anzeigen"
 
6183
 
6184
+ msgid "Show time zone switcher"
6185
+ msgstr "Zeige den Zeitzonen-Wechsler"
 
6186
 
6187
+ msgid "Date of birth"
6188
+ msgstr "Geburtsdatum"
 
6189
 
6190
+ msgid "Import"
6191
+ msgstr "Import"
 
6192
 
6193
+ msgid "Note"
6194
+ msgstr "Hinweis"
 
6195
 
6196
+ msgid ""
6197
+ "You may import list of clients in CSV format. You can choose the columns "
6198
+ "contained in your file. The sequence of columns should coincide with the "
6199
+ "specified one."
6200
+ msgstr ""
6201
+ "Sie können eine Kundenliste im CSV-Format importieren. Sie können die "
6202
+ "benötigten Spalten in Ihrer Datei auswählen. Die Reihenfolge Ihrer Spalten "
6203
+ "soll mit der vorgegebenen Spalten-Reihenfolge übereinstimmen."
6204
 
6205
+ msgid "Select file"
6206
+ msgstr "Datei auswählen"
 
6207
 
6208
+ msgid "Analytics"
6209
+ msgstr "Analysen"
 
6210
 
6211
+ msgid ""
6212
+ "Note: If payment is made for several services, then for each service you "
6213
+ "will see the entire amount paid as revenue."
6214
+ msgstr ""
6215
+ "Hinweis: Wenn die Zahlung für mehrere Dienstleistungen erfolgt, sehen Sie "
6216
+ "für jede Dienstleistung den gesamten bezahlten Betrag als Umsatz."
6217
 
6218
+ msgid "Titles"
6219
+ msgstr "Titel"
 
 
 
6220
 
6221
+ msgid "Add Bookly appointments list"
6222
+ msgstr "Bookly Terminliste hinzufügen"
 
6223
 
6224
+ msgid "Add appointment cancellation confirmation"
6225
+ msgstr "Terminkündigungsbestätigung hinzufügen"
 
 
 
6226
 
6227
+ #, php-format
6228
+ msgid ""
6229
+ "<a class=\"%s\" href=\"#\">Click here</a> to dissociate this purchase code "
6230
+ "from the current domain (use to move the plugin to another site)."
6231
+ msgstr ""
6232
+ "<a class=\"%s\" href=\"#\"> Klicken Sie hier </a>, um den Kaufcode von der "
6233
+ "aktuellen Domain zu trennen (damit das Plug-in auf einer anderen Seite "
6234
+ "genutzt werden kann)."
6235
 
6236
+ #, php-format
6237
+ msgid ""
6238
+ "Are you sure you want to dissociate this purchase code from %s?\n"
6239
  "\n"
6240
+ "This will also remove the entered purchase code from this site."
6241
+ msgstr ""
6242
+ "Sind Sie sicher, dass sie den Kaufcode von %s trennen wollen?\n"
6243
+ "Das wird auch den eingegebenen Kaufcode von dieser Seite entfernen."
6244
 
6245
+ msgid "Error dissociating purchase code."
6246
+ msgstr "Fehler beim trennen des Kaufcodes."
 
6247
 
6248
+ msgid "Archiving Staff"
6249
+ msgstr "Archivierungsmitarbeiter"
 
6250
 
6251
+ msgid ""
6252
+ "You are going to archive item which is involved in upcoming appointments. "
6253
+ "Please double check and edit appointments before this item archive if needed."
6254
+ msgstr ""
6255
+ "Sie archivieren ein Artikel, der an bevorstehenden Terminen beteiligt ist. "
6256
+ "Bitte überprüfen und bearbeiten Sie Termine vor diesem Artikel-Archiv, falls "
6257
+ "erforderlich."
6258
 
6259
+ msgid "Ok, continue editing"
6260
+ msgstr "Ok, weiterhin bearbeiten"
 
6261
 
6262
+ msgid "Reason"
6263
+ msgstr "Begründung"
 
 
 
 
6264
 
6265
+ msgid "Manual adjustment"
6266
+ msgstr "Manuelle Anpassung"
 
6267
 
6268
+ msgid "Attach payment"
6269
+ msgstr "Bezahlung hinzufügen"
 
 
 
6270
 
6271
+ msgid "Create payment"
6272
+ msgstr "Zahlung erstellen"
 
6273
 
6274
+ msgid "Total price"
6275
+ msgstr "Gesamtpreis"
 
6276
 
6277
+ msgid "Search payment"
6278
+ msgstr "Zahlung suchen"
 
6279
 
6280
+ msgid "Payment ID"
6281
+ msgstr "Zahlungs ID"
 
6282
 
6283
+ msgid "Custom service name"
6284
+ msgstr "spezieller Dienstleistungs-Name"
 
6285
 
6286
+ msgid "Please enter a service name"
6287
+ msgstr "Bitte geben Sie einen Dienstleistungsnamen ein"
 
6288
 
6289
+ msgid "Custom service price"
6290
+ msgstr "Benutzerdefinierter Dienstleistungspreis"
 
6291
 
6292
+ msgid "Welcome to Bookly Pro and thank you for purchasing our product!"
6293
+ msgstr ""
6294
+ "Willkommen bei Bookly Pro und danke für Ihren Einkauf unseres Produkts!"
6295
 
6296
+ msgid "Add staff members."
6297
+ msgstr "Mitarbeiter hinzufügen"
 
6298
 
6299
+ msgid "Add services you provide and assign them to staff members."
6300
+ msgstr ""
6301
+ "Fügen Sie Dienste hinzu, die Sie anbieten und ordnen Sie diese Ihren "
6302
+ "Mitarbeitern zu."
6303
 
6304
+ msgid ""
6305
+ "Bookly can boost your sales and scale together with your business. With "
6306
+ "Bookly add-ons you can get more features and functionality to customize your "
6307
+ "online scheduling system according to your business needs and simplify the "
6308
+ "process even more."
6309
+ msgstr ""
6310
+ "Bookly kann Ihren Umsatz und Ihr Geschäft zusammen mit Ihrem Unternehmen "
6311
+ "steigern. Mit den Add-Ons von Bookly erhalten Sie mehr Funktionen und "
6312
+ "Funktionsfähigkeiten, um Ihr Online-Planungssystem an Ihre "
6313
+ "Geschäftsanforderungen anzupassen und den Prozess noch weiter zu "
6314
+ "vereinfachen."
6315
 
6316
+ msgid "Bookly Add-ons"
6317
+ msgstr "Bookly Add-ons"
 
6318
 
6319
+ msgid "SMS service"
6320
+ msgstr "SMS Service"
 
6321
 
6322
+ msgid "License verification required"
6323
+ msgstr "Lizenzprüfung erforderlich"
 
6324
 
6325
+ msgid "Bookly Pro - License verification required"
6326
+ msgstr "Bookly Pro – Lizenzüberprüfung erforderlich"
 
6327
 
6328
+ msgid ""
6329
+ "Please verify your license by providing a valid purchase code. Upon "
6330
+ "providing the purchase code you will get access to software updates, "
6331
+ "including feature improvements and important security fixes."
6332
+ msgstr ""
6333
+ "Bitte überprüfen Sie Ihre Lizenz mit einem gültigen Bestellcode. Nach der "
6334
+ "Bereitstellung des Kauf-Code erhalten Sie Zugriff auf Software-Updates, "
6335
+ "einschließlich Feature-Verbesserungen und wichtige Sicherheits-Updates."
6336
 
6337
+ msgid ""
6338
+ "If you do not provide a valid purchase code within {days}, access to your "
6339
+ "bookings will be disabled. <a href=\"{url}\">Details</a>"
6340
+ msgstr ""
6341
+ "Wenn Sie keinen gültigen Einkaufscode innerhalb von {days} vorweisen, dann "
6342
+ "werden Ihre Buchungen gesperrt. <a href=\"{url}\">Details</a>"
6343
 
6344
+ msgid "License verification succeeded"
6345
+ msgstr "Lizenzprüfung erfolgreich"
 
6346
 
6347
+ msgid "Your license has been verified successfully."
6348
+ msgstr "Ihre Lizenz wurde erfolgreich bestätigt."
 
6349
 
6350
+ msgid ""
6351
+ "You have access to software updates, including feature improvements and "
6352
+ "important security fixes."
6353
+ msgstr ""
6354
+ "Sie haben Zugriff auf Software-Updates, einschließlich "
6355
+ "Funktionsverbesserungen und wichtige Sicherheitsupdates."
6356
 
6357
+ msgid "Thank you for choosing Bookly Pro as your booking solution."
6358
+ msgstr ""
6359
+ "Danke, dass Sie Bookly Pro als Ihre Buchungslösung gewählt haben.\n"
6360
+ "\n"
6361
 
6362
+ msgid "Proceed"
6363
+ msgstr "Weiter"
 
6364
 
6365
+ msgid ""
6366
+ "Please contact your website administrator to verify your license by "
6367
+ "providing a valid purchase code. Upon providing the purchase code you will "
6368
+ "get access to software updates, including feature improvements and important "
6369
+ "security fixes. If you do not provide a valid purchase code within {days}, "
6370
+ "access to your bookings will be disabled."
6371
+ msgstr ""
6372
+ "Bitte kontaktieren Sie Ihren Webseiten Administrator, um Ihre Lizenz "
6373
+ "bestätigen zu lassen, indem Sie einen gültigen Einkaufscode bieten. Mit dem "
6374
+ "Einkaufscode erhalten Sie Zugang zu Software Updates, inklusive verbesserten "
6375
+ "Funktionen und wichtige Sicherheitsupdates. Wenn Sie keinen gültigen "
6376
+ "Einkaufscode innerhalb {days} vorweisen, dann wird Ihr Zugang verweigert."
6377
 
6378
+ msgid "Access to your bookings has been disabled."
6379
+ msgstr "Der Zugang zu Ihren Buchungen wurde deaktiviert."
 
6380
 
6381
+ msgid ""
6382
+ "To enable access to your bookings, please contact your website administrator "
6383
+ "in order to verify the license."
6384
+ msgstr ""
6385
+ "Bitte kontaktieren Sie Ihren Website-Administrator um ihre Lizenz zu "
6386
+ "überprüfenund wieder Zugriff auf ihre Buchungen zu erhalten."
6387
 
6388
+ msgid ""
6389
+ "To enable access to your bookings, please verify your license by providing a "
6390
+ "valid purchase code."
6391
+ msgstr ""
6392
+ "Um den Zugang zu Ihren Buchungen zu ermöglichen, überprüfen Sie bitte Ihre "
6393
+ "Lizenz mit einem gültigen Kaufcode."
6394
 
6395
+ msgid "I have already made the purchase"
6396
+ msgstr "Ich habe bereits den Kauf gemacht"
 
6397
 
6398
+ msgid "I want to make a purchase now"
6399
+ msgstr "Ich möchte jetzt einen Kauf tätigen"
 
6400
 
6401
+ msgid "Deactivate Bookly Pro"
6402
+ msgstr "Bookly Pro deaktivieren"
 
6403
 
6404
+ msgid ""
6405
+ "Please contact your website administrator in order to verify the license."
6406
+ msgstr ""
6407
+ "Bitte wenden Sie sich an den Administrator Ihrer Website, um die Lizenz zu "
6408
+ "überprüfen."
6409
 
6410
+ msgid ""
6411
+ "If you do not verify the license within {days}, access to your bookings will "
6412
+ "be disabled."
6413
+ msgstr ""
6414
+ "Wenn Sie nicht in {days} einen gültigen Registrierungs-Code eingebenwird der "
6415
+ "Zugang zu ihren Buchungen gesperrt."
6416
 
6417
+ msgid "Proceed to Bookly Pro without license verification"
6418
+ msgstr ""
6419
+ "Fahren Sie ohne Lizenzverifizierung mit Bookly Pro fort\n"
6420
+ "\n"
6421
 
6422
+ #, php-format
6423
+ msgid ""
6424
+ "Cannot find your purchase code? See this <a href=\"%s\" target=\"_blank\">"
6425
+ "page</a>."
6426
+ msgstr ""
6427
+ "Sie finden den Registrierungs-Code nicht? Siehe diese <a href=\"%s\" "
6428
+ "target=\"_blank\">Seite</a>."
6429
 
6430
+ msgid "Proceed without license verification"
6431
+ msgstr "Ohne Lizenznachweis fortfahren"
 
6432
 
6433
+ msgid "I will provide license info later"
6434
+ msgstr "Ich werde Lizenzinformationen später zur Verfügung stellen"
 
6435
 
6436
+ msgid ""
6437
+ "To enable access to your bookings, please verify your license by providing a "
6438
+ "valid purchase code. <a href=\"{url}\">Details</a>"
6439
+ msgstr ""
6440
+ "Um den Zugang zu Ihren Buchungen zu aktivieren, bestätigen Sie bitte Ihre "
6441
+ "Lizenz, indem Sie einen gültigen Einkaufscode vorweisen <a href=\"{url}\">"
6442
+ "Details</a>\n"
6443
+ "\n"
6444
 
6445
+ msgid ""
6446
+ "To enable access to your bookings, please contact your website administrator "
6447
+ "to verify your license by providing a valid purchase code."
6448
+ msgstr ""
6449
+ "Um Ihren Zugang zu den Buchungen zu aktivieren, kontaktieren Sie bitte Ihren "
6450
+ "Webseiten Administrator, um Ihre Lizenz zu bestätigen, indem Sie einen "
6451
+ "gültigen Einkaufscode vorweisen."
6452
 
6453
+ msgid "Cancellation confirmation"
6454
+ msgstr "Stornierungsbestätigung"
 
6455
 
6456
+ msgid "A custom block for displaying cancellation confirmation"
6457
+ msgstr ""
6458
+ "Ein benutzerdefinierter Block zum Anzeigen der Stornierungsbestätigung\n"
6459
+ "\n"
6460
 
6461
+ msgid "Appointments list"
6462
+ msgstr "Terminliste"
 
6463
 
6464
+ msgid "A custom block for displaying appointments list"
6465
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen der Terminliste"
 
6466
 
6467
+ msgid "Custom fields"
6468
+ msgstr "Benutzerdefinierte Felder"
 
6469
 
6470
+ msgid "Thank you for being with us"
6471
+ msgstr "Wir danken ihnen für ihr Vertrauen"
 
6472
 
6473
+ msgid "Invalid token provided"
6474
+ msgstr "Ungültiger Token bereitgestellt"
 
 
 
6475
 
6476
+ msgid ""
6477
+ "Sorry, the time slot %date_time% for %service% has been already occupied."
6478
+ msgstr "Sorry, die Zeit %date_time% für %service% ist bereits besetzt."
6479
 
6480
+ msgid "This service is no longer provided."
6481
+ msgstr "Dieser Service wird nicht mehr angeboten."
 
6482
 
6483
+ msgid "Service was not found"
6484
+ msgstr "Service wurde nicht gefunden"
 
 
 
 
6485
 
6486
+ msgid "No appointments found."
6487
+ msgstr "Keine Termine gefunden."
 
6488
 
6489
+ msgid "Show past appointments"
6490
+ msgstr "Zeigen Sie vergangene Termine"
 
6491
 
6492
+ msgid "Would you like to pay deposit or total price"
6493
+ msgstr "Würden Sie gerne in Raten oder direkt den Gesamtpreis zahlen"
 
 
 
 
6494
 
6495
+ msgid "I will pay deposit"
6496
+ msgstr "Ich zahle in Raten"
 
6497
 
6498
+ msgid "I will pay total price"
6499
+ msgstr "Ich mache eine Einmalzahlung"
 
6500
 
6501
+ msgid "Deposit options"
6502
+ msgstr "Ratenzahlungsoptionen"
 
6503
 
6504
+ msgid ""
6505
+ "If you enable \"Deposit only\", customers will be requested to pay only a "
6506
+ "deposit amount. If you enable \"Deposit or full price\", customers will be "
6507
+ "requested to pay a deposit amount or a full amount."
6508
+ msgstr ""
6509
+ "Wenn Sie \"nur Ratenkauf\" aktivieren, werden Kunden veranlasst nur eine "
6510
+ "Anzahlung zu machen. Wenn Sie \"Ratenkauf oder Einmalzahlung\" aktivieren, "
6511
+ "werden Kunden veranlasst entweder eine Anzahlung zu machen oder den "
6512
+ "Gesamtpreis zu bezahlen."
6513
 
6514
+ msgid "Deposit only"
6515
+ msgstr "nur Ratenkauf"
 
6516
 
6517
+ msgid "Deposit or full price"
6518
+ msgstr "Ratenkauf oder Gesamtpreis"
 
6519
 
6520
+ msgid "amount due"
6521
+ msgstr "fällige Summe"
 
6522
 
6523
+ msgid "amount to pay"
6524
+ msgstr "zu zahlende Summe"
 
6525
 
6526
+ msgid "total deposit amount to be paid"
6527
+ msgstr "gesamte zu bezahlende Kaution"
 
6528
 
6529
+ msgid "amount paid"
6530
+ msgstr "Gezahlte Summe"
 
6531
 
6532
+ msgid "Disable deposit update"
6533
+ msgstr "Kautionsupdate deaktivieren"
 
6534
 
6535
+ msgid "deposit value"
6536
+ msgstr "Wert der Anzahlung"
 
6537
 
6538
+ msgid "Pay now"
6539
+ msgstr "Jetzt bezahlen"
 
6540
 
6541
+ msgid "Pay now tax"
6542
+ msgstr "Jetzt Steuern bezahlen"
 
6543
 
 
6544
  msgid "Your task is done"
6545
  msgstr "Ihre Aufgabe ist fertig"
6546
 
6547
+ msgid ""
6548
+ "Dear {client_name}.\n"
6549
  "\n"
6550
  "Your task {service_name} has been done.\n"
6551
  "\n"
6554
  "{company_name}\n"
6555
  "{company_phone}\n"
6556
  "{company_website}"
6557
+ msgstr ""
6558
+ "Sehr geehrte/r {client_name}. \n"
6559
  "\n"
6560
  "Ihr Auftrag {service_name} wurde erledigt. \n"
6561
  "\n"
6565
  "{company_phone} \n"
6566
  "{company_website}"
6567
 
 
6568
  msgid "Task is done"
6569
  msgstr "Der Auftrag ist erledigt"
6570
 
6571
+ msgid ""
6572
+ "Hello.\n"
6573
  "\n"
6574
  "The following task has been done.\n"
6575
  "\n"
6580
  "Client phone: {client_phone}\n"
6581
  "\n"
6582
  "Client email: {client_email}"
6583
+ msgstr ""
6584
+ "Hallo. \n"
6585
  "\n"
6586
  "Die folgenden Aufgaben wurden erledigt.\n"
6587
  "\n"
6593
  "\n"
6594
  "Kunden E-Mails: {client_email}"
6595
 
6596
+ msgid ""
6597
+ "Dear {client_name}.\n"
6598
  "Your task {service_name} has been done.\n"
6599
  "Thank you for choosing our company.\n"
6600
  "{company_name}\n"
6601
  "{company_phone}\n"
6602
  "{company_website}"
6603
+ msgstr ""
6604
+ "Sehr geehrte/r {client_name}. \n"
6605
  "Ihr Auftrag {service_name} wurde erledigt. \n"
6606
  "Danke, dass Sie unser Unternehmen gewählt haben \n"
6607
  "{company_name} \n"
6608
  "{company_phone} \n"
6609
  "{company_website}"
6610
 
6611
+ msgid ""
6612
+ "Hello.\n"
6613
  "The following task has been done.\n"
6614
  "Service: {service_name}\n"
6615
  "Client name: {client_name}\n"
6616
  "Client phone: {client_phone}\n"
6617
  "Client email: {client_email}"
6618
+ msgstr ""
6619
+ "Hallo. \n"
6620
  "Der folgenden Auftrag wurde erledigt. \n"
6621
  "Leistung: {service_name} \n"
6622
  "Kundenname: {client_name} \n"
6623
  "Kundenhandy: {client_phone}\n"
6624
  "Kunden E-Mail: {client_email}\n"
6625
  "\n"
 
6626
 
6627
+ msgid "Skip"
6628
+ msgstr "Überspringen"
6629
+
6630
+ msgid "Tasks"
6631
+ msgstr "Aufgaben"
6632
+
6633
  msgid "Time step settings"
6634
  msgstr "Zeitschritte Einstellungen"
6635
 
6636
+ msgid ""
6637
+ "This setting allows to display the step of selecting an appointment time, "
6638
+ "hide it and create a task without due time, or display the time step, but "
6639
+ "allow a customer to skip it."
6640
+ msgstr ""
6641
+ "Mit dieser Einstellung können Sie den Schritt zum Auswählen einer Terminzeit "
6642
+ "anzeigen, sie ausblenden und eine Aufgabe ohne Fälligkeit erstellen oder den "
6643
+ "Zeitschritt anzeigen, aber einem Kunden das Überspringen ermöglichen."
6644
 
 
6645
  msgid "Optional"
6646
  msgstr "Optional"
6647
 
6648
+ msgid "Skip time selection"
6649
+ msgstr "Zeitauswahl überspringen"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6650
 
6651
+ msgid "Weekly Schedule"
6652
+ msgstr "Wöchentlicher Plan"
 
 
 
6653
 
6654
+ msgid "Incorrect payment data"
6655
+ msgstr "Falsche Zahlungsinformationen"
 
6656
 
6657
+ msgid "Agent ID"
6658
+ msgstr "Agenten-Identifikationsnummer"
 
6659
 
6660
+ msgid "The total price for the booking is {total_price}."
6661
+ msgstr "Der Gesamtpreis für die Buchung ist {total_price}."
 
 
 
6662
 
6663
+ msgid ""
6664
+ "You selected to book {appointments_count} appointments with total price "
6665
+ "{total_price}."
6666
+ msgstr ""
6667
+ "Sie haben ausgewählt, {appointments_count} Termine mit einem Gesamtpreis von "
6668
+ "{total_price} zu buchen."
6669
 
6670
+ msgid "Coupon"
6671
+ msgstr "Coupon"
 
6672
 
6673
+ msgid "Coupons"
6674
+ msgstr "Gutscheine"
 
6675
 
6676
+ msgid "Add Coupon Series"
6677
+ msgstr "Couponserie Hinzufügen"
 
6678
 
6679
+ msgid "Add Coupon"
6680
+ msgstr "Gutschein hinzufügen"
 
6681
 
6682
+ msgid "Coupon code"
6683
+ msgstr "Coupon Code"
 
6684
 
6685
+ msgid "Show only active"
6686
+ msgstr "Nur aktive anzeigen"
 
6687
 
6688
+ msgid "Discount (%)"
6689
+ msgstr "Rabatt (%)"
 
6690
 
6691
+ msgid "Deduction"
6692
+ msgstr "Abzug"
 
6693
 
6694
+ msgid "Customers limit"
6695
+ msgstr "Kundenlimit"
 
6696
 
6697
+ msgid "Usage limit"
6698
+ msgstr "Nutzungsbeschränkung"
 
6699
 
6700
+ msgid "Number of times used"
6701
+ msgstr "Anzahl der Buchungen"
 
 
 
6702
 
6703
+ msgid "Active until"
6704
+ msgstr "Aktiv bis"
 
6705
 
6706
+ msgid "Min. appointments"
6707
+ msgstr "Min. Anzahl Termine"
 
6708
 
6709
+ msgid "Active from"
6710
+ msgstr "Aktiv ab"
 
6711
 
6712
+ msgid "Max appointments"
6713
+ msgstr "Max. Termine"
 
 
 
6714
 
 
6715
  msgid "Export only active coupons"
6716
  msgstr "Nur aktive Coupons exportieren"
6717
 
6718
+ msgid "New coupon series"
6719
+ msgstr "Neue Cuponserie"
 
 
 
 
 
 
 
 
 
 
 
6720
 
6721
+ msgid "New coupon"
6722
+ msgstr "Neuer Gutschein"
 
6723
 
6724
+ msgid "Edit coupon"
6725
+ msgstr "Gutschein bearbeiten"
 
6726
 
6727
+ msgid ""
6728
+ "You can enter a mask containing asterisks \"*\" for variables here and click "
6729
+ "Generate."
6730
+ msgstr ""
6731
+ "Sie können eine Maske mit einem Stern \"*\" als Inhalt für die Variable hier "
6732
+ "eingeben und auf Generieren drücken. "
6733
 
6734
+ msgid "Generate"
6735
+ msgstr "Generieren"
 
6736
 
6737
+ msgid "Mask"
6738
+ msgstr "Maske"
 
6739
 
6740
+ msgid "Enter a mask containing asterisks \"*\" for variables."
6741
+ msgstr ""
6742
+ "Geben Sie eine Maske mit einem Stern \"*\" als Inhalt für Variablen ein."
6743
 
6744
+ msgid "Once per customer"
6745
+ msgstr "Einmal pro Kunde"
 
6746
 
6747
+ msgid ""
6748
+ "Select this option to limit the use of the coupon to 1 time per customer."
6749
+ msgstr ""
6750
+ "Wählen Sie diese Option, um die Nutzung des Gutscheins auf 1x pro Kunden zu "
6751
+ "begrenzen."
6752
 
6753
+ msgid "Date limit (from and to)"
6754
+ msgstr "Datenlimit (von und bis)"
 
6755
 
6756
+ msgid "No limit"
6757
+ msgstr "Kein Limit"
 
6758
 
6759
+ msgid "Clear field"
6760
+ msgstr "Feld leeren"
 
6761
 
6762
+ msgid "Limit appointments in cart (min and max)"
6763
+ msgstr "Anzahl an Terminen im Einkaufskorb(min und max)"
 
6764
 
6765
+ msgid ""
6766
+ "Specify minimum and maximum (optional) number of services of the same type "
6767
+ "required to apply a coupon."
6768
+ msgstr ""
6769
+ "Geben sie minimale und maximale (optional) Zahl an Dienstleistungen der "
6770
+ "selben Art an, die nötig sind, um den Gutschein anwenden zu dürfen."
6771
 
6772
+ msgid "Limit to customers"
6773
+ msgstr "Limit für Kunden"
 
6774
 
6775
+ msgid "Create another coupon"
6776
+ msgstr "Weiteren Coupon erstellen"
 
6777
 
6778
+ msgid "Duplicate"
6779
+ msgstr "Duplikat"
 
6780
 
6781
+ msgid "No coupons found."
6782
+ msgstr "Keine Gutscheine gefunden."
 
6783
 
6784
+ msgid "All customers"
6785
+ msgstr "Alle Kunden"
 
6786
 
6787
+ msgid "Discount should be between 0 and 100."
6788
+ msgstr "Der Rabatt sollte zwischen 0 und 100 liegen."
 
6789
 
6790
+ msgid "Deduction should be a positive number."
6791
+ msgstr "Der Abzug sollte eine positive Zahl sein."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6792
 
6793
+ msgid "Min appointments should be greater than zero."
6794
+ msgstr "Die minimale Anzahl Termine muss größer als 0 sein."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6795
 
6796
+ msgid "Max appointments should be greater than zero."
6797
+ msgstr "Die maximale Anzahl Termine muss größer als 0 sein."
 
 
 
 
 
 
 
 
 
 
 
 
 
6798
 
6799
+ msgid "Please enter a non empty mask."
6800
+ msgstr "Bitte geben Sie eine nicht-leere Maske ein."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6801
 
6802
+ #, php-format
6803
+ msgid ""
6804
+ "It is not possible to generate %d codes for this mask. Only %d codes "
6805
+ "available."
6806
+ msgstr ""
6807
+ "Es ist nicht möglich %d Codes für diese Make zu erstellen. Nur %d Codes sind "
6808
+ "verfügbar."
 
 
 
 
 
 
6809
 
6810
+ msgid "All possible codes have already been generated for this mask."
6811
+ msgstr "Alle Codes wurden für diese Maske schon generiert."
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
6812
 
6813
+ msgid "Default code mask"
6814
+ msgstr "Standardcodemaske"
 
 
 
 
 
 
 
 
 
 
 
 
6815
 
6816
+ msgid "Enter default mask for auto-generated codes."
6817
+ msgstr "Geben Sie sie Standartmaske für automatisch generierten Code ein."
 
 
 
 
 
 
 
 
 
 
6818
 
6819
+ msgid "Show coupons"
6820
+ msgstr "Coupons anzeigen"
 
 
 
6821
 
6822
+ msgid "This coupon code is invalid or has been used"
6823
+ msgstr "Dieser Gutscheincode ist ungültig oder wurde bereits verwendet"
 
6824
 
6825
+ msgid "This coupon code has expired"
6826
+ msgstr "Dieser Gutschein ist abgelaufen."
 
6827
 
6828
+ msgid "Customer Groups"
6829
+ msgstr "Kundengruppen"
 
6830
 
6831
+ msgid "New group"
6832
+ msgstr "Neue Gruppe"
 
6833
 
6834
+ msgid "Group Name"
6835
+ msgstr "Gruppenname"
 
6836
 
6837
+ msgid "Number of Users"
6838
+ msgstr "Anzahl der Nutzer"
 
6839
 
6840
+ msgid "Description"
6841
+ msgstr "Beschreibung"
 
6842
 
6843
+ msgid "Appointment Status"
6844
+ msgstr "Terminstatus"
 
6845
 
6846
+ msgid "Customers without group"
6847
+ msgstr "Kunden ohne Gruppe"
 
6848
 
6849
+ msgid "Group"
6850
+ msgstr "Gruppe"
 
6851
 
6852
+ msgid "New Group"
6853
+ msgstr "Neue Gruppe"
 
6854
 
6855
+ msgid "Edit Group"
6856
+ msgstr "Gruppe bearbeiten"
 
6857
 
6858
+ msgid "No customer groups yet."
6859
+ msgstr "Keine Kundengruppen vorhanden"
 
6860
 
6861
+ msgid "Groups"
6862
+ msgstr "Gruppen"
 
6863
 
6864
+ msgid "All groups"
6865
+ msgstr "Alle Gruppen"
 
6866
 
6867
+ msgid "No group selected"
6868
+ msgstr "Keine Gruppe ausgewählt"
 
6869
 
6870
+ msgid "Customer group based"
6871
+ msgstr "Kundengruppen basiert"
 
6872
 
6873
+ msgid "Customer Group"
6874
+ msgstr "Kundengruppe"
 
6875
 
6876
+ msgid "No group"
6877
+ msgstr "Keine Gruppe"
 
6878
 
6879
+ msgid "Group name"
6880
+ msgstr "Gruppenname"
 
6881
 
6882
+ msgid "Total discount"
6883
+ msgstr "Gesamter Rabatt"
 
6884
 
6885
+ #, php-format
6886
+ msgid ""
6887
+ "Enter the fixed amount of discount (e.g. 10 off). To specify a percentage "
6888
+ "discount (e.g. 10% off), add '%' symbol to a numerical value."
6889
+ msgstr ""
6890
+ "Geben Sie einen festen Rabattbetrag ein (z. B. 10% weniger). Um einen "
6891
+ "prozentualen Rabatt festzulegen (z. B. 10% Rabatt), fügen Sie einem "
6892
+ "numerischen Wert das Symbol \"%\" hinzu.\n"
6893
+ "\n"
6894
 
6895
+ msgid "Edit group"
6896
+ msgstr "Gruppe bearbeiten"
 
6897
 
6898
+ msgid "Group name is required"
6899
+ msgstr "Ein Gruppenname wird benötigt"
 
6900
 
6901
+ msgid "Notification to customer about placing on waiting list"
6902
+ msgstr ""
6903
+ "Benachrichtigung an den Kunden über die Platzierung auf der Warteliste. "
6904
 
6905
+ msgid ""
6906
+ "Dear {client_name}.\n"
6907
+ "\n"
6908
+ "This is a confirmation that you have been added to the waiting list for "
6909
+ "{service_name} on {appointment_date} at {appointment_time}.\n"
6910
+ "\n"
6911
+ "Thank you for choosing our company.\n"
6912
+ "\n"
6913
+ "{company_name}\n"
6914
+ "{company_phone}\n"
6915
+ "{company_website}"
6916
+ msgstr ""
6917
+ "Lieber {client_name}.\n"
6918
+ "\n"
6919
+ "Dies ist eine Bestätigung, dass Sie zur Warteliste für {service_name} am "
6920
+ "{appointment_date} bei {appointment_time} hinzugefügt wurden.\n"
6921
+ "\n"
6922
+ "Vielen Dank, dass Sie sich für unser Unternehmen entschieden haben.\n"
6923
+ "\n"
6924
+ "{company_name}\n"
6925
+ "{company_phone}\n"
6926
+ "{company_website}"
6927
 
6928
+ msgid "Notification to staff member about placing on waiting list"
6929
+ msgstr ""
6930
+ "Benachrichtigung an Mitarbeiter über die Platzierung auf der Warteliste."
6931
 
6932
+ msgid ""
6933
+ "Hello.\n"
6934
+ "\n"
6935
+ "You have new customer in the waiting list.\n"
6936
+ "\n"
6937
+ "Service: {service_name}\n"
6938
+ "Date: {appointment_date}\n"
6939
+ "Time: {appointment_time}\n"
6940
+ "Client name: {client_name}\n"
6941
+ "Client phone: {client_phone}\n"
6942
+ "Client email: {client_email}"
6943
+ msgstr ""
6944
+ "Hallo. \n"
6945
+ "\n"
6946
+ "Sie haben einen neuen Kunden auf der Warteliste. \n"
6947
+ "\n"
6948
+ "Leistung: {service_name} \n"
6949
+ "Datum: {appointment_date} \n"
6950
+ "Zeit: {appointment_time} \n"
6951
+ "Kundenname: {client_name} \n"
6952
+ "Kundenhandy: {client_phone}\n"
6953
+ "Kunden E-Mail: {client_email}"
6954
 
6955
+ msgid "Notification to staff member to set appointment from waiting list"
6956
+ msgstr ""
6957
+ "Benachrichtigung an Mitarbeiter, um einen Termin aus der Warteliste "
6958
+ "festzulegen\n"
6959
+ "\n"
6960
 
6961
+ msgid "Set appointment from waiting list"
6962
+ msgstr "Termin von Warteliste vereinbaren"
 
6963
 
6964
+ msgid ""
6965
+ "Dear {staff_name},\n"
6966
+ "\n"
6967
+ "The time slot on {appointment_date} at {appointment_time} for {service_name} "
6968
+ "is now available for booking. Please see the list of customers on the "
6969
+ "waiting list and make a new appointment.\n"
6970
+ "\n"
6971
+ "{appointment_waiting_list}"
6972
+ msgstr ""
6973
+ "Sehr geehrte/r {staff_name}, \n"
6974
+ "\n"
6975
+ "das Zeitfenster für {appointment_time} um {appointment_time} für "
6976
+ "{service_name} ist jetzt für die Buchung verfügbar. Bitte schauen Sie sich "
6977
+ "die Kunden auf der Warteliste an und machen Sie einen neuen Termin \n"
6978
+ "\n"
6979
+ "{appointment_waiting_list}"
6980
 
6981
+ msgid ""
6982
+ "Dear {client_name}.\n"
6983
+ "This is a confirmation that you have been added to the waiting list for "
6984
+ "{service_name} on {appointment_date} at {appointment_time}.\n"
6985
+ "Thank you for choosing our company.\n"
6986
+ "{company_name}\n"
6987
+ "{company_phone}\n"
6988
+ "{company_website}"
6989
+ msgstr ""
6990
+ "Sehr geehrte/r {client_name}. \n"
6991
+ "Das ist eine Bestätigung, dass Sie zur Warteliste für {service_name} am "
6992
+ "{appointment_date} um {appointment_time} hinzugefügt wurden. Danke dass Sie "
6993
+ "unsere Firma gewählt haben.\n"
6994
+ "{company_name} \n"
6995
+ "{company_phone} \n"
6996
+ "{company_website}\n"
6997
+ "\n"
6998
 
6999
+ msgid ""
7000
+ "Hello.\n"
7001
+ "You have new customer in the waiting list.\n"
7002
+ "Service: {service_name}\n"
7003
+ "Date: {appointment_date}\n"
7004
+ "Time: {appointment_time}\n"
7005
+ "Client name: {client_name}\n"
7006
+ "Client phone: {client_phone}\n"
7007
+ "Client email: {client_email}"
7008
+ msgstr ""
7009
+ "Hallo. \n"
7010
+ "Sie haben einen neuen Kunden auf der Warteliste. \n"
7011
+ "Leistung: {service_name} \n"
7012
+ "Datum: {appointment_date} \n"
7013
+ "Zeit: {appointment_time} \n"
7014
+ "Kundenname: {client_name} \n"
7015
+ "Kundenhandy: {client_phone}\n"
7016
+ "Kunden E-Mail: {client_email}"
7017
 
7018
+ msgid ""
7019
+ "Dear {staff_name},\n"
7020
+ "The time slot on {appointment_date} at {appointment_time} for {service_name} "
7021
+ "is now available for booking. Please see the list of customers on the "
7022
+ "waiting list and make a new appointment.\n"
7023
+ "{appointment_waiting_list}"
7024
+ msgstr ""
7025
+ "Sehr geehrte/r {staff_name}, \n"
7026
+ "das Zeitfenster für {appointment_time} um {appointment_time} für "
7027
+ "{service_name} ist jetzt für die Buchung verfügbar. Bitte schauen Sie sich "
7028
+ "die Kunden auf der Warteliste an und machen Sie einen neuen Termin \n"
7029
+ "{appointment_waiting_list}\n"
7030
+ "\n"
7031
 
7032
+ msgid ""
7033
+ "To join the waiting list for a busy time slot, please select a slot marked "
7034
+ "with \"(N)\", where N is a number of customers on the waiting list."
7035
+ msgstr ""
7036
+ "Um sich auf die Warteliste setzen zu lassen, wählen Sie bitte ein Kästchen "
7037
+ "mit „(N)“, N ist die Anzahl der Kunden auf der Warteliste."
7038
 
7039
+ msgid "Notification for staff member to set up appointment from waiting list"
7040
+ msgstr ""
7041
+ "Benachrichtigung an Mitarbeiter für Einrichtung von Terminen von der "
7042
+ "Warteliste\n"
7043
 
7044
+ msgid "Set appointment"
7045
+ msgstr "Termin abschließen"
 
7046
 
7047
+ msgid "number of persons on waiting list"
7048
+ msgstr "Anzahl der Personen auf der Warteliste"
 
7049
 
7050
+ msgid "Show waiting list slots"
7051
+ msgstr "Wartelistenplätze anzeigen"
 
7052
 
7053
+ msgid "waiting list of appointment"
7054
+ msgstr "Warteliste für einen Termin"
 
 
7055
 
7056
+ msgid "Add service"
7057
+ msgstr "Dienstleistung hinzufügen"
 
7058
 
7059
+ msgid "Show chain appointments"
7060
+ msgstr "Verkettete Termine anzeigen"
 
7061
 
7062
+ msgid "Browse"
7063
+ msgstr "Durschsuchen"
 
 
 
 
7064
 
7065
+ msgid "Upload directory"
7066
+ msgstr "Verzeichnis zum Hochladen"
 
7067
 
7068
+ msgid ""
7069
+ "Enter the network folder path where the files will be stored. If necessary, "
7070
+ "make sure that there is no free web access to the folder materials."
7071
+ msgstr ""
7072
+ "Geben Sie den Netzwerkordnerpfad an, in dem die Dateien gespeichert werden "
7073
+ "sollen. Stellen Sie bei Bedarf sicher, dass es keinen freien Webzugang zu "
7074
+ "dem Ordnerinhalt gibt."
7075
 
7076
+ msgid "Files"
7077
+ msgstr "Dateien"
 
7078
 
7079
+ msgid "File Upload Field"
7080
+ msgstr "Feld zum Dateien Hochladen"
 
 
 
7081
 
7082
+ msgid "File"
7083
+ msgstr "Datei"
 
7084
 
7085
+ msgid "Show files"
7086
+ msgstr "Dateien anzeigen"
 
7087
 
7088
+ msgid "number of uploaded files"
7089
+ msgstr "Anzahl hochgeladener Dateien"
 
7090
 
7091
+ msgid "download"
7092
+ msgstr "Herunterladen"
 
7093
 
7094
+ msgid ""
7095
+ "In <b>Checkout Options</b> of your 2Checkout account do the following steps:"
7096
+ msgstr ""
7097
+ "Führen Sie in den <b>Checkout-Optionen</b> Ihres 2Checkout-Kontos die "
7098
+ "folgenden Schritte durch."
7099
 
7100
+ msgid "In <b>Direct Return</b> select <b>Header Redirect (Your URL)</b>."
7101
+ msgstr ""
7102
+ "Wählen Sie unter <b>Direkte Weiterleitung</b> die <b>Header Weiterleitung "
7103
+ "(Ihre URL)</b>"
7104
 
7105
+ msgid "In <b>Approved URL</b> enter the URL of your booking page."
7106
+ msgstr ""
7107
+ "Geben Sie unter <b>Bestätigungs-URL</b> die URL Ihrer Buchungsseite ein."
7108
 
7109
+ msgid "Finally provide the necessary information in the form below."
7110
+ msgstr ""
7111
+ "Zum schluss geben Sie noch die verbleibenden Informationen in das Formular "
7112
+ "unten ein."
7113
 
7114
+ msgid "Account Number"
7115
+ msgstr "Kontonummer"
 
7116
 
7117
+ msgid "Secret Word"
7118
+ msgstr "Geheimwort"
 
7119
 
7120
+ msgid "Select the Extras you'd like (Multiple Selection)"
7121
+ msgstr "Wählen Sie die Extras, die Sie möchten (Mehrfachauswahl)"
 
7122
 
7123
+ msgid "Multiply extras by number of persons"
7124
+ msgstr "Extras anhand der Personenzahl multiplizieren."
 
7125
 
7126
+ msgid "If enabled, all extras will be multiplied by number of persons."
7127
+ msgstr ""
7128
+ "Wenn aktiviert, werden die Extras mit der Anzahl der Personen multipliziert."
7129
 
7130
+ msgid "Extras Step"
7131
+ msgstr "Extra Schritte"
 
7132
 
7133
+ msgid "After Service step"
7134
+ msgstr "Nach dem Serviceschritt "
 
7135
 
7136
+ msgid "After Time step (Extras duration settings will be ignored)"
7137
+ msgstr "Nach dem Zeitschritt (Extra Dauer Einstellungen werden ignoriert)"
 
7138
 
7139
+ msgid "Summary"
7140
+ msgstr "Zusammenfassung"
 
7141
 
7142
+ msgid "Service Extras"
7143
+ msgstr "Service-Extras"
 
7144
 
7145
+ msgid "extras titles"
7146
+ msgstr "Extras Titel"
 
7147
 
7148
+ msgid "extras total price"
7149
+ msgstr "Extras Gesamtpreis "
 
7150
 
7151
+ msgid "Max quantity"
7152
+ msgstr "Maximale Menge"
 
7153
 
7154
+ msgid "New Item"
7155
+ msgstr "Neuer Gegenstand"
 
 
 
7156
 
7157
+ msgid "Show title"
7158
+ msgstr ""
7159
+ "Titel anzeigen\n"
7160
 
7161
+ msgid "Show price"
7162
+ msgstr ""
7163
+ "Preis anzeigen\n"
7164
 
7165
+ msgid "Show image"
7166
+ msgstr ""
7167
+ "Bild anzeigen\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
7168
 
7169
+ msgid "Show duration"
7170
+ msgstr ""
7171
+ "Dauer anzeigen\n"
 
 
 
7172
 
7173
+ msgid "Show summary"
7174
+ msgstr "Zusammenfassung anzeigen"
 
7175
 
7176
+ msgid "Show Extras step"
7177
+ msgstr "Extra Schritt zeigen"
 
 
 
7178
 
7179
+ msgid "Show extras"
7180
+ msgstr "Extras anzeigen"
 
7181
 
7182
+ msgid "Extras price"
7183
+ msgstr "Extras Preis"
 
7184
 
7185
+ msgid "Book More"
7186
+ msgstr "Buche mehr"
 
7187
 
7188
+ msgid ""
7189
+ "Below you can find a list of services selected for booking.\n"
7190
+ "Click BOOK MORE if you want to add more services."
7191
+ msgstr ""
7192
+ "Unten finden Sie eine Liste der Dienste, die für die Buchung ausgewählt sind."
7193
+ "\n"
7194
+ "Klicken Sie auf \"Buche mehr\", wenn Sie mehr Dienste hinzufügen möchten."
7195
 
7196
+ msgid "Show Cart step"
7197
+ msgstr "Einkaufswagen zeigen"
7198
+
7199
+ msgid "Total tax"
7200
+ msgstr "Steuer gesamt"
7201
+
7202
+ msgid "Waiting list"
7203
+ msgstr "Warteliste"
7204
 
 
7205
  msgid "Custom statuses"
7206
  msgstr "Benutzerdefinierter Status"
7207
 
 
7208
  msgid "Add status"
7209
  msgstr "Status hinzufügen"
7210
 
 
7211
  msgid "Free/Busy"
7212
  msgstr "Frei/Beschäftigt"
7213
 
 
7214
  msgid "New Status"
7215
  msgstr "Neuer Status "
7216
 
 
7217
  msgid "Edit Status"
7218
  msgstr "Status bearbeiten"
7219
 
 
7220
  msgid "Free/busy"
7221
  msgstr "Frei/Beschäftigt"
7222
 
7223
+ msgid ""
7224
+ "If you select busy, then a customer with this status will occupy a place in "
7225
+ "appointment. If you select free, then a place will be considered as free."
7226
+ msgstr ""
7227
+ "Wenn Sie beschäftigt wählen, dann wird ein Kunde mit diesem Status einen "
7228
+ "Platz in der Terminliste einnehmen. Wenn Sie sich für frei entscheiden, wird "
7229
+ "ein Platz als frei betrachtet.\n"
7230
  "\n"
 
7231
 
 
 
 
 
 
7232
  msgid "Busy"
7233
  msgstr "Beschäftigt"
7234
 
 
7235
  msgid "No statuses found."
7236
  msgstr "Kein Status gefunden."
7237
 
 
7238
  msgid "Custom Statuses"
7239
  msgstr "Benutzerdefinierter Status"
7240
 
7241
+ msgid "PayPal ID"
7242
+ msgstr "PayPal Identifikationsnummer"
 
 
 
 
 
 
 
 
 
7243
 
7244
+ msgid ""
7245
+ "Your PayPal ID or an email address associated with your PayPal account. "
7246
+ "Email addresses must be confirmed."
7247
+ msgstr ""
7248
+ "Ihre PayPal Identifikationsnummer oder eine, mit Ihrem PayPal Konto "
7249
+ "verbundene E-Mail-Adresse. E-Mail-Adressen müssen verifiziert werden."
7250
 
7251
+ msgid "Special prices for appointments which begin between:"
7252
+ msgstr "Sonderpreise für Termine, die zwischen folgenden Zeiten beginnen:"
 
7253
 
7254
+ msgid "add special period"
7255
+ msgstr "Sonderperiode hinzufügen"
 
7256
 
7257
+ msgid "Disable special hours update"
7258
+ msgstr "Sonderstunden-Update deaktivieren"
 
 
 
7259
 
7260
+ msgid "Please select a location"
7261
+ msgstr "Bitte wählen Sie einen Ort aus"
 
 
 
7262
 
7263
+ msgid "Locations"
7264
+ msgstr "Orte"
 
 
 
7265
 
7266
+ msgid ""
7267
+ "Set Default values that will be used in all locations where Use default "
7268
+ "settings is selected. To use custom settings in a location, select Use "
7269
+ "custom settings and enter custom values."
7270
+ msgstr ""
7271
+ "Legen Sie Standardwerte fest, die an allen Orten verwendet werden, an denen "
7272
+ "Standardeinstellungen verwenden ausgewählt ist. Um benutzerdefinierte "
7273
+ "Einstellungen an einem Ort zu verwenden, wählen Sie Benutzerdefinierte "
7274
+ "Einstellungen verwenden und geben Sie benutzerdefinierte Werte ein.\n"
7275
  "\n"
 
7276
 
7277
+ msgid "Default settings"
7278
+ msgstr "Standardeinstellungen"
 
7279
 
7280
+ msgid "Use default settings"
7281
+ msgstr "Standardeinstellungen nutzen"
 
 
 
 
7282
 
7283
+ msgid "Use custom settings"
7284
+ msgstr "Benutzerdefinierte Einstellungen verwenden"
 
7285
 
7286
+ msgid "Select locations where the services are provided."
7287
+ msgstr "Orte auswählen, an denen die Dienstleistung angeboten wird."
 
 
 
7288
 
7289
+ msgid "Custom settings for location"
7290
+ msgstr "Angepasste Einstellungen für diesen Ort"
 
7291
 
7292
+ msgid ""
7293
+ "Enable this setting to be able to set custom settings for staff members for "
7294
+ "different locations."
7295
+ msgstr ""
7296
+ "Aktivieren Sie diese Einstellung, um benutzerdefinierte Einstellungen für "
7297
+ "Mitarbeiter für verschiedene Standorte festlegen zu können.\n"
7298
  "\n"
 
 
 
 
 
7299
 
7300
+ msgid "location info"
7301
+ msgstr "Informationen des Orts"
 
7302
 
7303
+ msgid "location name"
7304
+ msgstr "Name des Orts"
 
7305
 
7306
+ msgid "New Location"
7307
+ msgstr "Neuer Ort"
 
7308
 
7309
+ msgid "Edit Location"
7310
+ msgstr "Ort bearbeiten"
 
7311
 
7312
+ msgid "Add Location"
7313
+ msgstr "Ort hinzufügen"
 
7314
 
7315
+ msgid "No locations found."
7316
+ msgstr "Keine Orte gefunden."
 
7317
 
7318
+ msgid "W/o location"
7319
+ msgstr "Ohne Ort"
 
7320
 
7321
+ msgid "Make selecting location required"
7322
+ msgstr "Die Auswahl eines Ortes zur Voraussetzung machen"
 
7323
 
7324
+ msgid "Default value for location select"
7325
+ msgstr "Standardwert der Ortsauswahl"
 
7326
 
7327
+ msgid "Account ID"
7328
+ msgstr "Konto-ID"
 
7329
 
7330
+ msgid "Merchant ID"
7331
+ msgstr "Händler-ID"
 
7332
 
7333
+ msgid "Transaction rejected"
7334
+ msgstr "Transaktion zurückgezogen"
 
7335
 
7336
+ msgid "Pending payment"
7337
+ msgstr "Ausstehende Zahlung"
 
7338
 
7339
+ msgid "Rating"
7340
+ msgstr "Bewertung"
 
7341
 
7342
+ msgid "Displaying appointments rating in the backend"
7343
+ msgstr "Terminbewertung im Backend anzeigen"
 
7344
 
7345
+ msgid "Enable this setting to display ratings in the back-end."
 
7346
  msgstr ""
7347
+ "Aktivieren Sie diese Einstellung, um die Bewertungen im Backend anzuzeigen."
7348
 
7349
+ msgid "Timeout for rating appointment"
7350
+ msgstr "Timeout für Bewertungszeitpunkt"
 
7351
 
7352
+ msgid ""
7353
+ "Set a period of time after appointment when customer can rate and leave "
7354
+ "feedback for your services."
7355
  msgstr ""
7356
+ "Legen Sie einen Zeitraum nach dem Termin fest, in dem der Kunde Feedback für "
7357
+ "Ihre Dienstleistungen abgeben und bewerten kann."
7358
 
7359
+ msgid "Period for calculating rating average"
7360
+ msgstr "Zeitraum um den Durchschnitt der Bewertungen zu berechnen"
 
7361
 
7362
+ msgid "Set a period of time during which the rating average is calculated."
 
7363
  msgstr ""
7364
+ "Legen Sie einen Zeitraum fest, in dem der Ratingmittelwert berechnet wird."
7365
 
7366
+ msgid "Ratings"
7367
+ msgstr "Bewertungen"
 
7368
 
7369
+ msgid "Rating page URL"
7370
+ msgstr "URL der Bewertungsseite"
 
7371
 
7372
+ msgid "Set the URL of a page with a rating and comment form."
 
7373
  msgstr ""
7374
+ "Legen Sie die URL der Seite mit dem Bewertungs- und Kommentarformular fest."
7375
 
7376
+ msgid "Show staff member rating before employee name"
7377
+ msgstr "Mitarbeiterbewertungen vor Mitarbeiternamen anzeigen"
 
7378
 
7379
+ msgid "URL of the page for staff rating"
7380
+ msgstr "URL der Seite für Mitarbeiterbewertungen"
 
7381
 
7382
+ msgid "Comment"
7383
+ msgstr "Kommentar"
 
7384
 
7385
+ msgid "Add staff rating form"
7386
+ msgstr "Mitarbeiterbewertungsformular hinzufügen"
 
7387
 
7388
+ msgid "Staff ratings"
7389
+ msgstr "Mitarbeiter Ratings"
 
7390
 
7391
+ msgid "A custom block for displaying staff ratings"
7392
+ msgstr "Ein benutzerdefinierter Block zum Anzeigen von Mitarbeiterbewertungen"
 
7393
 
7394
+ msgid "Hide comment"
7395
+ msgstr "Kommentar verbergen"
 
7396
 
7397
+ msgid "The feedback period has expired."
7398
+ msgstr "Der Zeitraum für ein Feedback ist abgelaufen"
 
7399
 
7400
+ msgid "You cannot rate this service before appointment."
7401
+ msgstr "Sie können diese Dienstleistung nicht vor ihrer Durchführung bewerten."
 
7402
 
7403
+ #, php-format
7404
+ msgid "Rate the quality of the %s provided to you on %s at %s by %s"
7405
  msgstr ""
7406
+ "Bewerten Sie die Qualität der Ihnen zur Verfügung gestellten %s basierend "
7407
+ "auf %s in %s nach %s."
7408
 
7409
+ msgid "Leave your comment"
7410
+ msgstr "Hinterlassen Sie einen Kommentar "
 
7411
 
7412
+ msgid "Your rating has been saved. We appreciate your feedback."
7413
+ msgstr "Ihre Bewertung wurde gespeichert. Wir danken Ihnen für Ihr Feedback."
 
7414
 
7415
+ #, php-format
7416
+ msgid ""
7417
+ "1. Provide <b>Secret</b> and <b>Publishable</b> keys which are available in "
7418
+ "the <a href=\"%s\" target=\"_blank\">Dashboard</a>."
7419
  msgstr ""
7420
+ "1. Geben Sie <b>Secret</b> und <b>Publishable</b> Schlüssel an, die in den "
7421
+ "<a href=\"%s\" target=\"_blank\">Dashboard</a> verfügbar sind."
7422
 
7423
+ #, php-format
7424
+ msgid ""
7425
+ "2. In the Dashboard's <a href=\"%s\" target=\"_blank\">Webhooks settings</a> "
7426
+ "section, click <b>Add endpoint</b> to reveal a form to add a new endpoint "
7427
+ "for receiving events."
7428
  msgstr ""
7429
+ "2. Klicken Sie im Abschnitt <a href=\"%s\" target=\"_blank\">Webhooks-"
7430
+ "Einstellungen</a> auf <b>Endpunkt hinzufügen</b>, um ein Formular zum "
7431
+ "Hinzufügen eines neuen Endpunkts für den Empfang von Ereignissen anzuzeigen."
7432
 
7433
+ #, php-format
7434
+ msgid ""
7435
+ "3. Enter the following URL as the destination for events <b>%s</b> and click "
7436
+ "<b>Add endpoint</b>."
7437
  msgstr ""
7438
+ "3. Geben Sie die folgende URL als Ziel für Ereignisse <b>%s</b> ein und "
7439
+ "klicken Sie auf <b>Endpunkt hinzufügen</b>."
7440
 
7441
+ msgid ""
7442
+ "4. Add these events: <b>payment_intent.succeeded</b>, <b>payment_intent."
7443
+ "payment_failed</b> and click <b>Add endpoint</b>."
7444
  msgstr ""
7445
+ "4. Fügen Sie diese Ereignisse hinzu: <b>payment_intent.succeeded</b>, <b>"
7446
+ "payment_intent.payment_failed</b> und klicken Sie auf <b>Add endpoint</b>."
7447
 
7448
+ msgid "Secret Key"
7449
+ msgstr "Geheimschlüssel"
 
7450
 
7451
+ msgid "Publishable Key"
7452
+ msgstr "veröffentlichbarer Schlüssel"
 
7453
 
7454
+ #, php-format
7455
+ msgid ""
7456
+ "Bookly Stripe add-on has been upgraded to support <a href=\"%s\" "
7457
+ "target=\"_blank\">SCA</a>. You must update your Stripe settings to keep the "
7458
+ "integration with the upgraded add-on."
7459
  msgstr ""
7460
+ "Das Bookly Stripe Add-on wurde aktualisiert, um <a href=\"%s\" "
7461
+ "target=\"_blank\">SCA</a> zu unterstützen. Sie müssen Ihre Stripe-"
7462
+ "Einstellungen aktualisieren, um die Integration mit dem aktualisierten Add-"
7463
+ "on zu erhalten."
7464
 
7465
+ #, php-format
7466
+ msgid ""
7467
+ "1. Make sure that <b>Publishable Key</b> is provided in <a href=\"%s\">"
7468
+ "payment settings</a>."
7469
  msgstr ""
7470
+ "1. Stellen Sie sicher, dass <b>Publishable Key</b> in <a href=\"%s\">"
7471
+ "Zahlungseinstellungen</a> angegeben ist."
7472
 
7473
+ #, php-format
7474
+ msgid ""
7475
+ "Enter the following URL as the destination for events <b>%s</b> and click <b>"
7476
+ "Add endpoint</b>."
7477
  msgstr ""
7478
+ "Geben Sie die folgende URL als Ziel für Ereignisse <b>%s</b> ein und klicken "
7479
+ "Sie auf <b>Endpunkt hinzufügen</b>."
7480
 
7481
+ msgid "Set maximum value for Quantity field."
7482
+ msgstr "Legen Sie den Maximalwert für das Feld Menge fest."
 
7483
 
7484
+ msgid "Multiply Appointments"
7485
+ msgstr "Termine vervielfachen"
 
7486
 
7487
+ msgid "Google Calendar event"
7488
+ msgstr "Google Kalender Event"
 
7489
 
7490
+ msgid ""
7491
+ "With \"One-way\" sync Bookly pushes new appointments and any further changes "
7492
+ "to Google Calendar. With \"Two-way front-end only\" sync Bookly will "
7493
+ "additionally fetch events from Google Calendar and remove corresponding time "
7494
+ "slots before displaying the Time step of the booking form (this may lead to "
7495
+ "a delay when users click Next to get to the Time step). With \"Two-way\" "
7496
+ "sync all bookings created in Bookly Calendar will be automatically copied to "
7497
+ "Google Calendar and vice versa. Important: your website must use HTTPS. "
7498
+ "Google Calendar API will be able to send notifications only if there is a "
7499
+ "valid SSL certificate installed on your web server."
7500
  msgstr ""
7501
+ "Mit der \"one-way\"-Synchronisation überträgt Bookly neue Termine und "
7502
+ "künftige Änderungen auf den Google Kalender. Mit der Option \"nur Two-way "
7503
+ "Frontend\"-Synchronisation fragt Bookly zusätzlich Ereignisse aus dem Google "
7504
+ "Kalender ab und blockt die zugehörigen Zeitintervalle auf Bookly aus, bevor "
7505
+ "die verfügbaren Zeiträume im Buchungsformular anzeigt werden(das kann zu "
7506
+ "einer Zeitverzögerung führen, wenn die Kunden auf Weiter klicken). Mit der "
7507
+ "\"Two-way\"-Synchronisation werden alle Buchungen, die im Bookly Kalender "
7508
+ "erstellt werden, in den Google Kalender kopiert und andersherum. Wichtig: "
7509
+ "Ihre Website muss HTTPS nutzen. Die Google Kalender API kann nur "
7510
+ "Benachrichtigungen verschicken, wenn auf Ihrem Server ein gültiges SSL-"
7511
+ "Zertifikat installiert ist."
7512
 
7513
+ msgid "Copy Google Calendar event titles"
7514
+ msgstr "Google Kalender Ereignistitel kopieren"
 
7515
 
7516
+ msgid ""
7517
+ "If enabled then titles of Google Calendar events will be copied to Bookly "
7518
+ "appointments. If disabled, a standard title \"Google Calendar event\" will "
7519
+ "be used."
 
 
 
 
 
7520
  msgstr ""
7521
+ "Wenn aktiviert, werden die Titel der Google Kalenderereignisse auf die "
7522
+ "Bookly Termine kopiert. Wenn deaktiviert, wird standardmäßig der Titel "
7523
+ "\"Google Kalender Ereignis\" genutzt."
7524
 
7525
+ msgid "Synchronize with Google Calendar"
7526
+ msgstr "Mit Google Kalender synchronisieren"
languages/bookly-es_ES.mo CHANGED
Binary file
languages/bookly-es_ES.po CHANGED
@@ -3,1622 +3,2090 @@ msgstr ""
3
  "MIME-Version: 1.0\n"
4
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "Content-Transfer-Encoding: 8bit\n"
6
- "X-Generator: POEditor.com\n"
7
  "Project-Id-Version: Bookly\n"
8
- "Language: es\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
 
 
 
 
 
 
10
 
11
- #:
12
- msgid "Calendar"
13
- msgstr "Calendario"
14
 
15
- #:
16
- msgid "Appointments"
17
- msgstr "Citas"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
18
 
19
- #:
20
- msgid "Staff Members"
21
- msgstr "Empleados"
22
 
23
- #:
24
- msgid "Services"
25
- msgstr "Servicios"
 
 
 
 
 
 
 
26
 
27
- #:
28
- msgid "SMS Notifications"
29
- msgstr "Notificaciones de SMS"
30
 
31
- #:
32
- msgid "Email Notifications"
33
- msgstr "Notificaciones por correo electrónico"
34
 
35
- #:
36
- msgid "Customers"
37
- msgstr "Clientes"
38
 
39
- #:
40
- msgid "Payments"
41
- msgstr "Pagos"
42
 
43
- #:
44
- msgid "Appearance"
45
- msgstr "Apariencia"
46
 
47
- #:
48
- msgid "Settings"
49
- msgstr "Configuración"
50
 
51
- #:
52
- msgid "Custom Fields"
53
- msgstr "Campos personalizados"
 
 
 
 
 
 
 
 
54
 
55
- #:
56
- msgid "Profile"
57
- msgstr "Perfil"
58
 
59
- #:
60
- msgid "Messages"
61
- msgstr "Mensajes"
 
62
 
63
- #:
64
- msgid "Today"
65
- msgstr "Hoy"
66
 
67
- #:
68
- msgid "Next month"
69
- msgstr "El mes que viene"
70
 
71
- #:
72
- msgid "Previous month"
73
- msgstr "El mes anterior"
 
 
74
 
75
- #:
76
  msgid "Settings saved."
77
  msgstr "Configuración guardada."
78
 
79
- #:
80
- msgid "Your custom CSS was saved. Please refresh the page to see your changes."
81
- msgstr "Su CSS personalizado se ha guardado. Actualice la página para ver sus cambios."
82
-
83
- #:
84
- msgid "Visible when the chosen time slot has been already booked"
85
- msgstr "Visible cuando la franja horaria elegida ya ha sido reservada"
86
 
87
- #:
88
- msgid "Date"
89
- msgstr "Fecha"
90
 
91
- #:
92
- msgid "Time"
93
- msgstr "Hora"
94
 
95
- #:
96
- msgid "Price"
97
- msgstr "Precio"
98
 
99
- #:
100
- msgid "Edit"
101
- msgstr "Editar"
102
 
103
- #:
104
- msgid "Total"
105
- msgstr "Total"
106
 
107
- #:
108
- msgid "Visible to non-logged in customers only"
109
- msgstr "Visible solo a clientes anónimos"
110
 
111
- #:
112
- msgid "total quantity of appointments in cart"
113
- msgstr "cantidad total de citas en el carrito"
 
 
 
114
 
115
- #:
116
- msgid "booking number"
117
- msgstr "número de reserva"
118
 
119
- #:
120
- msgid "name of category"
121
- msgstr "nombre de categoría"
122
 
123
- #:
124
- msgid "login form"
125
- msgstr "formulario de acceso"
126
 
127
- #:
128
- msgid "number of persons"
129
- msgstr "número de personas"
130
 
131
- #:
132
- msgid "date of service"
133
- msgstr "fecha del servicio"
134
 
135
- #:
136
- msgid "info of service"
137
- msgstr "información de servicio"
138
 
139
- #:
140
- msgid "name of service"
141
- msgstr "nombre del servicio"
142
 
143
- #:
144
- msgid "price of service"
145
- msgstr "precio del servicio"
146
 
147
- #:
148
- msgid "time of service"
149
- msgstr "hora del servicio"
150
 
151
- #:
152
- msgid "info of staff"
153
- msgstr "información de empleados"
154
 
155
- #:
156
- msgid "name of staff"
157
- msgstr "nombre de empleados"
158
 
159
- #:
160
- msgid "total price of booking"
161
- msgstr "precio total de la reserva"
162
 
163
- #:
164
- msgid "Edit custom CSS"
165
- msgstr "Editar CSS personalizado"
166
 
167
- #:
168
- msgid "Set up your custom CSS styles"
169
- msgstr "Configurar tu CSS personalizado"
170
 
171
- #:
172
- msgid "Save"
173
- msgstr "Guardar"
174
 
175
- #:
176
- msgid "Cancel"
177
- msgstr "Cancelar"
178
 
179
- #:
180
- msgid "Show form progress tracker"
181
- msgstr "Mostrar barra de progreso"
182
 
183
- #:
184
- msgid "Click on the underlined text to edit."
185
- msgstr "Haz clic en el texto subrayado para editarlo."
186
 
187
- #:
188
- msgid "Make selecting employee required"
189
- msgstr "Hacer obligatorio seleccionar trabajador"
 
190
 
191
- #:
192
- msgid "Show service price next to employee name"
193
- msgstr "Mostrar el precio del servicio junto al nombre del empleado"
194
 
195
- #:
196
- msgid "Show service duration next to service name"
197
- msgstr "Mostrar duración del servicio junto al nombre del servicio"
 
 
198
 
199
- #:
200
- msgid "Show calendar"
201
- msgstr "Mostrar calendario"
202
 
203
- #:
204
- msgid "Show blocked timeslots"
205
- msgstr "Mostrar intervalos de tiempo bloqueados"
206
 
207
- #:
208
- msgid "Show each day in one column"
209
- msgstr "Muestre cada día en una columna"
210
 
211
- #:
212
- msgid "Show Login button"
213
- msgstr "Mostrar botón de inicio de sesión"
 
 
 
 
 
214
 
215
- #:
216
- msgid "Do not forget to update your email and SMS codes for customer names"
217
- msgstr "No olvides actualizar tu correo electrónico y los códigos de SMS por nombre de usuarios"
218
 
219
- #:
220
- msgid "Use first and last name instead of full name"
221
- msgstr "Usar nombre y apellido en lugar del nombre completo"
222
 
223
- #:
224
- msgid "The booking form on this step may have different set or states of its elements. It depends on various conditions such as installed/activated add-ons, settings configuration or choices made on previous steps. Select option and click on the underlined text to edit."
225
- msgstr "El formulario de reserva en este paso puede tener diferentes configuraciones o elementos. Depende de varias condiciones, como complementos instalados/activados, configuración de los ajustes u opciones realizadas en pasos anteriores. Seleccione la opción y haga clic en el texto subrayado para editarlo."
226
 
227
- #:
228
- msgid "Tomorrow"
229
- msgstr "Mañana"
 
 
 
 
 
230
 
231
- #:
232
- msgid "Yesterday"
233
- msgstr "Ayer"
 
234
 
235
- #:
236
- msgid "Apply"
237
- msgstr "Aplicar"
 
 
 
 
 
238
 
239
- #:
240
- msgid "To"
241
- msgstr "Para"
 
 
 
 
 
242
 
243
- #:
244
- msgid "From"
245
- msgstr "De"
 
 
 
 
246
 
247
- #:
248
- msgid "Are you sure?"
249
- msgstr "¿Estás seguro?"
 
 
 
 
 
250
 
251
- #:
252
- msgid "No appointments for selected period."
253
- msgstr "No hay citas para el período seleccionado."
 
 
 
254
 
255
- #:
256
- msgid "Processing..."
257
- msgstr "Procesando..."
 
 
 
258
 
259
- #:
260
- msgid "%s of %s"
261
- msgstr "%s de %s"
 
 
 
 
 
 
 
 
262
 
263
- #:
264
- msgid "No."
265
- msgstr "No."
 
 
 
 
 
 
 
266
 
267
- #:
268
- msgid "Customer Name"
269
- msgstr "Nombre del cliente"
270
 
271
- #:
272
- msgid "Customer Phone"
273
- msgstr "Teléfono del cliente"
 
 
 
274
 
275
- #:
276
- msgid "Customer Email"
277
- msgstr "Correo electrónico del cliente"
278
 
279
- #:
280
- msgid "Duration"
281
- msgstr "Duración"
 
282
 
283
- #:
284
- msgid "Status"
285
- msgstr "Estado"
286
 
287
- #:
288
- msgid "Payment"
289
- msgstr "Pago"
 
 
 
290
 
291
- #:
292
- msgid "Appointment Date"
293
- msgstr "Fecha de cita"
294
 
295
- #:
296
- msgid "New appointment"
297
- msgstr "Nueva cita"
 
 
298
 
299
- #:
300
- msgid "Customer"
301
- msgstr "Cliente"
302
 
303
- #:
304
- msgid "Edit appointment"
305
- msgstr "Editar cita"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
306
 
307
- #:
308
- msgid "Week"
309
- msgstr "Semana"
310
 
311
- #:
312
- msgid "Day"
313
- msgstr "Día"
314
 
315
- #:
316
- msgid "Month"
317
- msgstr "Mes"
318
 
319
- #:
320
- msgid "All Day"
321
- msgstr "Todo el dia"
322
 
323
- #:
324
- msgid "Delete"
325
- msgstr "Borrar"
 
 
 
 
 
326
 
327
- #:
328
- msgid "No staff selected"
329
- msgstr "Ningún trabajador seleccionado"
330
 
331
- #:
332
- msgid "Recurring appointments"
333
- msgstr "reservas periódicas"
 
 
 
 
 
334
 
335
- #:
336
- msgid "On waiting list"
337
- msgstr "En lista de espera"
338
 
339
- #:
340
- msgid "Start time must not be empty"
341
- msgstr "La hora de inicio no puede estar vacía"
 
 
 
 
 
342
 
343
- #:
344
- msgid "End time must not be empty"
345
- msgstr "La hora de finalización no puede estar vacía"
346
 
347
- #:
348
- msgid "End time must not be equal to start time"
349
- msgstr "La hora de finalización no debe ser igual a la de inicio"
 
 
 
 
350
 
351
- #:
352
- msgid "The number of customers should not be more than %d"
353
- msgstr "El número de clientes no debe ser más de %d"
354
 
355
- #:
356
- msgid "Could not save appointment in database."
357
- msgstr "No se pudo guardar la cita en la base de datos."
358
 
359
- #:
360
- msgid "Untitled"
361
- msgstr "Sin título"
362
 
363
- #:
364
- msgid "Provider"
365
- msgstr "Proveedor"
 
 
 
366
 
367
- #:
368
- msgid "Service"
369
- msgstr "Servicio"
370
 
371
- #:
372
- msgid "-- Select a service --"
373
- msgstr "-- Selecciona un servicio --"
374
 
375
- #:
376
- msgid "Please select a service"
377
- msgstr "Por favor selecciona un servicio"
378
 
379
- #:
380
- msgid "Location"
381
- msgstr "Ubicación"
382
 
383
- #:
384
- msgid "Period"
385
- msgstr "Periodo"
386
 
387
- #:
388
- msgid "to"
389
- msgstr "a"
390
 
391
- #:
392
- msgid "Selected period doesn't match service duration"
393
- msgstr "¡El periodo seleccionado no coincide con la duración predeterminada para el servicio seleccionado!"
394
 
395
- #:
396
- msgid "The selected period is occupied by another appointment"
397
- msgstr "El periodo seleccionado está ocupado por otra cita"
398
 
399
- #:
400
- msgid "Selected / maximum"
401
- msgstr "Seleccionado / máxima"
402
 
403
- #:
404
- msgid "Minimum capacity"
405
- msgstr "Capacidad mínima"
 
406
 
407
- #:
408
- msgid "Edit booking details"
409
- msgstr "Editar detalles de la reserva"
410
 
411
- #:
412
- msgid "Remove customer"
413
- msgstr "Eliminar cliente"
414
 
415
- #:
416
- msgid "-- Search customers --"
417
- msgstr "-- Buscar clientes --"
418
 
419
- #:
420
- msgid "New customer"
421
- msgstr "Nuevo cliente"
422
 
423
- #:
424
- msgid "Send notifications"
425
- msgstr "Enviar notificaciones"
426
 
427
- #:
428
- msgid "Internal note"
429
- msgstr "Nota interna"
430
 
431
- #:
432
- msgid "Number of persons"
433
- msgstr "Número de personas"
434
 
435
- #:
436
- msgid "Cancellation reason (optional)"
437
- msgstr "Motivo de cancelación (opcional)"
438
 
439
- #:
440
- msgid "All"
441
- msgstr "Todos"
442
 
443
- #:
444
- msgid "All staff"
445
- msgstr "Todos los trabajadores"
446
 
447
- #:
448
- msgid "Add staff members."
449
- msgstr "Añadir trabajadores"
450
 
451
- #:
452
- msgid "Add Staff Members"
453
- msgstr "Añadir Trabajadores"
454
 
455
- #:
456
- msgid "Add Services"
457
- msgstr "Añadir Servicios"
458
 
459
- #:
460
- msgid "All services"
461
- msgstr "Todos los servicios"
462
 
463
- #:
464
- msgid "Code"
465
- msgstr "Código"
466
 
467
- #:
468
- msgid "Reorder"
469
- msgstr "Reordenar"
470
 
471
- #:
472
- msgid "No customers found."
473
- msgstr "No se encontraron clientes."
474
 
475
- #:
476
- msgid "Edit customer"
477
- msgstr "Editar cliente"
478
 
479
- #:
480
- msgid "Create customer"
481
- msgstr "Crear cliente"
482
 
483
- #:
484
- msgid "Quick search customer"
485
- msgstr "Búsqueda rápida de cliente"
486
 
487
- #:
488
- msgid "User"
489
- msgstr "Usuario"
490
 
491
- #:
492
- msgid "Notes"
493
- msgstr "Notas"
494
 
495
- #:
496
- msgid "Last appointment"
497
- msgstr "Última cita"
498
 
499
- #:
500
- msgid "Total appointments"
501
- msgstr "Total de citas"
502
 
503
- #:
504
- msgid "New Customer"
505
- msgstr "Nuevo Cliente"
 
 
 
506
 
507
- #:
508
- msgid "First name"
509
- msgstr "Nombre"
 
510
 
511
- #:
512
- msgid "Required"
513
- msgstr "Requerido"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
514
 
515
- #:
516
- msgid "Last name"
517
- msgstr "Apellidos"
518
 
519
- #:
520
- msgid "Name"
521
- msgstr "Nombre"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
522
 
523
- #:
524
- msgid "Phone"
525
- msgstr "Teléfono"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
526
 
527
- #:
528
- msgid "Email"
529
- msgstr "Email"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
530
 
531
- #:
532
- msgid "Delete customers"
533
- msgstr "Eliminar clientes"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
534
 
535
- #:
536
- msgid "Remember my choice"
537
- msgstr "Recordar mi selección"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
538
 
539
- #:
540
- msgid "Yes"
541
- msgstr "Sí"
542
 
543
- #:
544
- msgid "%d day"
545
- msgid_plural "%d days"
546
- msgstr[0] "%d día"
547
- msgstr[1] "%d días"
548
 
549
- #:
550
- msgid "Sent successfully."
551
- msgstr "Enviado correctamente."
 
 
 
 
 
 
552
 
553
- #:
554
- msgid "Subject"
555
- msgstr "Asunto"
556
 
557
- #:
558
- msgid "Message"
559
- msgstr "Mensaje"
560
 
561
- #:
562
- msgid "date of appointment"
563
- msgstr "fecha de la cita"
564
 
565
- #:
566
- msgid "time of appointment"
567
- msgstr "hora de la cita"
568
 
569
- #:
570
- msgid "end date of appointment"
571
- msgstr "fecha de finalización de la cita"
572
 
573
- #:
574
- msgid "end time of appointment"
575
- msgstr "hora de finalización de la cita"
576
 
577
- #:
578
- msgid "URL of approve appointment link (to use inside <a> tag)"
579
- msgstr "URL de aprobación de la cita (aparecerá entre etiquetas <a>)"
580
 
581
- #:
582
- msgid "cancel appointment link"
583
- msgstr "enlace para cancelar la cita"
 
 
 
584
 
585
- #:
586
- msgid "URL of cancel appointment link (to use inside <a> tag)"
587
- msgstr "URL del enlace de cancelar la cita (aparecerá entre etiquetas <a>)"
588
 
589
- #:
590
- msgid "reason you mentioned while deleting appointment"
591
- msgstr "razón por la que quieres cancelar la cita"
592
 
593
- #:
594
- msgid "email of client"
595
- msgstr "email de cliente"
596
 
597
- #:
598
- msgid "full name of client"
599
- msgstr "nombre completo del cliente"
600
 
601
- #:
602
- msgid "first name of client"
603
- msgstr "nombre del cliente"
604
 
605
- #:
606
- msgid "last name of client"
607
- msgstr "apellidos del clietne"
608
 
609
- #:
610
- msgid "phone of client"
611
- msgstr "teléfono del cliente"
 
 
 
 
612
 
613
- #:
614
- msgid "name of company"
615
- msgstr "nombre de la compañía"
616
 
617
- #:
618
- msgid "company logo"
619
- msgstr "logo de la compañía"
620
 
621
- #:
622
- msgid "address of company"
623
- msgstr "dirección de la compañía"
624
 
625
- #:
626
- msgid "company phone"
627
- msgstr "teléfono de la compañía"
628
 
629
- #:
630
- msgid "company web-site address"
631
- msgstr "página web de la compañía"
632
 
633
- #:
634
- msgid "URL for adding event to client's Google Calendar (to use inside <a> tag)"
635
- msgstr "URL para añadir eventos al Google Calendar del cliente (aparecerá entre etiquetas <a>)"
636
 
637
- #:
638
- msgid "payment type"
639
- msgstr "tipo de pago"
640
 
641
- #:
642
- msgid "duration of service"
643
- msgstr "duración del servicio"
644
 
645
- #:
646
- msgid "email of staff"
647
- msgstr "email del trabajador"
648
 
649
- #:
650
- msgid "phone of staff"
651
- msgstr "teléfono del trabajador"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
652
 
653
- #:
654
- msgid "photo of staff"
655
- msgstr "foto de trabajador"
656
 
657
- #:
658
- msgid "total price of booking (sum of all cart items after applying coupon)"
659
- msgstr "precio total de la reserva (suma de todos los elementos del carro después de aplicar el cupón)"
660
 
661
- #:
662
- msgid "cart information"
663
- msgstr "información de la compra"
664
 
665
- #:
666
- msgid "cart information with cancel"
667
- msgstr "información de la compra con cancelación"
 
 
 
668
 
669
- #:
670
- msgid "customer new username"
671
- msgstr "nuevo nombre de usuario del cliente"
672
 
673
- #:
674
- msgid "customer new password"
675
- msgstr "nueva contraseña del cliente"
 
 
 
 
676
 
677
- #:
678
- msgid "site address"
679
- msgstr "dirección del sitio"
680
 
681
- #:
682
- msgid "date of next day"
683
- msgstr "fecha del día siguiente"
684
 
685
- #:
686
- msgid "staff agenda for next day"
687
- msgstr "agenda del trabajador del día siguiente"
688
 
689
- #:
690
- msgid "To email"
691
- msgstr "A la dirección de correo electrónico"
692
 
693
- #:
694
- msgid "Sender name"
695
- msgstr "Nombre del remitente"
696
 
697
- #:
698
- msgid "Sender email"
699
- msgstr "Email del remitente"
700
 
701
- #:
702
- msgid "Reply directly to customers"
703
- msgstr "Responder directamente a los clientes"
704
 
705
- #:
706
- msgid "Disabled"
707
- msgstr "Desactivado"
708
 
709
- #:
710
- msgid "Enabled"
711
- msgstr "Activado"
712
 
713
- #:
714
- msgid "Send emails as"
715
- msgstr "Enviar correo electrónico como"
716
 
717
- #:
718
- msgid "HTML"
719
- msgstr "HTML"
720
 
721
- #:
722
- msgid "Text"
723
- msgstr "Texto"
724
 
725
- #:
726
- msgid "Notification templates"
727
- msgstr "Plantillas de notificación"
728
 
729
- #:
730
- msgid "All templates"
731
- msgstr "Todas las plantillas"
732
 
733
- #:
734
- msgid "Send"
735
- msgstr "Enviar"
736
 
737
- #:
738
- msgid "Close"
739
- msgstr "Cerrar"
740
 
741
- #:
742
- msgid "HTML allows formatting, colors, fonts, positioning, etc. With Text you must use Text mode of rich-text editors below. On some servers only text emails are sent successfully."
743
- msgstr "HTML permite formatos, colores, fuentes, posicionamiento, etc. Con Texto debe utilizar el Modo Texto de editores de texto enriquecido a continuación. En algunos servidores de correo solo funcionará el modo texto."
744
 
745
- #:
746
- msgid "If this option is enabled then the email address of the customer is used as a sender email address for notifications sent to staff members and administrators."
747
- msgstr "Si esta opción está activada, la dirección de correo electrónico del cliente se utiliza como una dirección de correo electrónico del remitente para las notificaciones enviadas a los trabajadores y los administradores."
748
 
749
- #:
750
- msgid "Codes"
751
- msgstr "Códigos"
752
 
753
- #:
754
- msgid "To send scheduled notifications please refer to <a href=\"%1$s\">Bookly Multisite</a> add-on <a href=\"%2$s\">message</a>."
755
- msgstr "Para enviar notificaciones programadas por favor refiérase al <a href=\"%2$s\">mensaje</a> de <a href=\"%1$s\">Bookly Multisite</a>."
756
 
757
- #:
758
- msgid "To send scheduled notifications please execute the following command hourly with your cron:"
759
- msgstr "Para enviar notificaciones programadas, ejecute el siguiente comando cada hora con su cron:"
760
 
761
- #:
762
- msgid "No payments for selected period and criteria."
763
- msgstr "No hay pagos para el período y criterio seleccionado."
764
 
765
- #:
766
- msgid "Details"
767
- msgstr "Detalles"
768
 
769
- #:
770
- msgid "See details for more items"
771
- msgstr "Ver detalles para más artículos"
772
 
773
- #:
774
- msgid "Type"
775
- msgstr "Tipo"
776
 
777
- #:
778
- msgid "Deposit"
779
- msgstr "Depósito"
780
 
781
- #:
782
- msgid "Subtotal"
783
- msgstr "Subtotal"
784
 
785
- #:
786
- msgid "Paid"
787
- msgstr "Pagado"
788
 
789
- #:
790
- msgid "Due"
791
- msgstr "Debido"
792
 
793
- #:
794
- msgid "Complete payment"
795
- msgstr "Completa el pago"
796
 
797
- #:
798
- msgid "Amount"
799
- msgstr "Cantidad"
800
 
801
- #:
802
- msgid "Min capacity should not be greater than max capacity."
803
- msgstr "La capacidad mínima no debe ser mayor que la capacidad máxima."
804
 
805
- #:
806
- msgid "%d service"
807
- msgid_plural "%d services"
808
- msgstr[0] "%d servicio"
809
- msgstr[1] "%d servicios"
810
 
811
- #:
812
- msgid "Simple"
813
- msgstr "Sencillo"
814
 
815
- #:
816
- msgid "Title"
817
- msgstr "Titulo"
818
 
819
- #:
820
- msgid "Color"
821
- msgstr "Color"
 
 
 
 
 
 
 
 
822
 
823
- #:
824
- msgid "Visibility"
825
- msgstr "Visibilidad"
3
  "MIME-Version: 1.0\n"
4
  "Content-Type: text/plain; charset=UTF-8\n"
5
  "Content-Transfer-Encoding: 8bit\n"
6
+ "X-Generator: Loco https://localise.biz/\n"
7
  "Project-Id-Version: Bookly\n"
8
+ "Language: es_ES\n"
9
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
10
+ "Report-Msgid-Bugs-To: \n"
11
+ "POT-Creation-Date: 2019-12-04 12:02+0000\n"
12
+ "PO-Revision-Date: 2019-12-08 20:54+0000\n"
13
+ "Last-Translator: support@bookly.info\n"
14
+ "Language-Team: Spanish (Spain)\n"
15
+ "X-Loco-Version: 2.3.1; wp-5.3"
16
 
17
+ msgid "Invoice #{invoice_number} for your appointment"
18
+ msgstr "Factura #{invoice_number} por su cita"
 
19
 
20
+ msgid ""
21
+ "Dear {client_name}.\n"
22
+ "\n"
23
+ "Attached please find invoice #{invoice_number} for your appointment.\n"
24
+ "\n"
25
+ "Thank you for choosing our company.\n"
26
+ "\n"
27
+ "{company_name}\n"
28
+ "{company_phone}\n"
29
+ "{company_website}"
30
+ msgstr ""
31
+ "Estimado {client_name}.\n"
32
+ "\n"
33
+ "Encontrará adjunto la factura #{invoice_number} por su cita.\n"
34
+ "\n"
35
+ "Gracias por escoger nuestra compañia.\n"
36
+ "\n"
37
+ "{company_name}\n"
38
+ "{company_phone}\n"
39
+ "{company_website}"
40
 
41
+ msgid "New invoice"
42
+ msgstr "Nueva factura"
 
43
 
44
+ msgid ""
45
+ "Hello.\n"
46
+ "You have a new invoice #{invoice_number} for an appointment scheduled by "
47
+ "{client_first_name} {client_last_name}.\n"
48
+ "Please download invoice here: {invoice_link}"
49
+ msgstr ""
50
+ "Hola.\n"
51
+ "Tiene una nueva factura #{invoice_number} por una cita programada por "
52
+ "{client_first_name} {client_last_name}.\n"
53
+ "Descargue la factura aquí: {invoice_link}"
54
 
55
+ msgid "BILL TO"
56
+ msgstr "FACTURAR A"
 
57
 
58
+ msgid "Invoice#"
59
+ msgstr "Factura#"
 
60
 
61
+ msgid "Date"
62
+ msgstr "Fecha"
 
63
 
64
+ msgid "Due date"
65
+ msgstr "Fecha de vencimiento"
 
66
 
67
+ msgid "INVOICE"
68
+ msgstr "FACTURA"
 
69
 
70
+ msgid "Thank you for your business"
71
+ msgstr "Gracias por hacer negocios"
 
72
 
73
+ msgid ""
74
+ "Invoices add-on requires your customers address information. So options "
75
+ "\"Make address field mandatory\" in Settings/Customers and \"Show address "
76
+ "field\" in Appearance/Details are activated automatically and can be "
77
+ "disabled after Invoices add-on is deactivated."
78
+ msgstr ""
79
+ "El complemento de facturas requiere la información de la dirección de sus "
80
+ "clientes. Por lo tanto, las opciones \"Hacer que sea obligatorio el campo "
81
+ "dirección\" en Configuración/Clientes y \"Mostrar campo de dirección\" en "
82
+ "Apariencia/Detalles se activan automáticamente y se pueden desactivar "
83
+ "después de desactivar el complemento de Facturas."
84
 
85
+ msgid "Invoice due days"
86
+ msgstr "Días de vencimiento de la factura"
 
87
 
88
+ msgid "This setting specifies the due period for the invoice (in days)."
89
+ msgstr ""
90
+ "Esta configuración especifica el período de vencimiento para la factura (en "
91
+ "días)."
92
 
93
+ msgid "Invoice template"
94
+ msgstr "Plantilla de factura"
 
95
 
96
+ msgid "Specify the template for the invoice."
97
+ msgstr "Especifique la plantilla para la factura."
 
98
 
99
+ msgid "Preview"
100
+ msgstr "Vista previa"
101
+
102
+ msgid "Invoices"
103
+ msgstr "Facturas"
104
 
 
105
  msgid "Settings saved."
106
  msgstr "Configuración guardada."
107
 
108
+ msgid "Download invoices"
109
+ msgstr "Descargar facturas"
 
 
 
 
 
110
 
111
+ msgid "invoice creation date"
112
+ msgstr "fecha de creación de la factura"
 
113
 
114
+ msgid "due date of invoice"
115
+ msgstr "fecha de vencimiento de la factura"
 
116
 
117
+ msgid "number of days to submit payment"
118
+ msgstr "número de días para enviar el pago"
 
119
 
120
+ msgid "invoice link"
121
+ msgstr "enlace de la factura"
 
122
 
123
+ msgid "invoice number"
124
+ msgstr "número de la factura"
 
125
 
126
+ msgid "Attach invoice"
127
+ msgstr "Adjuntar la factura"
 
128
 
129
+ msgid ""
130
+ "Invoice due days: Please enter value in the following range (in days) - 1 to "
131
+ "365."
132
+ msgstr ""
133
+ "Días de vencimiento de la factura: ingrese el valor en el siguiente rango "
134
+ "(en días): de 1 a 365."
135
 
136
+ msgid "Service"
137
+ msgstr "Servicio"
 
138
 
139
+ msgid "Provider"
140
+ msgstr "Proveedor"
 
141
 
142
+ msgid "Deposit"
143
+ msgstr "Depósito"
 
144
 
145
+ msgid "Price"
146
+ msgstr "Precio"
 
147
 
148
+ msgid "Tax"
149
+ msgstr "Impuesto"
 
150
 
151
+ msgid "N/A"
152
+ msgstr "N/A"
 
153
 
154
+ msgid "Subtotal"
155
+ msgstr "Subtotal"
 
156
 
157
+ msgid "Coupon discount"
158
+ msgstr "Descuento de cupones"
 
159
 
160
+ msgid "Group discount"
161
+ msgstr "Descuento para grupo"
 
162
 
163
+ msgid "Total"
164
+ msgstr "Total"
 
165
 
166
+ msgid "Paid"
167
+ msgstr "Pagado"
 
168
 
169
+ msgid "Due"
170
+ msgstr "Debido"
 
171
 
172
+ msgid "Discount"
173
+ msgstr "Descuento"
 
174
 
175
+ msgid "Outlook Calendar event"
176
+ msgstr "Evento del calendario de Outlook"
 
177
 
178
+ msgid "Name"
179
+ msgstr "Nombre"
 
180
 
181
+ msgid "Email"
182
+ msgstr "Email"
 
183
 
184
+ msgid "Phone"
185
+ msgstr "Teléfono"
 
186
 
187
+ msgid "Outlook Calendar integration"
188
+ msgstr "Incorporación del calendario de Outlook"
 
189
 
190
+ msgid "Synchronize staff member appointments with Outlook Calendar."
191
+ msgstr ""
192
+ "Sincronice las citas de los miembros del personal con el calendario de "
193
+ "Outlook."
194
 
195
+ msgid "Connect"
196
+ msgstr "Conectar"
 
197
 
198
+ #, php-format
199
+ msgid "Please configure Outlook Calendar <a href=\"%s\">settings</a> first"
200
+ msgstr ""
201
+ "Por favor, configure el calendario de Outlook <a href=\"%s\">settings</a> "
202
+ "primero"
203
 
204
+ msgid "Connected"
205
+ msgstr "Conectado"
 
206
 
207
+ msgid "disconnect"
208
+ msgstr "desconectar"
 
209
 
210
+ msgid "Calendar"
211
+ msgstr "Calendario"
 
212
 
213
+ msgid ""
214
+ "When you connect a calendar all future and past events will be synchronized "
215
+ "according to the selected synchronization mode. This may take a few minutes. "
216
+ "Please wait."
217
+ msgstr ""
218
+ "Cuando conecte un calendario, todos los eventos futuros y pasados se "
219
+ "sincronizarán de acuerdo con el modo de sincronización seleccionado. Esto "
220
+ "puede llevar unos pocos minutos. Por favor, espere."
221
 
222
+ msgid "-- Select calendar --"
223
+ msgstr "- Seleccionar calendario -"
 
224
 
225
+ msgid "Can't change calendar for archived staff"
226
+ msgstr "No se puede cambiar el calendario para el personal archivado"
 
227
 
228
+ msgid "Instructions"
229
+ msgstr "Instrucciones"
 
230
 
231
+ msgid ""
232
+ "Important: Your website must use <b>HTTPS</b>. The Outlook Calendar API will "
233
+ "not work with your website if there is no valid SSL certificate installed on "
234
+ "your web server."
235
+ msgstr ""
236
+ "Importante: su sitio web debe utilizar <b>HTTPS</b>. La API del Calendario "
237
+ "de Outlook no funcionará en su sitio web si no hay un certificado SSL válido "
238
+ "instalado en su servidor web."
239
 
240
+ msgid "To find your Application ID and Application Secret, do the following:"
241
+ msgstr ""
242
+ "Para encontrar su ID de Aplicación y su secreto de Aplicación, haga lo "
243
+ "siguiente:"
244
 
245
+ #, php-format
246
+ msgid ""
247
+ "Sign in to the <a href=\"%s\" target=\"_blank\">Azure portal</a> using "
248
+ "either a work or school account or a personal Microsoft account."
249
+ msgstr ""
250
+ "Inicie sesión en el <a href=\"%s\" target=\"_blank\">Azure portal</a> "
251
+ "utilizando una cuenta profesional, educativa o una cuenta personal de "
252
+ "Microsoft."
253
 
254
+ msgid ""
255
+ "If your account gives you access to more than one tenant, select your "
256
+ "account in the top right corner, and set your portal session to the Azure AD "
257
+ "tenant that you want."
258
+ msgstr ""
259
+ "Si su cuenta le da acceso a más de un inquilino, seleccione su cuenta en la "
260
+ "esquina superior derecha y configure su sesión de portal para el inquilino "
261
+ "de Azure AD que desee."
262
 
263
+ msgid ""
264
+ "In the left-hand navigation pane, select the <b>Azure Active Directory</b> "
265
+ "service, and then select <b>App registrations &gt; New registration</b>."
266
+ msgstr ""
267
+ "En el panel de navegación izquierdo, seleccione el servicio <b>Azure Active "
268
+ "Directory</b>, y luego seleccione <b>Registros de aplicaciones &gt; Nuevo "
269
+ "Registro</b>."
270
 
271
+ msgid ""
272
+ "When the <b>Register an application</b> page appears, enter your "
273
+ "application's <b>Name</b> and <b>Redirect URI</b> found below on this page. "
274
+ "When finished, select <b>Register</b>."
275
+ msgstr ""
276
+ "Cuando aparezca la página <b>Registrar una aplicación</b>, ingrese el <b>"
277
+ "Nombre</b> y la <b>URI de redireccionamiento</b> de su aplicación en esta "
278
+ "página. Cuando termine, seleccione <b>Registrarse</b>."
279
 
280
+ msgid ""
281
+ "Azure AD assigns a unique application (client) ID to your app, and you're "
282
+ "taken to your application's <b>Overview</b> page."
283
+ msgstr ""
284
+ "Azure AD asigna un ID de aplicación (cliente) único a su aplicación, y lo "
285
+ "llevará a la página <b>Descripción general</b> de su aplicación."
286
 
287
+ msgid ""
288
+ "Copy the <b>Application (client) ID</b> and insert it into the form below on "
289
+ "this page."
290
+ msgstr ""
291
+ "Copie el <b>ID de la aplicación (cliente)</b> e insértelo en el siguiente "
292
+ "formulario de esta página."
293
 
294
+ msgid ""
295
+ "Under <b>Certificates &amp; secrets</b>, choose <b>New client secret</b>, "
296
+ "set <b>Expires</b> to <b>Never</b> and click <b>Add</b>. Copy the app secret "
297
+ "from the <b>Client secrets</b> list before leaving the page. Insert the "
298
+ "secret into the form below on this page."
299
+ msgstr ""
300
+ "En <b>Certificados y Secretos</b>, escoja <b>Nuevo secreto de cliente</b>, "
301
+ "configure <b>Expira</b> <b>Nunca</b> y haga clic en <b>Añadir</b>. Copie el "
302
+ "secreto de la aplicación de la lista de <b>Secretos de cliente</b> antes de "
303
+ "salir de la página. Inserte el secreto en el formulario siguiente en esta "
304
+ "página."
305
 
306
+ msgid ""
307
+ "Under <b>API permissions</b>, choose <b>Add a permission</b>, and select <b>"
308
+ "Microsoft Graph &gt; Delegated permissions</b>. In <b>Select permissions</b> "
309
+ "find <b>Calendars.ReadWrite</b>, select it and click <b>Add permissions</b> "
310
+ "button."
311
+ msgstr ""
312
+ "En <b>Permisos API</b>, escoja <b>Añadir permiso</b>, y seleccione <b>"
313
+ "Microsoft Graph &gt; Permisos delegados</b>. En <b>Seleccionar permisos</b>, "
314
+ "busque <b>Calendarios.ReadWrite</b>, selecciónelo y haga clic en el botón <b>"
315
+ "Añadir permisos</b>."
316
 
317
+ msgid "<b>Save</b> your changes."
318
+ msgstr "<b>Guarda</b> los cambios."
 
319
 
320
+ msgid ""
321
+ "Go to Staff Members, select a staff member and click <b>Connect</b> which is "
322
+ "located at the bottom of the page."
323
+ msgstr ""
324
+ "Ir a los Trabajadores, selecciona uno y haz clic en <b>Conectar</b> que se "
325
+ "encuentra en la parte inferior de la página."
326
 
327
+ msgid "Application ID"
328
+ msgstr "ID de aplicación"
 
329
 
330
+ msgid "The Application ID obtained from the Microsoft App Registration Portal."
331
+ msgstr ""
332
+ "ID de la aplicación obtenida del Portal de Registro de Aplicaciones de "
333
+ "Microsoft."
334
 
335
+ msgid "Application secret"
336
+ msgstr "Secreto de Aplicación"
 
337
 
338
+ msgid ""
339
+ "The Application Secret password obtained from the Microsoft App Registration "
340
+ "Portal."
341
+ msgstr ""
342
+ "La contraseña del Secreto de Aplicación obtenida del Portal de registro de "
343
+ "aplicaciones de Microsoft."
344
 
345
+ msgid "Redirect URI"
346
+ msgstr "Redirección URI"
 
347
 
348
+ msgid ""
349
+ "Enter this URL as a Redirect URLs in the Microsoft App Registration Portal."
350
+ msgstr ""
351
+ "Ingrese esta URL como URL de Redireccionamiento en el Portal de Registro de "
352
+ "las Aplicaciones de Microsoft."
353
 
354
+ msgid "Synchronization mode"
355
+ msgstr "Modo de sincronización"
 
356
 
357
+ msgid ""
358
+ "With \"One-way\" sync Bookly pushes new appointments and any further changes "
359
+ "to Outlook Calendar. With \"Two-way front-end only\" sync Bookly will "
360
+ "additionally fetch events from Outlook Calendar and remove corresponding "
361
+ "time slots before displaying the Time step of the booking form (this may "
362
+ "lead to a delay when users click Next to get to the Time step). With \"Two-"
363
+ "way\" sync all bookings created in Bookly Calendar will be automatically "
364
+ "copied to Outlook Calendar and vice versa."
365
+ msgstr ""
366
+ "Con la sincronización \"Unidireccional\", Bookly incluye nuevas citas y "
367
+ "cualquier cambio adicional en el Calendario de Outlook. Con la "
368
+ "sincronización \"Solo front-end bidireccional \", Bookly también obtendrá "
369
+ "eventos del Calendario de Outlook y eliminará los periodos de tiempo "
370
+ "correspondientes antes de mostrar el paso de Tiempo del formulario de "
371
+ "reserva (esto puede ocasionar un retraso cuando los usuarios hagan clic en "
372
+ "Siguiente para acceder al paso de Tiempo). Con la sincronización "
373
+ "\"Bidireccional\", todas las reservas creadas en el Calendario de Bookly se "
374
+ "copiarán automáticamente al Calendario de Outlook y viceversa."
375
 
376
+ msgid "One-way"
377
+ msgstr "Unidireccional"
 
378
 
379
+ msgid "Two-way front-end only"
380
+ msgstr "Solo front-end bidireccional"
 
381
 
382
+ msgid "Two-way"
383
+ msgstr "Bidireccional"
 
384
 
385
+ msgid "Sync appointments history"
386
+ msgstr "Sincronizar el historial de citas"
 
387
 
388
+ msgid ""
389
+ "Specify how many days of past calendar data you wish to sync at the time of "
390
+ "initial sync. If you enter 0, synchronization of past events will not be "
391
+ "performed."
392
+ msgstr ""
393
+ "Especifique cuántos días de datos del calendario pasado ​​desea sincronizar "
394
+ "en el momento de la sincronización inicial. Si ingresa 0, la sincronización "
395
+ "de eventos pasados ​​no se realizará. "
396
 
397
+ msgid "Copy Outlook Calendar event titles"
398
+ msgstr "Copiar títulos de eventos del calendario de Outlook"
 
399
 
400
+ msgid ""
401
+ "If enabled then titles of Outlook Calendar events will be copied to Bookly "
402
+ "appointments. If disabled, a standard title \"Outlook Calendar event\" will "
403
+ "be used."
404
+ msgstr ""
405
+ "Si está habilitado, los títulos de los eventos del calendario de Outlook se "
406
+ "copiarán a las citas de Bookly. Si está deshabilitado, se utilizará el "
407
+ "título estándar \"Evento del calendario de Outlook\"."
408
 
409
+ msgid "Limit number of fetched events"
410
+ msgstr "Limitar el número de eventos improbables"
 
411
 
412
+ msgid ""
413
+ "If there is a lot of events in Outlook Calendar sometimes this leads to a "
414
+ "lack of memory in PHP when Bookly tries to fetch all events. You can limit "
415
+ "the number of fetched events here."
416
+ msgstr ""
417
+ "Si hay muchos eventos en el Calendario de Outlook, a veces esto conlleva una "
418
+ "falta de memoria en PHP cuando Bookly intenta recuperar todos los eventos. "
419
+ "Puede limitar el número de eventos buscados aquí."
420
 
421
+ msgid "Template for event title"
422
+ msgstr "Plantilla para el título del evento"
 
423
 
424
+ msgid ""
425
+ "Configure what information should be placed in the title of Outlook Calendar "
426
+ "event. Available codes are {service_name}, {staff_name} and {client_names}."
427
+ msgstr ""
428
+ "Configure qué información debe colocarse en el título del evento del "
429
+ "Calendario de Outlook. Los códigos disponibles son {service_name}, "
430
+ "{staff_name} y {client_names}."
431
 
432
+ msgid "Appointment section"
433
+ msgstr "Sección de citas"
 
434
 
435
+ msgid "This section describes information that is displayed about appointment."
436
+ msgstr "Esta sección describe la información que se muestra sobre la cita"
 
437
 
438
+ msgid "Customer section"
439
+ msgstr "Sección de clientes"
 
440
 
441
+ msgid ""
442
+ "This section describes information that is displayed about each participant "
443
+ "of the appointment."
444
+ msgstr ""
445
+ "Esta sección describe la información que se muestra sobre cada participante "
446
+ "de la cita."
447
 
448
+ msgid "customer notes for appointment"
449
+ msgstr "notas de los clientes para la cita"
 
450
 
451
+ msgid "email of client"
452
+ msgstr "email de cliente"
 
453
 
454
+ msgid "full name of client"
455
+ msgstr "nombre completo del cliente"
 
456
 
457
+ msgid "first name of client"
458
+ msgstr "nombre del cliente"
 
459
 
460
+ msgid "last name of client"
461
+ msgstr "apellidos del clietne"
 
462
 
463
+ msgid "phone of client"
464
+ msgstr "teléfono del cliente"
 
465
 
466
+ msgid "status of payment"
467
+ msgstr "estado de pago"
 
468
 
469
+ msgid "payment type"
470
+ msgstr "tipo de pago"
 
471
 
472
+ msgid "status of appointment"
473
+ msgstr "estado de la cita"
 
474
 
475
+ msgid "total price of booking (sum of all cart items after applying coupon)"
476
+ msgstr ""
477
+ "precio total de la reserva (suma de todos los elementos del carro después de "
478
+ "aplicar el cupón)"
479
 
480
+ msgid "date of appointment"
481
+ msgstr "fecha de la cita"
 
482
 
483
+ msgid "time of appointment"
484
+ msgstr "hora de la cita"
 
485
 
486
+ msgid "booking number"
487
+ msgstr "número de reserva"
 
488
 
489
+ msgid "name of category"
490
+ msgstr "nombre de categoría"
 
491
 
492
+ msgid "address of company"
493
+ msgstr "dirección de la compañía"
 
494
 
495
+ msgid "name of company"
496
+ msgstr "nombre de la compañía"
 
497
 
498
+ msgid "company phone"
499
+ msgstr "teléfono de la compañía"
 
500
 
501
+ msgid "company web-site address"
502
+ msgstr "página web de la compañía"
 
503
 
504
+ msgid "info of service"
505
+ msgstr "información de servicio"
 
506
 
507
+ msgid "name of service"
508
+ msgstr "nombre del servicio"
 
509
 
510
+ msgid "price of service"
511
+ msgstr "precio del servicio"
 
512
 
513
+ msgid "email of staff"
514
+ msgstr "email del trabajador"
 
515
 
516
+ msgid "info of staff"
517
+ msgstr "información de empleados"
 
518
 
519
+ msgid "name of staff"
520
+ msgstr "nombre de empleados"
 
521
 
522
+ msgid "phone of staff"
523
+ msgstr "teléfono del trabajador"
 
524
 
525
+ msgid "Outlook Calendar"
526
+ msgstr "Calendario de Outlook"
 
527
 
528
+ msgid "Disabled"
529
+ msgstr "Desactivado"
 
530
 
531
+ msgid "Synchronize with Outlook Calendar"
532
+ msgstr "Sincronizar con el calendario de Outlook"
 
533
 
534
+ msgid "Calendars synchronized successfully."
535
+ msgstr "Calendarios sincronizados con éxito"
 
536
 
537
+ msgid "Custom Fields"
538
+ msgstr "Campos personalizados"
 
539
 
540
+ msgid "Incorrect code"
541
+ msgstr "Código incorrecto"
 
542
 
543
+ msgid "Required"
544
+ msgstr "Requerido"
 
545
 
546
+ msgid "combined values of all custom fields"
547
+ msgstr "valores combinados de todos los campos personalizados"
 
548
 
549
+ msgid "Bind fields to services"
550
+ msgstr "Campos se unen a los servicios"
 
551
 
552
+ msgid ""
553
+ "When this setting is enabled you will be able to create service specific "
554
+ "custom fields."
555
+ msgstr ""
556
+ "Cuando se habilita esta configuración usted será capaz de crear campos "
557
+ "personalizados específicos de servicios."
558
 
559
+ msgid "Merge repeating custom fields for multiple bookings of the service"
560
+ msgstr ""
561
+ "Fusionar los campos personalizados repetidos para múltiples reservas del "
562
+ "servicio"
563
 
564
+ msgid ""
565
+ "If enabled, customers will see custom fields for unique appointments while "
566
+ "booking multiple instances of the service. Repeating custom fields are "
567
+ "merged (collapsed) into one field. If disabled, customers will see custom "
568
+ "fields for each appointment in the set of bookings."
569
+ msgstr ""
570
+ "Si está habilitado, los clientes verán campos personalizados para citas "
571
+ "únicas mientras reservan varias instancias del servicio. La repetición de "
572
+ "campos personalizados se fusiona (contrae) en un campo. Si está "
573
+ "deshabilitado, los clientes verán campos personalizados para cada cita en el "
574
+ "conjunto de reservas."
575
+
576
+ msgid "Text Field"
577
+ msgstr "Campo de Texto"
578
+
579
+ msgid "Text Area"
580
+ msgstr "Área de Texto"
581
+
582
+ msgid "Text Content"
583
+ msgstr "Contenido del Texto"
584
+
585
+ msgid "Checkbox Group"
586
+ msgstr "Grupo de Casillas de Verificación"
587
+
588
+ msgid "Radio Button Group"
589
+ msgstr "Grupo de Botones de Selección"
590
+
591
+ msgid "Drop Down"
592
+ msgstr "Desplegable"
593
+
594
+ msgid "Captcha"
595
+ msgstr "Captcha"
596
+
597
+ msgid "HTML allowed in all texts and labels."
598
+ msgstr "HTML permitido en todos los textos y etiquetas."
599
+
600
+ msgid "Reorder"
601
+ msgstr "Reordenar"
602
+
603
+ msgid "Remove field"
604
+ msgstr "Eliminar campo"
605
+
606
+ msgid "Enter a label"
607
+ msgstr "Añadir una etiqueta"
608
+
609
+ msgid "Required field"
610
+ msgstr "Campo requerido"
611
+
612
+ msgid "Enter a content"
613
+ msgstr "Añadir un contenido"
614
+
615
+ msgid "Checkbox"
616
+ msgstr "Caja"
617
+
618
+ msgid "Radio Button"
619
+ msgstr "Botón de Selección"
620
+
621
+ msgid "Option"
622
+ msgstr "Opción"
623
+
624
+ msgid "Remove item"
625
+ msgstr "Eliminar ítem"
626
+
627
+ msgid "All services"
628
+ msgstr "Todos los servicios"
629
+
630
+ msgid "No service selected"
631
+ msgstr "No hay servicio seleccionado"
632
+
633
+ msgid "Show custom fields"
634
+ msgstr "Mostrar campos personalizados"
635
+
636
+ msgid "extended staff agenda for next day"
637
+ msgstr "agenda del personal extendida para el día siguiente"
638
+
639
+ msgid "combined values of all custom fields (formatted in 2 columns)"
640
+ msgstr ""
641
+ "valores combinados de todos los campos personalizados (formateado en 2 "
642
+ "columnas)"
643
+
644
+ msgid "Another code"
645
+ msgstr "Otro código"
646
+
647
+ msgid "Notification to customer about approved recurring appointment"
648
+ msgstr "Notificación al cliente sobre una cita recurrente aprobada"
649
+
650
+ msgid "Your appointment information"
651
+ msgstr "Información de tu cita"
652
+
653
+ msgid ""
654
+ "Dear {client_name}.\n"
655
+ "\n"
656
+ "This is a confirmation that you have booked {service_name} (x "
657
+ "{recurring_count}).\n"
658
+ "\n"
659
+ "Please find the schedule of your booking below.\n"
660
+ "\n"
661
+ "{appointment_schedule}\n"
662
+ "\n"
663
+ "We are waiting you at {company_address}.\n"
664
+ "\n"
665
+ "Thank you for choosing our company.\n"
666
+ "\n"
667
+ "{company_name}\n"
668
+ "{company_phone}\n"
669
+ "{company_website}"
670
+ msgstr ""
671
+ "Estimado {client_name}.\n"
672
+ "\n"
673
+ "Esto es una confirmación de su reserva {service_name} (x {recurring_count})."
674
+ "\n"
675
+ "\n"
676
+ "A continuación encontrará el horario de su reserva .\n"
677
+ "\n"
678
+ "{appointment_schedule}\n"
679
+ "\n"
680
+ "Le estamos esperando en {company_address}.\n"
681
+ "\n"
682
+ "Gracias por escoger nuestra compañia.\n"
683
+ "\n"
684
+ "{company_name}\n"
685
+ "{company_phone}\n"
686
+ "{company_website}"
687
+
688
+ msgid "Notification to staff member about approved recurring appointment"
689
+ msgstr ""
690
+ "Notificación al miembro del personal sobre una cita recurrente aprobada"
691
+
692
+ msgid "New booking information"
693
+ msgstr "Información de nueva cita"
694
+
695
+ msgid ""
696
+ "Hello.\n"
697
+ "\n"
698
+ "You have a new booking.\n"
699
+ "\n"
700
+ "Service: {service_name} (x {recurring_count})\n"
701
+ "Schedule:\n"
702
+ "{appointment_schedule}\n"
703
+ "Client name: {client_name}\n"
704
+ "Client phone: {client_phone}\n"
705
+ "Client email: {client_email}"
706
+ msgstr ""
707
+ "Hola.\n"
708
+ "\n"
709
+ "Tiene una nueva reserva.\n"
710
+ "\n"
711
+ "Servicio: {service_name} (x {recurring_count})\n"
712
+ "Horario:\n"
713
+ "{appointment_schedule}\n"
714
+ "Nombre del cliente: {client_name}\n"
715
+ "Teléfono del cliente: {client_phone}\n"
716
+ "Correo electrónico del cliente: {client_email}"
717
+
718
+ msgid "Notification to customer about cancelled recurring appointment"
719
+ msgstr "Notificación al cliente sobre una cita recurrente cancelada"
720
+
721
+ msgid "Booking cancellation"
722
+ msgstr "Cancelación de la reserva"
723
+
724
+ msgid ""
725
+ "Dear {client_name}.\n"
726
+ "\n"
727
+ "Your booking of {service_name} (x {recurring_count}) has been cancelled.\n"
728
+ "\n"
729
+ "Reason: {cancellation_reason}\n"
730
+ "\n"
731
+ "Please find the schedule of the cancelled booking below:\n"
732
+ "\n"
733
+ "{appointment_schedule}\n"
734
+ "\n"
735
+ "Thank you for choosing our company.\n"
736
+ "\n"
737
+ "{company_name}\n"
738
+ "{company_phone}\n"
739
+ "{company_website}"
740
+ msgstr ""
741
+ "Estimado {client_name}.\n"
742
+ "\n"
743
+ "Su reserva de {service_name} (x {recurring_count}) ha sido cancelada.\n"
744
+ "\n"
745
+ "Motivo: {cancellation_reason}\n"
746
+ "\n"
747
+ "A continuación encontrará el horario de la reserva cancelada :\n"
748
+ "\n"
749
+ "{appointment_schedule}\n"
750
+ "\n"
751
+ "Gracias por escoger nuestra compañia.\n"
752
+ "\n"
753
+ "{company_name}\n"
754
+ "{company_phone}\n"
755
+ "{company_website}"
756
+
757
+ msgid "Notification to staff member about cancelled recurring appointment"
758
+ msgstr ""
759
+ "Notificación a un miembro del personal sobre la cita periódica cancelada"
760
+
761
+ msgid ""
762
+ "Hello.\n"
763
+ "\n"
764
+ "The following booking has been cancelled.\n"
765
+ "\n"
766
+ "Reason: {cancellation_reason}\n"
767
+ "\n"
768
+ "Service: {service_name} (x {recurring_count})\n"
769
+ "Schedule:\n"
770
+ "{appointment_schedule}\n"
771
+ "Client name: {client_name}\n"
772
+ "Client phone: {client_phone}\n"
773
+ "Client email: {client_email}"
774
+ msgstr ""
775
+ "Hola.\n"
776
+ "\n"
777
+ "La siguiente reserva ha sido cancelada.\n"
778
+ "\n"
779
+ "Motivo: {cancellation_reason}\n"
780
+ "\n"
781
+ "Servicio: {service_name} (x {recurring_count})\n"
782
+ "Horario:\n"
783
+ "{appointment_schedule}\n"
784
+ "Nombre del cliente: {client_name}\n"
785
+ "Teléfono del cliente: {client_phone}\n"
786
+ "Correo electrónico del cliente: {client_email}"
787
+
788
+ msgid "Notification to customer about rejected recurring appointment"
789
+ msgstr "Notificación al cliente sobre una cita recurrente rechazada"
790
+
791
+ msgid "Booking rejection"
792
+ msgstr "Rechazo de reserva"
793
+
794
+ msgid ""
795
+ "Dear {client_name}.\n"
796
+ "\n"
797
+ "Your booking of {service_name} (x {recurring_count}) has been rejected.\n"
798
+ "\n"
799
+ "Reason: {cancellation_reason}\n"
800
+ "\n"
801
+ "Please find the schedule of the cancelled booking below:\n"
802
+ "\n"
803
+ "{appointment_schedule}\n"
804
+ "\n"
805
+ "Thank you for choosing our company.\n"
806
+ "\n"
807
+ "{company_name}\n"
808
+ "{company_phone}\n"
809
+ "{company_website}"
810
+ msgstr ""
811
+ "Estimado {client_name}.\n"
812
+ "\n"
813
+ "Su reserva de {service_name} (x {recurring_count}) ha sido rechazada.\n"
814
+ "\n"
815
+ "Motivo: {cancellation_reason}\n"
816
+ "\n"
817
+ "A continuación encontrará el horario de la reserva cancelada:\n"
818
+ "\n"
819
+ "{appointment_schedule}\n"
820
+ "\n"
821
+ "Gracias por escoger nuestra compañia.\n"
822
+ "\n"
823
+ "{company_name}\n"
824
+ "{company_phone}\n"
825
+ "{company_website}"
826
+
827
+ msgid "Notification to staff member about rejected recurring appointment "
828
+ msgstr ""
829
+ "Notificación a un miembro del personal sobre una cita recurrente rechazada"
830
+
831
+ msgid ""
832
+ "Hello.\n"
833
+ "\n"
834
+ "The following booking has been rejected.\n"
835
+ "\n"
836
+ "Reason: {cancellation_reason}\n"
837
+ "\n"
838
+ "Service: {service_name} (x {recurring_count})\n"
839
+ "Schedule:\n"
840
+ "{appointment_schedule}\n"
841
+ "Client name: {client_name}\n"
842
+ "Client phone: {client_phone}\n"
843
+ "Client email: {client_email}"
844
+ msgstr ""
845
+ "Hola.\n"
846
+ "\n"
847
+ "La siguiente reserva ha sido rechazada.\n"
848
+ "\n"
849
+ "Motivo: {cancellation_reason}\n"
850
+ "\n"
851
+ "Servicio: {service_name} (x {recurring_count})\n"
852
+ "Horario:\n"
853
+ "{appointment_schedule}\n"
854
+ "Nombre del cliente: {client_name}\n"
855
+ "Teléfono del cliente: {client_phone}\n"
856
+ "Correo electrónico del cliente: {client_email}"
857
+
858
+ msgid ""
859
+ "Notification to customer about placing on waiting list for recurring "
860
+ "appointment"
861
+ msgstr ""
862
+ "Notificación al cliente sobre la colocación en la lista de espera para una "
863
+ "cita recurrente"
864
+
865
+ msgid "You have been added to waiting list for appointment"
866
+ msgstr "Has sido agregado a la lista de espera para una cita"
867
+
868
+ msgid ""
869
+ "Dear {client_name}.\n"
870
+ "\n"
871
+ "This is a confirmation that you have been added to the waiting list for "
872
+ "{service_name} (x {recurring_count}).\n"
873
+ "\n"
874
+ "Please find the service schedule below.\n"
875
+ "\n"
876
+ "{appointment_schedule}\n"
877
+ "\n"
878
+ "Thank you for choosing our company.\n"
879
+ "\n"
880
+ "{company_name}\n"
881
+ "{company_phone}\n"
882
+ "{company_website}"
883
+ msgstr ""
884
+ "Estimado {client_name}.\n"
885
+ "\n"
886
+ "Esto es una confirmación de que ha sido agregado a la lista de espera de "
887
+ "{service_name} (x {recurring_count}).\n"
888
+ "\n"
889
+ "A continuación encontrará el horario de servicio.\n"
890
+ "\n"
891
+ "{appointment_schedule}\n"
892
+ "\n"
893
+ "Gracias por escoger nuestra compañia.\n"
894
+ "\n"
895
+ "{company_name}\n"
896
+ "{company_phone}\n"
897
+ "{company_website}"
898
+
899
+ msgid ""
900
+ "Notification to staff member about placing on waiting list for recurring "
901
+ "appointment "
902
+ msgstr ""
903
+ "Notificación al miembro del personal sobre la introducción en lista de "
904
+ "espera para cita recurrente"
905
+
906
+ msgid "New waiting list information"
907
+ msgstr "Nueva información de la lista de espera"
908
+
909
+ msgid ""
910
+ "Hello.\n"
911
+ "\n"
912
+ "You have new customer in the waiting list.\n"
913
+ "\n"
914
+ "Service: {service_name} (x {recurring_count})\n"
915
+ "Schedule:\n"
916
+ "{appointment_schedule}\n"
917
+ "Client name: {client_name}\n"
918
+ "Client phone: {client_phone}\n"
919
+ "Client email: {client_email}"
920
+ msgstr ""
921
+ "Hola.\n"
922
+ "\n"
923
+ "Tiene un nuevo cliente en la lista de espera.\n"
924
+ "\n"
925
+ "Servicio: {service_name} (x {recurring_count})\n"
926
+ "Horario:\n"
927
+ "{appointment_schedule}\n"
928
+ "Nombre del cliente: {client_name}\n"
929
+ "Teléfono del cliente: {client_phone}\n"
930
+ "Correo electrónico del cliente: {client_email}"
931
+
932
+ msgid ""
933
+ "Dear {client_name}.\n"
934
+ "This is a confirmation that you have booked {service_name} (x "
935
+ "{recurring_count}).\n"
936
+ "Please find the schedule of your booking below.\n"
937
+ "{appointment_schedule}\n"
938
+ "\n"
939
+ "We are waiting you at {company_address}.\n"
940
+ "Thank you for choosing our company.\n"
941
+ "{company_name}\n"
942
+ "{company_phone}\n"
943
+ "{company_website}"
944
+ msgstr ""
945
+ "Estimado {client_name}.\n"
946
+ "Esto es una confirmación de su reserva {service_name} (x {recurring_count})."
947
+ "\n"
948
+ "A continuación encontrará el horario de su reserva.\n"
949
+ "{appointment_schedule}\n"
950
+ "\n"
951
+ "Le estamos esperando en {company_address}.\n"
952
+ "Gracias por escoger nuestra compañia.\n"
953
+ "{company_name}\n"
954
+ "{company_phone}\n"
955
+ "{company_website}"
956
+
957
+ msgid ""
958
+ "Hello.\n"
959
+ "You have a new booking.\n"
960
+ "Service: {service_name} (x {recurring_count})\n"
961
+ "Schedule:\n"
962
+ "{appointment_schedule}\n"
963
+ "Client name: {client_name}\n"
964
+ "Client phone: {client_phone}\n"
965
+ "Client email: {client_email}"
966
+ msgstr ""
967
+ "Hola.\n"
968
+ "Tiene una nueva reserva.\n"
969
+ "Servicio: {service_name} (x {recurring_count})\n"
970
+ "Horario:\n"
971
+ "{appointment_schedule}\n"
972
+ "Nombre del cliente: {client_name}\n"
973
+ "Teléfono del cliente: {client_phone}\n"
974
+ "Correo electrónico del cliente: {client_email}"
975
+
976
+ msgid ""
977
+ "Dear {client_name}.\n"
978
+ "Your booking of {service_name} (x {recurring_count}) has been cancelled.\n"
979
+ "Reason: {cancellation_reason}\n"
980
+ "Please find the schedule of the cancelled booking below: "
981
+ "{appointment_schedule}\n"
982
+ "Thank you for choosing our company.\n"
983
+ "{company_name}\n"
984
+ "{company_phone}\n"
985
+ "{company_website}"
986
+ msgstr ""
987
+ "Estimado {client_name}.\n"
988
+ "Su reserva de {service_name} (x {recurring_count}) ha sido cancelada.\n"
989
+ "Motivo: {cancellation_reason}\n"
990
+ "A continuación encontrará el horario de la reserva cancelada: "
991
+ "{appointment_schedule}\n"
992
+ "Gracias por escoger nuestra compañia.\n"
993
+ "{company_name}\n"
994
+ "{company_phone}\n"
995
+ "{company_website}"
996
 
997
+ msgid "Notification to staff member about cancelled recurring appointment "
998
+ msgstr ""
999
+ "Notificación a un miembro del personal sobre una cita recurrente cancelada"
1000
 
1001
+ msgid ""
1002
+ "Hello.\n"
1003
+ "The following booking has been cancelled.\n"
1004
+ "Reason: {cancellation_reason}\n"
1005
+ "Service: {service_name} (x {recurring_count})\n"
1006
+ "Schedule:\n"
1007
+ "{appointment_schedule}\n"
1008
+ "Client name: {client_name}\n"
1009
+ "Client phone: {client_phone}\n"
1010
+ "Client email: {client_email}"
1011
+ msgstr ""
1012
+ "Hola.\n"
1013
+ "La siguiente reserva ha sido cancelada.\n"
1014
+ "Motivo: {cancellation_reason}\n"
1015
+ "Servicio: {service_name} (x {recurring_count})\n"
1016
+ "Horario:\n"
1017
+ "{appointment_schedule}\n"
1018
+ "Nombre del cliente: {client_name}\n"
1019
+ "Teléfono del cliente: {client_phone}\n"
1020
+ "Correo electrónico del cliente: {client_email}"
1021
 
1022
+ msgid ""
1023
+ "Dear {client_name}.\n"
1024
+ "Your booking of {service_name} (x {recurring_count}) has been rejected.\n"
1025
+ "Reason: {cancellation_reason}\n"
1026
+ "Please find the schedule of the cancelled booking below: "
1027
+ "{appointment_schedule}\n"
1028
+ "Thank you for choosing our company.\n"
1029
+ "{company_name}\n"
1030
+ "{company_phone}\n"
1031
+ "{company_website}"
1032
+ msgstr ""
1033
+ "Estimado {client_name}.\n"
1034
+ "Su reserva de {service_name} (x {recurring_count}) ha sido rechazada.\n"
1035
+ "Motivo: {cancellation_reason}\n"
1036
+ "A continuación encontrará el horario de la reserva cancelada: "
1037
+ "{appointment_schedule}\n"
1038
+ "Gracias por escoger nuestra compañia.\n"
1039
+ "{company_name}\n"
1040
+ "{company_phone}\n"
1041
+ "{company_website}"
1042
 
1043
+ msgid ""
1044
+ "Hello.\n"
1045
+ "The following booking has been rejected.\n"
1046
+ "Reason: {cancellation_reason}\n"
1047
+ "Service: {service_name} (x {recurring_count})\n"
1048
+ "Schedule:\n"
1049
+ "{appointment_schedule}\n"
1050
+ "Client name: {client_name}\n"
1051
+ "Client phone: {client_phone}\n"
1052
+ "Client email: {client_email}"
1053
+ msgstr ""
1054
+ "Hola.\n"
1055
+ "La siguiente reserva ha sido rechazada.\n"
1056
+ "Motivo: {cancellation_reason}\n"
1057
+ "Servicio: {service_name} (x {recurring_count})\n"
1058
+ "Horario:\n"
1059
+ "{appointment_schedule}\n"
1060
+ "Nombre del cliente: {client_name}\n"
1061
+ "Teléfono del cliente: {client_phone}\n"
1062
+ "Correo electrónico del cliente: {client_email}"
1063
 
1064
+ msgid ""
1065
+ "Dear {client_name}.\n"
1066
+ "This is a confirmation that you have been added to the waiting list for "
1067
+ "{service_name} (x {recurring_count}).\n"
1068
+ "Please find the service schedule below.\n"
1069
+ "{appointment_schedule}\n"
1070
+ "Thank you for choosing our company.\n"
1071
+ "{company_name}\n"
1072
+ "{company_phone}\n"
1073
+ "{company_website}"
1074
+ msgstr ""
1075
+ "Estimado {client_name}.\n"
1076
+ "Esto es una confirmación de que ha sido agregado a la lista de espera de "
1077
+ "{service_name} (x {recurring_count}).\n"
1078
+ "A continuación encontrará el horario de servicio.\n"
1079
+ "{appointment_schedule}\n"
1080
+ "Gracias por escoger nuestra compañia.\n"
1081
+ "{company_name}\n"
1082
+ "{company_phone}\n"
1083
+ "{company_website}"
1084
 
1085
+ msgid ""
1086
+ "Hello.\n"
1087
+ "You have new customer in the waiting list.\n"
1088
+ "Service: {service_name} (x {recurring_count})\n"
1089
+ "Schedule:\n"
1090
+ "{appointment_schedule}\n"
1091
+ "Client name: {client_name}\n"
1092
+ "Client phone: {client_phone}\n"
1093
+ "Client email: {client_email}"
1094
+ msgstr ""
1095
+ "Hola.\n"
1096
+ "Tiene un nuevo cliente en la lista de espera.\n"
1097
+ "Servicio: {service_name} (x {recurring_count})\n"
1098
+ "Horario:\n"
1099
+ "{appointment_schedule}\n"
1100
+ "Nombre del cliente: {client_name}\n"
1101
+ "Teléfono del cliente: {client_phone}\n"
1102
+ "Correo electrónico del cliente: {client_email}"
1103
 
1104
+ msgid "Repeat"
1105
+ msgstr "Repetir"
 
1106
 
1107
+ msgid "Next"
1108
+ msgstr "Siguiente"
 
 
 
1109
 
1110
+ msgid ""
1111
+ "You selected a booking for {service_name} at {service_time} on {service_date}"
1112
+ ". If you would like to make this appointment recurring please check the box "
1113
+ "below and set appropriate parameters. Otherwise press Next button below."
1114
+ msgstr ""
1115
+ "Seleccionó una reserva para {service_name} a las {service_time} el "
1116
+ "{service_date}. Si desea que esta cita sea recurrente, marque la casilla de "
1117
+ "abajo y configure los parámetros adecuados. En caso contrario, haga click el "
1118
+ "botón Siguiente."
1119
 
1120
+ msgid "Another time"
1121
+ msgstr "Otro momento"
 
1122
 
1123
+ msgid "Biweekly"
1124
+ msgstr "Quincenal"
 
1125
 
1126
+ msgid "Daily"
1127
+ msgstr "Diario"
 
1128
 
1129
+ msgid "Day"
1130
+ msgstr "Día"
 
1131
 
1132
+ msgid "day(s)"
1133
+ msgstr "dia/s"
 
1134
 
1135
+ msgid "Deleted"
1136
+ msgstr "Eliminado"
 
1137
 
1138
+ msgid "every"
1139
+ msgstr "cada"
 
1140
 
1141
+ msgid ""
1142
+ "The first recurring appointment was added to cart. You will be invoiced for "
1143
+ "the remaining appointments later."
1144
+ msgstr ""
1145
+ "La primera cita recurrente ha sido añadida al carrito. Se le facturará por "
1146
+ "las citas restantes más tarde."
1147
 
1148
+ msgid "Monthly"
1149
+ msgstr "Mensual"
 
1150
 
1151
+ msgid "There are no available time slots for this day"
1152
+ msgstr "No hay espacios disponibles para este día"
 
1153
 
1154
+ msgid "On"
1155
+ msgstr "En"
 
1156
 
1157
+ msgid "Please select some days"
1158
+ msgstr "Por favor, seleccione algunos días"
 
1159
 
1160
+ msgid "Schedule"
1161
+ msgstr "Programar"
 
1162
 
1163
+ msgid "Another time was offered on pages {list}."
1164
+ msgstr "Fue ofrecida otra hora en las páginas {list}."
 
1165
 
1166
+ msgid ""
1167
+ "Some of the desired time slots are busy. System offers the nearest time slot "
1168
+ "instead. Click the Edit button to select another time if needed."
1169
+ msgstr ""
1170
+ "Algunos de los intervalos de tiempo deseados están ocupados. El sistema "
1171
+ "ofrece el intervalo de tiempo más cercano. Si es necesario, haga clic en el "
1172
+ "botón Editar para seleccionar otra hora."
1173
 
1174
+ msgid "Specific day"
1175
+ msgstr "Día específico"
 
1176
 
1177
+ msgid "Repeat this appointment"
1178
+ msgstr "Repetir esta cita"
 
1179
 
1180
+ msgid "Until"
1181
+ msgstr "Hasta"
 
1182
 
1183
+ msgid "Weekly"
1184
+ msgstr "Semanal"
 
1185
 
1186
+ msgid "First"
1187
+ msgstr "Primero"
 
1188
 
1189
+ msgid "Second"
1190
+ msgstr "Segundo"
 
1191
 
1192
+ msgid "Third"
1193
+ msgstr "Tercero"
 
1194
 
1195
+ msgid "Fourth"
1196
+ msgstr "Cuarto"
 
1197
 
1198
+ msgid "Last"
1199
+ msgstr "Último"
 
1200
 
1201
+ msgid "or"
1202
+ msgstr "o"
1203
+
1204
+ msgid "time(s)"
1205
+ msgstr "vez/veces"
1206
+
1207
+ msgid "Notification to customer about pending recurring appointment"
1208
+ msgstr "Notificación al cliente sobre una cita recurrente pendiente"
1209
+
1210
+ msgid "Notification to staff member about pending recurring appointment"
1211
+ msgstr ""
1212
+ "Notificación al miembro del personal sobre una cita recurrente pendiente"
1213
+
1214
+ msgid ""
1215
+ "Notification to staff member about placing on waiting list for recurring "
1216
+ "appointment"
1217
+ msgstr ""
1218
+ "Notificación a un miembro del personal sobre la colocación en la lista de "
1219
+ "espera de una cita periódica"
1220
+
1221
+ msgid "New recurring booking notification"
1222
+ msgstr "Nueva notificación de reserva periódica"
1223
+
1224
+ msgid "Notification about recurring appointment status changes"
1225
+ msgstr "Notificación sobre los cambios de estado de las citas periódicas"
1226
+
1227
+ msgid "at"
1228
+ msgstr "a las"
1229
+
1230
+ msgid "Online Payments"
1231
+ msgstr "Pagos en línea"
1232
+
1233
+ msgid "Customers must pay only for the 1st appointment"
1234
+ msgstr "Los clientes deben pagar solo por la primera cita"
1235
+
1236
+ msgid "Customers must pay for all appointments in series"
1237
+ msgstr "Los clientes deben pagar todas las citas en serie"
1238
+
1239
+ msgid "Group appointments"
1240
+ msgstr "Citas de grupo"
1241
+
1242
+ msgid "Create new appointment for every recurring booking"
1243
+ msgstr "Crear una nueva cita para cada reserva periódica."
1244
 
1245
+ msgid "Add customer to available group bookings"
1246
+ msgstr "Añadir un cliente a las reservas de grupos disponibles"
 
1247
 
1248
+ msgid "Recurring Appointments"
1249
+ msgstr "Citas Recurrentes"
 
1250
 
1251
+ msgid "Approve recurring appointment URL (success)"
1252
+ msgstr "Aprobar URL de cita recurrente (éxito)"
 
1253
 
1254
+ msgid ""
1255
+ "Set the URL of a page that is shown to staff after they successfully "
1256
+ "approved recurring appointment."
1257
+ msgstr ""
1258
+ "Establecer la URL de una página que se muestra al personal después de que "
1259
+ "hayan aprobado la cita recurrente."
1260
 
1261
+ msgid "Approve recurring appointment URL (denied)"
1262
+ msgstr "Aprobar URL de citas recurrente (denegado)"
 
1263
 
1264
+ msgid ""
1265
+ "Set the URL of a page that is shown to staff when the approval of recurring "
1266
+ "appointment cannot be done (changed status, etc.)."
1267
+ msgstr ""
1268
+ "Establecer la URL de una página que se muestra al personal cuando la "
1269
+ "aprobación de la cita recurrente no se puede realizar (cambio de estado, etc."
1270
+ ")."
1271
 
1272
+ msgid "Allow this service to have recurring appointments."
1273
+ msgstr "Permitir que este servicio tenga citas recurrentes. "
 
1274
 
1275
+ msgid "Enabled"
1276
+ msgstr "Activado"
 
1277
 
1278
+ msgid "Frequencies"
1279
+ msgstr "Frecuencias"
 
1280
 
1281
+ msgid "All"
1282
+ msgstr "Todos"
 
1283
 
1284
+ msgid "Nothing selected"
1285
+ msgstr "No hay nada seleccionado"
 
1286
 
1287
+ msgid "Edit"
1288
+ msgstr "Editar"
 
1289
 
1290
+ msgid "Remove"
1291
+ msgstr "Eliminar"
 
1292
 
1293
+ msgid "Restore"
1294
+ msgstr "Restaurar"
 
1295
 
1296
+ msgid "pages with another time"
1297
+ msgstr "páginas con otro horario"
 
1298
 
1299
+ msgid "Show Repeat step"
1300
+ msgstr "Mostrar el paso Repetir"
 
1301
 
1302
+ msgid "recurring appointments schedule"
1303
+ msgstr "calendario de citas recurrentes"
 
1304
 
1305
+ msgid "recurring appointments schedule with cancel"
1306
+ msgstr "calendario de citas recurrentes con cancelación"
 
1307
 
1308
+ msgid "URL for approving the whole schedule"
1309
+ msgstr "URL para aprobar todo el programa"
 
1310
 
1311
+ msgid "recurring appointments"
1312
+ msgstr "citas recurrentes"
 
1313
 
1314
+ msgid "Every"
1315
+ msgstr "Cada"
 
1316
 
1317
+ msgid "Back"
1318
+ msgstr "Anterior"
 
1319
 
1320
+ msgid "Delete"
1321
+ msgstr "Borrar"
 
1322
 
1323
+ msgid "Apply"
1324
+ msgstr "Aplicar"
 
1325
 
1326
+ msgid "Another time was offered on pages"
1327
+ msgstr "Otra hora se ofreció en las páginas"
 
1328
 
1329
+ msgid "Delete Appointment"
1330
+ msgstr "Eliminar Cita"
 
1331
 
1332
+ msgid "Delete only this appointment"
1333
+ msgstr "Eliminar solo esta cita"
 
1334
 
1335
+ msgid "Delete this and the following appointments"
1336
+ msgstr "Eliminar esta cita y las siguientes"
 
1337
 
1338
+ msgid "Delete all appointments in series"
1339
+ msgstr "Eliminar todas las citas en serie"
 
1340
 
1341
+ msgid "Send notifications"
1342
+ msgstr "Enviar notificaciones"
 
1343
 
1344
+ msgid "Cancellation reason (optional)"
1345
+ msgstr "Motivo de cancelación (opcional)"
 
1346
 
1347
+ msgid "Cancel"
1348
+ msgstr "Cancelar"
 
1349
 
1350
+ msgid "Close"
1351
+ msgstr "Cerrar"
 
1352
 
1353
+ msgid "Recurring appointments"
1354
+ msgstr "reservas periódicas"
 
1355
 
1356
+ msgid "Save"
1357
+ msgstr "Guardar"
 
1358
 
1359
+ msgid "Sandbox Mode"
1360
+ msgstr "Modo Sandbox"
 
1361
 
1362
+ msgid "No"
1363
+ msgstr "No"
 
1364
 
1365
+ msgid "Yes"
1366
+ msgstr ""
 
1367
 
1368
+ msgid "Merchant Key"
1369
+ msgstr "Merchant Key"
 
 
 
1370
 
1371
+ msgid "Merchant Salt"
1372
+ msgstr "Merchant Salt"
 
1373
 
1374
+ msgid "Duration"
1375
+ msgstr "Duración"
 
1376
 
1377
+ msgid ""
1378
+ "Set service duration. If you select Custom, a client, while booking, will "
1379
+ "have to choose the duration of the service from several time units. In the "
1380
+ "\"Unit Price\" field specify the cost of 1 unit, so the total cost of the "
1381
+ "service will increase linearly with the increase of its duration."
1382
+ msgstr ""
1383
+ "Establecer la duración del servicio. Si selecciona Personalizar, cuando el "
1384
+ "cliente esté realizando la reserva, tendrá que elegir la duración del "
1385
+ "servicio mediante varias unidades de tiempo. En el campo \"Precio Unitario\" "
1386
+ "especifica el coste de 1 unidad, por lo que el coste total del servicio "
1387
+ "aumentará proporcionalmente con el aumento de su duración."
1388
 
1389
+ msgid "Unit duration"
1390
+ msgstr "D