Restaurant Reservations - Version 2.5.17

Version Description

(2022-10-18) = - Added an option to include a blank entry in the party size dropdown, so visitors are forced to make a selection, instead of it defaulting to 1. - Updated the time display in the view bookings form to use the format specified in your WordPress general settings. - Added two new tags for notifications: {booking_url} and {cancellation_url}. - Corrected an issue with notification emails not sending correctly if you used the bulk actions menu to change the status of multiple bookings from pending to closed.

Download this release

Release Info

Developer Rustaurius
Plugin Icon 128x128 Restaurant Reservations
Version 2.5.17
Comparing to
See all releases

Code changes from version 2.5.16 to 2.5.17

Files changed (47) hide show
  1. assets/css/admin.css +14 -0
  2. includes/MailChimp.class.php +5 -1
  3. includes/Notification.Email.class.php +9 -0
  4. includes/Notification.class.php +2 -0
  5. includes/Notifications.class.php +1 -2
  6. includes/PaymentGatewayStripe.class.php +5 -3
  7. includes/Settings.class.php +21 -5
  8. includes/template-functions.php +1 -1
  9. languages/restaurant-reservations-it_IT.mo +0 -0
  10. languages/restaurant-reservations-it_IT.po +3306 -1057
  11. languages/restaurant-reservations.pot +379 -345
  12. lib/simple-admin-pages/classes/AdminPage.Menu.class.php +1 -1
  13. lib/simple-admin-pages/classes/AdminPage.Submenu.class.php +1 -1
  14. lib/simple-admin-pages/classes/AdminPage.Themes.class.php +1 -1
  15. lib/simple-admin-pages/classes/AdminPage.class.php +26 -1
  16. lib/simple-admin-pages/classes/AdminPageSection.class.php +1 -1
  17. lib/simple-admin-pages/classes/AdminPageSetting.Address.class.php +1 -1
  18. lib/simple-admin-pages/classes/AdminPageSetting.Checkbox.class.php +1 -1
  19. lib/simple-admin-pages/classes/AdminPageSetting.ColorPicker.class.php +1 -1
  20. lib/simple-admin-pages/classes/AdminPageSetting.Count.class.php +1 -1
  21. lib/simple-admin-pages/classes/AdminPageSetting.Editor.class.php +1 -1
  22. lib/simple-admin-pages/classes/AdminPageSetting.FileUpload.class.php +1 -1
  23. lib/simple-admin-pages/classes/AdminPageSetting.HTML.class.php +1 -1
  24. lib/simple-admin-pages/classes/AdminPageSetting.Image.class.php +1 -1
  25. lib/simple-admin-pages/classes/AdminPageSetting.InfiniteTable.class.php +1 -1
  26. lib/simple-admin-pages/classes/AdminPageSetting.McApiKey.class.php +1 -1
  27. lib/simple-admin-pages/classes/AdminPageSetting.McListMerge.class.php +1 -1
  28. lib/simple-admin-pages/classes/AdminPageSetting.Number.class.php +1 -1
  29. lib/simple-admin-pages/classes/AdminPageSetting.OpeningHours.class.php +1 -1
  30. lib/simple-admin-pages/classes/AdminPageSetting.Ordering.class.php +1 -1
  31. lib/simple-admin-pages/classes/AdminPageSetting.Password.class.php +38 -0
  32. lib/simple-admin-pages/classes/AdminPageSetting.Radio.class.php +1 -1
  33. lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php +1 -1
  34. lib/simple-admin-pages/classes/AdminPageSetting.Select.class.php +1 -1
  35. lib/simple-admin-pages/classes/AdminPageSetting.SelectMenu.class.php +1 -1
  36. lib/simple-admin-pages/classes/AdminPageSetting.SelectPost.class.php +1 -1
  37. lib/simple-admin-pages/classes/AdminPageSetting.SelectTaxonomy.class.php +1 -1
  38. lib/simple-admin-pages/classes/AdminPageSetting.Text.class.php +1 -1
  39. lib/simple-admin-pages/classes/AdminPageSetting.Textarea.class.php +1 -1
  40. lib/simple-admin-pages/classes/AdminPageSetting.Time.class.php +1 -1
  41. lib/simple-admin-pages/classes/AdminPageSetting.Toggle.class.php +1 -1
  42. lib/simple-admin-pages/classes/AdminPageSetting.WarningTip.class.php +1 -1
  43. lib/simple-admin-pages/classes/AdminPageSetting.class.php +1 -1
  44. lib/simple-admin-pages/classes/Library.class.php +8 -4
  45. lib/simple-admin-pages/js/admin-settings.js +18 -1
  46. readme.txt +128 -432
  47. restaurant-reservations.php +2 -2
assets/css/admin.css CHANGED
@@ -1931,6 +1931,20 @@ body[class*="_rtb-settings"] .wrap form h2:first-of-type {
1931
  font-size: 18px;
1932
  color: #1b335f;
1933
  margin: 0 0 32px !important;
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1934
  }
1935
 
1936
  body[class*="_rtb-settings"] .wrap form h2:nth-of-type(1n+2) {
1931
  font-size: 18px;
1932
  color: #1b335f;
1933
  margin: 0 0 32px !important;
1934
+ float: left;
1935
+ }
1936
+
1937
+ body[class*="_rtb-settings"] .wrap form .sap-tutorial-toggle {
1938
+ font-size: 14px;
1939
+ color: #1b335f;
1940
+ margin-left: 12px;
1941
+ float: left;
1942
+ cursor: pointer;
1943
+ }
1944
+ body[class*="_rtb-settings"] .wrap form .sap-tutorial-div:before {
1945
+ clear: both;
1946
+ content: " ";
1947
+ display: table;
1948
  }
1949
 
1950
  body[class*="_rtb-settings"] .wrap form h2:nth-of-type(1n+2) {
includes/MailChimp.class.php CHANGED
@@ -204,7 +204,11 @@ class mcfrtbInit {
204
 
205
  $this->load_api( $this->api_key );
206
 
207
- $this->api_call( '/lists/' . sanitize_key( $_POST['list'] ) . '/merge-fields' )->send_json_response();
 
 
 
 
208
  }
209
 
210
  /**
204
 
205
  $this->load_api( $this->api_key );
206
 
207
+ $this->api_call(
208
+ '/lists/' . sanitize_key( $_POST['list'] ) . '/merge-fields',
209
+ 'GET',
210
+ array( 'count' => 100 )
211
+ )->send_json_response();
212
  }
213
 
214
  /**
includes/Notification.Email.class.php CHANGED
@@ -312,5 +312,14 @@ class rtbNotificationEmail extends rtbNotification {
312
  public function send_notification() {
313
  return wp_mail( $this->to_email, $this->subject, $this->message, $this->headers, apply_filters( 'rtb_notification_email_attachments', array(), $this ) );
314
  }
 
 
 
 
 
 
 
 
 
315
  }
316
  } // endif;
312
  public function send_notification() {
313
  return wp_mail( $this->to_email, $this->subject, $this->message, $this->headers, apply_filters( 'rtb_notification_email_attachments', array(), $this ) );
314
  }
315
+
316
+ /**
317
+ * Clear the to_email address, in case the notification is reused
318
+ * @since 2.6.17
319
+ */
320
+ public function clear_to_email() {
321
+
322
+ $this->to_email = '';
323
+ }
324
  }
325
  } // endif;
includes/Notification.class.php CHANGED
@@ -102,6 +102,8 @@ abstract class rtbNotification {
102
  '{date}' => $this->booking->format_date( $this->booking->date ),
103
  '{phone}' => $this->booking->phone,
104
  '{message}' => $this->booking->message,
 
 
105
  '{booking_page_link}' => '<a href="' . esc_attr( $booking_page_url ) . '">' . esc_html( __( 'booking page' ) ) . '</a>',
106
  '{bookings_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&status=pending' ) . '">' . esc_html( $rtb_controller->settings->get_setting( 'label-bookings-link-tag' ) ) . '</a>',
107
  '{cancel_link}' => '<a href="' . esc_attr( $cancellation_url ) . '">' . esc_html( $rtb_controller->settings->get_setting( 'label-cancel-link-tag' ) ) . '</a>',
102
  '{date}' => $this->booking->format_date( $this->booking->date ),
103
  '{phone}' => $this->booking->phone,
104
  '{message}' => $this->booking->message,
105
+ '{booking_url}' => $booking_page_url,
106
+ '{cancellation_url}' => $cancellation_url,
107
  '{booking_page_link}' => '<a href="' . esc_attr( $booking_page_url ) . '">' . esc_html( __( 'booking page' ) ) . '</a>',
108
  '{bookings_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&status=pending' ) . '">' . esc_html( $rtb_controller->settings->get_setting( 'label-bookings-link-tag' ) ) . '</a>',
109
  '{cancel_link}' => '<a href="' . esc_attr( $cancellation_url ) . '">' . esc_html( $rtb_controller->settings->get_setting( 'label-cancel-link-tag' ) ) . '</a>',
includes/Notifications.class.php CHANGED
@@ -289,8 +289,6 @@ class rtbNotifications {
289
  return;
290
  }
291
 
292
- $this->clear_to_email( 'pending_to_confirmed' );
293
-
294
  $this->set_booking( $booking_post );
295
 
296
  $this->event( 'pending_to_confirmed' );
@@ -377,6 +375,7 @@ class rtbNotifications {
377
  $notification->send_notification();
378
  do_action( 'rtb_send_notification_after', $notification );
379
  }
 
380
  }
381
  }
382
 
289
  return;
290
  }
291
 
 
 
292
  $this->set_booking( $booking_post );
293
 
294
  $this->event( 'pending_to_confirmed' );
375
  $notification->send_notification();
376
  do_action( 'rtb_send_notification_after', $notification );
377
  }
378
+ $notification->clear_to_email();
379
  }
380
  }
381
 
includes/PaymentGatewayStripe.class.php CHANGED
@@ -571,11 +571,13 @@ class rtbPaymentGatewayStripe implements rtbPaymentGateway {
571
 
572
  /**
573
  * Add hold information in the details popup of the booking for admin
574
- * @param array $details Lable/value item array
575
  * @param rtbBooking $booking
576
  */
577
- public function add_hold_detail($details, $booking)
578
- {
 
 
579
  if ( $this->is_payment_on_hold( $booking ) ) {
580
  $details[] = array(
581
  'label' => __('Payment on Hold', 'restaurant-reservations'),
571
 
572
  /**
573
  * Add hold information in the details popup of the booking for admin
574
+ * @param array $details Label/value item array
575
  * @param rtbBooking $booking
576
  */
577
+ public function add_hold_detail($details, $booking) {
578
+
579
+ if ( ! is_array( $details ) ) { return; }
580
+
581
  if ( $this->is_payment_on_hold( $booking ) ) {
582
  $details[] = array(
583
  'label' => __('Payment on Hold', 'restaurant-reservations'),
includes/Settings.class.php CHANGED
@@ -879,7 +879,7 @@ If you were not the one to cancel this booking, please contact us.
879
  require_once( RTB_PLUGIN_DIR . '/lib/simple-admin-pages/simple-admin-pages.php' );
880
  $sap = sap_initialize_library(
881
  $args = array(
882
- 'version' => '2.6.7',
883
  'theme' => 'blue',
884
  'lib_url' => RTB_PLUGIN_URL . '/lib/simple-admin-pages/',
885
  )
@@ -901,10 +901,10 @@ If you were not the one to cancel this booking, please contact us.
901
  $sap->add_section(
902
  'rtb-settings',
903
  array(
904
- 'id' => 'rtb-schedule-tab',
905
- 'title' => __( 'Booking Schedule', 'restaurant-reservations' ),
906
- 'is_tab' => true,
907
- 'rank' => 1,
908
  )
909
  );
910
 
@@ -1155,6 +1155,17 @@ If you were not the one to cancel this booking, please contact us.
1155
  )
1156
  );
1157
 
 
 
 
 
 
 
 
 
 
 
 
1158
  $sap->add_setting(
1159
  'rtb-settings',
1160
  'rtb-general',
@@ -2076,6 +2087,11 @@ If you were not the one to cancel this booking, please contact us.
2076
 
2077
  $options = array();
2078
 
 
 
 
 
 
2079
  $party_size = (int) $this->get_setting( 'party-size' );
2080
  $party_size_min = (int) $this->get_setting( 'party-size-min' );
2081
 
879
  require_once( RTB_PLUGIN_DIR . '/lib/simple-admin-pages/simple-admin-pages.php' );
880
  $sap = sap_initialize_library(
881
  $args = array(
882
+ 'version' => '2.6.9',
883
  'theme' => 'blue',
884
  'lib_url' => RTB_PLUGIN_URL . '/lib/simple-admin-pages/',
885
  )
901
  $sap->add_section(
902
  'rtb-settings',
903
  array(
904
+ 'id' => 'rtb-schedule-tab',
905
+ 'title' => __( 'Booking Schedule', 'restaurant-reservations' ),
906
+ 'is_tab' => true,
907
+ 'rank' => 1,
908
  )
909
  );
910
 
1155
  )
1156
  );
1157
 
1158
+ $sap->add_setting(
1159
+ 'rtb-settings',
1160
+ 'rtb-general',
1161
+ 'toggle',
1162
+ array(
1163
+ 'id' => 'party-blank',
1164
+ 'title' => __( 'Blank Party Option', 'restaurant-reservations' ),
1165
+ 'description' => __( 'Include a blank option in the party size dropdown, so that users are forced to make a selection.', 'restaurant-reservations' ),
1166
+ )
1167
+ );
1168
+
1169
  $sap->add_setting(
1170
  'rtb-settings',
1171
  'rtb-general',
2087
 
2088
  $options = array();
2089
 
2090
+ if ( ! empty( $this->get_setting( 'party-blank' ) ) ) {
2091
+
2092
+ $options[] = '';
2093
+ }
2094
+
2095
  $party_size = (int) $this->get_setting( 'party-size' );
2096
  $party_size_min = (int) $this->get_setting( 'party-size-min' );
2097
 
includes/template-functions.php CHANGED
@@ -438,7 +438,7 @@ function rtb_print_view_bookings_form( $args = array() ) {
438
  <?php else : ?><td><input type='checkbox' class='rtb-edit-view-booking' checked disabled /></td>
439
  <?php endif; ?>
440
  <?php } ?>
441
- <?php if ( in_array( 'time', $view_bookings_columns ) ) {?><td><?php echo ( new DateTime( $booking_object->date, wp_timezone() ) )->format( 'H:i:s' ); ?></td><?php } ?>
442
  <?php if ( in_array( 'party', $view_bookings_columns ) ) {?><td><?php echo esc_html( $booking_object->party ); ?></td><?php } ?>
443
  <?php if ( in_array( 'name', $view_bookings_columns ) ) {?><td><?php echo esc_html( $booking_object->name ); ?></td><?php } ?>
444
  <?php if ( in_array( 'email', $view_bookings_columns ) ) {?><td><?php echo esc_html( $booking_object->email ); ?></td><?php } ?>
438
  <?php else : ?><td><input type='checkbox' class='rtb-edit-view-booking' checked disabled /></td>
439
  <?php endif; ?>
440
  <?php } ?>
441
+ <?php if ( in_array( 'time', $view_bookings_columns ) ) {?><td><?php echo ( new DateTime( $booking_object->date, wp_timezone() ) )->format( get_option( 'time_format' ) ); ?></td><?php } ?>
442
  <?php if ( in_array( 'party', $view_bookings_columns ) ) {?><td><?php echo esc_html( $booking_object->party ); ?></td><?php } ?>
443
  <?php if ( in_array( 'name', $view_bookings_columns ) ) {?><td><?php echo esc_html( $booking_object->name ); ?></td><?php } ?>
444
  <?php if ( in_array( 'email', $view_bookings_columns ) ) {?><td><?php echo esc_html( $booking_object->email ); ?></td><?php } ?>
languages/restaurant-reservations-it_IT.mo CHANGED
Binary file
languages/restaurant-reservations-it_IT.po CHANGED
@@ -7,1078 +7,888 @@ msgstr ""
7
  "reservations\n"
8
  "POT-Creation-Date: 2015-02-24 15:16:53+00:00\n"
9
  "MIME-Version: 1.0\n"
10
- "Content-Type: text/plain; charset=utf-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
- "PO-Revision-Date: 2015-03-18 16:53+0100\n"
13
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
14
- "Language-Team: LANGUAGE <LL@li.org>\n"
15
- "X-Generator: Poedit 1.5.7\n"
16
  "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
17
  "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
18
  "esc_html_x:1,2c\n"
19
- "Language: en\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-Basepath: ../\n"
23
  "X-Textdomain-Support: yes\n"
24
  "X-Poedit-Bookmarks: -1,155,-1,-1,-1,-1,-1,-1,-1,-1\n"
25
  "X-Poedit-SearchPath-0: .\n"
 
26
 
27
- #: includes/Addons.class.php:98
28
- #: includes/WP_List_Table.BookingsTable.class.php:310
29
- msgid "Loading"
30
- msgstr "Caricando"
31
-
32
- #: includes/Addons.class.php:135
33
- msgid "Addons for Restaurant Reservations"
34
- msgstr "Addons per Restaurant Reservations"
35
 
36
- #: includes/Addons.class.php:157
37
- msgid "You have been logged out. Please login again to retrieve the addons."
38
- msgstr "Sei stato sloggato. Ricollegati per trovare l'addons"
39
 
40
- #: includes/Addons.class.php:173
41
- msgid ""
42
- "You do not have permission to access this page. Please login to an "
43
- "administrator account if you have one."
44
  msgstr ""
45
- "Non hai i permessi per accedere a questa pagina. Collegati come "
46
- "amministratore."
47
 
48
- #: includes/Addons.class.php:201
49
- msgid ""
50
- "The addons list could not be retrieved. Please <a href=\"\">try again</a>. "
51
- "If the problem persists over time, please report it on the <a href=\"http://"
52
- "wordpress.org/support/plugin/restaurant-reservations\" target=\"_blank"
53
- "\">support forums</a>."
54
- msgstr ""
55
- "La lista degli add ons non è consultabile.Prego <a href=\"\">riprovare</a>. "
56
- "Se il problema persiste, si prega di contattare il <a href=\"http://"
57
- "wordpress.org/support/plugin/restaurant-reservations\" target=\"_blank"
58
- "\">forum di supporto</a>"
59
 
60
- #: includes/AdminBookings.class.php:67
61
- msgid "Restaurant Bookings"
62
- msgstr "Prenotazioni ristorante"
 
 
 
63
 
64
- #: includes/AdminBookings.class.php:68 includes/CustomPostTypes.class.php:42
65
- msgid "Add New"
66
- msgstr "Nuova prenotazione"
 
 
 
67
 
68
- #: includes/AdminBookings.class.php:116 includes/AdminBookings.class.php:157
69
- #: restaurant-reservations.php:217
70
- msgid "Add Booking"
71
- msgstr "Inserisci una prenotazione"
 
 
72
 
73
- #: includes/AdminBookings.class.php:119 includes/AdminBookings.class.php:160
74
- msgid "Cancel"
75
- msgstr "Cancella"
 
 
 
76
 
77
- #: includes/AdminBookings.class.php:140
78
- #: includes/WP_List_Table.BookingsTable.class.php:329
79
- msgid "Send Email"
80
- msgstr "Invia Email"
 
 
81
 
82
- #: includes/AdminBookings.class.php:147
83
- msgid "Subject"
84
- msgstr "Soggetto"
 
85
 
86
- #: includes/AdminBookings.class.php:151 includes/Settings.class.php:817
87
- #: includes/WP_List_Table.BookingsTable.class.php:283
88
- msgid "Message"
89
- msgstr "Messaggio"
90
 
91
- #: includes/AdminBookings.class.php:174
92
- msgid "Close"
93
- msgstr "Chiudi"
94
 
95
- #: includes/AdminBookings.class.php:240
96
- msgid "Booking Status"
97
- msgstr "Stato della prenotazione"
98
 
99
- #: includes/AdminBookings.class.php:248
100
- msgid "Send notifications"
101
- msgstr "Invia una notifica"
102
 
103
- #: includes/AdminBookings.class.php:253
104
- msgid "Learn more"
105
- msgstr "Leggi di più"
106
 
107
- #: includes/AdminBookings.class.php:254
108
- msgid ""
109
- "When adding a booking or changing a booking's status with this form, no "
110
- "email notifications will be sent. Check this option if you want to send "
111
- "email notifications."
112
- msgstr ""
113
- "Quando inserite o modificate lo stato di una prenotazione con questo form, "
114
- "non verranno inviate notifiche tramite email. Spuntare questa opzione se "
115
- "volete inviare una notifica tramite email"
116
 
117
- #: includes/AdminBookings.class.php:308
118
- msgid "You have been logged out. Please %slogin again%s."
119
- msgstr "Sei stato disconnesso. Effettua di nuovo l'accesso"
120
 
121
- #: includes/AdminBookings.class.php:344
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
122
  msgid ""
123
- "This booking has been sent to the %sTrash%s where it can not be edited. Set "
124
- "the booking to Pending or Confirmed to edit it."
125
  msgstr ""
126
- "Questa prenotazione è stata inserita nel %sTrash%s dove non può essere "
127
- "modificata. Impostare la prenotazione come In attesa o confermata per "
128
- "poterla modificare"
129
 
130
- #: includes/AdminBookings.class.php:361
131
  msgid ""
132
- "The booking could not be retrieved. Please reload the page and try again."
133
- msgstr "La prenotazione non può essere visualizzare. Ricaricare la pagina"
 
 
 
134
 
135
- #: includes/AdminBookings.class.php:429
136
  msgid ""
137
- "Unable to trash this post. Please try again. If you continue to have "
138
- "trouble, please refresh the page."
139
  msgstr ""
140
- "Non è possibile cancellare questo articolo. Se il problema persiste, "
141
- "ricaricare la pagina"
142
 
143
- #: includes/AdminBookings.class.php:471
144
- msgid "Please enter a message before sending the email."
145
- msgstr "Inserire un messaggio prima di inviare l'email"
 
 
146
 
147
- #: includes/AdminBookings.class.php:480
148
- msgid ""
149
- "The email could not be sent because some critical information was missing."
150
- msgstr "L'email non è stata inviata perché mancavano informazioni fondamentali"
151
 
152
- #: includes/AdminBookings.class.php:492
153
- msgid "There was an error loading the booking and the email was not sent."
154
- msgstr ""
155
- "C'è stato un errore caricando la prenotazione e l'email non è stata inviata"
156
 
157
- #: includes/Booking.class.php:180
158
- msgid "Please enter the date you would like to book."
159
- msgstr "Inserire la data per la quale vuole prenotare"
160
 
161
- #: includes/Booking.class.php:190
162
- msgid ""
163
- "The date you entered is not valid. Please select from one of the dates in "
164
- "the calendar."
165
  msgstr ""
166
- "La data inserita non è valida. Selezionare una data valida dal calendario"
167
-
168
- #: includes/Booking.class.php:201
169
- msgid "Please enter the time you would like to book."
170
- msgstr "Inserire l'orario della prenotazione"
171
 
172
- #: includes/Booking.class.php:211
 
173
  msgid ""
174
- "The time you entered is not valid. Please select from one of the times "
175
- "provided."
176
- msgstr "L'orario selezionato non è disponibile. Scegliere un'ora differente"
177
-
178
- #: includes/Booking.class.php:228
179
- msgid "Sorry, bookings can not be made more than %s days in advance."
180
  msgstr ""
181
- "Siamo spiacenti, le prenotazioni non possono essere effettuate più di %s "
182
- "giorni prima"
183
 
184
- #: includes/Booking.class.php:239
185
- msgid "Sorry, bookings can not be made in the past."
186
- msgstr "La prenotazione non può essere effettuata per giorni passati"
187
 
188
- #: includes/Booking.class.php:247
189
- msgid "Sorry, bookings must be made more than %s days in advance."
190
- msgstr ""
191
- "La prenotazione deve essere effettuata con almeno %s giorni di anticipo"
192
 
193
- #: includes/Booking.class.php:249
194
- msgid "Sorry, bookings must be made more than %s hours in advance."
195
- msgstr "La prenotazione deve essere effettuata con almeno %s ore di anticipo"
196
 
197
- #: includes/Booking.class.php:251
198
- msgid "Sorry, bookings must be made more than %s minutes in advance."
199
- msgstr ""
200
- "La prenotazione deve essere effettuata con almeno %s minuti di anticipo"
201
 
202
- #: includes/Booking.class.php:290
203
- msgid "Sorry, no bookings are being accepted then."
204
- msgstr "Siamo spiacenti, non prendiamo prenotazioni al momento"
 
205
 
206
- #: includes/Booking.class.php:342
207
- msgid "Sorry, no bookings are being accepted on that date."
208
- msgstr "Siamo spiacenti, non prendiamo prenotazioni per la data selezionata"
209
 
210
- #: includes/Booking.class.php:348
211
- msgid "Sorry, no bookings are being accepted at that time."
212
- msgstr "Siamo spiacenti, non prendiamo prenotazioni nell'orario selezionato"
 
213
 
214
- #: includes/Booking.class.php:370
215
- msgid "Please enter a name for this booking."
216
- msgstr "Inserire un nome per questa prenotazione"
217
 
218
- #: includes/Booking.class.php:380
219
- msgid "Please let us know how many people will be in your party."
220
- msgstr "Fateci sapere quante persone faranno parte del gruppo"
 
 
221
 
222
- #: includes/Booking.class.php:390
223
- msgid "We only accept bookings for parties of up to %d people."
224
- msgstr "Accettiamo prenotazioni solo per gruppi con più di %d persone"
225
 
226
- #: includes/Booking.class.php:401
227
- msgid "Please enter an email address so we can confirm your booking."
 
 
228
  msgstr ""
229
- "Inserire un indirizzo email valido per poter confermare la prenotazione"
 
230
 
231
- #: includes/Booking.class.php:423
232
- msgid "Please complete this field to request a booking."
233
- msgstr "Compilare il campo per richiedere una prenotazione"
 
 
 
 
 
 
 
 
234
 
235
- #: includes/CustomPostTypes.class.php:38 includes/CustomPostTypes.class.php:40
236
- #: includes/CustomPostTypes.class.php:41
237
- #: includes/WP_List_Table.BookingsTable.class.php:76
238
- msgid "Bookings"
239
- msgstr "Prenotazioni"
 
 
240
 
241
- #: includes/CustomPostTypes.class.php:39
242
- #: includes/WP_List_Table.BookingsTable.class.php:75
243
- msgid "Booking"
244
- msgstr "Prenotazione"
245
 
246
- #: includes/CustomPostTypes.class.php:43
247
- msgid "Add New Booking"
248
- msgstr "Nuova prenotazione"
249
 
250
- #: includes/CustomPostTypes.class.php:44 restaurant-reservations.php:218
251
- msgid "Edit Booking"
252
- msgstr "Modifica la prenotazione"
253
 
254
- #: includes/CustomPostTypes.class.php:45
255
- msgid "New Booking"
256
- msgstr "Nuova prenotazione"
257
 
258
- #: includes/CustomPostTypes.class.php:46
259
- msgid "View Booking"
260
- msgstr "Vedi la prenotazione"
261
 
262
- #: includes/CustomPostTypes.class.php:47
263
- msgid "Search Bookings"
264
- msgstr "Cerca le prenotazioni"
265
 
266
- #: includes/CustomPostTypes.class.php:48
267
- msgid "No bookings found"
268
- msgstr "Nessuna prenotazione trovata"
269
 
270
- #: includes/CustomPostTypes.class.php:49
271
- msgid "No bookings found in trash"
272
- msgstr "Nessuna prenotazione trovata nel cestino"
273
 
274
- #: includes/CustomPostTypes.class.php:50
275
- msgid "All Bookings"
276
- msgstr "Tutte le prenotazioni"
277
 
278
- #: includes/CustomPostTypes.class.php:93
279
- msgid "Confirmed <span class=\"count\">(%s)</span>"
280
- msgid_plural "Confirmed <span class=\"count\">(%s)</span>"
281
- msgstr[0] "Confermata <span class=\"count\">(%s)</span>"
282
- msgstr[1] "Confermate <span class=\"count\">(%s)</span>"
283
 
284
- #: includes/CustomPostTypes.class.php:104
285
- msgid "Closed <span class=\"count\">(%s)</span>"
286
- msgid_plural "Closed <span class=\"count\">(%s)</span>"
287
- msgstr[0] "Chiuso <span class=\"count\">(%s)</span>"
288
- msgstr[1] "Chiuso <span class=\"count\">(%s)</span>"
289
 
290
- #: includes/Notification.class.php:88
291
- msgid "View pending bookings"
292
- msgstr "Vedere le prenotazioni in attesa"
293
 
294
- #: includes/Notification.class.php:89
295
- msgid "Confirm this booking"
296
- msgstr "Conferma questa prenotazione"
297
 
298
- #: includes/Notification.class.php:90
299
- msgid "Reject this booking"
300
- msgstr "Rifiutare questa prenotazione"
301
 
302
- #: includes/Settings.class.php:221 includes/Settings.class.php:222
303
- msgid "Settings"
304
- msgstr "Opzioni"
 
305
 
306
- #: includes/Settings.class.php:234
307
- msgid "General"
308
- msgstr "Informazioni generali"
 
 
 
309
 
310
- #: includes/Settings.class.php:245
311
- msgid "Booking Page"
312
- msgstr "Prenotazioni"
313
 
314
- #: includes/Settings.class.php:246
315
- msgid ""
316
- "Select a page on your site to automatically display the booking form and "
317
- "confirmation message."
 
 
 
 
318
  msgstr ""
319
- "Selezionare una pagina del sito per visualizzare il form di prenotazione e "
320
- "il messaggio di conferma"
321
 
322
- #: includes/Settings.class.php:262
323
- msgid "Max Party Size"
324
- msgstr "Numero massimo di persone"
 
 
325
 
326
- #: includes/Settings.class.php:263
327
- msgid "Set a maximum allowed party size for bookings."
328
- msgstr "Impostare un numero massimo di persone per la prenotazioni"
329
 
330
- #: includes/Settings.class.php:275
331
- msgid "Success Message"
332
- msgstr "Messaggio di conferma"
 
 
 
333
 
334
- #: includes/Settings.class.php:276
335
- msgid "Enter the message to display when a booking request is made."
336
  msgstr ""
337
- "Scrivere un messaggio per visualizzare quando è stata fatta una prenotazione"
338
 
339
- #: includes/Settings.class.php:287
340
- msgid "Date Format"
341
- msgstr "Formato della data"
342
 
343
- #: includes/Settings.class.php:288
344
  msgid ""
345
- "Define how the date is formatted on the booking form. %sFormatting rules%s. "
346
- "This only changes the format on the booking form. To change the date format "
347
- "in notification messages, modify your general %sWordPress Settings%s."
348
  msgstr ""
349
- "Impostare la formattazione delle data per il form di prenotazione. "
350
- "%sFormatting rules%s. Questa cambierà solo la formattazione nel form di "
351
- "prenotazione. Per cambiare il formato nei messaggi di notifica, modificare "
352
- "le impostazioni generali su %sWordPress Settings%s"
353
 
354
- #: includes/Settings.class.php:299
355
- msgid "Time Format"
356
- msgstr "Formato dell'ora"
 
 
 
 
357
 
358
- #: includes/Settings.class.php:300
359
  msgid ""
360
- "Define how the time is formatted on the booking form. %sFormatting rules%s. "
361
- "This only changes the format on the booking form. To change the time format "
362
- "in notification messages, modify your general %sWordPress Settings%s."
363
  msgstr ""
364
- "Impostare la formattazione dell'orario per il form di prenotazione. "
365
- "%sFormatting rules%s. Questo cambierà solo la formattazione nel form di "
366
- "prenotazione. Per cambiare il formato nei messaggi di notifica, modificare "
367
- "le impostazioni generali su %sWordPress Settings%s"
368
 
369
- #: includes/Settings.class.php:313
370
- msgid "Language"
371
- msgstr "Lingua"
372
 
373
- #: includes/Settings.class.php:314
374
  msgid ""
375
- "Select a language to use for the booking form datepicker if it is different "
376
- "than your WordPress language setting."
377
  msgstr ""
378
- "Selezionare una lingua da usare per il form datepicker se differente dalla "
379
- "lingua base impostata in WordPress"
380
-
381
- #: includes/Settings.class.php:324
382
- msgid "Booking Schedule"
383
- msgstr "Filtri prenotazioni"
384
-
385
- #: includes/Settings.class.php:331
386
- msgid "Add new scheduling rule"
387
- msgstr "Aggiungi nuovo filtro"
388
-
389
- #: includes/Settings.class.php:345
390
- msgid "Delete scheduling rule"
391
- msgstr "Elimina filtro"
392
-
393
- #: includes/Settings.class.php:362
394
- msgid "Schedule"
395
- msgstr "Filtri"
396
 
397
- #: includes/Settings.class.php:363
398
- msgid "Define the weekly schedule during which you accept bookings."
399
  msgstr ""
400
- "Definire l'intervallo settimanale durante il quale vengono accettate "
401
- "prenotazioni"
402
 
403
- #: includes/Settings.class.php:388
404
- msgid "Exceptions"
405
- msgstr "Limitazioni"
406
 
407
- #: includes/Settings.class.php:389
408
- msgid ""
409
- "Define special opening hours for holidays, events or other needs. Leave the "
410
- "time empty if you're closed all day."
411
  msgstr ""
412
- "Impostare orari di apertura eccezionale per giorni festivi o eventi "
413
- "speciali. Lasciare il campo vuoto se il ristorante è chiuso tutto il giorno"
414
-
415
- #: includes/Settings.class.php:404
416
- msgid "Early Bookings"
417
- msgstr "Prenotazioni"
418
 
419
- #: includes/Settings.class.php:405
420
- msgid "Select how early customers can make their booking."
421
- msgstr "Selezionare quanto tempo prima i clienti possono fare una prenotazione"
422
-
423
- #: includes/Settings.class.php:408
424
  msgid "Any time"
425
- msgstr "Qualsiati momento"
426
-
427
- #: includes/Settings.class.php:409
428
- msgid "Up to 1 day in advance"
429
- msgstr "Fino a 1 giorno prima"
430
-
431
- #: includes/Settings.class.php:410
432
- msgid "Up to 1 week in advance"
433
- msgstr "Fino a 1 settimana prima"
434
 
435
- #: includes/Settings.class.php:411
436
- msgid "Up to 2 weeks in advance"
437
- msgstr "Fino a 2 settimane prima"
438
 
439
- #: includes/Settings.class.php:412
440
- msgid "Up to 30 days in advance"
441
- msgstr "Fino a 30 giorni prima"
 
 
442
 
443
- #: includes/Settings.class.php:413
444
- msgid "Up to 90 days in advance"
445
- msgstr "Fino a 90 giorni prima"
446
 
447
- #: includes/Settings.class.php:424
448
- msgid "Late Bookings"
449
- msgstr "Prenotazioni Last Minute"
 
 
 
450
 
451
- #: includes/Settings.class.php:425
452
- msgid "Select how late customers can make their booking."
453
  msgstr ""
454
- "Scegliere quanto tempo prima dalla data i clienti possono fare le "
455
- "prenotazioni"
456
 
457
- #: includes/Settings.class.php:428
458
- msgid "Up to the last minute"
459
- msgstr "Fino all'ultimo minuto"
 
460
 
461
- #: includes/Settings.class.php:429
 
462
  msgid "At least 15 minutes in advance"
463
  msgstr "Almeno 15 minuti prima"
464
 
465
- #: includes/Settings.class.php:430
 
 
 
 
 
 
466
  msgid "At least 30 minutes in advance"
467
  msgstr "Almeno 30 minuti prima"
468
 
469
- #: includes/Settings.class.php:431
 
 
 
 
 
 
470
  msgid "At least 45 minutes in advance"
471
  msgstr "Almeno 45 minuti prima"
472
 
473
- #: includes/Settings.class.php:432
474
- msgid "At least 1 hour in advance"
475
- msgstr "Almeno 1 ora prima"
476
-
477
- #: includes/Settings.class.php:433
478
- msgid "At least 4 hours in advance"
479
- msgstr "Almeno 4 ore prima"
480
 
481
- #: includes/Settings.class.php:434
482
- msgid "At least 1 day in advance"
483
- msgstr "Almeno il giorno prima"
484
 
485
- #: includes/Settings.class.php:445
486
- msgid "Date Pre-selection"
487
- msgstr "Data preselezionata"
488
 
489
- #: includes/Settings.class.php:446
490
- msgid ""
491
- "When the booking form is loaded, should it automatically attempt to select a "
492
- "valid date?"
493
  msgstr ""
494
- "Quando il form di prenotazione viene caricato, vuoi che mostri in automatico "
495
- "la prima data valida?"
496
 
497
- #: includes/Settings.class.php:449
498
- msgid "Select today if valid"
499
- msgstr "Seleziona oggi se valido"
 
500
 
501
- #: includes/Settings.class.php:450
502
- msgid "Select today or next valid date"
503
- msgstr "Seleziona oggi o la prossima data disponibile"
504
 
505
- #: includes/Settings.class.php:451
506
- msgid "Leave empty"
507
- msgstr "Lasciare vuoto"
508
 
509
- #: includes/Settings.class.php:462
510
- msgid "Time Interval"
511
- msgstr "Intervallo di tempo"
512
 
513
- #: includes/Settings.class.php:463
514
- msgid "Select the number of minutes between each available time."
515
- msgstr "Scegliere l'intervallo di tempo tra una prenotazione e l'altra"
 
 
 
516
 
517
- #: includes/Settings.class.php:466
518
- msgid "Every 30 minutes"
519
- msgstr "Ogni 30 minuti"
 
520
 
521
- #: includes/Settings.class.php:467
522
- msgid "Every 15 minutes"
523
- msgstr "Ogni 15 minuti"
 
524
 
525
- #: includes/Settings.class.php:468
526
- msgid "Every 10 minutes"
527
- msgstr "Ogni 10 minuti"
528
 
529
- #: includes/Settings.class.php:469
530
- msgid "Every 5 minutes"
531
- msgstr "Ogni 5 minuti"
532
 
533
- #: includes/Settings.class.php:478
534
- msgid "Notifications"
535
- msgstr "Notifiche"
536
 
537
- #: includes/Settings.class.php:489
538
- msgid "Reply-To Name"
539
- msgstr "Rispondi a Nome"
 
540
 
541
- #: includes/Settings.class.php:490
542
- msgid ""
543
- "The name which should appear in the Reply-To field of a user notification "
544
- "email"
545
  msgstr ""
546
- "Nome che dovrebbe apparire nel campo \"rispondi a\" nella mail di notifica "
547
- "dell'utente"
548
-
549
- #: includes/Settings.class.php:501
550
- msgid "Reply-To Email Address"
551
- msgstr "Rispondi all'indirizzo Email"
552
 
553
- #: includes/Settings.class.php:502
554
- msgid ""
555
- "The email address which should appear in the Reply-To field of a user "
556
- "notification email."
557
  msgstr ""
558
- "Email che dovrebbe apparire nel campo \"rispondi a\" nella mail di notifica "
559
- "dell'utente"
560
 
561
- #: includes/Settings.class.php:513
562
- msgid "Admin Notification"
563
- msgstr "Notifica all'amministratore"
 
 
564
 
565
- #: includes/Settings.class.php:514
566
- msgid ""
567
- "Send an email notification to an administrator when a new booking is "
568
- "requested."
569
  msgstr ""
570
- "Invia una mail di notifica all'amministratore ogni volta che viene "
571
- "effettuata una richiesta di prenotazione"
572
 
573
- #: includes/Settings.class.php:524
574
- msgid "Admin Email Address"
575
- msgstr "Indirizzo Email dell'amministratore"
576
 
577
- #: includes/Settings.class.php:525
578
- msgid "The email address where admin notifications should be sent."
579
- msgstr "Indirizzo mail dell'amministratore al quale inviare le notifiche"
580
 
581
- #: includes/Settings.class.php:534
582
- msgid "Email Templates"
583
- msgstr "Email Templates"
584
 
585
- #: includes/Settings.class.php:536
586
- msgid ""
587
- "Adjust the messages that are emailed to users and admins during the booking "
588
- "process."
589
- msgstr ""
590
- "Configura i messaggi inviati a utenti e amministratori al termine della "
591
- "richiesta di prenotazione"
592
 
593
- #: includes/Settings.class.php:546
594
- msgid "Template Tags"
595
- msgstr "Template Tags"
596
 
597
- #: includes/Settings.class.php:548
598
- msgid ""
599
- "Use the following tags to automatically add booking information to the "
600
- "emails. Tags labeled with an asterisk (*) can be used in the email subject "
601
- "as well."
602
- msgstr ""
603
- "Utilizza i seguenti Tags per inserire le informazioni della prenotazione "
604
- "automaticamente nelle mail. I Tags contrassegnati con (*) possono essere "
605
- "utilizzati anche come oggetto della mail"
606
 
607
- #: includes/Settings.class.php:559
608
- msgid "Admin Notification Subject"
609
- msgstr "Oggetto della mail di notifica all'amministratore"
 
610
 
611
- #: includes/Settings.class.php:560
612
- msgid "The email subject for admin notifications."
613
- msgstr "Oggetto della mail di notifica all'amministratore"
 
614
 
615
- #: includes/Settings.class.php:571
616
- msgid "Admin Notification Email"
617
- msgstr "Email di notifica all'amministratore"
 
 
618
 
619
- #: includes/Settings.class.php:572
620
- msgid ""
621
- "Enter the email an admin should receive when an initial booking request is "
622
- "made."
623
  msgstr ""
624
- "Inserire la mail che l'amministratore dovrebbe ricevere quando viene fatta "
625
- "una prima richiesta di prenotazione"
626
 
627
- #: includes/Settings.class.php:583
628
- msgid "New Request Email Subject"
629
- msgstr "Oggetto mail per una nuova richiesta di prenotazione"
630
-
631
- #: includes/Settings.class.php:584
632
- msgid ""
633
- "The email subject a user should receive when they make an initial booking "
634
- "request."
635
  msgstr ""
636
- "Oggetto della mail che l'utente dovrebbe ricevere quando viene fatta una "
637
- "prima richiesta di prenotazione"
638
 
639
- #: includes/Settings.class.php:595
640
- msgid "New Request Email"
641
- msgstr "Corpo mail"
 
 
642
 
643
- #: includes/Settings.class.php:596
644
- msgid ""
645
- "Enter the email a user should receive when they make an initial booking "
646
- "request."
 
647
  msgstr ""
648
- "Inserire la mail che l'utente dovrebbe ricevere quando viene fatta una prima "
649
- "richiesta di prenotazione"
650
 
651
- #: includes/Settings.class.php:607
652
- msgid "Confirmed Email Subject"
653
- msgstr "Oggetto della mail di conferma"
654
-
655
- #: includes/Settings.class.php:608
656
- msgid ""
657
- "The email subject a user should receive when their booking has been "
658
- "confirmed."
659
  msgstr ""
660
- "Oggetto della mail che l'utente dovrebbe ricevere quando la prenotazione "
661
- "viene confermata"
662
 
663
- #: includes/Settings.class.php:619
664
- msgid "Confirmed Email"
665
- msgstr "Corpo mail di conferma"
666
-
667
- #: includes/Settings.class.php:620
668
- msgid ""
669
- "Enter the email a user should receive when their booking has been confirmed."
670
  msgstr ""
671
- "Inserire la mail che l'utente dovrebbe ricevere quando la prenotazione viene "
672
- "confermata"
673
 
674
- #: includes/Settings.class.php:631
675
- msgid "Rejected Email Subject"
676
- msgstr "Oggetto della prenotazione rifiutata"
 
677
 
678
- #: includes/Settings.class.php:632
679
- msgid ""
680
- "The email subject a user should receive when their booking has been rejected."
 
 
681
  msgstr ""
682
- "Oggetto della mail che l'utente dovrebbe ricevere quando la prenotazione "
683
- "viene rifiutata"
684
 
685
- #: includes/Settings.class.php:643
686
- msgid "Rejected Email"
687
- msgstr "Corpo mail di rifiuto"
 
 
 
 
 
 
688
 
689
- #: includes/Settings.class.php:644
690
- msgid ""
691
- "Enter the email a user should receive when their booking has been rejected."
 
 
 
 
 
692
  msgstr ""
693
- "Inserire la mail che l'utente dovrebbe ricevere quando la prenotazione viene "
694
- "rifiutata"
695
 
696
- #: includes/Settings.class.php:655
697
- msgid "Admin Update Subject"
698
- msgstr "Oggetto della mail di aggiornamenti da parte dell'amministratore"
699
-
700
- #: includes/Settings.class.php:656
701
- msgid ""
702
- "The email subject a user should receive when an admin sends them a custom "
703
- "email message from the %sbookings panel%s."
704
- msgstr ""
705
- "Oggetto della mail che l'utente dovrebbe ricevere quando l'amministratore "
706
- "invia un messaggio dal %bookings panel%s"
707
-
708
- #: includes/Settings.class.php:674
709
- msgid "Any size"
710
- msgstr "Nessun limite"
711
-
712
- #: includes/Settings.class.php:758
713
- msgid "Book a table"
714
- msgstr "Prenota un tavolo"
715
-
716
- #: includes/Settings.class.php:761
717
- #: includes/WP_List_Table.BookingsTable.class.php:278
718
- msgid "Date"
719
- msgstr "Data"
720
-
721
- #: includes/Settings.class.php:767
722
- msgid "Time"
723
- msgstr "Ora"
724
-
725
- #: includes/Settings.class.php:773
726
- #: includes/WP_List_Table.BookingsTable.class.php:279
727
- msgid "Party"
728
- msgstr "Numero di persone"
729
-
730
- #: includes/Settings.class.php:786
731
- msgid "Contact Details"
732
- msgstr "Dettagli contatto"
733
-
734
- #: includes/Settings.class.php:789
735
- #: includes/WP_List_Table.BookingsTable.class.php:280
736
- msgid "Name"
737
- msgstr "Nome e cognome"
738
-
739
- #: includes/Settings.class.php:795
740
- #: includes/WP_List_Table.BookingsTable.class.php:281
741
- msgid "Email"
742
- msgstr "Email"
743
-
744
- #: includes/Settings.class.php:804
745
- #: includes/WP_List_Table.BookingsTable.class.php:282
746
- msgid "Phone"
747
- msgstr "Telefono"
748
 
749
- #: includes/Settings.class.php:812
750
- msgid "Add a Message"
751
- msgstr "Lascia un messaggio"
752
 
753
- #: includes/Settings.class.php:862
754
- msgid "Email of the user who made the booking"
755
- msgstr "Email dell'utente che effettua la richiesta di prenotazione"
756
 
757
- #: includes/Settings.class.php:863
758
- msgid "* Name of the user who made the booking"
759
- msgstr "* Nome dell'utente che effettua la richiesta di prenotazione"
760
 
761
- #: includes/Settings.class.php:864
762
- msgid "* Number of people booked"
763
- msgstr "* Numero di persone"
 
 
 
764
 
765
- #: includes/Settings.class.php:865
766
- msgid "* Date and time of the booking"
767
- msgstr "* Data e orario della prenotazione"
768
 
769
- #: includes/Settings.class.php:866
770
- msgid "Phone number if supplied with the request"
771
- msgstr "Numero di telefono se richiesto"
772
 
773
- #: includes/Settings.class.php:867
774
- msgid "Message added to the request"
775
- msgstr "Messaggio aggiunto nella richiesta"
776
 
777
- #: includes/Settings.class.php:868
778
- msgid "A link to the admin panel showing pending bookings"
779
- msgstr "Link al pannello di gestione delle prenotazioni da confermare"
780
 
781
- #: includes/Settings.class.php:869
782
  msgid ""
783
- "A link to confirm this booking. Only include this in admin notifications"
784
- msgstr ""
785
- "Link per confermare questa prenotazione. Può essere inclusa solo nelle mail "
786
- "di notifica all'amministratore"
787
-
788
- #: includes/Settings.class.php:870
789
- msgid "A link to reject this booking. Only include this in admin notifications"
790
  msgstr ""
791
- "Link per rifiutare questa prenotazione. Può essere inclusa solo nelle mail "
792
- "di notifica all'amministratore"
793
-
794
- #: includes/Settings.class.php:871
795
- msgid "The name of this website"
796
- msgstr "Nome di questo Sito Web"
797
-
798
- #: includes/Settings.class.php:872
799
- msgid "A link to this website"
800
- msgstr "Link al Sito Web"
801
-
802
- #: includes/Settings.class.php:873
803
- msgid "Current date and time"
804
- msgstr "Data e ora corrente"
805
-
806
- #: includes/WP_List_Table.BookingsTable.class.php:186
807
- msgid "Upcoming"
808
- msgstr "Imminenti"
809
-
810
- #: includes/WP_List_Table.BookingsTable.class.php:187
811
- msgid "Today"
812
- msgstr "Oggi"
813
-
814
- #: includes/WP_List_Table.BookingsTable.class.php:188
815
- #: includes/WP_List_Table.BookingsTable.class.php:246
816
- msgid "All"
817
- msgstr "Tutti"
818
-
819
- #: includes/WP_List_Table.BookingsTable.class.php:204
820
- msgid "Start Date:"
821
- msgstr "Data inizio:"
822
-
823
- #: includes/WP_List_Table.BookingsTable.class.php:205
824
- msgid "Start Date"
825
- msgstr "Data inizio:"
826
-
827
- #: includes/WP_List_Table.BookingsTable.class.php:206
828
- msgid "End Date:"
829
- msgstr "Data fine:"
830
-
831
- #: includes/WP_List_Table.BookingsTable.class.php:207
832
- msgid "End Date"
833
- msgstr "Data fine:"
834
 
835
- #: includes/WP_List_Table.BookingsTable.class.php:208
836
- msgid "Apply"
837
- msgstr "Applica"
838
 
839
- #: includes/WP_List_Table.BookingsTable.class.php:210
840
  msgid "Clear Filter"
841
  msgstr "Resetta i filtri"
842
 
843
- #: includes/WP_List_Table.BookingsTable.class.php:247
844
- msgid "Pending"
845
- msgstr "In attesa"
846
-
847
- #: includes/WP_List_Table.BookingsTable.class.php:248
848
- msgid "Confirmed"
849
- msgstr "Confermata"
850
-
851
- #: includes/WP_List_Table.BookingsTable.class.php:249
852
- msgid "Closed"
853
- msgstr "Chiusa"
854
-
855
- #: includes/WP_List_Table.BookingsTable.class.php:250
856
- #: includes/WP_List_Table.BookingsTable.class.php:315
857
- msgid "Trash"
858
- msgstr "Cestino"
859
-
860
- #: includes/WP_List_Table.BookingsTable.class.php:284
861
- msgid "Status"
862
- msgstr "Stato"
863
-
864
- #: includes/WP_List_Table.BookingsTable.class.php:314
865
- msgid "Edit"
866
- msgstr "Edita"
867
-
868
- #: includes/WP_List_Table.BookingsTable.class.php:379
869
- msgid "Delete"
870
- msgstr "Cancella"
871
 
872
- #: includes/WP_List_Table.BookingsTable.class.php:380
873
- msgid "Set To Confirmed"
874
- msgstr "Imposta come confermata"
 
 
 
875
 
876
- #: includes/WP_List_Table.BookingsTable.class.php:381
877
- msgid "Set To Pending Review"
878
- msgstr "Imposta come pendente"
879
 
880
- #: includes/WP_List_Table.BookingsTable.class.php:382
881
- msgid "Set To Closed"
882
- msgstr "Imposta come Chiusa"
883
 
884
- #: includes/WP_List_Table.BookingsTable.class.php:497
885
- msgid "%d booking deleted successfully."
886
- msgid_plural "%d bookings deleted successfully."
887
- msgstr[0] "%d prenotazione cancellata con sucesso."
888
- msgstr[1] "%d prenotazioni cancellate con sucesso."
 
889
 
890
- #: includes/WP_List_Table.BookingsTable.class.php:500
891
- msgid "%d booking confirmed."
892
- msgid_plural "%d bookings confirmed."
893
- msgstr[0] "%d prenotazione confermata"
894
- msgstr[1] "%d prenotazioni confermate"
895
 
896
- #: includes/WP_List_Table.BookingsTable.class.php:503
897
- msgid "%d booking set to pending."
898
- msgid_plural "%d bookings set to pending."
899
- msgstr[0] "%d prenotazione da confermare"
900
- msgstr[1] "%d prenotazioni da confermare"
901
 
902
- #: includes/WP_List_Table.BookingsTable.class.php:506
903
- msgid "%d booking closed."
904
- msgid_plural "%d bookings closed."
905
- msgstr[0] "%d prenotazione chiusa"
906
- msgstr[1] "%d prenotazioni chiuse"
907
 
908
- #: includes/WP_List_Table.BookingsTable.class.php:518
909
- msgid "%d booking had errors and could not be processed."
910
- msgid_plural "%d bookings had errors and could not be processed."
911
- msgstr[0] "%d la prenotazione presentava degli errori e non è stata processata"
912
- msgstr[1] ""
913
- "%d le prenotazioni presentavano degli errori e non sono state processate"
914
 
915
- #: includes/WP_List_Table.BookingsTable.class.php:694
916
- msgid "You're viewing bookings that have been moved to the trash."
917
- msgstr "Stai visualizzando delle prenotazioni spostate nel cestino"
 
 
 
918
 
919
- #: includes/WP_List_Table.BookingsTable.class.php:703
920
- msgid "Only today's bookings are being shown."
921
- msgstr "Vengono visualizzate solo le prenotazioni di oggi "
922
 
923
- #: includes/WP_List_Table.BookingsTable.class.php:705
924
- msgid "Only upcoming bookings are being shown."
925
- msgstr "Vengono visualizzate solo le prenotazioni imminenti "
926
 
927
- #: includes/WP_Widget.BookingFormWidget.class.php:25
928
- msgid "Booking Form"
929
- msgstr "Form di prenotazione"
930
 
931
- #: includes/WP_Widget.BookingFormWidget.class.php:26
932
- msgid "Display a form to accept bookings."
933
- msgstr "Visualizza un form per accettare le prenotazioni"
934
 
935
- #: includes/WP_Widget.BookingFormWidget.class.php:64
936
- msgid "Title"
937
- msgstr "Titolo"
938
 
939
- #: includes/template-functions.php:106
940
- msgid "Request Booking"
941
- msgstr "Invia prenotazione"
942
 
943
- #: restaurant-reservations.php:148
944
- msgid "Booking Manager"
945
- msgstr "Gestore delle prenotazioni"
946
 
947
- #: restaurant-reservations.php:219
948
- msgid ""
949
- "An unspecified error occurred. Please try again. If the problem persists, "
950
- "try logging out and logging back in."
951
  msgstr ""
952
- "Si è verificato un errore imprecisato. Si prega di riprovare. Se il problema "
953
- "persiste, effettuare il logout ed effettuare nuovamente l'accesso"
954
 
955
- #: restaurant-reservations.php:281
956
- msgid "View the help documentation for Restaurant Reservations"
957
- msgstr "Visualizza l'help per il plugin"
958
-
959
- #: restaurant-reservations.php:281
960
- msgid "Help"
961
- msgstr "Help"
962
-
963
- #. Plugin Name of the plugin/theme
964
- msgid "Restaurant Reservations"
965
- msgstr "Restaurant Reservations"
966
-
967
- #. #-#-#-#-# restaurant-reservations.pot (Restaurant Reservations 1.4) #-#-#-#-#
968
- #. Plugin URI of the plugin/theme
969
- #. #-#-#-#-# restaurant-reservations.pot (Restaurant Reservations 1.4) #-#-#-#-#
970
- #. Author URI of the plugin/theme
971
- msgid "http://themeofthecrop.com"
972
- msgstr "http://themeofthecrop.com"
973
-
974
- #. Description of the plugin/theme
975
- msgid "Accept restaurant reservations and bookings online."
976
- msgstr "Sistema di gestione delle prenotazioni online"
977
-
978
- #. Author of the plugin/theme
979
- msgid "Theme of the Crop"
980
- msgstr "Theme of the Crop"
981
-
982
- #: includes/Addons.class.php:99
983
- msgctxt "Error message when retrieving list of addons"
984
- msgid "An unknown error occured."
985
- msgstr "Si è verificato un errore sconosciuto"
986
-
987
- #: includes/Addons.class.php:100
988
- msgctxt "Label for an addon that is already installed and activated."
989
- msgid "Already Installed"
990
- msgstr "Già installato"
991
-
992
- #: includes/Addons.class.php:101
993
- msgctxt "Label for an addon that is not yet released."
994
- msgid "Coming Soon"
995
- msgstr "Presto disponibile"
996
 
997
- #: includes/Addons.class.php:102
998
- msgctxt "Label for an addon that is free."
999
- msgid "Free"
1000
- msgstr "Gratuito"
1001
 
1002
- #: includes/Addons.class.php:103
1003
- msgctxt "Label for an addon that is released."
1004
- msgid "Get It"
1005
- msgstr "Scaricalo"
1006
 
1007
- #: includes/Addons.class.php:117
1008
- msgctxt "Title of addons page"
1009
- msgid "Addons"
1010
- msgstr "Addons"
1011
 
1012
- #: includes/Addons.class.php:118
1013
- msgctxt "Title of addons page in the admin menu"
1014
- msgid "Addons"
1015
- msgstr "Addons"
1016
 
1017
- #: includes/AdminBookings.class.php:43
1018
- msgctxt "Title of admin page that lists bookings"
1019
- msgid "Bookings"
1020
- msgstr "Prenotazioni"
 
1021
 
1022
- #: includes/AdminBookings.class.php:44
1023
- msgctxt "Title of bookings admin menu item"
1024
- msgid "Bookings"
1025
- msgstr "Prenotazioni"
1026
 
1027
- #: includes/AdminBookings.class.php:143
1028
- msgctxt "Label next to the email address to which an email will be sent"
1029
- msgid "To"
1030
- msgstr "A"
1031
 
1032
- #: includes/CustomPostTypes.class.php:80
1033
- msgctxt "Booking status when it is pending review"
1034
- msgid "Pending"
1035
- msgstr "Da confermare"
1036
 
1037
- #: includes/CustomPostTypes.class.php:86
1038
- msgctxt "Booking status for a confirmed booking"
1039
- msgid "Confirmed"
1040
- msgstr "Confermata"
1041
 
1042
- #: includes/CustomPostTypes.class.php:97
1043
- msgctxt "Booking status for a closed booking"
1044
- msgid "Closed"
1045
- msgstr "Chiusa"
1046
 
1047
- #: includes/Settings.class.php:83
1048
- msgctxt "restaurant-reservations"
1049
- msgid ""
1050
- "Thanks, your booking request is waiting to be confirmed. Updates will be "
1051
- "sent to the email address you provided."
1052
- msgstr ""
1053
- "Grazie, la vostra richiesta di prenotazione è in attesa di essere "
1054
- "confermata. Modifiche o aggiornamenti saranno inviate all'indirizzo mail "
1055
- "fornito"
1056
 
1057
- #: includes/Settings.class.php:84
1058
  msgctxt ""
1059
  "Default date format for display. Must match formatting rules at http://amsul."
1060
- "ca/pickadate.js/date.htm#formatting-rules"
1061
  msgid "mmmm d, yyyy"
1062
- msgstr "d mmmm yyyy"
1063
 
1064
- #: includes/Settings.class.php:85
1065
  msgctxt ""
1066
- "Default time format for display. Must match formatting rules at http://amsul."
1067
- "ca/pickadate.js/time.htm#formats"
1068
- msgid "h:i A"
1069
- msgstr "H:i"
1070
-
1071
- #: includes/Settings.class.php:86
1072
- msgctxt "Default interval in minutes when selecting a time."
1073
- msgid "30"
1074
- msgstr "30"
1075
-
1076
- #: includes/Settings.class.php:96
1077
- msgctxt "Default email subject for admin notifications of new bookings"
1078
- msgid "New Booking Request"
1079
- msgstr "Nuova richiesta di prenotazione"
 
 
 
 
 
 
 
 
 
 
 
 
1080
 
1081
- #: includes/Settings.class.php:97
1082
  msgctxt ""
1083
  "Default email sent to the admin when a new booking request is made. The tags "
1084
  "in {brackets} will be replaced by the appropriate content and should be left "
@@ -1099,7 +909,7 @@ msgid ""
1099
  "\n"
1100
  "<em>This message was sent by {site_link} on {current_time}.</em>"
1101
  msgstr ""
1102
- "Una nuova richiesta di prenotazione è stata fatta a {site_name}:\n"
1103
  "\n"
1104
  "{user_name}\n"
1105
  "{party} people\n"
@@ -1109,34 +919,78 @@ msgstr ""
1109
  "{confirm_link}\n"
1110
  "{close_link}\n"
1111
  "\n"
1112
- "&nbsp;\n"
1113
  "\n"
1114
- "<em>Questo messaggio è stato inviato da {site_link} alle {current_time}.</em>"
1115
-
1116
- #: includes/Settings.class.php:115
1117
- msgctxt ""
1118
- "Default email subject sent to user when they request a booking. %s will be "
1119
- "replaced by the website name"
1120
- msgid "Your booking at %s is pending"
1121
- msgstr "La tua richiesta a %s è in attesa di essere confermata"
1122
 
1123
- #: includes/Settings.class.php:116
1124
  msgctxt ""
1125
- "Default email sent to users when they make a new booking request. The tags "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1126
  "in {brackets} will be replaced by the appropriate content and should be left "
1127
  "in place. HTML is allowed, but be aware that many email clients do not "
1128
  "handle HTML very well."
1129
  msgid ""
1130
- "Thanks {user_name},\n"
1131
- "\n"
1132
- "Your booking request is <strong>waiting to be confirmed</strong>.\n"
1133
  "\n"
1134
- "Give us a few moments to make sure that we've got space for you. You will "
1135
- "receive another email from us soon. If this request was made outside of our "
1136
- "normal working hours, we may not be able to confirm it until we're open "
1137
- "again.\n"
1138
  "\n"
1139
- "<strong>Your request details:</strong>\n"
1140
  "{user_name}\n"
1141
  "{party} people\n"
1142
  "{date}\n"
@@ -1145,25 +999,61 @@ msgid ""
1145
  "\n"
1146
  "<em>This message was sent by {site_link} on {current_time}.</em>"
1147
  msgstr ""
1148
- "Grazie {user_name},\n"
1149
- "\n"
1150
- "La tua richiesta di prenotazione è <strong>in attesa di essere confermata</"
1151
- "strong>.\n"
1152
  "\n"
1153
- "Stiamo verificando la disponibilità. Riceverai presto una mail di conferma. "
1154
- "Se questa richiesta è stata effettuata al di fuori del nostro orario "
1155
- "lavorativo, risponderemo non appena possibile.\n"
1156
  "\n"
1157
- "<strong>Dettagli della prenotazione:</strong>\n"
1158
  "{user_name}\n"
1159
  "{party} people\n"
1160
  "{date}\n"
1161
  "\n"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1162
  "&nbsp;\n"
1163
  "\n"
1164
- "<em>Questo messaggio è stato inviato da {site_link} alle {current_time}.</em>"
 
 
 
 
 
 
 
 
 
 
 
 
 
1165
 
1166
- #: includes/Settings.class.php:136
1167
  msgctxt ""
1168
  "Default email sent to users when they make a new booking request. The tags "
1169
  "in {brackets} will be replaced by the appropriate content and should be left "
@@ -1190,27 +1080,30 @@ msgstr ""
1190
  "\n"
1191
  "Ti aspettiamo, a presto\n"
1192
  "\n"
1193
- "<strong>La tua prenotazione:</strong>\n"
1194
  "{user_name}\n"
1195
  "{party} people\n"
1196
  "{date}\n"
1197
  "\n"
1198
- "&nbsp;\n"
1199
- "\n"
1200
- "<em>Questo messaggio è stato inviato da {site_link} alle {current_time}.</em>"
1201
 
1202
- #: includes/Settings.class.php:154
1203
  msgctxt ""
1204
  "Default email sent to users when they make a new booking request. The tags "
1205
  "in {brackets} will be replaced by the appropriate content and should be left "
1206
  "in place. HTML is allowed, but be aware that many email clients do not "
1207
  "handle HTML very well."
1208
  msgid ""
1209
- "Hi {user_name},\n"
1210
  "\n"
1211
- "Sorry, we could not accomodate your booking request. We're full or not open "
1212
- "at the time you requested:\n"
 
 
 
 
1213
  "\n"
 
1214
  "{user_name}\n"
1215
  "{party} people\n"
1216
  "{date}\n"
@@ -1219,231 +1112,2587 @@ msgid ""
1219
  "\n"
1220
  "<em>This message was sent by {site_link} on {current_time}.</em>"
1221
  msgstr ""
1222
- "Ciao {user_name},\n"
 
 
1223
  "\n"
1224
- "Siamo spiacenti di dover rifiutare la tua richiesta di prenotazione, non "
1225
- "abbiamo disponibilità.\n"
 
1226
  "\n"
 
1227
  "{user_name}\n"
1228
  "{party} people\n"
1229
  "{date}\n"
1230
  "\n"
1231
- "&nbsp;\n"
1232
- "\n"
1233
- "<em>Questo messaggio è stato inviato da {site_link} alle {current_time}.</em>"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1234
 
1235
- #: includes/Settings.class.php:135
 
 
 
 
 
 
 
 
 
1236
  msgctxt ""
1237
  "Default email subject sent to user when their booking is confirmed. %s will "
1238
  "be replaced by the website name"
1239
  msgid "Your booking at %s is confirmed"
1240
- msgstr "La tua prenotazione a %s è stata confermata"
1241
 
1242
- #: includes/Settings.class.php:153
 
1243
  msgctxt ""
1244
  "Default email subject sent to user when their booking is rejected. %s will "
1245
  "be replaced by the website name"
1246
  msgid "Your booking at %s was not accepted"
1247
- msgstr "La tua prenotazione a %s non è stata accettata"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1248
 
1249
- #: includes/Settings.class.php:170
 
1250
  msgctxt ""
1251
  "Default email subject sent to users when the admin sends a custom notice "
1252
  "email from the bookings panel."
1253
  msgid "Update regarding your booking at %s"
1254
- msgstr "Aggiornamenti riguardo la tua prenotazione a %s"
1255
 
1256
- #: includes/Settings.class.php:332
1257
- msgctxt "Format of a scheduling rule"
1258
- msgid "Weekly"
1259
- msgstr "Settimanale"
1260
-
1261
- #: includes/Settings.class.php:333
1262
- msgctxt "Format of a scheduling rule"
1263
- msgid "Monthly"
1264
- msgstr "Mensile"
1265
 
1266
- #: includes/Settings.class.php:334
1267
- msgctxt "Format of a scheduling rule"
1268
- msgid "Date"
1269
- msgstr "Data"
 
 
 
 
 
 
1270
 
1271
- #: includes/Settings.class.php:335
1272
- msgctxt "Label for selecting days of the week in a scheduling rule"
1273
- msgid "Days of the week"
1274
- msgstr "Giorni della settimana"
 
 
 
 
 
 
1275
 
1276
- #: includes/Settings.class.php:336
1277
- msgctxt "Label for selecting weeks of the month in a scheduling rule"
1278
- msgid "Weeks of the month"
1279
- msgstr "Settimane del mese"
 
 
 
1280
 
1281
- #: includes/Settings.class.php:337
1282
- msgctxt "Label to select a date for a scheduling rule"
1283
- msgid "Date"
1284
- msgstr "Data"
 
1285
 
1286
- #: includes/Settings.class.php:338
1287
- msgctxt "Label to select a time slot for a scheduling rule"
1288
- msgid "Time"
1289
- msgstr "Ora"
1290
 
1291
- #: includes/Settings.class.php:339
1292
- msgctxt "Label to set a scheduling rule to last all day"
1293
- msgid "All day"
1294
- msgstr "Tutto il giorno"
1295
 
1296
- #: includes/Settings.class.php:340
1297
- msgctxt "Label for the starting time of a scheduling rule"
1298
- msgid "Start"
1299
- msgstr "Inizio"
 
 
 
 
1300
 
1301
- #: includes/Settings.class.php:341
1302
- msgctxt "Label for the ending time of a scheduling rule"
1303
- msgid "End"
1304
- msgstr "Fine"
1305
 
1306
- #: includes/Settings.class.php:342
1307
- msgctxt ""
1308
- "Prompt displayed when a scheduling rule is set without any time restrictions"
1309
- msgid "All day long. Want to %sset a time slot%s?"
1310
- msgstr "Tutto il giorno. Vuoi %sset un time slot%s?"
1311
 
1312
- #: includes/Settings.class.php:343
1313
- msgctxt "Toggle a scheduling rule open and closed"
1314
- msgid "Open and close this rule"
1315
- msgstr "Apri e chiudi"
1316
 
1317
- #: includes/Settings.class.php:344
1318
- msgctxt "Delete a scheduling rule"
1319
  msgid "Delete rule"
1320
- msgstr "Cancella la regole"
1321
 
1322
- #: includes/Settings.class.php:346
1323
- msgctxt ""
1324
- "Brief default description of a scheduling rule when no weekdays or weeks are "
1325
- "included in the rule"
1326
- msgid "Never"
1327
- msgstr "Mai"
1328
 
1329
- #: includes/Settings.class.php:347
1330
- msgctxt ""
1331
- "Brief default description of a scheduling rule when all the weekdays/weeks "
1332
- "are included in the rule"
1333
- msgid "Every day"
1334
- msgstr "Ogni giorno"
1335
 
1336
- #: includes/Settings.class.php:348
1337
- msgctxt ""
1338
- "Brief default description of a scheduling rule when some weekdays are "
1339
- "included on only some weeks of the month. %s should be left alone and will "
1340
- "be replaced by a comma-separated list of days and weeks in the following "
1341
- "format: M, T, W on the first, second week of the month"
1342
- msgid "%s on the %s week of the month"
1343
- msgstr "%s della %s settimana del mese"
1344
 
1345
- #: includes/Settings.class.php:349
1346
- msgctxt ""
1347
- "Brief default description of a scheduling rule when some weeks of the month "
1348
- "are included but all or no weekdays are selected. %s should be left alone "
1349
- "and will be replaced by a comma-separated list of weeks in the following "
1350
- "format: First, second week of the month"
1351
- msgid "%s week of the month"
1352
- msgstr "%s settimana del mese"
1353
 
1354
- #: includes/Settings.class.php:350
1355
- msgctxt "Brief default description of a scheduling rule when no times are set"
1356
- msgid "All day"
1357
- msgstr "Tutti il giorno"
1358
 
1359
- #: includes/Settings.class.php:351
1360
- msgctxt ""
1361
- "Brief default description of a scheduling rule when an end time is set but "
1362
- "no start time. If the end time is 6pm, it will read: Ends at 6pm"
1363
- msgid "Ends at"
1364
- msgstr "Termina alle"
1365
 
1366
- #: includes/Settings.class.php:352
1367
- msgctxt ""
1368
- "Brief default description of a scheduling rule when a start time is set but "
1369
- "no end time. If the start time is 6pm, it will read: Starts at 6pm"
1370
- msgid "Starts at"
1371
- msgstr "Inizia alle"
1372
 
1373
- #: includes/Settings.class.php:353
1374
- msgctxt "Separator between times of a scheduling rule"
1375
- msgid "&mdash;"
1376
- msgstr "&mdash;"
1377
 
1378
- #: includes/Settings.class.php:365
1379
- msgctxt "Monday abbreviation"
1380
- msgid "Mo"
1381
- msgstr "Lun"
1382
 
1383
- #: includes/Settings.class.php:366
1384
- msgctxt "Tuesday abbreviation"
1385
- msgid "Tu"
1386
- msgstr "Mar"
1387
 
1388
- #: includes/Settings.class.php:367
1389
- msgctxt "Wednesday abbreviation"
1390
- msgid "We"
1391
- msgstr "Mer"
1392
 
1393
- #: includes/Settings.class.php:368
1394
- msgctxt "Thursday abbreviation"
1395
- msgid "Th"
1396
- msgstr "Gio"
 
 
1397
 
1398
- #: includes/Settings.class.php:369
1399
- msgctxt "Friday abbreviation"
1400
- msgid "Fr"
1401
- msgstr "Ven"
1402
 
1403
- #: includes/Settings.class.php:370
1404
- msgctxt "Saturday abbreviation"
1405
- msgid "Sa"
1406
- msgstr "Sab"
1407
 
1408
- #: includes/Settings.class.php:371
1409
- msgctxt "Sunday abbreviation"
1410
- msgid "Su"
1411
- msgstr "Dom"
1412
 
1413
- #: includes/Settings.class.php:381
1414
- msgctxt ""
1415
- "Brief default description of a scheduling exception when no times are set"
1416
- msgid "Closed all day"
1417
- msgstr "Chiuso tutti i giorni"
1418
 
1419
- #: includes/WP_List_Table.BookingsTable.class.php:137
1420
- #: includes/WP_List_Table.BookingsTable.class.php:139
1421
- msgctxt ""
1422
- "No date limit in a date range, eg 2014-* would mean any date from 2014 or "
1423
- "after"
1424
- msgid "*"
1425
- msgstr "*"
1426
 
1427
- #: includes/WP_List_Table.BookingsTable.class.php:138
1428
- msgctxt "Separator between two dates in a date range"
1429
- msgid "&mdash;"
1430
- msgstr "&mdash;"
 
 
1431
 
1432
- #: includes/WP_List_Table.BookingsTable.class.php:347
1433
- msgctxt "Status label for bookings put in the trash"
1434
- msgid "Trash"
1435
- msgstr "Cestino"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1436
 
1437
- #: includes/WP_List_Table.BookingsTable.class.php:696
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1438
  msgctxt ""
1439
  "Indicates which booking status is currently being filtered in the list of "
1440
  "bookings."
1441
  msgid "You're viewing bookings that have been marked as %s."
1442
  msgstr ""
1443
- "Stai visualizzando delle prenotazioni che sono state contrassegnate come %s"
1444
 
1445
- #: includes/WP_List_Table.BookingsTable.class.php:701
1446
- msgctxt ""
1447
- "Notification of booking date range, eg - bookings from 2014-12-02-2014-12-05"
1448
- msgid "Only bookings from %s are being shown."
1449
- msgstr "Vengono visualizzate soltanto le prenotazioni dal %s "
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
7
  "reservations\n"
8
  "POT-Creation-Date: 2015-02-24 15:16:53+00:00\n"
9
  "MIME-Version: 1.0\n"
10
+ "Content-Type: text/plain; charset=UTF-8\n"
11
  "Content-Transfer-Encoding: 8bit\n"
12
+ "PO-Revision-Date: 2022-09-29 17:50+0000\n"
13
+ "Last-Translator: \n"
14
+ "Language-Team: Italian\n"
15
+ "X-Generator: Loco https://localise.biz/\n"
16
  "X-Poedit-KeywordsList: __;_e;_x:1,2c;_ex:1,2c;_n:1,2;_nx:1,2,4c;_n_noop:1,2;"
17
  "_nx_noop:1,2,3c;esc_attr__;esc_html__;esc_attr_e;esc_html_e;esc_attr_x:1,2c;"
18
  "esc_html_x:1,2c\n"
19
+ "Language: it_IT\n"
20
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
21
  "X-Poedit-SourceCharset: UTF-8\n"
22
  "X-Poedit-Basepath: ../\n"
23
  "X-Textdomain-Support: yes\n"
24
  "X-Poedit-Bookmarks: -1,155,-1,-1,-1,-1,-1,-1,-1,-1\n"
25
  "X-Poedit-SearchPath-0: .\n"
26
+ "X-Loco-Version: 2.6.2; wp-6.0.2"
27
 
28
+ #: templates/tcpdf.php:41 templates/mpdf.php:135
29
+ #, php-format
30
+ msgid " %d reservation(s), %d guest(s)"
31
+ msgstr "%d prenotazione(i), %d ospite(i)"
 
 
 
 
32
 
33
+ #: includes/InstallationWalkthrough.class.php:214
34
+ msgid " Create Booking Schedule"
35
+ msgstr "Crea programma di prenotazione"
36
 
37
+ #: includes/Booking.class.php:681
38
+ msgid " If you encounter reCAPTCHA error multiple times, please contact us."
 
 
39
  msgstr ""
40
+ "Se riscontri ripetuti errori con il codice di validazione, ti preghiamo di "
41
+ "contattarci."
42
 
43
+ #: includes/InstallationWalkthrough.class.php:234
44
+ msgid " Set Key Options"
45
+ msgstr "Imposta le opzioni chiave"
 
 
 
 
 
 
 
 
46
 
47
+ #: includes/WP_List_Table.BookingsTable.class.php:899
48
+ #, php-format
49
+ msgid "%d booking closed."
50
+ msgid_plural "%d bookings closed."
51
+ msgstr[0] ""
52
+ msgstr[1] ""
53
 
54
+ #: includes/WP_List_Table.BookingsTable.class.php:893
55
+ #, php-format
56
+ msgid "%d booking confirmed."
57
+ msgid_plural "%d bookings confirmed."
58
+ msgstr[0] ""
59
+ msgstr[1] ""
60
 
61
+ #: includes/WP_List_Table.BookingsTable.class.php:890
62
+ #, php-format
63
+ msgid "%d booking deleted successfully."
64
+ msgid_plural "%d bookings deleted successfully."
65
+ msgstr[0] ""
66
+ msgstr[1] ""
67
 
68
+ #: includes/WP_List_Table.BookingsTable.class.php:911
69
+ #, php-format
70
+ msgid "%d booking had errors and could not be processed."
71
+ msgid_plural "%d bookings had errors and could not be processed."
72
+ msgstr[0] ""
73
+ msgstr[1] ""
74
 
75
+ #: includes/WP_List_Table.BookingsTable.class.php:896
76
+ #, php-format
77
+ msgid "%d booking set to pending."
78
+ msgid_plural "%d bookings set to pending."
79
+ msgstr[0] ""
80
+ msgstr[1] ""
81
 
82
+ #: includes/InstallationWalkthrough.class.php:171
83
+ #, php-format
84
+ msgid "%s on the %s week of the month"
85
+ msgstr "%s sulla %s settimana del mese"
86
 
87
+ #: includes/InstallationWalkthrough.class.php:172
88
+ #, php-format
89
+ msgid "%s week of the month"
90
+ msgstr "%s settimana del mese"
91
 
92
+ #: includes/InstallationWalkthrough.class.php:176
93
+ msgid "&mdash"
94
+ msgstr "&mdash"
95
 
96
+ #: includes/Settings.class.php:2381
97
+ msgid "* Date and time of the booking"
98
+ msgstr "* Data e orario della prenotazione"
99
 
100
+ #: includes/Settings.class.php:2379
101
+ msgid "* Name of the user who made the booking"
102
+ msgstr "* Nome dell'utente che effettua la richiesta di prenotazione"
103
 
104
+ #: includes/Settings.class.php:2380
105
+ msgid "* Number of people booked"
106
+ msgstr "* Numero di persone"
107
 
108
+ #: includes/integrations/business-profile.php:191
109
+ msgid "--- Bakery"
110
+ msgstr "--- Panetteria"
 
 
 
 
 
 
111
 
112
+ #: includes/integrations/business-profile.php:192
113
+ msgid "--- Bar or Pub"
114
+ msgstr "--- Bar o Pub"
115
 
116
+ #: includes/integrations/business-profile.php:193
117
+ msgid "--- Brewery"
118
+ msgstr "--- Birreria"
119
+
120
+ #: includes/integrations/business-profile.php:194
121
+ msgid "--- Cafe or Coffee Shop"
122
+ msgstr "--- Caffetteria"
123
+
124
+ #: includes/integrations/business-profile.php:195
125
+ msgid "--- FastFoodRestaurant"
126
+ msgstr "--- FastFood"
127
+
128
+ #: includes/integrations/business-profile.php:196
129
+ msgid "--- Ice Cream Shop"
130
+ msgstr "--- Gelateria"
131
+
132
+ #: includes/integrations/business-profile.php:197
133
+ msgid "--- Restaurant"
134
+ msgstr "--- Ristorantee"
135
+
136
+ #: includes/integrations/business-profile.php:198
137
+ msgid "--- Winery"
138
+ msgstr "--- Enoteca"
139
+
140
+ #: includes/EmailTemplates.class.php:47
141
  msgid ""
142
+ "A clean, simple email template for talking to directly to your customer."
 
143
  msgstr ""
144
+ "Un modello di posta elettronica pulito e semplice aiuta a parlare "
145
+ "direttamente al tuo cliente."
 
146
 
147
+ #: includes/Settings.class.php:2385
148
  msgid ""
149
+ "A link that a guest can use to cancel their booking if cancellations are "
150
+ "enabled"
151
+ msgstr ""
152
+ "Un link che un ospite può utilizzare per annullare la prenotazione quando le "
153
+ "cancellazioni sono abilitate"
154
 
155
+ #: includes/Settings.class.php:2386
156
  msgid ""
157
+ "A link to confirm this booking. Only include this in admin notifications"
 
158
  msgstr ""
159
+ "Link per confermare questa prenotazione. Può essere inclusa solo nelle mail "
160
+ "di notifica all'amministratore"
161
 
162
+ #: includes/Settings.class.php:2387
163
+ msgid "A link to reject this booking. Only include this in admin notifications"
164
+ msgstr ""
165
+ "Link per rifiutare questa prenotazione. Può essere inclusa solo nelle mail "
166
+ "di notifica all'amministratore"
167
 
168
+ #: includes/Settings.class.php:2384
169
+ msgid "A link to the admin panel showing pending bookings"
170
+ msgstr "Link al pannello di gestione delle prenotazioni da confermare"
 
171
 
172
+ #: includes/Settings.class.php:2389
173
+ msgid "A link to this website"
174
+ msgstr "Link al Sito Web"
 
175
 
176
+ #: includes/EmailTemplates.class.php:55
177
+ msgid "A plain template for delivering a direct message."
178
+ msgstr "Un modello semplice per la consegna di un messaggio diretto."
179
 
180
+ #: includes/EmailTemplates.class.php:51
181
+ msgid "A small email template that is great for making a quick impression."
 
 
182
  msgstr ""
183
+ "Un piccolo modello di posta elettronica per fare una grande impressione."
 
 
 
 
184
 
185
+ #: includes/Licenses.class.php:121
186
+ #, php-format
187
  msgid ""
188
+ "Activate license keys for any commercial addons you have purchased. %sView "
189
+ "all addons%s."
 
 
 
 
190
  msgstr ""
191
+ "Attiva le chiavi di licenza per eventuali componenti aggiuntivi acquistati. "
192
+ "%s Visualizza tutti i componenti aggiuntivi%s."
193
 
194
+ #: includes/Editor.class.php:424
195
+ msgid "Add"
196
+ msgstr "Inserisci"
197
 
198
+ #: includes/Settings.class.php:538
199
+ msgid "Add a Message"
200
+ msgstr "Lascia un messaggio"
 
201
 
202
+ #: includes/InstallationWalkthrough.class.php:201
203
+ msgid "Add a Reservations Page"
204
+ msgstr "Aggiungi una pagina di prenotazione"
205
 
206
+ #: restaurant-reservations.php:499 includes/AdminBookings.class.php:170
207
+ msgid "Add Booking"
208
+ msgstr "Inserisci una prenotazione"
 
209
 
210
+ #: includes/Editor.class.php:105 includes/Editor.class.php:374
211
+ #: includes/Editor.class.php:445 includes/Editor.class.php:461
212
+ msgid "Add Field"
213
+ msgstr "Aggiungi campo"
214
 
215
+ #: includes/Editor.class.php:108 includes/Editor.class.php:469
216
+ msgid "Add Fieldset"
217
+ msgstr "Aggiungi Filedset"
218
 
219
+ #: includes/AdminBookings.class.php:92 includes/Editor.class.php:181
220
+ #: includes/CustomPostTypes.class.php:54
221
+ msgid "Add New"
222
+ msgstr "Nuova prenotazione"
223
 
224
+ #: includes/CustomPostTypes.class.php:55
225
+ msgid "Add New Booking"
226
+ msgstr "Aggiungi una nuova prenotazione"
227
 
228
+ #: includes/MultipleLocations.class.php:880
229
+ #: includes/InstallationWalkthrough.class.php:221
230
+ #: includes/Settings.class.php:922
231
+ msgid "Add new scheduling rule"
232
+ msgstr "Aggiungi nuovo filtro"
233
 
234
+ #: includes/Addons.class.php:47
235
+ msgid "Addons for Restaurant Reservations"
236
+ msgstr "Addons per Restaurant Reservations"
237
 
238
+ #: includes/Settings.class.php:1179
239
+ msgid ""
240
+ "Adds a cancellation option to your booking form, so that customers are able "
241
+ "to cancel their reservations."
242
  msgstr ""
243
+ "Aggiunge un'opzione di cancellazione al modulo di prenotazione, in modo che "
244
+ "i clienti siano in grado di annullare le loro prenotazioni."
245
 
246
+ #: includes/Settings.class.php:1373
247
+ #, php-format
248
+ msgid ""
249
+ "Adds Google's reCAPTCHA code to your form, to verify guests before they can "
250
+ "book. Please check %s our documentation %s for more information on how to "
251
+ "configure this feature."
252
+ msgstr ""
253
+ "Aggiunge il codice Recaptcha di Google al tuo modulo, per verificare gli "
254
+ "ospiti prima di poter prenotare. Si prega di controllare %s la nostra "
255
+ "documentazione %s per ulteriori informazioni su come configurare questa "
256
+ "funzione."
257
 
258
+ #: includes/Settings.class.php:1597
259
+ msgid ""
260
+ "Adjust the messages that are emailed to users and admins during the booking "
261
+ "process."
262
+ msgstr ""
263
+ "Configura i messaggi inviati a utenti e amministratori al termine della "
264
+ "richiesta di prenotazione"
265
 
266
+ #: includes/Settings.class.php:1680
267
+ msgid "Admin Booking Cancelled Email"
268
+ msgstr ""
 
269
 
270
+ #: includes/Settings.class.php:1668
271
+ msgid "Admin Booking Cancelled Subject"
272
+ msgstr ""
273
 
274
+ #: includes/Settings.class.php:1574
275
+ msgid "Admin Cancellation Notification"
276
+ msgstr ""
277
 
278
+ #: includes/Settings.class.php:1585
279
+ msgid "Admin Email Address"
280
+ msgstr "Indirizzo Email dell'amministratore"
281
 
282
+ #: includes/Settings.class.php:1563
283
+ msgid "Admin New Confirmed Notification"
284
+ msgstr ""
285
 
286
+ #: includes/Settings.class.php:1552
287
+ msgid "Admin Notification"
288
+ msgstr "Notifica all'amministratore"
289
 
290
+ #: includes/Settings.class.php:1656
291
+ msgid "Admin Notification Email (Auto Confirmed Booking)"
292
+ msgstr ""
293
 
294
+ #: includes/Settings.class.php:1632
295
+ msgid "Admin Notification Email (Pending Booking)"
296
+ msgstr ""
297
 
298
+ #: includes/MultipleLocations.class.php:601
299
+ msgid "Admin Notification Email Address"
300
+ msgstr ""
301
 
302
+ #: includes/Settings.class.php:1644
303
+ msgid "Admin Notification Subject (Auto Confirmed Booking)"
304
+ msgstr ""
 
 
305
 
306
+ #: includes/Settings.class.php:1620
307
+ msgid "Admin Notification Subject (Pending Booking)"
308
+ msgstr ""
 
 
309
 
310
+ #: includes/Settings.class.php:1788
311
+ msgid "Admin Update Subject"
312
+ msgstr "Oggetto della mail di aggiornamenti da parte dell'amministratore"
313
 
314
+ #: includes/Settings.class.php:1803 includes/Settings.class.php:1949
315
+ msgid "Advanced"
316
+ msgstr "Avanzate"
317
 
318
+ #: includes/Settings.class.php:1931
319
+ msgid "Advanced Email Designer"
320
+ msgstr ""
321
 
322
+ #: includes/WP_List_Table.BookingsTable.class.php:354
323
+ #: includes/WP_List_Table.BookingsTable.class.php:431
324
+ msgid "All"
325
+ msgstr "Tutti"
326
 
327
+ #: includes/WP_List_Table.BookingsTable.class.php:432
328
+ #, php-format
329
+ msgid "All <span class=\"count\">(%s)</span>"
330
+ msgid_plural "All <span class=\"count\">(%s)</span>"
331
+ msgstr[0] ""
332
+ msgstr[1] ""
333
 
334
+ #: includes/CustomPostTypes.class.php:62
335
+ msgid "All Bookings"
336
+ msgstr "Tutte le prenotazioni"
337
 
338
+ #: includes/InstallationWalkthrough.class.php:173
339
+ #: includes/InstallationWalkthrough.class.php:362
340
+ msgid "All day"
341
+ msgstr "Tutti i giorni"
342
+
343
+ #: includes/InstallationWalkthrough.class.php:386
344
+ #, php-format
345
+ msgid "All day long. Want to %sset a time slot%s?"
346
  msgstr ""
 
 
347
 
348
+ #: includes/MultipleLocations.class.php:336
349
+ #: includes/WP_List_Table.BookingsTable.class.php:963
350
+ #: includes/WP_List_Table.BookingsTable.class.php:984
351
+ msgid "All Locations"
352
+ msgstr ""
353
 
354
+ #: includes/ExportHandler.class.php:223
355
+ msgid "All locations"
356
+ msgstr ""
357
 
358
+ #: includes/Editor.class.php:234
359
+ msgid ""
360
+ "All of your changes and custom fields will be discarded if you revert to "
361
+ "default. This is not advised unless you want to remove all of your changes "
362
+ "and restore the default booking form."
363
+ msgstr ""
364
 
365
+ #: includes/ExportHandler.class.php:263
366
+ msgid "All upcoming bookings"
367
  msgstr ""
 
368
 
369
+ #: includes/Settings.class.php:1178
370
+ msgid "Allow Cancellations"
371
+ msgstr "Consenti Cancellazioni"
372
 
373
+ #: includes/EmailTemplates.class.php:59
374
  msgid ""
375
+ "An elegant template for sending a message with an air of sophistication."
 
 
376
  msgstr ""
 
 
 
 
377
 
378
+ #: includes/Editor.class.php:703
379
+ msgid "An error occurred while deleting this field."
380
+ msgstr ""
381
+
382
+ #: includes/Editor.class.php:626
383
+ msgid "An error occurred while saving the new field order. Please try again."
384
+ msgstr ""
385
 
386
+ #: includes/Export.PDF.class.php:153
387
  msgid ""
388
+ "An unexpected error occurred and your export request could not be fulfilled."
 
 
389
  msgstr ""
 
 
 
 
390
 
391
+ #: includes/Editor.class.php:549 includes/Editor.class.php:636
392
+ msgid "An unknown error has occurred."
393
+ msgstr ""
394
 
395
+ #: restaurant-reservations.php:501 includes/Editor.class.php:114
396
  msgid ""
397
+ "An unspecified error occurred. Please try again. If the problem persists, "
398
+ "try logging out and logging back in."
399
  msgstr ""
400
+ "Si è verificato un errore imprecisato. Si prega di riprovare. Se il problema "
401
+ "persiste, effettuare il logout ed effettuare nuovamente l'accesso"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
402
 
403
+ #: includes/InstallationWalkthrough.class.php:248
404
+ msgid "Any Size"
405
  msgstr ""
 
 
406
 
407
+ #: includes/Settings.class.php:2059
408
+ msgid "Any size"
409
+ msgstr "Nessun limite"
410
 
411
+ #: includes/InstallationWalkthrough.class.php:257
412
+ msgid "Any Time"
 
 
413
  msgstr ""
 
 
 
 
 
 
414
 
415
+ #: includes/Settings.class.php:1003
 
 
 
 
416
  msgid "Any time"
417
+ msgstr "Qualsiasi momento"
 
 
 
 
 
 
 
 
418
 
419
+ #: includes/WP_List_Table.BookingsTable.class.php:406
420
+ msgid "Apply"
421
+ msgstr "Applica"
422
 
423
+ #: includes/Editor.class.php:113
424
+ msgid ""
425
+ "Are you sure you want to reset the booking form? All of your changes and "
426
+ "custom fields will be removed. This action can not be undone."
427
+ msgstr ""
428
 
429
+ #: includes/Settings.class.php:567
430
+ msgid "Arrived"
431
+ msgstr "Arrivato"
432
 
433
+ #: includes/CustomPostTypes.class.php:201
434
+ #, php-format
435
+ msgid "Arrived <span class=\"count\">(%s)</span>"
436
+ msgid_plural "Arrived <span class=\"count\">(%s)</span>"
437
+ msgstr[0] ""
438
+ msgstr[1] ""
439
 
440
+ #: includes/Blocks.class.php:65
441
+ msgid "Ask the customer to select a location"
442
  msgstr ""
 
 
443
 
444
+ #: includes/InstallationWalkthrough.class.php:272
445
+ #: includes/Settings.class.php:1029
446
+ msgid "At least 1 hour in advance"
447
+ msgstr "Almeno 1 ora prima"
448
 
449
+ #: includes/InstallationWalkthrough.class.php:269
450
+ #: includes/Settings.class.php:1026
451
  msgid "At least 15 minutes in advance"
452
  msgstr "Almeno 15 minuti prima"
453
 
454
+ #: includes/InstallationWalkthrough.class.php:274
455
+ #: includes/Settings.class.php:1031
456
+ msgid "At least 24 hours in advance"
457
+ msgstr "Almeno 24 ore prima"
458
+
459
+ #: includes/InstallationWalkthrough.class.php:270
460
+ #: includes/Settings.class.php:1027
461
  msgid "At least 30 minutes in advance"
462
  msgstr "Almeno 30 minuti prima"
463
 
464
+ #: includes/InstallationWalkthrough.class.php:273
465
+ #: includes/Settings.class.php:1030
466
+ msgid "At least 4 hours in advance"
467
+ msgstr "Almeno 4 ore prima"
468
+
469
+ #: includes/InstallationWalkthrough.class.php:271
470
+ #: includes/Settings.class.php:1028
471
  msgid "At least 45 minutes in advance"
472
  msgstr "Almeno 45 minuti prima"
473
 
474
+ #: includes/Settings.class.php:1933
475
+ msgid "Automatic Booking Confirmation"
476
+ msgstr "Conferma di prenotazione automatica"
 
 
 
 
477
 
478
+ #: includes/MultipleLocations.class.php:574
479
+ msgid "Automatically add the booking form to this page."
480
+ msgstr ""
481
 
482
+ #: includes/Settings.class.php:1164
483
+ msgid "Automatically Confirm Below Party Size"
484
+ msgstr "Conferma automatica per gruppi inferiori a"
485
 
486
+ #: includes/WP_List_Table.BookingsTable.class.php:702
487
+ msgid "Ban"
 
 
488
  msgstr ""
 
 
489
 
490
+ #: includes/AdminBookings.class.php:287
491
+ #, php-format
492
+ msgid "Ban future bookings from the email address %s or the IP address %s?"
493
+ msgstr ""
494
 
495
+ #: includes/Settings.class.php:1341
496
+ msgid "Banned Email Addresses"
497
+ msgstr ""
498
 
499
+ #: includes/Settings.class.php:1352
500
+ msgid "Banned IP Addresses"
501
+ msgstr ""
502
 
503
+ #: includes/Settings.class.php:1098
504
+ msgid "Basic"
505
+ msgstr "Base"
506
 
507
+ #: includes/patterns/modify-booking.php:7
508
+ msgctxt "Block pattern description"
509
+ msgid ""
510
+ "Adds the booking form opened directly to the modify reservation form. (Allow "
511
+ "Cancellations option must be enabled.)"
512
+ msgstr ""
513
 
514
+ #: includes/patterns/view-bookings.php:7
515
+ msgctxt "Block pattern description"
516
+ msgid "Adds the view bookings form."
517
+ msgstr ""
518
 
519
+ #: includes/patterns/booking-form.php:7
520
+ msgctxt "Block pattern description"
521
+ msgid "Adds your restaurant booking form."
522
+ msgstr ""
523
 
524
+ #: includes/Settings.class.php:1032
525
+ msgid "Block same-day bookings"
526
+ msgstr "Blocca le prenotazioni nello stesso giorno"
527
 
528
+ #: includes/InstallationWalkthrough.class.php:275
529
+ msgid "Block same-day-bookings"
530
+ msgstr "Blocca le prenotazioni nello stesso giorno"
531
 
532
+ #: includes/Settings.class.php:521
533
+ msgid "Book a table"
534
+ msgstr "Prenota un tavolo"
535
 
536
+ #: includes/CustomPostTypes.class.php:51
537
+ #: includes/WP_List_Table.BookingsTable.class.php:137
538
+ msgid "Booking"
539
+ msgstr "Prenotazione"
540
 
541
+ #: includes/Settings.class.php:1776
542
+ msgid "Booking Cancelled Email"
 
 
543
  msgstr ""
 
 
 
 
 
 
544
 
545
+ #: includes/Settings.class.php:1764
546
+ msgid "Booking Cancelled Email Subject"
 
 
547
  msgstr ""
 
 
548
 
549
+ #: includes/WP_Widget.BookingFormWidget.class.php:25
550
+ #: includes/Settings.class.php:1260 includes/patterns/booking-form.php:6
551
+ #: includes/integrations/page-builder.php:128
552
+ msgid "Booking Form"
553
+ msgstr "Form di prenotazione"
554
 
555
+ #: includes/MailChimp.class.php:168
556
+ msgid "Booking Form Data"
 
 
557
  msgstr ""
 
 
558
 
559
+ #: includes/Export.CSV.class.php:78
560
+ msgid "Booking ID"
561
+ msgstr "ID Prenotazione"
562
 
563
+ #: restaurant-reservations.php:278
564
+ msgid "Booking Manager"
565
+ msgstr "Gestore delle prenotazioni"
566
 
567
+ #: includes/Settings.class.php:1119
568
+ msgid "Booking Page"
569
+ msgstr "Prenotazioni"
570
 
571
+ #: includes/Settings.class.php:905
572
+ msgid "Booking Schedule"
573
+ msgstr "Filtri prenotazioni"
 
 
 
 
574
 
575
+ #: includes/AdminBookings.class.php:410 includes/Export.CSV.class.php:87
576
+ msgid "Booking Status"
577
+ msgstr "Stato della prenotazione"
578
 
579
+ #: includes/CustomPostTypes.class.php:136
580
+ msgctxt "Booking status for a closed booking"
581
+ msgid "Closed"
582
+ msgstr "Chiuso"
 
 
 
 
 
583
 
584
+ #: includes/CustomPostTypes.class.php:125
585
+ msgctxt "Booking status for a confirmed booking"
586
+ msgid "Confirmed"
587
+ msgstr "Confermato"
588
 
589
+ #: includes/CustomPostTypes.class.php:118
590
+ msgctxt "Booking status when it is pending review"
591
+ msgid "Pending"
592
+ msgstr "In attesa"
593
 
594
+ #: restaurant-reservations.php:424 includes/CustomPostTypes.class.php:50
595
+ #: includes/CustomPostTypes.class.php:52 includes/CustomPostTypes.class.php:53
596
+ #: includes/WP_List_Table.BookingsTable.class.php:138
597
+ msgid "Bookings"
598
+ msgstr "Prenotazioni"
599
 
600
+ #: includes/Settings.class.php:1934
601
+ msgid "Bookings Page for Staff"
 
 
602
  msgstr ""
 
 
603
 
604
+ #: includes/Dashboard.class.php:137
605
+ msgid "Bookings Summary"
 
 
 
 
 
 
606
  msgstr ""
 
 
607
 
608
+ #: includes/Settings.class.php:976
609
+ msgctxt ""
610
+ "Brief default description of a scheduling exception when no times are set"
611
+ msgid "Closed all day"
612
+ msgstr "Chiuso tutto il giorno"
613
 
614
+ #: includes/MultipleLocations.class.php:901 includes/Settings.class.php:944
615
+ msgctxt ""
616
+ "Brief default description of a scheduling rule when a start time is set but "
617
+ "no end time. If the start time is 6pm, it will read: Starts at 6pm"
618
+ msgid "Starts at"
619
  msgstr ""
 
 
620
 
621
+ #: includes/MultipleLocations.class.php:896 includes/Settings.class.php:939
622
+ msgctxt ""
623
+ "Brief default description of a scheduling rule when all the weekdays/weeks "
624
+ "are included in the rule"
625
+ msgid "Every day"
 
 
 
626
  msgstr ""
 
 
627
 
628
+ #: includes/MultipleLocations.class.php:900 includes/Settings.class.php:943
629
+ msgctxt ""
630
+ "Brief default description of a scheduling rule when an end time is set but "
631
+ "no start time. If the end time is 6pm, it will read: Ends at 6pm"
632
+ msgid "Ends at"
 
 
633
  msgstr ""
 
 
634
 
635
+ #: includes/MultipleLocations.class.php:899 includes/Settings.class.php:942
636
+ msgctxt "Brief default description of a scheduling rule when no times are set"
637
+ msgid "All day"
638
+ msgstr "Tutto il giorno"
639
 
640
+ #: includes/MultipleLocations.class.php:895 includes/Settings.class.php:938
641
+ msgctxt ""
642
+ "Brief default description of a scheduling rule when no weekdays or weeks are "
643
+ "included in the rule"
644
+ msgid "Never"
645
  msgstr ""
 
 
646
 
647
+ #: includes/MultipleLocations.class.php:897 includes/Settings.class.php:940
648
+ #, php-format
649
+ msgctxt ""
650
+ "Brief default description of a scheduling rule when some weekdays are "
651
+ "included on only some weeks of the month. %s should be left alone and will "
652
+ "be replaced by a comma-separated list of days and weeks in the following "
653
+ "format: M, T, W on the first, second week of the month"
654
+ msgid "%s on the %s week of the month"
655
+ msgstr ""
656
 
657
+ #: includes/MultipleLocations.class.php:898 includes/Settings.class.php:941
658
+ #, php-format
659
+ msgctxt ""
660
+ "Brief default description of a scheduling rule when some weeks of the month "
661
+ "are included but all or no weekdays are selected. %s should be left alone "
662
+ "and will be replaced by a comma-separated list of weeks in the following "
663
+ "format: First, second week of the month"
664
+ msgid "%s week of the month"
665
  msgstr ""
 
 
666
 
667
+ #: includes/AdminBookings.class.php:173 includes/AdminBookings.class.php:214
668
+ #: includes/AdminBookings.class.php:259 includes/Editor.class.php:448
669
+ #: includes/ExportHandler.class.php:296 includes/Settings.class.php:561
670
+ msgid "Cancel"
671
+ msgstr "Cancella"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
672
 
673
+ #: includes/Settings.class.php:580
674
+ msgid "Cancel booking"
675
+ msgstr "Cancella prenotazione"
676
 
677
+ #: includes/Settings.class.php:1251
678
+ msgid "Cancellation Redirect Page"
679
+ msgstr "Pagina di reindirizzamento prenotazione cancellata"
680
 
681
+ #: includes/Settings.class.php:562
682
+ msgid "Cancelled"
683
+ msgstr "Cancellato"
684
 
685
+ #: includes/CustomPostTypes.class.php:176
686
+ #, php-format
687
+ msgid "Cancelled <span class=\"count\">(%s)</span>"
688
+ msgid_plural "Cancelled <span class=\"count\">(%s)</span>"
689
+ msgstr[0] ""
690
+ msgstr[1] ""
691
 
692
+ #: includes/Settings.class.php:1361
693
+ msgid "Captcha"
694
+ msgstr "Codice sicurezza"
695
 
696
+ #: includes/Settings.class.php:548
697
+ msgid "Card Detail"
698
+ msgstr "Dettagli Carta"
699
 
700
+ #: includes/Settings.class.php:549
701
+ msgid "Card Number"
702
+ msgstr "Numero Carta"
703
 
704
+ #: includes/PaymentGatewayStripe.class.php:601
705
+ msgid "Charge Payment on Hold"
706
+ msgstr "Pagamento in attesa di addebito"
707
 
708
+ #: includes/InstallationWalkthrough.class.php:216
709
  msgid ""
710
+ "Choose what times each week your restaurant is available to book "
711
+ "reservations."
 
 
 
 
 
712
  msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
713
 
714
+ #: includes/Settings.class.php:525 includes/Settings.class.php:528
715
+ msgid "Clear"
716
+ msgstr "Pulisci"
717
 
718
+ #: includes/WP_List_Table.BookingsTable.class.php:409
719
  msgid "Clear Filter"
720
  msgstr "Resetta i filtri"
721
 
722
+ #: includes/AdminBookings.class.php:275 includes/AdminBookings.class.php:301
723
+ #: includes/AdminBookings.class.php:331 includes/AdminBookings.class.php:344
724
+ #: includes/Editor.class.php:481 includes/Settings.class.php:526
725
+ msgid "Close"
726
+ msgstr "Chiudi"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
727
 
728
+ #: includes/CustomPostTypes.class.php:143
729
+ #, php-format
730
+ msgid "Closed <span class=\"count\">(%s)</span>"
731
+ msgid_plural "Closed <span class=\"count\">(%s)</span>"
732
+ msgstr[0] ""
733
+ msgstr[1] ""
734
 
735
+ #: includes/AdminBookings.class.php:130 includes/AdminBookings.class.php:232
736
+ msgid "Columns"
737
+ msgstr "Colonne"
738
 
739
+ #: includes/Settings.class.php:582
740
+ msgid "Confirm this booking"
741
+ msgstr "Conferma questa prenotazione"
742
 
743
+ #: includes/CustomPostTypes.class.php:132
744
+ #, php-format
745
+ msgid "Confirmed <span class=\"count\">(%s)</span>"
746
+ msgid_plural "Confirmed <span class=\"count\">(%s)</span>"
747
+ msgstr[0] ""
748
+ msgstr[1] ""
749
 
750
+ #: includes/Settings.class.php:1217
751
+ msgid "Confirmed Booking Message"
752
+ msgstr "Messaggio di prenotazione confermato"
 
 
753
 
754
+ #: includes/Settings.class.php:1728
755
+ msgid "Confirmed Email"
756
+ msgstr "Corpo mail di conferma"
 
 
757
 
758
+ #: includes/Settings.class.php:1716
759
+ msgid "Confirmed Email Subject"
760
+ msgstr "Oggetto della mail di conferma"
 
 
761
 
762
+ #: includes/Settings.class.php:1240
763
+ msgid "Confirmed Redirect Page"
764
+ msgstr "Pagina di reindirizzamento prenotazione confermata"
 
 
 
765
 
766
+ #: includes/MailChimp.class.php:170
767
+ msgid ""
768
+ "Connect information from the booking request to <a href=\"http://kb."
769
+ "mailchimp.com/article/getting-started-with-merge-tags\" target=\"_blank\">"
770
+ "merge fields</a> in your MailChimp list."
771
+ msgstr ""
772
 
773
+ #: includes/Settings.class.php:1436
774
+ msgid "Consent Statement"
775
+ msgstr ""
776
 
777
+ #: includes/Settings.class.php:534
778
+ msgid "Contact Details"
779
+ msgstr "Dettagli contatto"
780
 
781
+ #: includes/EmailTemplates.class.php:46
782
+ msgid "Conversations"
783
+ msgstr ""
784
 
785
+ #: includes/InstallationWalkthrough.class.php:206
786
+ msgid "Create Page"
787
+ msgstr "Crea Pagina"
788
 
789
+ #: includes/Settings.class.php:2390
790
+ msgid "Current date and time"
791
+ msgstr "Data e ora corrente"
792
 
793
+ #: includes/Settings.class.php:1930
794
+ msgid "Custom Booking Fields"
795
+ msgstr ""
796
 
797
+ #: restaurant-reservations.php:437 includes/Addons.class.php:54
798
+ msgid "Custom Fields"
799
+ msgstr "Campi personalizzati"
800
 
801
+ #: includes/Editor.class.php:134
802
+ msgid "Custom Fields Editor"
 
 
803
  msgstr ""
 
 
804
 
805
+ #: includes/Settings.class.php:550
806
+ msgid "CVC"
807
+ msgstr "CVC"
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
808
 
809
+ #: includes/Notifications.class.php:212
810
+ msgid "Daily Email Summary"
811
+ msgstr ""
 
812
 
813
+ #: includes/Settings.class.php:1486
814
+ msgid "Daily Summary"
815
+ msgstr ""
 
816
 
817
+ #: restaurant-reservations.php:418
818
+ msgid "Dashboard"
819
+ msgstr "Dashboard"
 
820
 
821
+ #: includes/Export.CSV.class.php:197
822
+ msgid "Data Privacy Consent"
823
+ msgstr ""
 
824
 
825
+ #: includes/Dashboard.class.php:142 includes/Export.CSV.class.php:79
826
+ #: includes/Settings.class.php:523
827
+ #: includes/WP_List_Table.BookingsTable.class.php:547
828
+ msgid "Date"
829
+ msgstr "Data"
830
 
831
+ #: includes/Settings.class.php:1271
832
+ msgid "Date Format"
833
+ msgstr "Formato della data"
 
834
 
835
+ #: includes/Settings.class.php:1044
836
+ msgid "Date Pre-selection"
837
+ msgstr "Data preselezionata"
 
838
 
839
+ #: includes/ExportHandler.class.php:239 includes/ExportHandler.class.php:255
840
+ msgid "Date Range"
841
+ msgstr ""
 
842
 
843
+ #: includes/Export.CSV.class.php:86
844
+ msgid "Date the request was made"
845
+ msgstr ""
 
846
 
847
+ #: includes/MailChimp.class.php:94
848
+ msgid "Date/Time of Booking"
849
+ msgstr "Data/Ora della Prenotazione"
 
850
 
851
+ #: includes/InstallationWalkthrough.class.php:337
852
+ msgid "Days of the week"
853
+ msgstr "Giorni della settimana"
 
 
 
 
 
 
854
 
855
+ #: includes/Settings.class.php:484
856
  msgctxt ""
857
  "Default date format for display. Must match formatting rules at http://amsul."
858
+ "ca/pickadate.js/date/#formats"
859
  msgid "mmmm d, yyyy"
860
+ msgstr ""
861
 
862
+ #: includes/Settings.class.php:653
863
  msgctxt ""
864
+ "Default email sent to the admin when a booking request is cancelled. The "
865
+ "tags in {brackets} will be replaced by the appropriate content and should be "
866
+ "left in place. HTML is allowed, but be aware that many email clients do not "
867
+ "handle HTML very well."
868
+ msgid ""
869
+ "A booking request has been cancelled at {site_name}:\n"
870
+ "\n"
871
+ "{user_name}\n"
872
+ "{party} people\n"
873
+ "{date}\n"
874
+ "\n"
875
+ "{bookings_link}\n"
876
+ "\n"
877
+ "&nbsp;\n"
878
+ "\n"
879
+ "<em>This message was sent by {site_link} on {current_time}.</em>"
880
+ msgstr ""
881
+ "Una richiesta di prenotazione è stata annullata su {site_name}:\n"
882
+ "\n"
883
+ "{user_name}\n"
884
+ "{party} people\n"
885
+ "{date}\n"
886
+ "\n"
887
+ "{bookings_link}\n"
888
+ "\n"
889
+ "Questo messaggio è stato inviato da {site_link} il {current_time}."
890
 
891
+ #: includes/Settings.class.php:595
892
  msgctxt ""
893
  "Default email sent to the admin when a new booking request is made. The tags "
894
  "in {brackets} will be replaced by the appropriate content and should be left "
909
  "\n"
910
  "<em>This message was sent by {site_link} on {current_time}.</em>"
911
  msgstr ""
912
+ "Nuova richiesta di prenotazione su {site_name}:\n"
913
  "\n"
914
  "{user_name}\n"
915
  "{party} people\n"
919
  "{confirm_link}\n"
920
  "{close_link}\n"
921
  "\n"
 
922
  "\n"
923
+ "<em>Questo messaggio è stato inviato da {site_link} il {current_time}.</em>"
 
 
 
 
 
 
 
924
 
925
+ #: includes/Settings.class.php:634
926
  msgctxt ""
927
+ "Default email sent to the admin when a new confirmed booking is made. The "
928
+ "tags in {brackets} will be replaced by the appropriate content and should be "
929
+ "left in place. HTML is allowed, but be aware that many email clients do not "
930
+ "handle HTML very well."
931
+ msgid ""
932
+ "A new confirmed booking has been made at {site_name}:\n"
933
+ "\n"
934
+ "{user_name}\n"
935
+ "{party} people\n"
936
+ "{date}\n"
937
+ "\n"
938
+ "{bookings_link}\n"
939
+ "{confirm_link}\n"
940
+ "{close_link}\n"
941
+ "\n"
942
+ "&nbsp;\n"
943
+ "\n"
944
+ "<em>This message was sent by {site_link} on {current_time}.</em>"
945
+ msgstr ""
946
+ "È stata effettuata una nuova prenotazione con conferma automatica su "
947
+ "{site_name}:\n"
948
+ "\n"
949
+ "{user_name}\n"
950
+ "{party} people\n"
951
+ "{date}\n"
952
+ "\n"
953
+ "{bookings_link}\n"
954
+ "{confirm_link}\n"
955
+ "{close_link}\n"
956
+ "\n"
957
+ "Questo messaggio è stato inviato da {site_link} il {current_time}."
958
+
959
+ #: includes/Settings.class.php:758
960
+ msgctxt ""
961
+ "Default email sent to users after their reservation. The tags in {brackets} "
962
+ "will be replaced by the appropriate content and should be left in place. "
963
+ "HTML is allowed, but be aware that many email clients do not handle HTML "
964
+ "very well."
965
+ msgid ""
966
+ "We just wanted to thank you for dining at {site_name} on {date}. Would you "
967
+ "like to book another meal with us? You can do so on our {booking_page_link}."
968
+ msgstr ""
969
+
970
+ #: includes/Settings.class.php:744
971
+ msgctxt ""
972
+ "Default email sent to users as a reminder about their booking request. The "
973
+ "tags in {brackets} will be replaced by the appropriate content and should be "
974
+ "left in place. HTML is allowed, but be aware that many email clients do not "
975
+ "handle HTML very well."
976
+ msgid "Reminder: You have a reservation {date} for {party} at {site_name}"
977
+ msgstr ""
978
+ "Promemoria: hai una prenotazione per il {date} per {party} al {site_name}\n"
979
+ "\n"
980
+ "Se vuoi annullare la tua prenotazione clicca qui {cancel_link}"
981
+
982
+ #: includes/Settings.class.php:708
983
+ msgctxt ""
984
+ "Default email sent to users when their booking request is rejected. The tags "
985
  "in {brackets} will be replaced by the appropriate content and should be left "
986
  "in place. HTML is allowed, but be aware that many email clients do not "
987
  "handle HTML very well."
988
  msgid ""
989
+ "Hi {user_name},\n"
 
 
990
  "\n"
991
+ "Sorry, we could not accomodate your booking request. We're full or not open "
992
+ "at the time you requested:\n"
 
 
993
  "\n"
 
994
  "{user_name}\n"
995
  "{party} people\n"
996
  "{date}\n"
999
  "\n"
1000
  "<em>This message was sent by {site_link} on {current_time}.</em>"
1001
  msgstr ""
1002
+ "Ciao {user_name},\n"
 
 
 
1003
  "\n"
1004
+ "siamo spiacenti, non abbiamo potuto soddisfare la tua richiesta di "
1005
+ "prenotazione. Siamo pieni o non aperti al momento in cui hai richiesto:\n"
 
1006
  "\n"
 
1007
  "{user_name}\n"
1008
  "{party} people\n"
1009
  "{date}\n"
1010
  "\n"
1011
+ "Questo messaggio è stato inviato da {site_link} il {current_time}."
1012
+
1013
+ #: includes/Settings.class.php:751
1014
+ msgctxt ""
1015
+ "Default email sent to users when they are late for their booking request. "
1016
+ "The tags in {brackets} will be replaced by the appropriate content and "
1017
+ "should be left in place. HTML is allowed, but be aware that many email "
1018
+ "clients do not handle HTML very well."
1019
+ msgid "You had a reservation {date} for {party} at {site_name}"
1020
+ msgstr "Hai una prenotazione per il {date} per {party} al {site_name}"
1021
+
1022
+ #: includes/Settings.class.php:725
1023
+ msgctxt ""
1024
+ "Default email sent to users when they cancel their booking. The tags in "
1025
+ "{brackets} will be replaced by the appropriate content and should be left in "
1026
+ "place. HTML is allowed, but be aware that many email clients do not handle "
1027
+ "HTML very well."
1028
+ msgid ""
1029
+ "Hi {user_name},\n"
1030
+ "\n"
1031
+ "Your reservation with the following details has been cancelled:\n"
1032
+ "\n"
1033
+ "{date}\n"
1034
+ "{user_name}\n"
1035
+ "{party} people\n"
1036
+ "\n"
1037
+ "If you were not the one to cancel this booking, please contact us.\n"
1038
+ "\n"
1039
  "&nbsp;\n"
1040
  "\n"
1041
+ "<em>This message was sent by {site_link} on {current_time}.</em>"
1042
+ msgstr ""
1043
+ "Ciao {user_name},\n"
1044
+ "\n"
1045
+ "La tua prenotazione è stata annullata:\n"
1046
+ "\n"
1047
+ "{date}\n"
1048
+ "{user_name}\n"
1049
+ "{party} people\n"
1050
+ "\n"
1051
+ "Se non sei stato tu ad annullare questa prenotazione, ti preghiamo di "
1052
+ "contattarci.\n"
1053
+ "\n"
1054
+ "Questo messaggio è stato inviato da {site_link} il {current_time}."
1055
 
1056
+ #: includes/Settings.class.php:690
1057
  msgctxt ""
1058
  "Default email sent to users when they make a new booking request. The tags "
1059
  "in {brackets} will be replaced by the appropriate content and should be left "
1080
  "\n"
1081
  "Ti aspettiamo, a presto\n"
1082
  "\n"
1083
+ "La tua prenotazione:\n"
1084
  "{user_name}\n"
1085
  "{party} people\n"
1086
  "{date}\n"
1087
  "\n"
1088
+ "Questo messaggio è stato inviato da {site_link} il {current_time}."
 
 
1089
 
1090
+ #: includes/Settings.class.php:614 includes/Settings.class.php:670
1091
  msgctxt ""
1092
  "Default email sent to users when they make a new booking request. The tags "
1093
  "in {brackets} will be replaced by the appropriate content and should be left "
1094
  "in place. HTML is allowed, but be aware that many email clients do not "
1095
  "handle HTML very well."
1096
  msgid ""
1097
+ "Thanks {user_name},\n"
1098
  "\n"
1099
+ "Your booking request is <strong>waiting to be confirmed</strong>.\n"
1100
+ "\n"
1101
+ "Give us a few moments to make sure that we've got space for you. You will "
1102
+ "receive another email from us soon. If this request was made outside of our "
1103
+ "normal working hours, we may not be able to confirm it until we're open "
1104
+ "again.\n"
1105
  "\n"
1106
+ "<strong>Your request details:</strong>\n"
1107
  "{user_name}\n"
1108
  "{party} people\n"
1109
  "{date}\n"
1112
  "\n"
1113
  "<em>This message was sent by {site_link} on {current_time}.</em>"
1114
  msgstr ""
1115
+ "Grazie {user_name},\n"
1116
+ "\n"
1117
+ "La tua richiesta di prenotazione è in attesa di essere confermata.\n"
1118
  "\n"
1119
+ "Stiamo verificando la disponibilità. Riceverai presto una mail di conferma. "
1120
+ "Se questa richiesta è stata effettuata al di fuori del nostro orario "
1121
+ "lavorativo, risponderemo non appena possibile.\n"
1122
  "\n"
1123
+ "<strong>Dettagli della prenotazione:</strong>\n"
1124
  "{user_name}\n"
1125
  "{party} people\n"
1126
  "{date}\n"
1127
  "\n"
1128
+ "Questo messaggio è stato inviato da {site_link} il {current_time}."
1129
+
1130
+ #: includes/Settings.class.php:652
1131
+ msgctxt "Default email subject for admin notifications of cancelled bookings"
1132
+ msgid "Booking Request Cancelled"
1133
+ msgstr "Richiesta di prenotazione cancellata"
1134
+
1135
+ #: includes/Settings.class.php:594
1136
+ msgctxt "Default email subject for admin notifications of new bookings"
1137
+ msgid "New Booking Request"
1138
+ msgstr "Nuova richiesta di prenotazione"
1139
+
1140
+ #: includes/Settings.class.php:633
1141
+ msgctxt ""
1142
+ "Default email subject for admin notifications when a new confirmed booking "
1143
+ "is made"
1144
+ msgid "New Confirmed Booking Request"
1145
+ msgstr "Nuova richiesta di prenotazione confermata"
1146
+
1147
+ #: includes/Settings.class.php:724
1148
+ #, php-format
1149
+ msgctxt ""
1150
+ "Default email subject sent to user after they cancel their booking. %s will "
1151
+ "be replaced by the website name"
1152
+ msgid "Your reservation at %s was cancelled"
1153
+ msgstr "La tua prenotazione al %s è stata annullata"
1154
 
1155
+ #: includes/Settings.class.php:743
1156
+ #, php-format
1157
+ msgctxt ""
1158
+ "Default email subject sent to user as a reminder about for their booking. %s "
1159
+ "will be replaced by the website name"
1160
+ msgid "Reminder: Your reservation at %s"
1161
+ msgstr "Promemoria: la tua prenotazione al %s"
1162
+
1163
+ #: includes/Settings.class.php:689
1164
+ #, php-format
1165
  msgctxt ""
1166
  "Default email subject sent to user when their booking is confirmed. %s will "
1167
  "be replaced by the website name"
1168
  msgid "Your booking at %s is confirmed"
1169
+ msgstr "La tua prenotazione al %s è confermata"
1170
 
1171
+ #: includes/Settings.class.php:707
1172
+ #, php-format
1173
  msgctxt ""
1174
  "Default email subject sent to user when their booking is rejected. %s will "
1175
  "be replaced by the website name"
1176
  msgid "Your booking at %s was not accepted"
1177
+ msgstr "La tua richiesta di prenotazione a %s non è stata accettata"
1178
+
1179
+ #: includes/Settings.class.php:757
1180
+ #, php-format
1181
+ msgctxt ""
1182
+ "Default email subject sent to user when they are late for their booking. %s "
1183
+ "will be replaced by the website name"
1184
+ msgid "Thanks for dining at %s"
1185
+ msgstr ""
1186
+
1187
+ #: includes/Settings.class.php:750
1188
+ #, php-format
1189
+ msgctxt ""
1190
+ "Default email subject sent to user when they are late for their booking. %s "
1191
+ "will be replaced by the website name"
1192
+ msgid "You're late for your booking at %s"
1193
+ msgstr "Sei in ritardo per la tua prenotazione al %s"
1194
+
1195
+ #: includes/Settings.class.php:613 includes/Settings.class.php:669
1196
+ #, php-format
1197
+ msgctxt ""
1198
+ "Default email subject sent to user when they request a booking. %s will be "
1199
+ "replaced by the website name"
1200
+ msgid "Your booking at %s is pending"
1201
+ msgstr "La tua richiesta di prenotazione al %s è in attesa di convalida"
1202
 
1203
+ #: includes/Settings.class.php:764
1204
+ #, php-format
1205
  msgctxt ""
1206
  "Default email subject sent to users when the admin sends a custom notice "
1207
  "email from the bookings panel."
1208
  msgid "Update regarding your booking at %s"
1209
+ msgstr "Aggiornamento della prenotazione al %s"
1210
 
1211
+ #: includes/Settings.class.php:485
1212
+ msgctxt ""
1213
+ "Default time format for display. Must match formatting rules at http://amsul."
1214
+ "ca/pickadate.js/time/#formats"
1215
+ msgid "h:i A"
1216
+ msgstr ""
 
 
 
1217
 
1218
+ #: includes/Settings.class.php:1272
1219
+ msgid ""
1220
+ "Define how the date is formatted on the booking form. %sFormatting rules%s. "
1221
+ "This only changes the format on the booking form. To change the date format "
1222
+ "in notification messages, modify your general %sWordPress Settings%s."
1223
+ msgstr ""
1224
+ "Impostare la formattazione delle data per il form di prenotazione. "
1225
+ "%sFormatting rules%s. Questa cambierà solo la formattazione nel form di "
1226
+ "prenotazione. Per cambiare il formato nei messaggi di notifica, modificare "
1227
+ "le impostazioni generali su %sWordPress Settings%s"
1228
 
1229
+ #: includes/Settings.class.php:1284
1230
+ msgid ""
1231
+ "Define how the time is formatted on the booking form. %sFormatting rules%s. "
1232
+ "This only changes the format on the booking form. To change the time format "
1233
+ "in notification messages, modify your general %sWordPress Settings%s."
1234
+ msgstr ""
1235
+ "Impostare la formattazione dell'orario per il form di prenotazione. "
1236
+ "%sFormatting rules%s. Questo cambierà solo la formattazione nel form di "
1237
+ "prenotazione. Per cambiare il formato nei messaggi di notifica, modificare "
1238
+ "le impostazioni generali su %sWordPress Settings%s"
1239
 
1240
+ #: includes/MultipleLocations.class.php:941 includes/Settings.class.php:984
1241
+ msgid ""
1242
+ "Define special opening hours for holidays, events or other needs. Leave the "
1243
+ "time empty if you're closed all day."
1244
+ msgstr ""
1245
+ "Impostare orari di apertura eccezionale per giorni festivi o eventi speciali."
1246
+ " Lasciare il campo vuoto se il ristorante è chiuso tutto il giorno"
1247
 
1248
+ #: includes/MultipleLocations.class.php:914 includes/Settings.class.php:957
1249
+ msgid "Define the weekly schedule during which you accept bookings."
1250
+ msgstr ""
1251
+ "Definire l'intervallo settimanale durante il quale vengono accettate "
1252
+ "prenotazioni"
1253
 
1254
+ #: includes/WP_List_Table.BookingsTable.class.php:768
1255
+ msgid "Delete"
1256
+ msgstr "Cancella"
 
1257
 
1258
+ #: includes/MultipleLocations.class.php:893 includes/Settings.class.php:936
1259
+ msgctxt "Delete a scheduling rule"
1260
+ msgid "Delete rule"
1261
+ msgstr ""
1262
 
1263
+ #: includes/AdminBookings.class.php:319
1264
+ #, php-format
1265
+ msgid ""
1266
+ "Delete all booking records related to email address %s? This action can not "
1267
+ "be undone."
1268
+ msgstr ""
1269
+ "Elimina tutte le prenotazione relativi all'indirizzo e-mail %s? Questa "
1270
+ "azione non può essere annullata."
1271
 
1272
+ #: includes/WP_List_Table.BookingsTable.class.php:705
1273
+ msgid "Delete Customer"
1274
+ msgstr "Cancela Cliente"
 
1275
 
1276
+ #: includes/Editor.class.php:291
1277
+ msgid "Delete field"
1278
+ msgstr "Cancella campo"
 
 
1279
 
1280
+ #: includes/Settings.class.php:1466
1281
+ msgid "Delete Reservation Data Days"
1282
+ msgstr ""
 
1283
 
1284
+ #: includes/InstallationWalkthrough.class.php:408
 
1285
  msgid "Delete rule"
1286
+ msgstr ""
1287
 
1288
+ #: includes/MultipleLocations.class.php:894
1289
+ #: includes/InstallationWalkthrough.class.php:411
1290
+ #: includes/Settings.class.php:937
1291
+ msgid "Delete scheduling rule"
1292
+ msgstr "Elimina filtro"
 
1293
 
1294
+ #: includes/Export.CSV.class.php:267 includes/Settings.class.php:563
1295
+ #: includes/WP_List_Table.BookingsTable.class.php:556
1296
+ msgid "Deposit"
1297
+ msgstr "Deposito"
 
 
1298
 
1299
+ #: includes/Settings.class.php:546
1300
+ msgid "Deposit Required: "
1301
+ msgstr "Deposito richiesto:"
 
 
 
 
 
1302
 
1303
+ #: includes/Notifications.class.php:154 includes/Settings.class.php:575
1304
+ #: includes/Settings.class.php:797
1305
+ #: includes/WP_List_Table.BookingsTable.class.php:560
1306
+ msgid "Details"
1307
+ msgstr "Dettagli"
 
 
 
1308
 
1309
+ #: includes/Settings.class.php:1414
1310
+ msgid "Disable IP Capture"
1311
+ msgstr ""
 
1312
 
1313
+ #: includes/Editor.class.php:188
1314
+ msgid "Disabled Fields"
1315
+ msgstr ""
 
 
 
1316
 
1317
+ #: includes/WP_Widget.BookingFormWidget.class.php:26
1318
+ msgid "Display a form to accept bookings."
1319
+ msgstr "Visualizza un form per accettare le prenotazioni"
 
 
 
1320
 
1321
+ #: includes/Settings.class.php:1295
1322
+ msgid "Display Unavailable Time Slots"
1323
+ msgstr "Visualizza le fasce orarie non disponibili"
 
1324
 
1325
+ #: includes/Settings.class.php:1190
1326
+ msgid "Don't accept booking requests without a phone number."
1327
+ msgstr "Non accettare prenotazioni senza numero di telefono"
 
1328
 
1329
+ #: includes/Settings.class.php:999
1330
+ msgid "Early Bookings"
1331
+ msgstr "Prenotazioni"
 
1332
 
1333
+ #: includes/InstallationWalkthrough.class.php:255
1334
+ msgid "Early Bookings:"
1335
+ msgstr "Prenotazioni anticipate:"
 
1336
 
1337
+ #: includes/Addons.class.php:73
1338
+ msgid ""
1339
+ "Easily print your bookings in a PDF or export them to an Excel/CSV file so "
1340
+ "you can analyze patterns, cull customer data and import bookings into other "
1341
+ "services."
1342
+ msgstr ""
1343
 
1344
+ #: includes/WP_List_Table.BookingsTable.class.php:607
1345
+ msgid "Edit"
1346
+ msgstr "Edita"
 
1347
 
1348
+ #: restaurant-reservations.php:500 includes/CustomPostTypes.class.php:56
1349
+ msgid "Edit Booking"
1350
+ msgstr "Modifica la prenotazione"
 
1351
 
1352
+ #: includes/Editor.class.php:106
1353
+ msgid "Edit Field"
1354
+ msgstr "Modifica Campo"
 
1355
 
1356
+ #: includes/Editor.class.php:287
1357
+ msgid "Edit field"
1358
+ msgstr "Modifica campo"
 
 
1359
 
1360
+ #: includes/Editor.class.php:277
1361
+ msgid "Edit title"
1362
+ msgstr "Modifica titolo"
 
 
 
 
1363
 
1364
+ #: includes/Notifications.class.php:150 includes/MailChimp.class.php:172
1365
+ #: includes/Export.CSV.class.php:83 includes/Settings.class.php:536
1366
+ #: includes/Settings.class.php:571 includes/Settings.class.php:793
1367
+ #: includes/WP_List_Table.BookingsTable.class.php:551
1368
+ msgid "Email"
1369
+ msgstr "Email"
1370
 
1371
+ #: includes/ReviewAsk.class.php:59
1372
+ msgid "Email Address"
1373
+ msgstr "Indirizzo Email"
1374
+
1375
+ #: includes/Settings.class.php:2378
1376
+ msgid "Email of the user who made the booking"
1377
+ msgstr "Email dell'utente che effettua la richiesta di prenotazione"
1378
+
1379
+ #: includes/Settings.class.php:1936
1380
+ msgid "Email Support"
1381
+ msgstr "Email Supporto"
1382
+
1383
+ #: includes/Addons.class.php:86
1384
+ #, fuzzy
1385
+ #| msgid "No Email Template"
1386
+ msgid "Email Templates"
1387
+ msgstr "Nessun modello di posta elettronica"
1388
+
1389
+ #: includes/Settings.class.php:558
1390
+ msgid "Email:"
1391
+ msgstr "Email:"
1392
+
1393
+ #: includes/Editor.class.php:282
1394
+ msgid "Enable field"
1395
+ msgstr "Abilita campo"
1396
+
1397
+ #: includes/Settings.class.php:1372
1398
+ msgid "Enable Google reCAPTCHA v2"
1399
+ msgstr "Abilita Google reCAPTCHA v2"
1400
+
1401
+ #: includes/InstallationWalkthrough.class.php:378
1402
+ #: includes/ExportHandler.class.php:274
1403
+ msgid "End"
1404
+ msgstr "Fine"
1405
+
1406
+ #: includes/WP_List_Table.BookingsTable.class.php:402
1407
+ msgid "End Date"
1408
+ msgstr "Data fine:"
1409
+
1410
+ #: includes/WP_List_Table.BookingsTable.class.php:401
1411
+ msgid "End Date:"
1412
+ msgstr "Data fine:"
1413
+
1414
+ #: includes/WP_List_Table.BookingsTable.class.php:403
1415
+ msgid "End Time"
1416
+ msgstr ""
1417
+
1418
+ #: includes/InstallationWalkthrough.class.php:174
1419
+ msgid "Ends at"
1420
+ msgstr ""
1421
+
1422
+ #: includes/Settings.class.php:1729
1423
+ msgid ""
1424
+ "Enter the email a user should receive when their booking has been confirmed."
1425
+ msgstr ""
1426
+ "Inserire la mail che l'utente dovrebbe ricevere quando la prenotazione viene "
1427
+ "confermata"
1428
+
1429
+ #: includes/Settings.class.php:1753
1430
+ msgid ""
1431
+ "Enter the email a user should receive when their booking has been rejected."
1432
+ msgstr ""
1433
+ "Inserire la mail che l'utente dovrebbe ricevere quando la prenotazione viene "
1434
+ "rifiutata"
1435
+
1436
+ #: includes/Settings.class.php:1777
1437
+ msgid "Enter the email a user should receive when they cancel their booking."
1438
+ msgstr ""
1439
+ "Inserisci l'e-mail che un utente dovrebbe ricevere quando annulla la "
1440
+ "prenotazione."
1441
+
1442
+ #: includes/Settings.class.php:1705
1443
+ msgid ""
1444
+ "Enter the email a user should receive when they make an initial booking "
1445
+ "request."
1446
+ msgstr ""
1447
+ "Inserire la mail che l'utente dovrebbe ricevere quando viene fatta una prima "
1448
+ "richiesta di prenotazione"
1449
+
1450
+ #: includes/Settings.class.php:1681
1451
+ msgid "Enter the email an admin should receive when a booking is cancelled."
1452
+ msgstr ""
1453
+ "Inserisci l'e-mail che un amministratore dovrebbe ricevere quando una "
1454
+ "prenotazione viene annullata."
1455
+
1456
+ #: includes/Settings.class.php:1657
1457
+ msgid ""
1458
+ "Enter the email an admin should receive when an automatically-confirmed "
1459
+ "booking is made."
1460
+ msgstr ""
1461
+ "Inserisci l'e-mail di un amministratore che deve ricevere le prenotazioni "
1462
+ "confermate automaticamente."
1463
+
1464
+ #: includes/Settings.class.php:1633
1465
+ msgid ""
1466
+ "Enter the email an admin should receive when an initial booking request is "
1467
+ "made."
1468
+ msgstr ""
1469
+ "Inserire la mail che l'amministratore dovrebbe ricevere quando viene fatta "
1470
+ "una prima richiesta di prenotazione"
1471
+
1472
+ #: includes/Settings.class.php:1218
1473
+ msgid ""
1474
+ "Enter the message to display when a booking is made that has been "
1475
+ "automatically confirmed."
1476
+ msgstr ""
1477
+ "Inserisci il messaggio da visualizzare quando viene effettuata una "
1478
+ "prenotazione con conferma automatica."
1479
+
1480
+ #: includes/Settings.class.php:1206
1481
+ msgid ""
1482
+ "Enter the message to display when a booking request is made and is set to "
1483
+ "pending confirmation."
1484
+ msgstr ""
1485
+ "Insersci il messaggio da visualizzare quando viene effettuata una richiesta "
1486
+ "di prenotazione impostata su conferma in sospeso."
1487
+
1488
+ #: includes/Settings.class.php:1437
1489
+ msgid ""
1490
+ "Enter the statement you would like customers to confirm when making a "
1491
+ "booking."
1492
+ msgstr ""
1493
+
1494
+ #: includes/InstallationWalkthrough.class.php:283
1495
+ #: includes/Settings.class.php:1071
1496
+ msgid "Every 10 minutes"
1497
+ msgstr "Ogni 10 minuti"
1498
+
1499
+ #: includes/Settings.class.php:1066
1500
+ msgid "Every 120 minutes"
1501
+ msgstr "Ogni 120 minuti"
1502
+
1503
+ #: includes/InstallationWalkthrough.class.php:282
1504
+ #: includes/Settings.class.php:1070
1505
+ msgid "Every 15 minutes"
1506
+ msgstr "Ogni 15 minuti"
1507
+
1508
+ #: includes/Settings.class.php:1065
1509
+ msgid "Every 180 minutes"
1510
+ msgstr "Ogni 180 minuti"
1511
+
1512
+ #: includes/InstallationWalkthrough.class.php:281
1513
+ #: includes/Settings.class.php:1069
1514
+ msgid "Every 30 minutes"
1515
+ msgstr "Ogni 30 minuti"
1516
+
1517
+ #: includes/InstallationWalkthrough.class.php:284
1518
+ #: includes/Settings.class.php:1072
1519
+ msgid "Every 5 minutes"
1520
+ msgstr "Ogni 5 minuti"
1521
+
1522
+ #: includes/Settings.class.php:1068
1523
+ msgid "Every 60 minutes"
1524
+ msgstr "Ogni 60 minuti"
1525
+
1526
+ #: includes/Settings.class.php:1067
1527
+ msgid "Every 90 minutes"
1528
+ msgstr "Ogni 90 minuti"
1529
+
1530
+ #: includes/InstallationWalkthrough.class.php:170
1531
+ msgid "Every day"
1532
+ msgstr "Ogni giorno"
1533
+
1534
+ #: includes/ExportHandler.class.php:96
1535
+ msgid "Excel/CSV"
1536
+ msgstr "Excel/CSV"
1537
+
1538
+ #: includes/MultipleLocations.class.php:940 includes/Settings.class.php:983
1539
+ msgid "Exceptions"
1540
+ msgstr "Eccezioni"
1541
+
1542
+ #: includes/Settings.class.php:551
1543
+ msgid "Expiration (MM/YYYY)"
1544
+ msgstr "Scadenza (MM/YYYY)"
1545
+
1546
+ #: includes/ExportHandler.class.php:293 includes/Settings.class.php:1843
1547
+ #: includes/Settings.class.php:2000
1548
+ msgid "Export"
1549
+ msgstr "Esporta"
1550
+
1551
+ #: includes/Addons.class.php:70 includes/ExportHandler.class.php:172
1552
+ #: includes/ExportHandler.class.php:199 includes/Settings.class.php:1935
1553
+ msgid "Export Bookings"
1554
+ msgstr "Esporta Prenotazioni"
1555
+
1556
+ #: includes/Import.class.php:213
1557
+ msgid "Failed to write file to disk"
1558
+ msgstr "La scrittura su disco non è andata a buon fine"
1559
+
1560
+ #: includes/Editor.class.php:379
1561
+ msgid "Field Type"
1562
+ msgstr "Tipo di campo"
1563
+
1564
+ #: includes/Import.class.php:230
1565
+ msgid "File must be .csv, .xls or .xlsx"
1566
+ msgstr "I file deve essere .csv, .xls or .xlsx"
1567
+
1568
+ #: includes/Import.class.php:216
1569
+ msgid "File upload stopped by extension"
1570
+ msgstr ""
1571
+
1572
+ #: includes/Settings.class.php:559
1573
+ msgid "Find Reservations"
1574
+ msgstr "Trova Prenotazioni"
1575
+
1576
+ #: includes/InstallationWalkthrough.class.php:290
1577
+ msgid "Finish"
1578
+ msgstr ""
1579
+
1580
+ #: includes/integrations/page-builder.php:97
1581
+ msgid "Five Star Plugins"
1582
+ msgstr ""
1583
+
1584
+ #: includes/Blocks.class.php:93 includes/Patterns.class.php:53
1585
+ msgid "Five Star Restaurant Reservations"
1586
+ msgstr ""
1587
+
1588
+ #. Name of the plugin
1589
+ msgid "Five Star Restaurant Reservations - WordPress Booking Plugin"
1590
+ msgstr ""
1591
 
1592
+ #: includes/PaymentGatewayStripe.class.php:641
1593
+ #: includes/PaymentGatewayStripe.class.php:648
1594
+ #, php-format
1595
+ msgid "Five Star RTB: Stripe Payment capture failed. Reason: %s"
1596
+ msgstr ""
1597
+
1598
+ #: includes/InstallationWalkthrough.class.php:48
1599
+ #: includes/InstallationWalkthrough.class.php:49
1600
+ msgid "Five-Star Restaurant Reservations - Welcome!"
1601
+ msgstr ""
1602
+
1603
+ #. Author of the plugin
1604
+ msgid "FiveStarPlugins"
1605
+ msgstr ""
1606
+
1607
+ #: includes/integrations/business-profile.php:291
1608
+ msgid "Footer Contact Details"
1609
+ msgstr ""
1610
+
1611
+ #: includes/MultipleLocations.class.php:883 includes/Settings.class.php:925
1612
+ msgctxt "Format of a scheduling rule"
1613
+ msgid "Date"
1614
+ msgstr "Data"
1615
+
1616
+ #: includes/Settings.class.php:926
1617
+ msgctxt "Format of a scheduling rule"
1618
+ msgid "Date Range"
1619
+ msgstr "Range di date"
1620
+
1621
+ #: includes/MultipleLocations.class.php:882 includes/Settings.class.php:924
1622
+ msgctxt "Format of a scheduling rule"
1623
+ msgid "Monthly"
1624
+ msgstr "Mensile"
1625
+
1626
+ #: includes/MultipleLocations.class.php:881 includes/Settings.class.php:923
1627
+ msgctxt "Format of a scheduling rule"
1628
+ msgid "Weekly"
1629
+ msgstr "Settimanale"
1630
+
1631
+ #: includes/MultipleLocations.class.php:920 includes/Settings.class.php:963
1632
+ msgctxt "Friday abbreviation"
1633
+ msgid "Fr"
1634
+ msgstr ""
1635
+
1636
+ #: includes/InstallationWalkthrough.class.php:258
1637
+ #: includes/Settings.class.php:1004
1638
+ #| msgid "Up to 1 day in advance"
1639
+ msgid "From 1 day in advance"
1640
+ msgstr "Fino a 1 giorno prima"
1641
+
1642
+ #: includes/InstallationWalkthrough.class.php:259
1643
+ #: includes/Settings.class.php:1005
1644
+ #| msgid "Up to 1 week in advance"
1645
+ msgid "From 1 week in advance"
1646
+ msgstr "Fino a 1 settimana prima"
1647
+
1648
+ #: includes/InstallationWalkthrough.class.php:260
1649
+ #: includes/Settings.class.php:1006
1650
+ #| msgid "Up to 2 weeks in advance"
1651
+ msgid "From 2 weeks in advance"
1652
+ msgstr "Fino a 2 settimane prima"
1653
+
1654
+ #: includes/InstallationWalkthrough.class.php:261
1655
+ #: includes/Settings.class.php:1007
1656
+ #| msgid "Up to 30 days in advance"
1657
+ msgid "From 30 days in advance"
1658
+ msgstr "Fino a 30 giorni prima"
1659
+
1660
+ #: includes/Settings.class.php:1008
1661
+ msgid "From 60 days in advance"
1662
+ msgstr "Fino a 60 giorni prima"
1663
+
1664
+ #: includes/InstallationWalkthrough.class.php:262
1665
+ #: includes/Settings.class.php:1009
1666
+ #| msgid "Up to 90 days in advance"
1667
+ msgid "From 90 days in advance"
1668
+ msgstr "Fino a 90 giorni prima"
1669
+
1670
+ #: includes/Settings.class.php:1108 includes/Settings.class.php:1517
1671
+ msgid "General"
1672
+ msgstr "Generale"
1673
+
1674
+ #: includes/MultipleLocations.class.php:837
1675
+ #: includes/integrations/page-builder.php:214
1676
+ #: includes/integrations/page-builder.php:350
1677
+ msgid "Global"
1678
+ msgstr "Globale"
1679
+
1680
+ #: includes/Settings.class.php:1394
1681
+ msgid "Google Secret Key"
1682
+ msgstr "Google Secret Key"
1683
+
1684
+ #: includes/Settings.class.php:1383
1685
+ msgid "Google Site Key"
1686
+ msgstr "Google Site Key"
1687
+
1688
+ #: includes/Settings.class.php:564
1689
+ msgid "guest"
1690
+ msgstr "Ospite"
1691
+
1692
+ #: includes/Settings.class.php:565
1693
+ msgid "guests"
1694
+ msgstr "ospiti"
1695
+
1696
+ #: includes/PaymentGatewayStripe.class.php:587
1697
+ msgid "Held Payment Captured"
1698
+ msgstr ""
1699
+
1700
+ #: restaurant-reservations.php:587
1701
+ msgid "Help"
1702
+ msgstr "Aiuto"
1703
+
1704
+ #: includes/PaymentGatewayStripe.class.php:19
1705
+ msgid "Hold Captured"
1706
+ msgstr ""
1707
+
1708
+ #: includes/PaymentGatewayStripe.class.php:18
1709
+ msgid "Hold Placed"
1710
+ msgstr ""
1711
+
1712
+ #: includes/MultipleLocations.class.php:1016
1713
+ msgid ""
1714
+ "How many people, if enabled, should be allowed to be present at this "
1715
+ "restaurant location at the same time? Set dining block length to change how "
1716
+ "long a meal typically lasts. May not work correctly if max reservations is "
1717
+ "set."
1718
+ msgstr ""
1719
+
1720
+ #: includes/MultipleLocations.class.php:1002
1721
+ msgid ""
1722
+ "How many reservations, if enabled, should be allowed at the same time at "
1723
+ "this location? Set dining block length to change how long a meal typically "
1724
+ "lasts."
1725
+ msgstr ""
1726
+
1727
+ #. URI of the plugin
1728
+ msgid ""
1729
+ "http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/"
1730
+ msgstr ""
1731
+
1732
+ #. Author URI of the plugin
1733
+ msgid "https://profiles.wordpress.org/fivestarplugins/"
1734
+ msgstr ""
1735
+
1736
+ #: includes/DeactivationSurvey.class.php:43
1737
+ msgid "I couldn't get the plugin to work"
1738
+ msgstr ""
1739
+
1740
+ #| msgid "I have read and accepted the "
1741
+ msgid "I have read and accepted the"
1742
+ msgstr "Dichiaro di aver letto e accettato la"
1743
+
1744
+ #: includes/DeactivationSurvey.class.php:36
1745
+ msgid "I no longer need the plugin"
1746
+ msgstr ""
1747
+
1748
+ #: includes/DeactivationSurvey.class.php:39
1749
+ msgid "I'm switching to a different plugin"
1750
+ msgstr ""
1751
+
1752
+ #: includes/WP_List_Table.BookingsTable.class.php:548
1753
+ msgid "ID"
1754
+ msgstr "ID"
1755
+
1756
+ #: includes/DeactivationSurvey.class.php:59
1757
+ msgid ""
1758
+ "If you have a moment, please share why you are deactivating Five-Star "
1759
+ "Restaurant Reservations:"
1760
+ msgstr ""
1761
+
1762
+ #: includes/EmailTemplates.class.php:50
1763
+ msgid "Impressions"
1764
+ msgstr "Impressions"
1765
+
1766
+ #: includes/WP_List_Table.BookingsTable.class.php:1034
1767
+ #, php-format
1768
  msgctxt ""
1769
  "Indicates which booking status is currently being filtered in the list of "
1770
  "bookings."
1771
  msgid "You're viewing bookings that have been marked as %s."
1772
  msgstr ""
 
1773
 
1774
+ #: includes/Settings.class.php:1241
1775
+ msgid ""
1776
+ "Input the URL of the page you want the booking form to redirect to after a "
1777
+ "reservation is made that is automatically confirmed. This overrides the "
1778
+ "\"Confirmed Booking Message\" text/option."
1779
+ msgstr ""
1780
+ "Inserisci l'URL della pagina a cui si desidera reindirizzare il modulo di "
1781
+ "prenotazione dopo una prenotazione confermata automaticamente. Ciò "
1782
+ "sovrascrive il testo/opzione di \"Messaggio di prenotazione confermato\"."
1783
+
1784
+ #: includes/Settings.class.php:1230
1785
+ msgid ""
1786
+ "Input the URL of the page you want the booking form to redirect to after a "
1787
+ "reservation is made that is set to pending. This overrides the \"Pending "
1788
+ "Confirmation Message\" text/option."
1789
+ msgstr ""
1790
+ "Inserisci l'URL della pagina a cui si desidera reindirizzare il modulo di "
1791
+ "prenotazione quando c'è una prenotazione in sospeso. Ciò sovrascrive il "
1792
+ "testo/opzione di \"Messaggio di conferma in sospeso\"."
1793
+
1794
+ #: includes/Settings.class.php:1252
1795
+ msgid ""
1796
+ "Input the URL of the page you want the cancellation form to redirect to when "
1797
+ "someone cancels their reservation. Only applicable if the \"Allow "
1798
+ "Cancellations\" option above is enabled. If left blank, it will display a "
1799
+ "success message instead of redirecting."
1800
+ msgstr ""
1801
+ "Inserisci l'URL della pagina a cui vuoi che il modulo di cancellazione venga "
1802
+ "reindirizzato quando qualcuno annulla la prenotazione. Applicabile solo se "
1803
+ "l'opzione \"Consenti cancellazioni\" di cui sopra è abilitata. Se lasciato "
1804
+ "vuoto, verrà visualizzato un messaggio di successo invece di reindirizzare."
1805
+
1806
+ #: includes/Editor.class.php:530
1807
+ msgid ""
1808
+ "Internal data that was supposed to be passed with your request was not "
1809
+ "received."
1810
+ msgstr ""
1811
+
1812
+ #: includes/AdminPageSettingLicenseKey.class.php:193
1813
+ msgid "Invalid"
1814
+ msgstr "Non valido"
1815
+
1816
+ #: includes/PaymentManager.class.php:401
1817
+ msgid "Invalid gateweay selected. Please contact us for the confirmation."
1818
+ msgstr ""
1819
+
1820
+ #: includes/PaymentGatewayStripe.class.php:455
1821
+ msgid "Invalid submission. Please contact admin"
1822
+ msgstr ""
1823
+
1824
+ #: includes/AdminBookings.class.php:295
1825
+ msgid ""
1826
+ "It is recommended to ban by email address instead of IP. Only ban by IP "
1827
+ "address to block a malicious user who is using different email addresses to "
1828
+ "avoid a previous ban."
1829
+ msgstr ""
1830
+
1831
+ #: includes/DeactivationSurvey.class.php:47
1832
+ msgid "It's a temporary deactivation"
1833
+ msgstr ""
1834
+
1835
+ #: includes/Editor.class.php:343 includes/Editor.class.php:410
1836
+ msgid "Label"
1837
+ msgstr ""
1838
+
1839
+ #: includes/MultipleLocations.class.php:884 includes/Settings.class.php:927
1840
+ msgctxt "Label for selecting days of the week in a scheduling rule"
1841
+ msgid "Days of the week"
1842
+ msgstr "Giorni della settimana"
1843
+
1844
+ #: includes/MultipleLocations.class.php:885 includes/Settings.class.php:928
1845
+ msgctxt "Label for selecting weeks of the month in a scheduling rule"
1846
+ msgid "Weeks of the month"
1847
+ msgstr "Settimane del mese"
1848
+
1849
+ #: includes/Settings.class.php:933
1850
+ msgctxt "Label for the ending date/time of a scheduling rule"
1851
+ msgid "End"
1852
+ msgstr "Fine"
1853
+
1854
+ #: includes/MultipleLocations.class.php:890
1855
+ msgctxt "Label for the ending time of a scheduling rule"
1856
+ msgid "End"
1857
+ msgstr "Fine"
1858
+
1859
+ #: includes/Settings.class.php:932
1860
+ msgctxt "Label for the starting date/time of a scheduling rule"
1861
+ msgid "Start"
1862
+ msgstr "Inizio"
1863
+
1864
+ #: includes/MultipleLocations.class.php:889
1865
+ msgctxt "Label for the starting time of a scheduling rule"
1866
+ msgid "Start"
1867
+ msgstr "Inizio"
1868
+
1869
+ #: includes/AdminBookings.class.php:197
1870
+ msgctxt "Label next to the email address to which an email will be sent"
1871
+ msgid "To"
1872
+ msgstr ""
1873
+
1874
+ #: includes/MultipleLocations.class.php:886 includes/Settings.class.php:929
1875
+ msgctxt "Label to select a date for a scheduling rule"
1876
+ msgid "Date"
1877
+ msgstr "Data"
1878
+
1879
+ #: includes/MultipleLocations.class.php:887 includes/Settings.class.php:930
1880
+ msgctxt "Label to select a time slot for a scheduling rule"
1881
+ msgid "Time"
1882
+ msgstr "Orario"
1883
+
1884
+ #: includes/MultipleLocations.class.php:888 includes/Settings.class.php:931
1885
+ msgctxt "Label to set a scheduling rule to last all day"
1886
+ msgid "All day"
1887
+ msgstr "Tutto il giorno"
1888
+
1889
+ #: includes/Settings.class.php:1863 includes/Settings.class.php:2015
1890
+ msgid "Labelling"
1891
+ msgstr ""
1892
+
1893
+ #: includes/Settings.class.php:1308
1894
+ msgid "Language"
1895
+ msgstr "Lingua"
1896
+
1897
+ #: includes/Settings.class.php:1021
1898
+ msgid "Late Bookings"
1899
+ msgstr "Prenotazioni Last Minute"
1900
+
1901
+ #: includes/InstallationWalkthrough.class.php:266
1902
+ msgid "Late Bookings:"
1903
+ msgstr "Prenotazioni tardive:"
1904
+
1905
+ #: includes/Addons.class.php:61 includes/Addons.class.php:77
1906
+ #: includes/Addons.class.php:93 includes/Addons.class.php:109
1907
+ msgid "Learn More"
1908
+ msgstr ""
1909
+
1910
+ #: includes/AdminBookings.class.php:423 includes/Editor.class.php:231
1911
+ msgid "Learn more"
1912
+ msgstr "Leggi di più"
1913
+
1914
+ #: includes/Settings.class.php:1050
1915
+ msgid "Leave empty"
1916
+ msgstr "Lasciare vuoto"
1917
+
1918
+ #: includes/Licenses.class.php:119
1919
+ msgid "Licenses"
1920
+ msgstr "Licenze"
1921
+
1922
+ #: includes/WP_List_Table.BookingsTable.class.php:603
1923
+ msgid "Loading"
1924
+ msgstr "Caricando"
1925
+
1926
+ #: includes/MultipleLocations.class.php:439 includes/MailChimp.class.php:115
1927
+ #: includes/ExportHandler.class.php:220 includes/Export.CSV.class.php:154
1928
+ #: includes/Settings.class.php:522 includes/integrations/page-builder.php:203
1929
+ #: includes/integrations/page-builder.php:339
1930
+ msgid "Location"
1931
+ msgstr "Posizione"
1932
+
1933
+ #: includes/MultipleLocations.class.php:720
1934
+ msgid "Location for which this booking was made."
1935
+ msgstr "Posizione per la quale è stata effettuata questa prenotazione."
1936
+
1937
+ #: includes/Addons.class.php:102
1938
+ msgid "MailChimp"
1939
+ msgstr "MailChimp"
1940
+
1941
+ #: includes/MailChimp.class.php:169
1942
+ msgid "MailChimp List Field"
1943
+ msgstr "MailChimp lista campi"
1944
+
1945
+ #: includes/Settings.class.php:556
1946
+ msgid "Make a reservation"
1947
+ msgstr "Fai una prenotazione"
1948
+
1949
+ #: includes/Settings.class.php:553
1950
+ msgid "Make Deposit"
1951
+ msgstr "Fai un deposito"
1952
+
1953
+ #: includes/Settings.class.php:1151
1954
+ msgid "Max Party Size"
1955
+ msgstr "Numero massimo di persone"
1956
+
1957
+ #: includes/InstallationWalkthrough.class.php:246
1958
+ msgid "Max Party Size:"
1959
+ msgstr "Numero massimo "
1960
+
1961
+ #: includes/MultipleLocations.class.php:1015
1962
+ msgid "Max People"
1963
+ msgstr "Numero massimo di persone"
1964
+
1965
+ #: includes/MultipleLocations.class.php:1001
1966
+ msgid "Max Reservations"
1967
+ msgstr ""
1968
+
1969
+ #: includes/Settings.class.php:533
1970
+ msgid "max."
1971
+ msgstr "max."
1972
+
1973
+ #: restaurant-reservations.php:410
1974
+ msgid "MENU"
1975
+ msgstr "MENU"
1976
+
1977
+ #: includes/AdminBookings.class.php:205 includes/Notifications.class.php:166
1978
+ #: includes/MailChimp.class.php:98 includes/template-functions.php:426
1979
+ #: includes/Export.CSV.class.php:85 includes/Settings.class.php:539
1980
+ #: includes/WP_List_Table.BookingsTable.class.php:664
1981
+ msgid "Message"
1982
+ msgstr "Messaggio"
1983
+
1984
+ #: includes/Settings.class.php:2383
1985
+ msgid "Message added to the request"
1986
+ msgstr "Messaggio aggiunto nella richiesta"
1987
+
1988
+ #: includes/Settings.class.php:1138
1989
+ msgid "Min Party Size"
1990
+ msgstr "Numero minimo di persone"
1991
+
1992
+ #: includes/InstallationWalkthrough.class.php:238
1993
+ msgid "Min Party Size:"
1994
+ msgstr "Numero minimo di persone"
1995
+
1996
+ #: includes/Settings.class.php:532
1997
+ msgid "min."
1998
+ msgstr "min."
1999
+
2000
+ #: includes/Import.class.php:210
2001
+ msgid "Missing a temporary folder"
2002
+ msgstr ""
2003
+
2004
+ #: includes/patterns/modify-booking.php:6
2005
+ msgid "Modify Booking"
2006
+ msgstr ""
2007
+
2008
+ #: includes/Settings.class.php:1089
2009
+ msgid "Monday"
2010
+ msgstr "Lunedì"
2011
+
2012
+ #: includes/MultipleLocations.class.php:916 includes/Settings.class.php:959
2013
+ msgctxt "Monday abbreviation"
2014
+ msgid "Mo"
2015
+ msgstr ""
2016
+
2017
+ #: includes/Settings.class.php:1929
2018
+ msgid "Multiple Form Layouts"
2019
+ msgstr ""
2020
+
2021
+ #: includes/Notifications.class.php:149 includes/Dashboard.class.php:144
2022
+ #: includes/MailChimp.class.php:95 includes/Export.CSV.class.php:81
2023
+ #: includes/Settings.class.php:535 includes/Settings.class.php:570
2024
+ #: includes/Settings.class.php:792
2025
+ #: includes/WP_List_Table.BookingsTable.class.php:550
2026
+ msgid "Name"
2027
+ msgstr "Nome e cognome"
2028
+
2029
+ #: includes/MultipleLocations.class.php:108
2030
+ msgctxt "Name for grouping bookings"
2031
+ msgid "Location"
2032
+ msgstr ""
2033
+
2034
+ #: includes/Export.PDF.class.php:278 includes/ExportHandler.class.php:61
2035
+ msgctxt "Name of a link to the Export tab on the settings page"
2036
+ msgid "export settings"
2037
+ msgstr ""
2038
+
2039
+ #: includes/InstallationWalkthrough.class.php:169
2040
+ msgid "Never"
2041
+ msgstr ""
2042
+
2043
+ #: includes/CustomPostTypes.class.php:57
2044
+ msgid "New Booking"
2045
+ msgstr "Nuova richiesta di prenotazione"
2046
+
2047
+ #: includes/Settings.class.php:1704
2048
+ msgid "New Request Email"
2049
+ msgstr "Corpo mail"
2050
+
2051
+ #: includes/Settings.class.php:1692
2052
+ msgid "New Request Email Subject"
2053
+ msgstr "Oggetto mail per una nuova richiesta di prenotazione"
2054
+
2055
+ #: includes/InstallationWalkthrough.class.php:208
2056
+ #: includes/InstallationWalkthrough.class.php:227
2057
+ msgid "Next Step"
2058
+ msgstr ""
2059
+
2060
+ #: includes/Export.CSV.class.php:213 includes/Settings.class.php:578
2061
+ #: includes/Settings.class.php:1193
2062
+ #: includes/integrations/business-profile.php:294
2063
+ msgid "No"
2064
+ msgstr "No"
2065
+
2066
+ #: includes/Ajax.class.php:170 includes/Ajax.class.php:177
2067
+ msgid "No booking matches the information that was sent."
2068
+ msgstr ""
2069
+
2070
+ #: includes/CustomPostTypes.class.php:60
2071
+ msgid "No bookings found"
2072
+ msgstr "Nessuna prenotazione trovata"
2073
+
2074
+ #: includes/CustomPostTypes.class.php:61
2075
+ msgid "No bookings found in trash"
2076
+ msgstr "Nessuna prenotazione trovata nel cestino"
2077
+
2078
+ #: includes/Dashboard.class.php:157
2079
+ msgid ""
2080
+ "No bookings to display yet. Create a booking for it to be displayed here."
2081
+ msgstr ""
2082
+ "Non ci sono ancora prenotazioni da visualizzare. Crea una prenotazione per "
2083
+ "essere visualizzata qui."
2084
+
2085
+ #: includes/Settings.class.php:560
2086
+ msgid "No bookings were found for the email address you entered."
2087
+ msgstr "Non ci sono prenotazioni associate a questa email"
2088
+
2089
+ #: includes/Export.class.php:118
2090
+ #: includes/WP_List_Table.BookingsTable.class.php:245
2091
+ #: includes/WP_List_Table.BookingsTable.class.php:247
2092
+ msgctxt ""
2093
+ "No date limit in a date range, eg 2014-* would mean any date from 2014 or "
2094
+ "after"
2095
+ msgid "*"
2096
+ msgstr ""
2097
+
2098
+ #: includes/AdminBookings.class.php:836
2099
+ msgid "No email address could be found for this delete request."
2100
+ msgstr ""
2101
+
2102
+ #: includes/Import.class.php:220
2103
+ msgid "No error code avaiable"
2104
+ msgstr ""
2105
+
2106
+ #: includes/Editor.class.php:520
2107
+ msgid "No field data was received with your request."
2108
+ msgstr ""
2109
+
2110
+ #: includes/Editor.class.php:572
2111
+ msgid "No fields data was received with your request."
2112
+ msgstr ""
2113
+
2114
+ #: includes/Import.class.php:225
2115
+ msgid "No file was uploaded here.."
2116
+ msgstr ""
2117
+
2118
+ #: includes/Import.class.php:206
2119
+ msgid "No file was uploaded."
2120
+ msgstr ""
2121
+
2122
+ #: includes/AdminBookings.class.php:775
2123
+ msgid "No IP or email address could be found for this ban request."
2124
+ msgstr ""
2125
+
2126
+ #: restaurant-reservations.php:564
2127
+ msgid "No Table available at this time. Please change your selection."
2128
+ msgstr ""
2129
+
2130
+ #: includes/PaymentGatewayStripe.class.php:17
2131
+ msgid "Not Placed"
2132
+ msgstr ""
2133
+
2134
+ #: includes/Settings.class.php:1595
2135
+ msgid "Notification Emails"
2136
+ msgstr ""
2137
+
2138
+ #: includes/WP_List_Table.BookingsTable.class.php:1039
2139
+ #, php-format
2140
+ msgctxt ""
2141
+ "Notification of booking date range, eg - bookings from 2014-12-02-2014-12-05"
2142
+ msgid "Only bookings from %s are being shown."
2143
+ msgstr ""
2144
+
2145
+ #: includes/Settings.class.php:1476 includes/Settings.class.php:1967
2146
+ msgid "Notifications"
2147
+ msgstr "Notifiche"
2148
+
2149
+ #: includes/WP_List_Table.BookingsTable.class.php:1041
2150
+ msgid "Only today's bookings are being shown."
2151
+ msgstr "Vengono visualizzate solo le prenotazioni di oggi "
2152
+
2153
+ #: includes/WP_List_Table.BookingsTable.class.php:1043
2154
+ msgid "Only upcoming bookings are being shown."
2155
+ msgstr "Vengono visualizzate solo le prenotazioni imminenti "
2156
+
2157
+ #: includes/InstallationWalkthrough.class.php:402
2158
+ #: includes/InstallationWalkthrough.class.php:405
2159
+ msgid "Open and close this rule"
2160
+ msgstr "Apri e chiudi questa regola"
2161
+
2162
+ #: includes/Editor.class.php:418
2163
+ msgid "Options"
2164
+ msgstr "Opzioni"
2165
+
2166
+ #: includes/DeactivationSurvey.class.php:50
2167
+ msgid "Other"
2168
+ msgstr ""
2169
+
2170
+ #: includes/InstallationWalkthrough.class.php:205
2171
+ msgid "Page Title:"
2172
+ msgstr "Titolo Pagina"
2173
+
2174
+ #: includes/Notifications.class.php:148 includes/Dashboard.class.php:143
2175
+ #: includes/Export.CSV.class.php:82 includes/Settings.class.php:530
2176
+ #: includes/Settings.class.php:569 includes/Settings.class.php:791
2177
+ #: includes/WP_List_Table.BookingsTable.class.php:549
2178
+ msgid "Party"
2179
+ msgstr "Numero di persone"
2180
+
2181
+ #: includes/MailChimp.class.php:96
2182
+ msgid "Party Size"
2183
+ msgstr "Numero di persone"
2184
+
2185
+ #: includes/WP_List_Table.BookingsTable.class.php:343
2186
+ msgid "Past"
2187
+ msgstr ""
2188
+
2189
+ #: includes/Settings.class.php:545
2190
+ msgid "Pay via PayPal"
2191
+ msgstr "Paga con PayPal"
2192
+
2193
+ #: includes/PaymentGatewayStripe.class.php:480
2194
+ msgid "Payment charge failed. Please try again"
2195
+ msgstr "Il pagamento non è andato a buon fine. Prova ancora"
2196
+
2197
+ #: includes/CustomPostTypes.class.php:225
2198
+ #, php-format
2199
+ msgid "Payment Failed <span class=\"count\">(%s)</span>"
2200
+ msgid_plural "Payment Failed <span class=\"count\">(%s)</span>"
2201
+ msgstr[0] ""
2202
+ msgstr[1] ""
2203
+
2204
+ #: includes/Settings.class.php:542
2205
+ msgid "Payment Gateway"
2206
+ msgstr "Gateway di pagamento"
2207
+
2208
+ #: includes/PaymentGatewayStripe.class.php:588
2209
+ msgid "Payment has been captured."
2210
+ msgstr "Il pagamento è stato acquisito."
2211
+
2212
+ #: includes/PaymentGatewayStripe.class.php:582
2213
+ msgid "Payment has been held on the card, but not charged yet."
2214
+ msgstr "Il pagamento è stato trattenuto sulla carta, ma non ancora addebitato."
2215
+
2216
+ #: includes/PaymentGatewayStripe.class.php:581
2217
+ msgid "Payment on Hold"
2218
+ msgstr "Pagamento in attesa"
2219
+
2220
+ #: includes/CustomPostTypes.class.php:237
2221
+ #, php-format
2222
+ msgid "Payment Pending <span class=\"count\">(%s)</span>"
2223
+ msgid_plural "Payment Pending <span class=\"count\">(%s)</span>"
2224
+ msgstr[0] ""
2225
+ msgstr[1] ""
2226
+
2227
+ #: includes/Settings.class.php:1823 includes/Settings.class.php:1984
2228
+ msgid "Payments"
2229
+ msgstr "Pagamenti"
2230
+
2231
+ #: includes/PaymentGatewayPayPal.class.php:26
2232
+ msgid "PayPal"
2233
+ msgstr "PayPal"
2234
+
2235
+ #: includes/ExportHandler.class.php:92
2236
+ msgid "PDF"
2237
+ msgstr "PDF"
2238
+
2239
+ #: includes/Settings.class.php:1205
2240
+ msgid "Pending Confirmation Message"
2241
+ msgstr "Messaggio di conferma in sospeso"
2242
+
2243
+ #: includes/Settings.class.php:1229
2244
+ msgid "Pending Redirect Page"
2245
+ msgstr "Pagina di reindirizzamento per prenotazione in sospeso"
2246
+
2247
+ #: includes/Notifications.class.php:151 includes/Export.CSV.class.php:84
2248
+ #: includes/Settings.class.php:537 includes/Settings.class.php:572
2249
+ #: includes/Settings.class.php:794
2250
+ #: includes/WP_List_Table.BookingsTable.class.php:552
2251
+ msgid "Phone"
2252
+ msgstr "Telefono"
2253
+
2254
+ #: includes/MailChimp.class.php:97
2255
+ msgid "Phone Number"
2256
+ msgstr "Numero di Telefono"
2257
+
2258
+ #: includes/Settings.class.php:2382
2259
+ msgid "Phone number if supplied with the request"
2260
+ msgstr "Numero di telefono se richiesto"
2261
+
2262
+ msgid "Phone: ( +1 xxxxxxxxxx )"
2263
+ msgstr "Telefono: ( +39 xxxxxxxxxx )"
2264
+
2265
+ #: includes/Addons.class.php:57
2266
+ msgid ""
2267
+ "Plan your dinner service better by asking for special seating requests, "
2268
+ "dietary needs and more when customers book online."
2269
+ msgstr ""
2270
+
2271
+ #: includes/Booking.class.php:715
2272
+ msgid "Please complete this field to request a booking."
2273
+ msgstr "Compilare il campo per richiedere una prenotazione"
2274
+
2275
+ #: includes/Editor.class.php:110
2276
+ msgid "Please enter a label for this field."
2277
+ msgstr "Inserisci un etichetta per questo campo"
2278
+
2279
+ #: includes/AdminBookings.class.php:662
2280
+ msgid "Please enter a message before sending the email."
2281
+ msgstr "Inserire un messaggio prima di inviare l'email"
2282
+
2283
+ #: includes/Booking.class.php:568
2284
+ msgid "Please enter a name for this booking."
2285
+ msgstr "Inserire un nome per questa prenotazione"
2286
+
2287
+ #: includes/Booking.class.php:613
2288
+ msgid "Please enter a valid email address so we can confirm your booking."
2289
+ msgstr ""
2290
+
2291
+ #: includes/Booking.class.php:607
2292
+ msgid "Please enter an email address so we can confirm your booking."
2293
+ msgstr ""
2294
+ "Inserire un indirizzo email valido per poter confermare la prenotazione"
2295
+
2296
+ #: includes/Booking.class.php:295
2297
+ msgid "Please enter the date you would like to book."
2298
+ msgstr "Inserire la data per la quale vuole prenotare"
2299
+
2300
+ #: includes/Booking.class.php:316
2301
+ msgid "Please enter the time you would like to book."
2302
+ msgstr "Inserire l'orario della prenotazione"
2303
+
2304
+ #: includes/Booking.class.php:657
2305
+ msgid "Please fill out the reCAPTCHA box before submitting."
2306
+ msgstr ""
2307
+
2308
+ #: includes/Booking.class.php:679
2309
+ msgid "Please fill out the reCAPTCHA box again and re-submit."
2310
+ msgstr ""
2311
+
2312
+ #: includes/Notifications.class.php:142
2313
+ msgid "Please find a summary of today's reservations in the table below."
2314
+ msgstr "Riepilogo delle prenotazioni odierne."
2315
+
2316
+ #: includes/Booking.class.php:578
2317
+ msgid "Please let us know how many people will be in your party."
2318
+ msgstr "Fateci sapere quante persone faranno parte del gruppo"
2319
+
2320
+ #: includes/Booking.class.php:624
2321
+ msgid "Please provide a phone number so we can confirm your booking."
2322
+ msgstr ""
2323
+
2324
+ #: restaurant-reservations.php:679
2325
+ #, php-format
2326
+ msgid ""
2327
+ "Please re-activate the helper plugin, or <a target='_blank' href='%s'>"
2328
+ "download and install it</a> if the plugin is no longer installed to ensure "
2329
+ "continued access to the premium features of the plugin."
2330
+ msgstr ""
2331
+
2332
+ #: includes/MultipleLocations.class.php:391
2333
+ msgid "Please select a location for your booking."
2334
+ msgstr ""
2335
+
2336
+ #: includes/Booking.class.php:637
2337
+ msgid "Please select a table for your booking."
2338
+ msgstr ""
2339
+
2340
+ #: includes/PaymentManager.class.php:248
2341
+ msgid "Please select a valid payment gateway."
2342
+ msgstr ""
2343
+
2344
+ #: includes/Booking.class.php:647
2345
+ msgid "Please select a valid table for your booking."
2346
+ msgstr ""
2347
+
2348
+ #: includes/DeactivationSurvey.class.php:51
2349
+ msgid "Please share the reason"
2350
+ msgstr ""
2351
+
2352
+ #: includes/DeactivationSurvey.class.php:44
2353
+ msgid "Please share what wasn't working"
2354
+ msgstr ""
2355
+
2356
+ #: includes/DeactivationSurvey.class.php:40
2357
+ msgid "Please share which plugin"
2358
+ msgstr ""
2359
+
2360
+ #: includes/Settings.class.php:552
2361
+ msgid ""
2362
+ "Please wait. Do not refresh until the button enables or the page reloads."
2363
+ msgstr ""
2364
+
2365
+ #: includes/Dashboard.class.php:265 includes/Settings.class.php:2000
2366
+ #: includes/Settings.class.php:2015 includes/Settings.class.php:2031
2367
+ msgid "Premium"
2368
+ msgstr "Premium"
2369
+
2370
+ #: includes/Settings.class.php:1949 includes/Settings.class.php:1967
2371
+ msgid "Premium/Ultimate"
2372
+ msgstr "Premium/Ultimate"
2373
+
2374
+ #: includes/InstallationWalkthrough.class.php:228
2375
+ #: includes/InstallationWalkthrough.class.php:289
2376
+ msgid "Previous Step"
2377
+ msgstr ""
2378
+
2379
+ #: includes/Settings.class.php:1403
2380
+ msgid "Privacy"
2381
+ msgstr "Privacy"
2382
+
2383
+ #: includes/Settings.class.php:1447
2384
+ msgid "Privacy Statement Page"
2385
+ msgstr "Pagina di informazioni sulla privacy"
2386
+
2387
+ #: includes/Settings.class.php:543
2388
+ msgid "Proceed to Deposit"
2389
+ msgstr "Procedi al Deposito"
2390
+
2391
+ #: includes/MultipleLocations.class.php:891 includes/Settings.class.php:934
2392
+ #, php-format
2393
+ msgctxt ""
2394
+ "Prompt displayed when a scheduling rule is set without any time restrictions"
2395
+ msgid "All day long. Want to %sset a time slot%s?"
2396
+ msgstr ""
2397
+
2398
+ #: includes/DeactivationSurvey.class.php:58
2399
+ msgid "Quick Feedback"
2400
+ msgstr ""
2401
+
2402
+ #: includes/Export.CSV.class.php:268
2403
+ msgid "Receipt ID"
2404
+ msgstr ""
2405
+
2406
+ #: includes/Settings.class.php:1321
2407
+ msgid "Refresh Bookings Page"
2408
+ msgstr "Aggiorna la pagina delle prenotazioni"
2409
+
2410
+ #: includes/Settings.class.php:583
2411
+ msgid "Reject this booking"
2412
+ msgstr "Rifiutare questa prenotazione"
2413
+
2414
+ #: includes/Settings.class.php:1752
2415
+ msgid "Rejected Email"
2416
+ msgstr "Corpo mail di rifiuto"
2417
+
2418
+ #: includes/Settings.class.php:1740
2419
+ msgid "Rejected Email Subject"
2420
+ msgstr "Oggetto della prenotazione rifiutata"
2421
+
2422
+ #: includes/MultipleLocations.class.php:590 includes/Settings.class.php:1540
2423
+ msgid "Reply-To Email Address"
2424
+ msgstr "Rispondi all'indirizzo Email"
2425
+
2426
+ #: includes/MultipleLocations.class.php:580 includes/Settings.class.php:1528
2427
+ msgid "Reply-To Name"
2428
+ msgstr "Rispondi a Nome"
2429
+
2430
+ #: includes/Settings.class.php:540
2431
+ msgid "Request Booking"
2432
+ msgstr "Invia prenotazione"
2433
+
2434
+ #: includes/Settings.class.php:544
2435
+ msgid "Request Booking or Proceed to Deposit"
2436
+ msgstr "Richiedere la prenotazione o procedere al deposito"
2437
+
2438
+ #: includes/WP_List_Table.BookingsTable.class.php:692
2439
+ #, php-format
2440
+ msgid "Request from %s on %s."
2441
+ msgstr ""
2442
+
2443
+ #: includes/Settings.class.php:1425
2444
+ msgid "Require Consent"
2445
+ msgstr ""
2446
+
2447
+ #: includes/Settings.class.php:1426
2448
+ msgid ""
2449
+ "Require customers to consent to the collection of their details when making "
2450
+ "a booking. This may be required to comply with privacy laws in your country."
2451
+ msgstr ""
2452
+
2453
+ #: includes/Settings.class.php:1189
2454
+ msgid "Require Phone"
2455
+ msgstr "Telefono Obbligatorio"
2456
+
2457
+ #: includes/Editor.class.php:439
2458
+ msgid "Required"
2459
+ msgstr "Obbligatorio"
2460
+
2461
+ #: includes/MultipleLocations.class.php:507
2462
+ msgid "Reservations"
2463
+ msgstr "Prenotazioni"
2464
+
2465
+ #: includes/Import.class.php:184
2466
+ msgid "Reservations added successfully."
2467
+ msgstr "Prenotazioni aggiunte con successo."
2468
+
2469
+ #: includes/AdminBookings.class.php:91
2470
+ msgid "Restaurant Bookings"
2471
+ msgstr "Prenotazioni ristorante"
2472
+
2473
+ #. Description of the plugin
2474
+ msgid ""
2475
+ "Restaurant reservations made easy. Accept bookings online. Quickly confirm "
2476
+ "or reject reservations, send email notifications, set booking times and more."
2477
+ msgstr ""
2478
+
2479
+ #: includes/Editor.class.php:228
2480
+ msgid "Revert to default"
2481
+ msgstr "Ritorna a predefinito"
2482
+
2483
+ #: includes/MultipleLocations.class.php:921 includes/Settings.class.php:964
2484
+ msgctxt "Saturday abbreviation"
2485
+ msgid "Sa"
2486
+ msgstr ""
2487
+
2488
+ #: includes/Editor.class.php:104 includes/Editor.class.php:304
2489
+ msgid "Save"
2490
+ msgstr "Salva"
2491
+
2492
+ #: includes/Editor.class.php:107
2493
+ msgid "Save Field"
2494
+ msgstr "Salva Campo"
2495
+
2496
+ #: includes/Editor.class.php:109
2497
+ msgid "Save Fieldset"
2498
+ msgstr "Salva Fieldset"
2499
+
2500
+ #: includes/InstallationWalkthrough.class.php:287
2501
+ msgid "Save Options"
2502
+ msgstr "Salva Opzioni"
2503
+
2504
+ #: includes/InstallationWalkthrough.class.php:225
2505
+ msgid "Save Schedule"
2506
+ msgstr "Salva Programma"
2507
+
2508
+ #: includes/MultipleLocations.class.php:913 includes/Settings.class.php:956
2509
+ msgid "Schedule"
2510
+ msgstr "Filtri"
2511
+
2512
+ #: includes/MultipleLocations.class.php:871
2513
+ msgid "Schedule Location"
2514
+ msgstr ""
2515
+
2516
+ #: includes/Settings.class.php:915
2517
+ msgid "Scheduling Options"
2518
+ msgstr "Opzioni di Pianificazione"
2519
+
2520
+ #: includes/CustomPostTypes.class.php:59
2521
+ msgid "Search Bookings"
2522
+ msgstr "Cerca le prenotazioni"
2523
+
2524
+ #: includes/MultipleLocations.class.php:970
2525
+ msgid "Seat Restrictions Location"
2526
+ msgstr ""
2527
+
2528
+ #: includes/Settings.class.php:1330
2529
+ msgid "Security"
2530
+ msgstr "Sicurezza"
2531
+
2532
+ #: includes/Dashboard.class.php:268
2533
+ msgid "Select"
2534
+ msgstr "Selezione"
2535
+
2536
+ #: includes/Settings.class.php:1309
2537
+ msgid ""
2538
+ "Select a language to use for the booking form datepicker if it is different "
2539
+ "than your WordPress language setting."
2540
+ msgstr ""
2541
+ "Selezionare una lingua da usare per il form datepicker se differente dalla "
2542
+ "lingua base impostata in WordPress"
2543
+
2544
+ #: includes/Settings.class.php:1120
2545
+ msgid ""
2546
+ "Select a page on your site to automatically display the booking form and "
2547
+ "confirmation message."
2548
+ msgstr ""
2549
+ "Selezionare una pagina del sito per visualizzare il form di prenotazione e "
2550
+ "il messaggio di conferma"
2551
+
2552
+ #: includes/Settings.class.php:1448
2553
+ msgid ""
2554
+ "Select a page on your site which contains a privacy statement. If selected, "
2555
+ "it will be linked to in your consent statement."
2556
+ msgstr ""
2557
+
2558
+ #: includes/Settings.class.php:1000
2559
+ msgid ""
2560
+ "Select how early customers can make their booking. (Administrators and "
2561
+ "Booking Managers are not restricted by this setting.)"
2562
+ msgstr ""
2563
+ "Seleziona quanto tempo prima i clienti possono effettuare la prenotazione. "
2564
+ "(Gli amministratori e i responsabili delle prenotazioni non sono limitati da "
2565
+ "questa impostazione.)"
2566
+
2567
+ #: includes/Settings.class.php:1022
2568
+ msgid ""
2569
+ "Select how late customers can make their booking. (Administrators and "
2570
+ "Booking Managers are not restricted by this setting.)"
2571
+ msgstr ""
2572
+ "Seleziona quanto tempo prima possono effettuare la prenotazione i clienti "
2573
+ "ritardatari. (Gli amministratori e i responsabili delle prenotazioni non "
2574
+ "sono limitati da questa impostazione.)"
2575
+
2576
+ #: includes/integrations/page-builder.php:212
2577
+ #: includes/integrations/page-builder.php:348
2578
+ msgid "Select Location"
2579
+ msgstr ""
2580
+
2581
+ #: includes/MultipleLocations.class.php:859
2582
+ msgid "Select Schedule Location"
2583
+ msgstr ""
2584
+
2585
+ #: includes/MultipleLocations.class.php:958
2586
+ msgid "Select Seat Restrictions Location"
2587
+ msgstr ""
2588
+
2589
+ #: includes/Settings.class.php:1085
2590
+ msgid "Select the first day of the week"
2591
+ msgstr "Seleziona il primo gionro della settimana"
2592
+
2593
+ #: includes/Settings.class.php:1062
2594
+ msgid "Select the number of minutes between each available time."
2595
+ msgstr "Scegliere l'intervallo di tempo tra una prenotazione e l'altra"
2596
+
2597
+ #: includes/Settings.class.php:1048
2598
+ msgid "Select today if valid"
2599
+ msgstr "Seleziona oggi se valido"
2600
+
2601
+ #: includes/Settings.class.php:1049
2602
+ msgid "Select today or next valid date"
2603
+ msgstr "Seleziona oggi o la prossima data disponibile"
2604
+
2605
+ #: includes/Dashboard.class.php:264
2606
+ msgid "Select version to trial"
2607
+ msgstr "Seleziona Versione di prova"
2608
+
2609
+ #: includes/MultipleLocations.class.php:971
2610
+ msgid ""
2611
+ "Select which location the restrictions will apply to. If a specific location "
2612
+ "doesn't have restrictions set, then the global total number will be used as "
2613
+ "a fall-back."
2614
+ msgstr ""
2615
+
2616
+ #: includes/MultipleLocations.class.php:872
2617
+ msgid ""
2618
+ "Select which location the schedule will apply to. If a specific location "
2619
+ "doesn't have a schedule set, then it will fall back to the global schedule "
2620
+ "when booking."
2621
+ msgstr ""
2622
+
2623
+ #: includes/Settings.class.php:1575
2624
+ msgid ""
2625
+ "Send an email notification to an administrator when a booking is cancelled."
2626
+ msgstr ""
2627
+ "Invia una email di notifica ad un amministratore quando una prentoazione "
2628
+ "viene annullata."
2629
+
2630
+ #: includes/Settings.class.php:1553
2631
+ msgid ""
2632
+ "Send an email notification to an administrator when a new booking is "
2633
+ "requested."
2634
+ msgstr ""
2635
+ "Invia una mail di notifica all'amministratore ogni volta che viene "
2636
+ "effettuata una richiesta di prenotazione"
2637
+
2638
+ #: includes/Settings.class.php:1564
2639
+ msgid ""
2640
+ "Send an email notification to an administrator when a new confirmed booking "
2641
+ "is made."
2642
+ msgstr ""
2643
+ "Invia una email di notifica ad un amministratore quando viene effettuata una "
2644
+ "nuova prenotazione confermata."
2645
+
2646
+ #: includes/Addons.class.php:89
2647
+ msgid ""
2648
+ "Send beautiful email notifications with your own logo and brand colors when "
2649
+ "your customers make a reservation."
2650
+ msgstr ""
2651
+
2652
+ #: includes/AdminBookings.class.php:194 includes/AdminBookings.class.php:211
2653
+ #: includes/WP_List_Table.BookingsTable.class.php:629
2654
+ #: includes/WP_List_Table.BookingsTable.class.php:772
2655
+ msgid "Send Email"
2656
+ msgstr "Invia Email"
2657
+
2658
+ #: includes/AdminBookings.class.php:418
2659
+ msgid "Send notifications"
2660
+ msgstr "Invia una notifica"
2661
+
2662
+ #: includes/MultipleLocations.class.php:902 includes/Settings.class.php:945
2663
+ msgctxt "Separator between times of a scheduling rule"
2664
+ msgid "&mdash;"
2665
+ msgstr "&mdash;"
2666
+
2667
+ #: includes/WP_List_Table.BookingsTable.class.php:246
2668
+ msgctxt "Separator between two dates in a date range"
2669
+ msgid "&mdash;"
2670
+ msgstr "&mdash;"
2671
+
2672
+ #: includes/Export.class.php:122
2673
+ msgctxt "Separator between two dates in a date range to be used in exports"
2674
+ msgid " - "
2675
+ msgstr " - "
2676
+
2677
+ #: includes/Settings.class.php:1152
2678
+ msgid "Set a maximum allowed party size for bookings."
2679
+ msgstr "Impostare un numero massimo di persone per ciascuna prenotazione"
2680
+
2681
+ #: includes/Settings.class.php:1165
2682
+ msgid ""
2683
+ "Set a maximum party size below which all bookings will be automatically "
2684
+ "confirmed."
2685
+ msgstr ""
2686
+ "Imposta una dimensione massima dei partecipanti al di sotto della quale "
2687
+ "tutte le prenotazioni saranno confermate automaticamente."
2688
+
2689
+ #: includes/InstallationWalkthrough.class.php:236
2690
+ msgid ""
2691
+ "Set a min/max party size for bookings, choose how early and late bookings "
2692
+ "can be made, and pick the time interval between different booking options."
2693
+ msgstr ""
2694
+
2695
+ #: includes/Settings.class.php:1139
2696
+ msgid "Set a minimum allowed party size for bookings."
2697
+ msgstr "Imposta il numero minimo di persone per ciascuna prenotazione"
2698
+
2699
+ #: includes/Settings.class.php:576
2700
+ msgid "Set reservation status to 'Arrived'?"
2701
+ msgstr "Impostare lo stato di prenotazione su \"arrivato\"?"
2702
+
2703
+ #: includes/Settings.class.php:1932
2704
+ msgid "Set Table and Seat Restrictions"
2705
+ msgstr "Imposta i tavoli e le restrizioni"
2706
+
2707
+ #: includes/WP_List_Table.BookingsTable.class.php:771
2708
+ msgid "Set To Closed"
2709
+ msgstr "Imposta come Chiusa"
2710
+
2711
+ #: includes/WP_List_Table.BookingsTable.class.php:769
2712
+ msgid "Set To Confirmed"
2713
+ msgstr "Imposta come confermata"
2714
+
2715
+ #: includes/WP_List_Table.BookingsTable.class.php:770
2716
+ msgid "Set To Pending Review"
2717
+ msgstr "Imposta come pendente"
2718
+
2719
+ #: includes/Settings.class.php:1467
2720
+ msgid ""
2721
+ "Sets the approximate number of days booking data should be stored for. Leave "
2722
+ "blank to keep booking data indefinitely."
2723
+ msgstr ""
2724
+
2725
+ #: restaurant-reservations.php:430 includes/ExportHandler.class.php:299
2726
+ #: includes/Settings.class.php:892 includes/Settings.class.php:893
2727
+ msgid "Settings"
2728
+ msgstr "Opzioni"
2729
+
2730
+ #: includes/integrations/business-profile.php:128
2731
+ #: includes/integrations/business-profile.php:131
2732
+ msgid "Show book a table link"
2733
+ msgstr ""
2734
+
2735
+ #: includes/Settings.class.php:518
2736
+ msgid "Sign up for our mailing list."
2737
+ msgstr ""
2738
+
2739
+ #: includes/DeactivationSurvey.class.php:75
2740
+ msgid "Skip and Deactivate"
2741
+ msgstr ""
2742
+
2743
+ #: includes/InstallationWalkthrough.class.php:296
2744
+ msgid "Skip Setup"
2745
+ msgstr ""
2746
+
2747
+ #: includes/Dashboard.class.php:267
2748
+ msgid "SMS messaging will not work in the ultimate version trial."
2749
+ msgstr ""
2750
+
2751
+ #: restaurant-reservations.php:562
2752
+ msgid ""
2753
+ "Something went wrong. Please try again and if issue persists, please contact "
2754
+ "us."
2755
+ msgstr ""
2756
+
2757
+ #: includes/Booking.class.php:369
2758
+ msgid "Sorry, bookings can not be made for the same day."
2759
+ msgstr ""
2760
+
2761
+ #: includes/Booking.class.php:360
2762
+ msgid "Sorry, bookings can not be made in the past."
2763
+ msgstr "La prenotazione non può essere effettuata per giorni passati"
2764
+
2765
+ #: includes/Booking.class.php:349
2766
+ msgid "Sorry, bookings can not be made more than %s days in advance."
2767
+ msgstr ""
2768
+ "Siamo spiacenti, le prenotazioni non possono essere effettuate più di %s "
2769
+ "giorni prima"
2770
+
2771
+ #: includes/Booking.class.php:377
2772
+ msgid "Sorry, bookings must be made more than %s days in advance."
2773
+ msgstr ""
2774
+ "La prenotazione deve essere effettuata con almeno %s giorni di anticipo"
2775
+
2776
+ #: includes/Booking.class.php:379
2777
+ msgid "Sorry, bookings must be made more than %s hours in advance."
2778
+ msgstr "La prenotazione deve essere effettuata con almeno %s ore di anticipo"
2779
+
2780
+ #: includes/Booking.class.php:381
2781
+ msgid "Sorry, bookings must be made more than %s minutes in advance."
2782
+ msgstr ""
2783
+ "La prenotazione deve essere effettuata con almeno %s minuti di anticipo"
2784
+
2785
+ #: includes/Booking.class.php:546
2786
+ msgid "Sorry, no bookings are being accepted at that time."
2787
+ msgstr "Siamo spiacenti, non prendiamo prenotazioni nell'orario selezionato"
2788
+
2789
+ #: includes/Booking.class.php:540
2790
+ msgid "Sorry, no bookings are being accepted on that date."
2791
+ msgstr "Siamo spiacenti, non prendiamo prenotazioni per la data selezionata"
2792
+
2793
+ #: includes/Booking.class.php:481
2794
+ msgid "Sorry, no bookings are being accepted then."
2795
+ msgstr "Siamo spiacenti, non prendiamo prenotazioni al momento"
2796
+
2797
+ #: includes/WP_List_Table.BookingsTable.class.php:362
2798
+ msgid "Specific Date(s)/Time"
2799
+ msgstr ""
2800
+
2801
+ #: includes/Import.class.php:67
2802
+ msgid "Spreadsheet Containing Bookings"
2803
+ msgstr ""
2804
+
2805
+ #: includes/InstallationWalkthrough.class.php:371
2806
+ #: includes/ExportHandler.class.php:268
2807
+ msgid "Start"
2808
+ msgstr "Inizio"
2809
+
2810
+ #: includes/WP_List_Table.BookingsTable.class.php:397
2811
+ msgid "Start Date"
2812
+ msgstr "Data inizio:"
2813
+
2814
+ #: includes/WP_List_Table.BookingsTable.class.php:396
2815
+ msgid "Start Date:"
2816
+ msgstr "Data inizio:"
2817
+
2818
+ #: includes/WP_List_Table.BookingsTable.class.php:398
2819
+ msgid "Start Time"
2820
+ msgstr "Orario di inizio"
2821
+
2822
+ #: includes/InstallationWalkthrough.class.php:175
2823
+ msgid "Starts at"
2824
+ msgstr "Inizia a"
2825
+
2826
+ #: includes/EmailTemplates.class.php:54
2827
+ msgid "Statement"
2828
+ msgstr ""
2829
+
2830
+ #: includes/EmailTemplates.class.php:58
2831
+ msgid "Stationary"
2832
+ msgstr ""
2833
+
2834
+ #: includes/Notifications.class.php:153 includes/Dashboard.class.php:145
2835
+ #: includes/Settings.class.php:574 includes/Settings.class.php:796
2836
+ #: includes/WP_List_Table.BookingsTable.class.php:553
2837
+ msgid "Status"
2838
+ msgstr "Stato"
2839
+
2840
+ #: includes/WP_List_Table.BookingsTable.class.php:652
2841
+ msgctxt "Status label for bookings put in the trash"
2842
+ msgid "Trash"
2843
+ msgstr ""
2844
+
2845
+ #: includes/PaymentGatewayStripe.class.php:32
2846
+ msgid "Stripe"
2847
+ msgstr "Stripe"
2848
+
2849
+ #: includes/Settings.class.php:1883 includes/Settings.class.php:2031
2850
+ msgid "Styling"
2851
+ msgstr ""
2852
+
2853
+ #: includes/AdminBookings.class.php:201
2854
+ msgid "Subject"
2855
+ msgstr "Soggetto"
2856
+
2857
+ #: includes/Export.class.php:113
2858
+ #, php-format
2859
+ msgctxt "Subject for some export documents"
2860
+ msgid "Bookings as of %s"
2861
+ msgstr ""
2862
+
2863
+ #: includes/Export.class.php:111
2864
+ #, php-format
2865
+ msgctxt "Subject for some export documents"
2866
+ msgid "Bookings for %s"
2867
+ msgstr ""
2868
+
2869
+ #: includes/DeactivationSurvey.class.php:74
2870
+ msgid "Submit and Deactivate"
2871
+ msgstr ""
2872
+
2873
+ #: includes/WP_List_Table.BookingsTable.class.php:575
2874
+ msgid "Submitted By"
2875
+ msgstr ""
2876
+
2877
+ #: includes/Addons.class.php:105
2878
+ msgid ""
2879
+ "Subscribe requests to your MailChimp mailing list and watch your "
2880
+ "subscription rates grow effortlessly."
2881
+ msgstr ""
2882
+
2883
+ #: includes/Settings.class.php:1497
2884
+ msgid "Summary Email Address"
2885
+ msgstr ""
2886
+
2887
+ #: includes/Settings.class.php:1508
2888
+ msgid "Summary Email Send Time"
2889
+ msgstr ""
2890
+
2891
+ #: includes/Settings.class.php:1088
2892
+ msgid "Sunday"
2893
+ msgstr "Domenica"
2894
+
2895
+ #: includes/MultipleLocations.class.php:922 includes/Settings.class.php:965
2896
+ msgctxt "Sunday abbreviation"
2897
+ msgid "Su"
2898
+ msgstr ""
2899
+
2900
+ #: includes/WP_List_Table.BookingsTable.class.php:1000
2901
+ msgid "Switch"
2902
+ msgstr ""
2903
+
2904
+ #: includes/Notifications.class.php:152 includes/Settings.class.php:573
2905
+ #: includes/Settings.class.php:795
2906
+ #: includes/WP_List_Table.BookingsTable.class.php:557
2907
+ msgid "Table"
2908
+ msgstr "Tavolo"
2909
+
2910
+ #: includes/Export.CSV.class.php:232 includes/Settings.class.php:531
2911
+ msgid "Table(s)"
2912
+ msgstr "Tavolo(i)"
2913
+
2914
+ #: includes/Settings.class.php:1607
2915
+ msgid "Template Tags"
2916
+ msgstr "Template Tags"
2917
+
2918
+ #: includes/Dashboard.class.php:94
2919
+ msgid ""
2920
+ "Thanks for being a premium user! <strong>If you're looking to upgrade to our "
2921
+ "ultimate version, enter your new product key below.</strong>"
2922
+ msgstr ""
2923
+
2924
+ #: includes/InstallationWalkthrough.class.php:196
2925
+ msgid ""
2926
+ "Thanks for choosing the Five-Star Restaurant Reservations! The following "
2927
+ "will help you get started with the setup of your reservations system by "
2928
+ "creating your reservations page, setting times when bookings are allowed as "
2929
+ "well as configuring a few key options."
2930
+ msgstr ""
2931
+
2932
+ #: includes/Settings.class.php:483
2933
+ msgid ""
2934
+ "Thanks, your booking request has been automatically confirmed. We look "
2935
+ "forward to seeing you soon!"
2936
+ msgstr ""
2937
+ "Grazie, la tua richiesta di prenotazione è stata automaticamente confermata. "
2938
+ "Non vediamo l'ora di vedervi!"
2939
+
2940
+ #: includes/Settings.class.php:482
2941
+ msgid ""
2942
+ "Thanks, your booking request is waiting to be confirmed. Updates will be "
2943
+ "sent to the email address you provided."
2944
+ msgstr ""
2945
+ "Grazie, la tua richiesta di prenotazione è in attesa di essere confermata "
2946
+ "dal nostro staff. Riceverai il messaggio all’indirizzo email che ci hai "
2947
+ "fornito. "
2948
+
2949
+ #: includes/Settings.class.php:1950
2950
+ msgid ""
2951
+ "The advanced options let you set a maximum number of reservations or people, "
2952
+ "enable automatic confirmation of bookings, configure a view bookings page "
2953
+ "for your site that staff can use to see upcoming reservations and check "
2954
+ "people in, and more. The table settings let you create different sections "
2955
+ "for your restaurant, and then also create individual tables and assign them "
2956
+ "to specific sections. You can then allow your customers to choose a table "
2957
+ "when they book and/or manage the tables in the admin."
2958
+ msgstr ""
2959
+
2960
+ #: includes/AdminBookings.class.php:531
2961
+ msgid ""
2962
+ "The booking could not be retrieved. Please reload the page and try again."
2963
+ msgstr "La prenotazione non può essere visualizzare. Ricaricare la pagina"
2964
+
2965
+ #: includes/Booking.class.php:305
2966
+ msgid ""
2967
+ "The date you entered is not valid. Please select from one of the dates in "
2968
+ "the calendar."
2969
+ msgstr ""
2970
+ "La data inserita non è valida. Selezionare una data valida dal calendario"
2971
+
2972
+ #: includes/MultipleLocations.class.php:605
2973
+ msgid ""
2974
+ "The email address where admin notifications for bookings at this location "
2975
+ "should be sent."
2976
+ msgstr ""
2977
+
2978
+ #: includes/Settings.class.php:1586
2979
+ msgid "The email address where admin notifications should be sent."
2980
+ msgstr "Indirizzo mail dell'amministratore al quale inviare le notifiche"
2981
+
2982
+ #: includes/MultipleLocations.class.php:594 includes/Settings.class.php:1541
2983
+ msgid ""
2984
+ "The email address which should appear in the Reply-To field of a user "
2985
+ "notification email."
2986
+ msgstr ""
2987
+ "Email che dovrebbe apparire nel campo \"rispondi a\" nella mail di notifica "
2988
+ "dell'utente"
2989
+
2990
+ #: includes/Settings.class.php:1498
2991
+ msgid ""
2992
+ "The email address, if any, where a daily summary of upcoming reservations "
2993
+ "should be emailed."
2994
+ msgstr ""
2995
+
2996
+ #: includes/AdminBookings.class.php:671
2997
+ msgid ""
2998
+ "The email could not be sent because some critical information was missing."
2999
+ msgstr "L'email non è stata inviata perché mancavano informazioni fondamentali"
3000
+
3001
+ #: includes/MailChimp.class.php:173
3002
+ msgid "The email field is automatically merged."
3003
+ msgstr ""
3004
+
3005
+ #: includes/Settings.class.php:1789
3006
+ msgid ""
3007
+ "The email subject a user should receive when an admin sends them a custom "
3008
+ "email message from the %sbookings panel%s."
3009
+ msgstr ""
3010
+ "Oggetto della mail che l'utente dovrebbe ricevere quando l'amministratore "
3011
+ "invia un messaggio dal %bookings panel%s"
3012
+
3013
+ #: includes/Settings.class.php:1717
3014
+ msgid ""
3015
+ "The email subject a user should receive when their booking has been "
3016
+ "confirmed."
3017
+ msgstr ""
3018
+ "Oggetto della mail che l'utente dovrebbe ricevere quando la prenotazione "
3019
+ "viene confermata"
3020
+
3021
+ #: includes/Settings.class.php:1741
3022
+ msgid ""
3023
+ "The email subject a user should receive when their booking has been rejected."
3024
+ msgstr ""
3025
+ "Oggetto della mail che l'utente dovrebbe ricevere quando la prenotazione "
3026
+ "viene rifiutata"
3027
+
3028
+ #: includes/Settings.class.php:1765
3029
+ msgid ""
3030
+ "The email subject a user should receive when they have cancelled their "
3031
+ "booking."
3032
+ msgstr ""
3033
+
3034
+ #: includes/Settings.class.php:1693
3035
+ msgid ""
3036
+ "The email subject a user should receive when they make an initial booking "
3037
+ "request."
3038
+ msgstr ""
3039
+ "Oggetto della mail che l'utente dovrebbe ricevere quando viene fatta una "
3040
+ "prima richiesta di prenotazione"
3041
+
3042
+ #: includes/Settings.class.php:1645
3043
+ msgid ""
3044
+ "The email subject for admin notifications for automatically-confirmed "
3045
+ "bookings."
3046
+ msgstr ""
3047
+
3048
+ #: includes/Settings.class.php:1669
3049
+ msgid "The email subject for admin notifications when a booking is cancelled."
3050
+ msgstr ""
3051
+
3052
+ #: includes/Settings.class.php:1621
3053
+ msgid "The email subject for admin notifications."
3054
+ msgstr "Oggetto della mail di notifica all'amministratore"
3055
+
3056
+ #: includes/Settings.class.php:1968
3057
+ msgid ""
3058
+ "The email template designer uses the WordPress customizer to let you modify "
3059
+ "the look and structure of the notification emails. The reminders section "
3060
+ "allows you to set up reservation reminders - SMS or email - which are sent "
3061
+ "at a chosen interval before the booking, as well as late arrival "
3062
+ "notifications - SMS or email - which are sent at a chosen interval after the "
3063
+ "booking time has passed."
3064
+ msgstr ""
3065
+ "Email template designer utilizza WordPress per consentire di modificare "
3066
+ "l'aspetto e la struttura delle e-mail di notifica. La sezione Promemoria "
3067
+ "consente di impostare promemoria di prenotazione - SMS o e -mail - che "
3068
+ "vengono inviati a un intervallo scelto prima della prenotazione, nonché le "
3069
+ "notifiche di arrivo in ritardo - SMS o e -mail - che vengono inviate a un "
3070
+ "intervallo prescelto dopo il tempo di prenotazione."
3071
+
3072
+ #: includes/Ajax.class.php:83
3073
+ msgid "The email you entered is not valid."
3074
+ msgstr ""
3075
+
3076
+ #: includes/CustomPostTypes.class.php:230
3077
+ msgctxt "The guest has booked but payment is pending"
3078
+ msgid "Payment Pending"
3079
+ msgstr ""
3080
+
3081
+ #: includes/CustomPostTypes.class.php:169
3082
+ msgctxt "The guest has cancelled their reservation themselves."
3083
+ msgid "Cancelled"
3084
+ msgstr ""
3085
+
3086
+ #: includes/CustomPostTypes.class.php:218
3087
+ msgctxt "The guest has tried to make a payment but it was declined."
3088
+ msgid "Payment Failed"
3089
+ msgstr ""
3090
+
3091
+ #: includes/CustomPostTypes.class.php:194
3092
+ msgctxt "The guests have arrived for their reservation"
3093
+ msgid "Arrived"
3094
+ msgstr ""
3095
+
3096
+ #: includes/Settings.class.php:2016
3097
+ msgid ""
3098
+ "The labelling options let you change the wording of the different labels "
3099
+ "that appear on the front end of the plugin. You can use this to translate "
3100
+ "them, customize the wording for your purpose, etc."
3101
+ msgstr ""
3102
+
3103
+ #: includes/MultipleLocations.class.php:398
3104
+ msgid "The location you selected is not valid. Please select another location."
3105
+ msgstr ""
3106
+
3107
+ #: includes/Booking.class.php:741
3108
+ msgid ""
3109
+ "The maximum number of reservations for that timeslot has been reached. "
3110
+ "Please select a different timeslot."
3111
+ msgstr ""
3112
+
3113
+ #: includes/Settings.class.php:2388
3114
+ msgid "The name of this website"
3115
+ msgstr "Nome di questo Sito Web"
3116
+
3117
+ #: includes/Settings.class.php:1529
3118
+ msgid ""
3119
+ "The name which should appear in the Reply-To field of a user notification "
3120
+ "email"
3121
+ msgstr ""
3122
+ "Nome che dovrebbe apparire nel campo \"rispondi a\" nella mail di notifica "
3123
+ "dell'utente"
3124
+
3125
+ #: includes/MultipleLocations.class.php:584
3126
+ msgid ""
3127
+ "The name which should appear in the Reply-To field of a user notification "
3128
+ "email."
3129
+ msgstr ""
3130
+
3131
+ #: includes/Settings.class.php:1985
3132
+ msgid ""
3133
+ "The payment options let you require a deposit for bookings, either via "
3134
+ "PayPal or Stripe. Deposits can be made conditional on a minimum party size "
3135
+ "or only for certain days/times."
3136
+ msgstr ""
3137
+ "Le opzioni di pagamento ti consentono di richiedere un deposito per le "
3138
+ "prenotazioni, tramite PayPal o Stripe. I depositi possono avere delle "
3139
+ "condizioni su una dimensione minima dei commensali o solo per determinati "
3140
+ "giorni."
3141
+
3142
+ #: includes/Settings.class.php:1927
3143
+ msgid "The premium version also gives you access to the following features:"
3144
+ msgstr ""
3145
+
3146
+ #: includes/Helper.class.php:59 includes/PaymentGatewayStripe.class.php:221
3147
+ #: includes/PaymentGatewayStripe.class.php:326
3148
+ #: includes/PaymentGatewayStripe.class.php:419
3149
+ msgid ""
3150
+ "The request has been rejected because it does not appear to have come from "
3151
+ "this site."
3152
+ msgstr ""
3153
+ "La richiesta è stata respinta perché non sembra provenire da questo sito."
3154
+
3155
+ #: includes/Editor.class.php:691
3156
+ msgid ""
3157
+ "The requested field could not be deleted because no ID or slug was received "
3158
+ "with your request."
3159
+ msgstr ""
3160
+
3161
+ #: includes/Editor.class.php:763
3162
+ msgid ""
3163
+ "The requested field could not be enabled because it did not appear to be "
3164
+ "disabled."
3165
+ msgstr ""
3166
+
3167
+ #: includes/Editor.class.php:751
3168
+ msgid ""
3169
+ "The requested field could not be enabled because no identifying slug was "
3170
+ "received with your request."
3171
+ msgstr ""
3172
+
3173
+ #: includes/Editor.class.php:659
3174
+ msgid ""
3175
+ "The requested field could not be loaded because no ID was received with your "
3176
+ "request."
3177
+ msgstr ""
3178
+
3179
+ #: includes/Settings.class.php:1395
3180
+ msgid "The secret key provided to you by Google"
3181
+ msgstr ""
3182
+
3183
+ #: includes/Settings.class.php:1384
3184
+ msgid "The site key provided to you by Google"
3185
+ msgstr ""
3186
+
3187
+ #: includes/Settings.class.php:2032
3188
+ msgid ""
3189
+ "The styling options let you choose a booking form layout and modify the "
3190
+ "colors, font family, font size and borders of the various elements found in "
3191
+ "the booking form."
3192
+ msgstr ""
3193
+
3194
+ #: includes/MailChimp.class.php:458
3195
+ msgid ""
3196
+ "The subscription request has been rejected because it does not appear to "
3197
+ "have come from this site."
3198
+ msgstr ""
3199
+ "La richiesta di abbonamento è stata respinta perché non sembra provenire da "
3200
+ "questo sito."
3201
+
3202
+ #: includes/Settings.class.php:2391
3203
+ msgid "The table(s) for the booking"
3204
+ msgstr ""
3205
+
3206
+ #: includes/Booking.class.php:326
3207
+ msgid ""
3208
+ "The time you entered is not valid. Please select from one of the times "
3209
+ "provided."
3210
+ msgstr "L'orario selezionato non è disponibile. Scegliere un'ora differente"
3211
+
3212
+ #: includes/Import.class.php:200
3213
+ msgid ""
3214
+ "The uploaded file exceeds the MAX_FILE_SIZE directive that was specified in "
3215
+ "the HTML form"
3216
+ msgstr ""
3217
+
3218
+ #: includes/Import.class.php:197
3219
+ msgid "The uploaded file exceeds the upload_max_filesize directive in php.ini"
3220
+ msgstr ""
3221
+
3222
+ #: includes/Import.class.php:203
3223
+ msgid "The uploaded file was only partially uploaded"
3224
+ msgstr ""
3225
+
3226
+ #: includes/Notifications.class.php:138
3227
+ msgid "There are currently no bookings today."
3228
+ msgstr ""
3229
+
3230
+ #: includes/Settings.class.php:529
3231
+ msgid ""
3232
+ "There are currently no times available for booking on your selected date."
3233
+ msgstr ""
3234
+
3235
+ #: includes/ExportHandler.class.php:150
3236
+ msgid "There are no bookings which match your export request."
3237
+ msgstr ""
3238
+
3239
+ #: includes/MailChimp.class.php:171
3240
+ msgid ""
3241
+ "There was an unexpected error when trying to retrieve the list's merge "
3242
+ "fields."
3243
+ msgstr ""
3244
+
3245
+ #: includes/AdminBookings.class.php:514
3246
+ msgid ""
3247
+ "This booking has been sent to the %sTrash%s where it can not be edited. Set "
3248
+ "the booking to Pending or Confirmed to edit it."
3249
+ msgstr ""
3250
+ "Questa prenotazione è stata inserita nel %sTrash%s dove non può essere "
3251
+ "modificata. Impostare la prenotazione come In attesa o confermata per "
3252
+ "poterla modificare"
3253
+
3254
+ #: includes/Editor.class.php:112
3255
+ msgid ""
3256
+ "This fieldset can not be deleted until all of its attached fields are "
3257
+ "removed or assigned to another fieldset."
3258
+ msgstr ""
3259
+
3260
+ #: includes/Settings.class.php:1415
3261
+ msgid ""
3262
+ "This turns off the feature that captures the IP address of the device making "
3263
+ "the booking."
3264
+ msgstr ""
3265
+
3266
+ #: includes/MultipleLocations.class.php:919 includes/Settings.class.php:962
3267
+ msgctxt "Thursday abbreviation"
3268
+ msgid "Th"
3269
+ msgstr ""
3270
+
3271
+ #: includes/Notifications.class.php:147
3272
+ #: includes/InstallationWalkthrough.class.php:357
3273
+ #: includes/Export.CSV.class.php:80 includes/Settings.class.php:527
3274
+ #: includes/Settings.class.php:568 includes/Settings.class.php:790
3275
+ msgid "Time"
3276
+ msgstr "Ora"
3277
+
3278
+ #: includes/Settings.class.php:1283
3279
+ msgid "Time Format"
3280
+ msgstr "Formato dell'ora"
3281
+
3282
+ #: includes/Settings.class.php:1061
3283
+ msgid "Time Interval"
3284
+ msgstr "Intervallo di tempo"
3285
+
3286
+ #: includes/InstallationWalkthrough.class.php:279
3287
+ msgid "Time Interval:"
3288
+ msgstr "Intervallo di tempo:"
3289
+
3290
+ #: includes/Addons.class.php:28
3291
+ msgctxt "Title of addons page"
3292
+ msgid "Addons"
3293
+ msgstr ""
3294
+
3295
+ #: includes/Addons.class.php:29
3296
+ msgctxt "Title of addons page in the admin menu"
3297
+ msgid "Addons"
3298
+ msgstr ""
3299
+
3300
+ #: includes/AdminBookings.class.php:67
3301
+ msgctxt "Title of admin page that lists bookings"
3302
+ msgid "Bookings"
3303
+ msgstr ""
3304
+
3305
+ #: includes/AdminBookings.class.php:68
3306
+ msgctxt "Title of bookings admin menu item"
3307
+ msgid "Bookings"
3308
+ msgstr ""
3309
+
3310
+ #: includes/Editor.class.php:52
3311
+ msgctxt "Title of Custom Fields editor link in the admin menu"
3312
+ msgid "Custom Fields"
3313
+ msgstr ""
3314
+
3315
+ #: includes/Import.class.php:47
3316
+ msgctxt "Title of Imports link in the admin menu"
3317
+ msgid "Import"
3318
+ msgstr ""
3319
+
3320
+ #: includes/Export.PDF.class.php:95
3321
+ #, php-format
3322
+ msgctxt "Title of PDF documents"
3323
+ msgid "Bookings at %s"
3324
+ msgstr ""
3325
+
3326
+ #: includes/Editor.class.php:51
3327
+ msgctxt "Title of the Custom Fields editor page"
3328
+ msgid "Custom Fields"
3329
+ msgstr ""
3330
+
3331
+ #: includes/Import.class.php:46
3332
+ msgctxt "Title of the Imports page"
3333
+ msgid "Import"
3334
+ msgstr ""
3335
+
3336
+ #: includes/Editor.class.php:111
3337
+ msgid "To add an Option field you must add at least one option below."
3338
+ msgstr ""
3339
+ "Per aggiungere un campo Opzione è necessario aggiungere almeno un'opzione "
3340
+ "qui sotto."
3341
+
3342
+ #: includes/ExportHandler.class.php:245 includes/Settings.class.php:524
3343
+ #: includes/WP_List_Table.BookingsTable.class.php:332
3344
+ msgid "Today"
3345
+ msgstr "Oggi"
3346
+
3347
+ #: includes/ExportHandler.class.php:260
3348
+ msgid "Today's bookings"
3349
+ msgstr ""
3350
+
3351
+ #: includes/MultipleLocations.class.php:892 includes/Settings.class.php:935
3352
+ msgctxt "Toggle a scheduling rule open and closed"
3353
+ msgid "Open and close this rule"
3354
+ msgstr ""
3355
+
3356
+ #: includes/WP_List_Table.BookingsTable.class.php:439
3357
+ #: includes/WP_List_Table.BookingsTable.class.php:608
3358
+ msgid "Trash"
3359
+ msgstr "Cestino"
3360
+
3361
+ #: includes/WP_List_Table.BookingsTable.class.php:440
3362
+ #, php-format
3363
+ msgid "Trash <span class=\"count\">(%s)</span>"
3364
+ msgid_plural "Trash <span class=\"count\">(%s)</span>"
3365
+ msgstr[0] ""
3366
+ msgstr[1] ""
3367
+
3368
+ #: includes/MultipleLocations.class.php:917 includes/Settings.class.php:960
3369
+ msgctxt "Tuesday abbreviation"
3370
+ msgid "Tu"
3371
+ msgstr ""
3372
+
3373
+ #: includes/ExportHandler.class.php:206
3374
+ msgid "Type"
3375
+ msgstr ""
3376
+
3377
+ #: includes/Dashboard.class.php:266 includes/Settings.class.php:1984
3378
+ msgid "Ultimate"
3379
+ msgstr "Ultimate"
3380
+
3381
+ #: includes/ExportHandler.class.php:127
3382
+ msgid "Unable to create export to match your request."
3383
+ msgstr "Impossibile creare l'esportazione e soddisfare la tua richiesta."
3384
+
3385
+ #: includes/PaymentGatewayStripe.class.php:660
3386
+ #, php-format
3387
+ msgid "Unable to find the Booking for ID %s"
3388
+ msgstr "Impossibile trovare la prenotazione per ID %s"
3389
+
3390
+ #: includes/AdminBookings.class.php:622
3391
+ msgid ""
3392
+ "Unable to trash this post. Please try again. If you continue to have trouble,"
3393
+ " please refresh the page."
3394
+ msgstr ""
3395
+ "Non è possibile cancellare questo articolo. Se il problema persiste, "
3396
+ "ricaricare la pagina"
3397
+
3398
+ #: includes/WP_List_Table.BookingsTable.class.php:691
3399
+ msgid "Unknown Date"
3400
+ msgstr "Data sconosciuta"
3401
+
3402
+ #: includes/WP_List_Table.BookingsTable.class.php:690
3403
+ msgid "Unknown IP"
3404
+ msgstr "IP Sconosciuto"
3405
+
3406
+ #: includes/Ajax.class.php:157
3407
+ msgid "Unkown error. Please try again"
3408
+ msgstr "Errore sconosciuto. Prova di nuovo"
3409
+
3410
+ #: includes/InstallationWalkthrough.class.php:268
3411
+ #: includes/Settings.class.php:1025
3412
+ msgid "Up to the last minute"
3413
+ msgstr "Fino all'ultimo minuto"
3414
+
3415
+ #: includes/ExportHandler.class.php:250
3416
+ #: includes/WP_List_Table.BookingsTable.class.php:321
3417
+ msgid "Upcoming"
3418
+ msgstr "Imminenti"
3419
+
3420
+ #: includes/AdminBookings.class.php:256
3421
+ msgid "Update"
3422
+ msgstr "Aggiorna"
3423
+
3424
+ #: includes/Settings.class.php:1939
3425
+ msgid "UPGRADE NOW"
3426
+ msgstr "UPGRADE NOW"
3427
+
3428
+ #: includes/Settings.class.php:1609
3429
+ msgid ""
3430
+ "Use the following tags to automatically add booking information to the "
3431
+ "emails. Tags labeled with an asterisk (*) can be used in the email subject "
3432
+ "as well."
3433
+ msgstr ""
3434
+ "Utilizza i seguenti Tags per inserire le informazioni della prenotazione "
3435
+ "automaticamente nelle mail. I Tags contrassegnati con (*) possono essere "
3436
+ "utilizzati anche come oggetto della mail"
3437
+
3438
+ #: includes/Settings.class.php:557
3439
+ msgid "Use the form below to modify your reservation"
3440
+ msgstr "Inserisci l'email utilizzata per la prenotazione"
3441
+
3442
+ #: includes/AdminBookings.class.php:303
3443
+ msgid "View all bans"
3444
+ msgstr ""
3445
+
3446
+ #: includes/CustomPostTypes.class.php:58
3447
+ #: includes/integrations/page-builder.php:264
3448
+ msgid "View Booking"
3449
+ msgstr "Vedi la prenotazione"
3450
+
3451
+ #: includes/patterns/view-bookings.php:6
3452
+ msgid "View Bookings"
3453
+ msgstr ""
3454
+
3455
+ #: includes/Settings.class.php:581
3456
+ msgid "View pending bookings"
3457
+ msgstr "Vedere le prenotazioni in attesa"
3458
+
3459
+ #: restaurant-reservations.php:587
3460
+ msgid "View the help documentation for Restaurant Reservations"
3461
+ msgstr "Visualizza l'help per il plugin"
3462
+
3463
+ #: includes/Settings.class.php:555
3464
+ msgid "Want to modify your reservation?"
3465
+ msgstr "Vuoi modificare o cancellare la tua prenotazione?"
3466
+
3467
+ #: includes/ExportHandler.class.php:66
3468
+ #, php-format
3469
+ msgid ""
3470
+ "Warning from Export Bookings for Restaurant Reservations: The server is not "
3471
+ "able to write to the font directory for the mPDF generator. Your PDF exports "
3472
+ "may not work properly until you change the file permissions for the "
3473
+ "directory /wp-content/plugins/export-for-rtb/lib/mpdf/ttfontdata/. Your web "
3474
+ "host can help you change the file permissions to be compatible. Or you can "
3475
+ "switch to the TCPDF renderer in the %s."
3476
+ msgstr ""
3477
+
3478
+ #: includes/Settings.class.php:547
3479
+ msgid ""
3480
+ "We are only placing a hold for the above amount on your payment instrument. "
3481
+ "You will be charged later."
3482
+ msgstr ""
3483
+
3484
+ #: includes/Booking.class.php:596
3485
+ #, php-format
3486
+ msgid "We only accept bookings for parties of more than %d people."
3487
+ msgstr ""
3488
+
3489
+ #: includes/Booking.class.php:588
3490
+ msgid "We only accept bookings for parties of up to %d people."
3491
+ msgstr "Accettiamo prenotazioni solo per gruppi con più di %d persone"
3492
+
3493
+ #: includes/MultipleLocations.class.php:918 includes/Settings.class.php:961
3494
+ msgctxt "Wednesday abbreviation"
3495
+ msgid "We"
3496
+ msgstr ""
3497
+
3498
+ #: includes/Settings.class.php:1084
3499
+ msgid "Week Starts On"
3500
+ msgstr "La settimana inizia"
3501
+
3502
+ #: includes/InstallationWalkthrough.class.php:330
3503
+ msgid "Weekly"
3504
+ msgstr "Settimana"
3505
+
3506
+ #: includes/InstallationWalkthrough.class.php:195
3507
+ msgid "Welcome to the Five-Star Restaurant Reservations Plugin"
3508
+ msgstr "Welcome to the Five-Star Restaurant Reservations Plugin"
3509
+
3510
+ #: includes/Settings.class.php:1509
3511
+ msgid ""
3512
+ "What time should the summary email be sent at? This is based on your "
3513
+ "WordPress timezone setting."
3514
+ msgstr ""
3515
+
3516
+ #: includes/AdminBookings.class.php:424
3517
+ msgid ""
3518
+ "When adding a booking or changing a booking's status with this form, no "
3519
+ "email notifications will be sent. Check this option if you want to send "
3520
+ "email notifications."
3521
+ msgstr ""
3522
+ "Quando inserite o modificate lo stato di una prenotazione con questo form, "
3523
+ "non verranno inviate notifiche tramite email. Spuntare questa opzione se "
3524
+ "volete inviare una notifica tramite email"
3525
+
3526
+ #: includes/Settings.class.php:947
3527
+ msgctxt "When Date range end date is not set"
3528
+ msgid "Upto Indefinite"
3529
+ msgstr ""
3530
+
3531
+ #: includes/Settings.class.php:946
3532
+ msgctxt "When Date range start date is not set"
3533
+ msgid "From Today"
3534
+ msgstr ""
3535
+
3536
+ #: includes/Settings.class.php:1045
3537
+ msgid ""
3538
+ "When the booking form is loaded, should it automatically attempt to select a "
3539
+ "valid date?"
3540
+ msgstr ""
3541
+ "Quando il form di prenotazione viene caricato, vuoi che mostri in automatico "
3542
+ "la prima data valida?"
3543
+
3544
+ #: includes/Booking.class.php:750
3545
+ msgid ""
3546
+ "With your party, the maximum number of seats for that timeslot would be "
3547
+ "exceeded. Please select a different timeslot or reduce your party size."
3548
+ msgstr ""
3549
+ "Il numero massimo di posti per quella fascia oraria è stato superato. "
3550
+ "Seleziona una fascia oraria diversa altrimenti contattaci."
3551
+
3552
+ #: includes/Export.CSV.class.php:213 includes/Settings.class.php:577
3553
+ #: includes/Settings.class.php:1194
3554
+ #: includes/integrations/business-profile.php:293
3555
+ msgid "Yes"
3556
+ msgstr "Sì"
3557
+
3558
+ #: includes/Settings.class.php:1342
3559
+ msgid ""
3560
+ "You can block bookings from specific email addresses. Enter each email "
3561
+ "address on a separate line."
3562
+ msgstr ""
3563
+
3564
+ #: includes/Settings.class.php:1353
3565
+ msgid ""
3566
+ "You can block bookings from specific IP addresses. Enter each IP address on "
3567
+ "a separate line. Be aware that many internet providers rotate their IP "
3568
+ "address assignments, so an IP address may accidentally refer to a different "
3569
+ "user. Also, if you block an IP address used by a public connection, such as "
3570
+ "cafe WIFI, a public library, or a university network, you may inadvertantly "
3571
+ "block several people."
3572
+ msgstr ""
3573
+
3574
+ #: includes/InstallationWalkthrough.class.php:203
3575
+ msgid ""
3576
+ "You can create a dedicated reservations booking page below, or skip this "
3577
+ "step and add your reservations to a page you've already created manually."
3578
+ msgstr ""
3579
+ "È possibile creare una pagina di prenotazione dedicata o saltare questo "
3580
+ "passaggio e aggiungere le tue prenotazioni a una pagina che hai già creato "
3581
+ "manualmente."
3582
+
3583
+ #: includes/Settings.class.php:2001
3584
+ msgid ""
3585
+ "You can export all your bookings to a PDF file, for use by your staff to "
3586
+ "manage upcoming bookings, for accounting purposes etc."
3587
+ msgstr "Puoi esportare tutte le tue prenotazioni in un file PDF"
3588
+
3589
+ #: includes/ExportHandler.class.php:119
3590
+ msgid "You do not have the required permissions to export bookings."
3591
+ msgstr ""
3592
+ "Non si dispone delle autorizzazioni richieste per esportare le prenotazioni."
3593
+
3594
+ #: restaurant-reservations.php:697 includes/AdminBookings.class.php:478
3595
+ #: includes/AdminBookings.class.php:866 includes/Editor.class.php:497
3596
+ #: includes/Helper.class.php:45
3597
+ msgid "You have been logged out. Please %slogin again%s."
3598
+ msgstr "Sei stato disconnesso. Per favore %s accedi di nuovo %s."
3599
+
3600
+ #: includes/Editor.class.php:219
3601
+ msgid "You have not disabled any default fields yet."
3602
+ msgstr "Non hai disabilitato nessun campo predefinito."
3603
+
3604
+ #: includes/Licenses.class.php:209
3605
+ #, php-format
3606
+ msgid ""
3607
+ "You have reached the activation limit for this license. If you have the "
3608
+ "license activated on other sites you will need to deactivate them or "
3609
+ "purchase more license keys from %sTheme of the Crop%s."
3610
+ msgstr ""
3611
+
3612
+ #: includes/AdminBookings.class.php:719
3613
+ msgid "You must select at least one column to display."
3614
+ msgstr "È necessario selezionare almeno una colonna da visualizzare."
3615
+
3616
+ #: includes/ExportHandler.class.php:143
3617
+ msgid ""
3618
+ "You selected a date range but didn't enter a start or end date. Please "
3619
+ "return and enter a start or end date."
3620
+ msgstr ""
3621
+ "Hai selezionato un intervallo di date ma non hai inserito una data di inizio "
3622
+ "o fine. Si prega di inserire una data di inizio o fine."
3623
+
3624
+ #: restaurant-reservations.php:677
3625
+ msgid ""
3626
+ "You're using the Five-Star Restaurant Reservations premium version, but the "
3627
+ "premium helper plugin is not active."
3628
+ msgstr ""
3629
+ "Stai utilizzando la versione premium di prenotazione a cinque stelle, ma il "
3630
+ "plug-in Helper premium non è attivo."
3631
+
3632
+ #: includes/WP_List_Table.BookingsTable.class.php:1032
3633
+ msgid "You're viewing bookings that have been moved to the trash."
3634
+ msgstr "Stai visualizzando delle prenotazioni spostate nel cestino"
3635
+
3636
+ #: includes/Licenses.class.php:211
3637
+ msgid ""
3638
+ "Your attempt to activate a license key failed. Please check the license key "
3639
+ "and try again."
3640
+ msgstr ""
3641
+ "Il tuo tentativo di attivare una chiave di licenza non è riuscito. Controlla "
3642
+ "la chiave di licenza e riprova."
3643
+
3644
+ #: includes/Licenses.class.php:205
3645
+ msgid ""
3646
+ "Your attempt to deactivate a license key failed. Please try again later or "
3647
+ "contact support for help."
3648
+ msgstr ""
3649
+ "Il tuo tentativo di disattivare la chiave di licenza non è riuscito. Riprova "
3650
+ "più tardi o contatta il supporto per l'aiuto."
3651
+
3652
+ #: includes/Booking.class.php:759
3653
+ msgid ""
3654
+ "Your booking and personal information exactly matches another booking. If "
3655
+ "this was not caused by refreshing the page, please call us to make a booking."
3656
+ msgstr ""
3657
+ "La tua prenotazione e le informazioni personali corrispondono esattamente a "
3658
+ "un'altra prenotazione. Se ciò non è stato causato dall'aggiornamento della "
3659
+ "pagina, chiamaci per effettuare una prenotazione."
3660
+
3661
+ #: includes/Booking.class.php:727
3662
+ msgid ""
3663
+ "Your booking has been rejected. Please call us if you would like to make a "
3664
+ "booking."
3665
+ msgstr ""
3666
+ "La tua prenotazione è stata respinta. Chiamaci se desideri effettuare una "
3667
+ "prenotazione."
3668
+
3669
+ #: includes/template-functions.php:150
3670
+ #, php-format
3671
+ msgid ""
3672
+ "Your reservation deposit payment has failed with the following message "
3673
+ "\"%s\" Please contact the site administrator for assistance."
3674
+ msgstr ""
3675
+ "Il pagamento del deposito di prenotazione non è riuscito: \"%s\". Si prega "
3676
+ "di contattare l'amministratore del sito per assistenza."
3677
+
3678
+ #: includes/template-functions.php:172
3679
+ msgid "Your reservation has been successfully cancelled."
3680
+ msgstr "La tua prenotazione è stata cancellata con succeso."
3681
+
3682
+ #: includes/Export.PDF.class.php:279
3683
+ #, php-format
3684
+ msgid ""
3685
+ "Your server has not loaded the mbstring PHP extension, or has disabled the "
3686
+ "mbregex PHP extension. mPDF requires both to output a PDF file. Please "
3687
+ "contact your website host and ask them to enable these PHP extensions. Or "
3688
+ "switch to the TCPDF library, which has fewer server requirements. You can "
3689
+ "change the PDF Renderer in the %s."
3690
+ msgstr ""
3691
+
3692
+ #: includes/WP_List_Table.BookingsTable.class.php:695
3693
+ msgid "✓ Consent acquired"
3694
+ msgstr ""
3695
+
3696
+ #: includes/WP_List_Table.BookingsTable.class.php:697
3697
+ msgid "✘ Consent not acquired"
3698
+ msgstr ""
languages/restaurant-reservations.pot CHANGED
@@ -2,7 +2,7 @@
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Five Star Restaurant Reservations\n"
5
- "POT-Creation-Date: 2022-04-12 10:03-0400\n"
6
  "PO-Revision-Date: 2020-08-20 11:03-0400\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Five Star Plugins\n"
@@ -11,19 +11,20 @@ msgstr ""
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
- "X-Generator: Poedit 3.0.1\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
- #: assets/js/block-booking-form.js:8 includes/Settings.class.php:1241
20
  #: includes/WP_Widget.BookingFormWidget.class.php:25
 
21
  msgid "Booking Form"
22
  msgstr ""
23
 
24
- #: assets/js/block-booking-form.js:31 includes/Export.CSV.class.php:156
25
- #: includes/MailChimp.class.php:114 includes/MultipleLocations.class.php:413
26
- #: includes/Settings.class.php:513
27
  msgid "Location"
28
  msgstr ""
29
 
@@ -40,13 +41,13 @@ msgstr ""
40
  msgid "Add New"
41
  msgstr ""
42
 
43
- #: includes/AdminBookings.class.php:170 restaurant-reservations.php:494
44
  msgid "Add Booking"
45
  msgstr ""
46
 
47
  #: includes/AdminBookings.class.php:173 includes/AdminBookings.class.php:214
48
  #: includes/AdminBookings.class.php:259 includes/Editor.class.php:448
49
- #: includes/Settings.class.php:552
50
  msgid "Cancel"
51
  msgstr ""
52
 
@@ -61,8 +62,10 @@ msgid "Subject"
61
  msgstr ""
62
 
63
  #: includes/AdminBookings.class.php:205 includes/Export.CSV.class.php:85
64
- #: includes/MailChimp.class.php:97 includes/Settings.class.php:530
 
65
  #: includes/WP_List_Table.BookingsTable.class.php:664
 
66
  msgid "Message"
67
  msgstr ""
68
 
@@ -72,7 +75,7 @@ msgstr ""
72
 
73
  #: includes/AdminBookings.class.php:275 includes/AdminBookings.class.php:301
74
  #: includes/AdminBookings.class.php:331 includes/AdminBookings.class.php:344
75
- #: includes/Editor.class.php:481 includes/Settings.class.php:517
76
  msgid "Close"
77
  msgstr ""
78
 
@@ -109,7 +112,7 @@ msgstr ""
109
 
110
  #: includes/AdminBookings.class.php:478 includes/AdminBookings.class.php:866
111
  #: includes/Editor.class.php:497 includes/Helper.class.php:45
112
- #: restaurant-reservations.php:692
113
  #, php-format
114
  msgid "You have been logged out. Please %slogin again%s."
115
  msgstr ""
@@ -173,143 +176,143 @@ msgstr ""
173
  msgid "Ask the customer to select a location"
174
  msgstr ""
175
 
176
- #: includes/Blocks.class.php:93
177
  msgid "Five Star Restaurant Reservations"
178
  msgstr ""
179
 
180
- #: includes/Booking.class.php:292
181
  msgid "Please enter the date you would like to book."
182
  msgstr ""
183
 
184
- #: includes/Booking.class.php:302
185
  msgid ""
186
  "The date you entered is not valid. Please select from one of the dates in "
187
  "the calendar."
188
  msgstr ""
189
 
190
- #: includes/Booking.class.php:313
191
  msgid "Please enter the time you would like to book."
192
  msgstr ""
193
 
194
- #: includes/Booking.class.php:323
195
  msgid ""
196
  "The time you entered is not valid. Please select from one of the times "
197
  "provided."
198
  msgstr ""
199
 
200
- #: includes/Booking.class.php:346
201
  #, php-format
202
  msgid "Sorry, bookings can not be made more than %s days in advance."
203
  msgstr ""
204
 
205
- #: includes/Booking.class.php:357
206
  msgid "Sorry, bookings can not be made in the past."
207
  msgstr ""
208
 
209
- #: includes/Booking.class.php:366
210
  msgid "Sorry, bookings can not be made for the same day."
211
  msgstr ""
212
 
213
- #: includes/Booking.class.php:374
214
  #, php-format
215
  msgid "Sorry, bookings must be made more than %s days in advance."
216
  msgstr ""
217
 
218
- #: includes/Booking.class.php:376
219
  #, php-format
220
  msgid "Sorry, bookings must be made more than %s hours in advance."
221
  msgstr ""
222
 
223
- #: includes/Booking.class.php:378
224
  #, php-format
225
  msgid "Sorry, bookings must be made more than %s minutes in advance."
226
  msgstr ""
227
 
228
- #: includes/Booking.class.php:478
229
  msgid "Sorry, no bookings are being accepted then."
230
  msgstr ""
231
 
232
- #: includes/Booking.class.php:537
233
  msgid "Sorry, no bookings are being accepted on that date."
234
  msgstr ""
235
 
236
- #: includes/Booking.class.php:543
237
  msgid "Sorry, no bookings are being accepted at that time."
238
  msgstr ""
239
 
240
- #: includes/Booking.class.php:565
241
  msgid "Please enter a name for this booking."
242
  msgstr ""
243
 
244
- #: includes/Booking.class.php:575
245
  msgid "Please let us know how many people will be in your party."
246
  msgstr ""
247
 
248
- #: includes/Booking.class.php:585
249
  #, php-format
250
  msgid "We only accept bookings for parties of up to %d people."
251
  msgstr ""
252
 
253
- #: includes/Booking.class.php:593
254
  #, php-format
255
  msgid "We only accept bookings for parties of more than %d people."
256
  msgstr ""
257
 
258
- #: includes/Booking.class.php:604
259
  msgid "Please enter an email address so we can confirm your booking."
260
  msgstr ""
261
 
262
- #: includes/Booking.class.php:610
263
  msgid "Please enter a valid email address so we can confirm your booking."
264
  msgstr ""
265
 
266
- #: includes/Booking.class.php:621
267
  msgid "Please provide a phone number so we can confirm your booking."
268
  msgstr ""
269
 
270
- #: includes/Booking.class.php:634
271
  msgid "Please select a table for your booking."
272
  msgstr ""
273
 
274
- #: includes/Booking.class.php:644
275
  msgid "Please select a valid table for your booking."
276
  msgstr ""
277
 
278
- #: includes/Booking.class.php:654
279
  msgid "Please fill out the reCAPTCHA box before submitting."
280
  msgstr ""
281
 
282
- #: includes/Booking.class.php:676
283
  msgid "Please fill out the reCAPTCHA box again and re-submit."
284
  msgstr ""
285
 
286
- #: includes/Booking.class.php:678
287
  msgid " If you encounter reCAPTCHA error multiple times, please contact us."
288
  msgstr ""
289
 
290
- #: includes/Booking.class.php:712
291
  msgid "Please complete this field to request a booking."
292
  msgstr ""
293
 
294
- #: includes/Booking.class.php:724
295
  msgid ""
296
  "Your booking has been rejected. Please call us if you would like to make a "
297
  "booking."
298
  msgstr ""
299
 
300
- #: includes/Booking.class.php:738
301
  msgid ""
302
  "The maximum number of reservations for that timeslot has been reached. "
303
  "Please select a different timeslot."
304
  msgstr ""
305
 
306
- #: includes/Booking.class.php:747
307
  msgid ""
308
  "With your party, the maximum number of seats for that timeslot would be "
309
  "exceeded. Please select a different timeslot or reduce your party size."
310
  msgstr ""
311
 
312
- #: includes/Booking.class.php:756
313
  msgid ""
314
  "Your booking and personal information exactly matches another booking. If "
315
  "this was not caused by refreshing the page, please call us to make a booking."
@@ -318,7 +321,7 @@ msgstr ""
318
  #: includes/CustomPostTypes.class.php:50 includes/CustomPostTypes.class.php:52
319
  #: includes/CustomPostTypes.class.php:53
320
  #: includes/WP_List_Table.BookingsTable.class.php:138
321
- #: restaurant-reservations.php:419
322
  msgid "Bookings"
323
  msgstr ""
324
 
@@ -331,7 +334,7 @@ msgstr ""
331
  msgid "Add New Booking"
332
  msgstr ""
333
 
334
- #: includes/CustomPostTypes.class.php:56 restaurant-reservations.php:495
335
  msgid "Edit Booking"
336
  msgstr ""
337
 
@@ -424,28 +427,28 @@ msgid "Bookings Summary"
424
  msgstr ""
425
 
426
  #: includes/Dashboard.class.php:142 includes/Export.CSV.class.php:79
427
- #: includes/Settings.class.php:514
428
  #: includes/WP_List_Table.BookingsTable.class.php:547
429
  msgid "Date"
430
  msgstr ""
431
 
432
  #: includes/Dashboard.class.php:143 includes/Export.CSV.class.php:82
433
- #: includes/Notifications.class.php:148 includes/Settings.class.php:521
434
- #: includes/Settings.class.php:560 includes/Settings.class.php:775
435
  #: includes/WP_List_Table.BookingsTable.class.php:549
436
  msgid "Party"
437
  msgstr ""
438
 
439
  #: includes/Dashboard.class.php:144 includes/Export.CSV.class.php:81
440
- #: includes/MailChimp.class.php:94 includes/Notifications.class.php:149
441
- #: includes/Settings.class.php:526 includes/Settings.class.php:561
442
- #: includes/Settings.class.php:776
443
  #: includes/WP_List_Table.BookingsTable.class.php:550
444
  msgid "Name"
445
  msgstr ""
446
 
447
  #: includes/Dashboard.class.php:145 includes/Notifications.class.php:153
448
- #: includes/Settings.class.php:565 includes/Settings.class.php:780
449
  #: includes/WP_List_Table.BookingsTable.class.php:553
450
  msgid "Status"
451
  msgstr ""
@@ -466,12 +469,12 @@ msgstr ""
466
  msgid "Select version to trial"
467
  msgstr ""
468
 
469
- #: includes/Dashboard.class.php:265 includes/Settings.class.php:1996
470
- #: includes/Settings.class.php:2011 includes/Settings.class.php:2027
471
  msgid "Premium"
472
  msgstr ""
473
 
474
- #: includes/Dashboard.class.php:266 includes/Settings.class.php:1980
475
  msgid "Ultimate"
476
  msgstr ""
477
 
@@ -537,7 +540,7 @@ msgid ""
537
  "custom fields will be removed. This action can not be undone."
538
  msgstr ""
539
 
540
- #: includes/Editor.class.php:114 restaurant-reservations.php:496
541
  msgid ""
542
  "An unspecified error occurred. Please try again. If the problem persists, "
543
  "try logging out and logging back in."
@@ -700,21 +703,21 @@ msgstr ""
700
 
701
  #: includes/Export.CSV.class.php:80
702
  #: includes/InstallationWalkthrough.class.php:357
703
- #: includes/Notifications.class.php:147 includes/Settings.class.php:518
704
- #: includes/Settings.class.php:559 includes/Settings.class.php:774
705
  msgid "Time"
706
  msgstr ""
707
 
708
- #: includes/Export.CSV.class.php:83 includes/MailChimp.class.php:171
709
- #: includes/Notifications.class.php:150 includes/Settings.class.php:527
710
- #: includes/Settings.class.php:562 includes/Settings.class.php:777
711
  #: includes/WP_List_Table.BookingsTable.class.php:551
712
  msgid "Email"
713
  msgstr ""
714
 
715
  #: includes/Export.CSV.class.php:84 includes/Notifications.class.php:151
716
- #: includes/Settings.class.php:528 includes/Settings.class.php:563
717
- #: includes/Settings.class.php:778
718
  #: includes/WP_List_Table.BookingsTable.class.php:552
719
  msgid "Phone"
720
  msgstr ""
@@ -723,33 +726,33 @@ msgstr ""
723
  msgid "Date the request was made"
724
  msgstr ""
725
 
726
- #: includes/Export.CSV.class.php:199
727
  msgid "Data Privacy Consent"
728
  msgstr ""
729
 
730
- #: includes/Export.CSV.class.php:215 includes/Settings.class.php:568
731
- #: includes/Settings.class.php:1175
732
  #: includes/integrations/business-profile.php:293
733
  msgid "Yes"
734
  msgstr ""
735
 
736
- #: includes/Export.CSV.class.php:215 includes/Settings.class.php:569
737
- #: includes/Settings.class.php:1174
738
  #: includes/integrations/business-profile.php:294
739
  msgid "No"
740
  msgstr ""
741
 
742
- #: includes/Export.CSV.class.php:234 includes/Export.PDF.class.php:232
743
- #: includes/Settings.class.php:522
744
  msgid "Table(s)"
745
  msgstr ""
746
 
747
- #: includes/Export.CSV.class.php:269 includes/Settings.class.php:554
748
  #: includes/WP_List_Table.BookingsTable.class.php:556
749
  msgid "Deposit"
750
  msgstr ""
751
 
752
- #: includes/Export.CSV.class.php:270
753
  msgid "Receipt ID"
754
  msgstr ""
755
 
@@ -834,7 +837,7 @@ msgstr ""
834
  msgid "Confirm"
835
  msgstr ""
836
 
837
- #: includes/Field.Controller.class.php:534
838
  #, php-format
839
  msgid "%s Checked"
840
  msgstr ""
@@ -1008,7 +1011,7 @@ msgid ""
1008
  msgstr ""
1009
 
1010
  #: includes/InstallationWalkthrough.class.php:221
1011
- #: includes/MultipleLocations.class.php:834 includes/Settings.class.php:905
1012
  msgid "Add new scheduling rule"
1013
  msgstr ""
1014
 
@@ -1052,27 +1055,27 @@ msgid "Any Time"
1052
  msgstr ""
1053
 
1054
  #: includes/InstallationWalkthrough.class.php:258
1055
- #: includes/Settings.class.php:987
1056
  msgid "From 1 day in advance"
1057
  msgstr ""
1058
 
1059
  #: includes/InstallationWalkthrough.class.php:259
1060
- #: includes/Settings.class.php:988
1061
  msgid "From 1 week in advance"
1062
  msgstr ""
1063
 
1064
  #: includes/InstallationWalkthrough.class.php:260
1065
- #: includes/Settings.class.php:989
1066
  msgid "From 2 weeks in advance"
1067
  msgstr ""
1068
 
1069
  #: includes/InstallationWalkthrough.class.php:261
1070
- #: includes/Settings.class.php:990
1071
  msgid "From 30 days in advance"
1072
  msgstr ""
1073
 
1074
  #: includes/InstallationWalkthrough.class.php:262
1075
- #: includes/Settings.class.php:992
1076
  msgid "From 90 days in advance"
1077
  msgstr ""
1078
 
@@ -1081,37 +1084,37 @@ msgid "Late Bookings:"
1081
  msgstr ""
1082
 
1083
  #: includes/InstallationWalkthrough.class.php:268
1084
- #: includes/Settings.class.php:1008
1085
  msgid "Up to the last minute"
1086
  msgstr ""
1087
 
1088
  #: includes/InstallationWalkthrough.class.php:269
1089
- #: includes/Settings.class.php:1009
1090
  msgid "At least 15 minutes in advance"
1091
  msgstr ""
1092
 
1093
  #: includes/InstallationWalkthrough.class.php:270
1094
- #: includes/Settings.class.php:1010
1095
  msgid "At least 30 minutes in advance"
1096
  msgstr ""
1097
 
1098
  #: includes/InstallationWalkthrough.class.php:271
1099
- #: includes/Settings.class.php:1011
1100
  msgid "At least 45 minutes in advance"
1101
  msgstr ""
1102
 
1103
  #: includes/InstallationWalkthrough.class.php:272
1104
- #: includes/Settings.class.php:1012
1105
  msgid "At least 1 hour in advance"
1106
  msgstr ""
1107
 
1108
  #: includes/InstallationWalkthrough.class.php:273
1109
- #: includes/Settings.class.php:1013
1110
  msgid "At least 4 hours in advance"
1111
  msgstr ""
1112
 
1113
  #: includes/InstallationWalkthrough.class.php:274
1114
- #: includes/Settings.class.php:1014
1115
  msgid "At least 24 hours in advance"
1116
  msgstr ""
1117
 
@@ -1124,22 +1127,22 @@ msgid "Time Interval:"
1124
  msgstr ""
1125
 
1126
  #: includes/InstallationWalkthrough.class.php:281
1127
- #: includes/Settings.class.php:1052
1128
  msgid "Every 30 minutes"
1129
  msgstr ""
1130
 
1131
  #: includes/InstallationWalkthrough.class.php:282
1132
- #: includes/Settings.class.php:1053
1133
  msgid "Every 15 minutes"
1134
  msgstr ""
1135
 
1136
  #: includes/InstallationWalkthrough.class.php:283
1137
- #: includes/Settings.class.php:1054
1138
  msgid "Every 10 minutes"
1139
  msgstr ""
1140
 
1141
  #: includes/InstallationWalkthrough.class.php:284
1142
- #: includes/Settings.class.php:1055
1143
  msgid "Every 5 minutes"
1144
  msgstr ""
1145
 
@@ -1186,7 +1189,7 @@ msgid "Delete rule"
1186
  msgstr ""
1187
 
1188
  #: includes/InstallationWalkthrough.class.php:411
1189
- #: includes/MultipleLocations.class.php:848 includes/Settings.class.php:920
1190
  msgid "Delete scheduling rule"
1191
  msgstr ""
1192
 
@@ -1221,133 +1224,137 @@ msgid ""
1221
  "and try again."
1222
  msgstr ""
1223
 
1224
- #: includes/MailChimp.class.php:93
1225
  msgid "Date/Time of Booking"
1226
  msgstr ""
1227
 
1228
- #: includes/MailChimp.class.php:95
1229
  msgid "Party Size"
1230
  msgstr ""
1231
 
1232
- #: includes/MailChimp.class.php:96
1233
  msgid "Phone Number"
1234
  msgstr ""
1235
 
1236
- #: includes/MailChimp.class.php:167
1237
  msgid "Booking Form Data"
1238
  msgstr ""
1239
 
1240
- #: includes/MailChimp.class.php:168
1241
  msgid "MailChimp List Field"
1242
  msgstr ""
1243
 
1244
- #: includes/MailChimp.class.php:169
1245
  msgid ""
1246
  "Connect information from the booking request to <a href=\"http://kb."
1247
  "mailchimp.com/article/getting-started-with-merge-tags\" target=\"_blank"
1248
  "\">merge fields</a> in your MailChimp list."
1249
  msgstr ""
1250
 
1251
- #: includes/MailChimp.class.php:170
1252
  msgid ""
1253
  "There was an unexpected error when trying to retrieve the list's merge "
1254
  "fields."
1255
  msgstr ""
1256
 
1257
- #: includes/MailChimp.class.php:172
1258
  msgid "The email field is automatically merged."
1259
  msgstr ""
1260
 
1261
- #: includes/MailChimp.class.php:457
1262
  msgid ""
1263
  "The subscription request has been rejected because it does not appear to "
1264
  "have come from this site."
1265
  msgstr ""
1266
 
1267
- #: includes/MultipleLocations.class.php:365
 
 
 
 
1268
  msgid "Please select a location for your booking."
1269
  msgstr ""
1270
 
1271
- #: includes/MultipleLocations.class.php:372
1272
  msgid "The location you selected is not valid. Please select another location."
1273
  msgstr ""
1274
 
1275
- #: includes/MultipleLocations.class.php:481
1276
  msgid "Reservations"
1277
  msgstr ""
1278
 
1279
- #: includes/MultipleLocations.class.php:694
1280
  msgid "Location for which this booking was made."
1281
  msgstr ""
1282
 
1283
- #: includes/MultipleLocations.class.php:800
1284
  msgid "Global"
1285
  msgstr ""
1286
 
1287
- #: includes/MultipleLocations.class.php:813
1288
  msgid "Select Schedule Location"
1289
  msgstr ""
1290
 
1291
- #: includes/MultipleLocations.class.php:825
1292
  msgid "Schedule Location"
1293
  msgstr ""
1294
 
1295
- #: includes/MultipleLocations.class.php:826
1296
  msgid ""
1297
  "Select which location the schedule will apply to. If a specific location "
1298
  "doesn't have a schedule set, then it will fall back to the global schedule "
1299
  "when booking."
1300
  msgstr ""
1301
 
1302
- #: includes/MultipleLocations.class.php:867 includes/Settings.class.php:939
1303
  msgid "Schedule"
1304
  msgstr ""
1305
 
1306
- #: includes/MultipleLocations.class.php:868 includes/Settings.class.php:940
1307
  msgid "Define the weekly schedule during which you accept bookings."
1308
  msgstr ""
1309
 
1310
- #: includes/MultipleLocations.class.php:894 includes/Settings.class.php:966
1311
  msgid "Exceptions"
1312
  msgstr ""
1313
 
1314
- #: includes/MultipleLocations.class.php:895 includes/Settings.class.php:967
1315
  msgid ""
1316
  "Define special opening hours for holidays, events or other needs. Leave the "
1317
  "time empty if you're closed all day."
1318
  msgstr ""
1319
 
1320
- #: includes/MultipleLocations.class.php:912
1321
  msgid "Select Seat Restrictions Location"
1322
  msgstr ""
1323
 
1324
- #: includes/MultipleLocations.class.php:924
1325
  msgid "Seat Restrictions Location"
1326
  msgstr ""
1327
 
1328
- #: includes/MultipleLocations.class.php:925
1329
  msgid ""
1330
  "Select which location the restrictions will apply to. If a specific location "
1331
  "doesn't have restrictions set, then the global total number will be used as "
1332
  "a fall-back."
1333
  msgstr ""
1334
 
1335
- #: includes/MultipleLocations.class.php:955
1336
  msgid "Max Reservations"
1337
  msgstr ""
1338
 
1339
- #: includes/MultipleLocations.class.php:956
1340
  msgid ""
1341
  "How many reservations, if enabled, should be allowed at the same time at "
1342
  "this location? Set dining block length to change how long a meal typically "
1343
  "lasts."
1344
  msgstr ""
1345
 
1346
- #: includes/MultipleLocations.class.php:969
1347
  msgid "Max People"
1348
  msgstr ""
1349
 
1350
- #: includes/MultipleLocations.class.php:970
1351
  msgid ""
1352
  "How many people, if enabled, should be allowed to be present at this "
1353
  "restaurant location at the same time? Set dining block length to change how "
@@ -1355,6 +1362,10 @@ msgid ""
1355
  "set."
1356
  msgstr ""
1357
 
 
 
 
 
1358
  #: includes/Notifications.class.php:138
1359
  msgid "There are currently no bookings today."
1360
  msgstr ""
@@ -1363,19 +1374,19 @@ msgstr ""
1363
  msgid "Please find a summary of today's reservations in the table below."
1364
  msgstr ""
1365
 
1366
- #: includes/Notifications.class.php:152 includes/Settings.class.php:564
1367
- #: includes/Settings.class.php:779
1368
  #: includes/WP_List_Table.BookingsTable.class.php:557
1369
  msgid "Table"
1370
  msgstr ""
1371
 
1372
- #: includes/Notifications.class.php:154 includes/Settings.class.php:566
1373
- #: includes/Settings.class.php:781
1374
  #: includes/WP_List_Table.BookingsTable.class.php:560
1375
  msgid "Details"
1376
  msgstr ""
1377
 
1378
- #: includes/Notifications.class.php:186
1379
  msgid "Daily Email Summary"
1380
  msgstr ""
1381
 
@@ -1450,375 +1461,391 @@ msgstr ""
1450
  msgid "Email Address"
1451
  msgstr ""
1452
 
1453
- #: includes/Settings.class.php:509
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1454
  msgid "Sign up for our mailing list."
1455
  msgstr ""
1456
 
1457
- #: includes/Settings.class.php:512
1458
  msgid "Book a table"
1459
  msgstr ""
1460
 
1461
- #: includes/Settings.class.php:515
1462
  #: includes/WP_List_Table.BookingsTable.class.php:332
1463
  msgid "Today"
1464
  msgstr ""
1465
 
1466
- #: includes/Settings.class.php:516 includes/Settings.class.php:519
1467
  msgid "Clear"
1468
  msgstr ""
1469
 
1470
- #: includes/Settings.class.php:520
1471
  msgid ""
1472
  "There are currently no times available for booking on your selected date."
1473
  msgstr ""
1474
 
1475
- #: includes/Settings.class.php:523
1476
  msgid "min."
1477
  msgstr ""
1478
 
1479
- #: includes/Settings.class.php:524
1480
  msgid "max."
1481
  msgstr ""
1482
 
1483
- #: includes/Settings.class.php:525
1484
  msgid "Contact Details"
1485
  msgstr ""
1486
 
1487
- #: includes/Settings.class.php:529
1488
  msgid "Add a Message"
1489
  msgstr ""
1490
 
1491
- #: includes/Settings.class.php:531
1492
  msgid "Request Booking"
1493
  msgstr ""
1494
 
1495
- #: includes/Settings.class.php:533
1496
  msgid "Payment Gateway"
1497
  msgstr ""
1498
 
1499
- #: includes/Settings.class.php:534
1500
  msgid "Proceed to Deposit"
1501
  msgstr ""
1502
 
1503
- #: includes/Settings.class.php:535
1504
  msgid "Request Booking or Proceed to Deposit"
1505
  msgstr ""
1506
 
1507
- #: includes/Settings.class.php:536
1508
  msgid "Pay via PayPal"
1509
  msgstr ""
1510
 
1511
- #: includes/Settings.class.php:537
1512
  msgid "Deposit Required: "
1513
  msgstr ""
1514
 
1515
- #: includes/Settings.class.php:538
1516
  msgid ""
1517
  "We are only placing a hold for the above amount on your payment instrument. "
1518
  "You will be charged later."
1519
  msgstr ""
1520
 
1521
- #: includes/Settings.class.php:539
1522
  msgid "Card Detail"
1523
  msgstr ""
1524
 
1525
- #: includes/Settings.class.php:540
1526
  msgid "Card Number"
1527
  msgstr ""
1528
 
1529
- #: includes/Settings.class.php:541
1530
  msgid "CVC"
1531
  msgstr ""
1532
 
1533
- #: includes/Settings.class.php:542
1534
  msgid "Expiration (MM/YYYY)"
1535
  msgstr ""
1536
 
1537
- #: includes/Settings.class.php:543
1538
  msgid ""
1539
  "Please wait. Do not refresh until the button enables or the page reloads."
1540
  msgstr ""
1541
 
1542
- #: includes/Settings.class.php:544
1543
  msgid "Make Deposit"
1544
  msgstr ""
1545
 
1546
- #: includes/Settings.class.php:546
1547
  msgid "Want to modify your reservation?"
1548
  msgstr ""
1549
 
1550
- #: includes/Settings.class.php:547
1551
  msgid "Make a reservation"
1552
  msgstr ""
1553
 
1554
- #: includes/Settings.class.php:548
1555
  msgid "Use the form below to modify your reservation"
1556
  msgstr ""
1557
 
1558
- #: includes/Settings.class.php:549
1559
  msgid "Email:"
1560
  msgstr ""
1561
 
1562
- #: includes/Settings.class.php:550
1563
  msgid "Find Reservations"
1564
  msgstr ""
1565
 
1566
- #: includes/Settings.class.php:551
1567
  msgid "No bookings were found for the email address you entered."
1568
  msgstr ""
1569
 
1570
- #: includes/Settings.class.php:553
1571
  msgid "Cancelled"
1572
  msgstr ""
1573
 
1574
- #: includes/Settings.class.php:555
1575
  msgid "guest"
1576
  msgstr ""
1577
 
1578
- #: includes/Settings.class.php:556
1579
  msgid "guests"
1580
  msgstr ""
1581
 
1582
- #: includes/Settings.class.php:558
1583
  msgid "Arrived"
1584
  msgstr ""
1585
 
1586
- #: includes/Settings.class.php:567
1587
  msgid "Set reservation status to 'Arrived'?"
1588
  msgstr ""
1589
 
1590
- #: includes/Settings.class.php:571
1591
  msgid "Cancel booking"
1592
  msgstr ""
1593
 
1594
- #: includes/Settings.class.php:572
1595
  msgid "View pending bookings"
1596
  msgstr ""
1597
 
1598
- #: includes/Settings.class.php:573
1599
  msgid "Confirm this booking"
1600
  msgstr ""
1601
 
1602
- #: includes/Settings.class.php:574
1603
  msgid "Reject this booking"
1604
  msgstr ""
1605
 
1606
- #: includes/Settings.class.php:876 includes/Settings.class.php:877
1607
- #: restaurant-reservations.php:425
1608
  msgid "Settings"
1609
  msgstr ""
1610
 
1611
- #: includes/Settings.class.php:889
1612
  msgid "Booking Schedule"
1613
  msgstr ""
1614
 
1615
- #: includes/Settings.class.php:898
1616
  msgid "Scheduling Options"
1617
  msgstr ""
1618
 
1619
- #: includes/Settings.class.php:982
1620
  msgid "Early Bookings"
1621
  msgstr ""
1622
 
1623
- #: includes/Settings.class.php:983
1624
  msgid ""
1625
  "Select how early customers can make their booking. (Administrators and "
1626
  "Booking Managers are not restricted by this setting.)"
1627
  msgstr ""
1628
 
1629
- #: includes/Settings.class.php:986
1630
  msgid "Any time"
1631
  msgstr ""
1632
 
1633
- #: includes/Settings.class.php:991
1634
  msgid "From 60 days in advance"
1635
  msgstr ""
1636
 
1637
- #: includes/Settings.class.php:1004
1638
  msgid "Late Bookings"
1639
  msgstr ""
1640
 
1641
- #: includes/Settings.class.php:1005
1642
  msgid ""
1643
  "Select how late customers can make their booking. (Administrators and "
1644
  "Booking Managers are not restricted by this setting.)"
1645
  msgstr ""
1646
 
1647
- #: includes/Settings.class.php:1015
1648
  msgid "Block same-day bookings"
1649
  msgstr ""
1650
 
1651
- #: includes/Settings.class.php:1027
1652
  msgid "Date Pre-selection"
1653
  msgstr ""
1654
 
1655
- #: includes/Settings.class.php:1028
1656
  msgid ""
1657
  "When the booking form is loaded, should it automatically attempt to select a "
1658
  "valid date?"
1659
  msgstr ""
1660
 
1661
- #: includes/Settings.class.php:1031
1662
  msgid "Select today if valid"
1663
  msgstr ""
1664
 
1665
- #: includes/Settings.class.php:1032
1666
  msgid "Select today or next valid date"
1667
  msgstr ""
1668
 
1669
- #: includes/Settings.class.php:1033
1670
  msgid "Leave empty"
1671
  msgstr ""
1672
 
1673
- #: includes/Settings.class.php:1044
1674
  msgid "Time Interval"
1675
  msgstr ""
1676
 
1677
- #: includes/Settings.class.php:1045
1678
  msgid "Select the number of minutes between each available time."
1679
  msgstr ""
1680
 
1681
- #: includes/Settings.class.php:1048
1682
  msgid "Every 180 minutes"
1683
  msgstr ""
1684
 
1685
- #: includes/Settings.class.php:1049
1686
  msgid "Every 120 minutes"
1687
  msgstr ""
1688
 
1689
- #: includes/Settings.class.php:1050
1690
  msgid "Every 90 minutes"
1691
  msgstr ""
1692
 
1693
- #: includes/Settings.class.php:1051
1694
  msgid "Every 60 minutes"
1695
  msgstr ""
1696
 
1697
- #: includes/Settings.class.php:1066
1698
  msgid "Week Starts On"
1699
  msgstr ""
1700
 
1701
- #: includes/Settings.class.php:1067
1702
  msgid "Select the first day of the week"
1703
  msgstr ""
1704
 
1705
- #: includes/Settings.class.php:1070
1706
  msgid "Sunday"
1707
  msgstr ""
1708
 
1709
- #: includes/Settings.class.php:1071
1710
  msgid "Monday"
1711
  msgstr ""
1712
 
1713
- #: includes/Settings.class.php:1080
1714
  msgid "Basic"
1715
  msgstr ""
1716
 
1717
- #: includes/Settings.class.php:1089 includes/Settings.class.php:1497
1718
  msgid "General"
1719
  msgstr ""
1720
 
1721
- #: includes/Settings.class.php:1100
1722
  msgid "Booking Page"
1723
  msgstr ""
1724
 
1725
- #: includes/Settings.class.php:1101
1726
  msgid ""
1727
  "Select a page on your site to automatically display the booking form and "
1728
  "confirmation message."
1729
  msgstr ""
1730
 
1731
- #: includes/Settings.class.php:1119
1732
  msgid "Min Party Size"
1733
  msgstr ""
1734
 
1735
- #: includes/Settings.class.php:1120
1736
  msgid "Set a minimum allowed party size for bookings."
1737
  msgstr ""
1738
 
1739
- #: includes/Settings.class.php:1132
1740
  msgid "Max Party Size"
1741
  msgstr ""
1742
 
1743
- #: includes/Settings.class.php:1133
1744
  msgid "Set a maximum allowed party size for bookings."
1745
  msgstr ""
1746
 
1747
- #: includes/Settings.class.php:1145
1748
  msgid "Automatically Confirm Below Party Size"
1749
  msgstr ""
1750
 
1751
- #: includes/Settings.class.php:1146
1752
  msgid ""
1753
  "Set a maximum party size below which all bookings will be automatically "
1754
  "confirmed."
1755
  msgstr ""
1756
 
1757
- #: includes/Settings.class.php:1159
1758
  msgid "Allow Cancellations"
1759
  msgstr ""
1760
 
1761
- #: includes/Settings.class.php:1160
1762
  msgid ""
1763
  "Adds a cancellation option to your booking form, so that customers are able "
1764
  "to cancel their reservations."
1765
  msgstr ""
1766
 
1767
- #: includes/Settings.class.php:1170
1768
  msgid "Require Phone"
1769
  msgstr ""
1770
 
1771
- #: includes/Settings.class.php:1171
1772
  msgid "Don't accept booking requests without a phone number."
1773
  msgstr ""
1774
 
1775
- #: includes/Settings.class.php:1186
1776
  msgid "Pending Confirmation Message"
1777
  msgstr ""
1778
 
1779
- #: includes/Settings.class.php:1187
1780
  msgid ""
1781
  "Enter the message to display when a booking request is made and is set to "
1782
  "pending confirmation."
1783
  msgstr ""
1784
 
1785
- #: includes/Settings.class.php:1198
1786
  msgid "Confirmed Booking Message"
1787
  msgstr ""
1788
 
1789
- #: includes/Settings.class.php:1199
1790
  msgid ""
1791
  "Enter the message to display when a booking is made that has been "
1792
  "automatically confirmed."
1793
  msgstr ""
1794
 
1795
- #: includes/Settings.class.php:1210
1796
  msgid "Pending Redirect Page"
1797
  msgstr ""
1798
 
1799
- #: includes/Settings.class.php:1211
1800
  msgid ""
1801
  "Input the URL of the page you want the booking form to redirect to after a "
1802
  "reservation is made that is set to pending. This overrides the \"Pending "
1803
  "Confirmation Message\" text/option."
1804
  msgstr ""
1805
 
1806
- #: includes/Settings.class.php:1221
1807
  msgid "Confirmed Redirect Page"
1808
  msgstr ""
1809
 
1810
- #: includes/Settings.class.php:1222
1811
  msgid ""
1812
  "Input the URL of the page you want the booking form to redirect to after a "
1813
  "reservation is made that is automatically confirmed. This overrides the "
1814
  "\"Confirmed Booking Message\" text/option."
1815
  msgstr ""
1816
 
1817
- #: includes/Settings.class.php:1232
1818
  msgid "Cancellation Redirect Page"
1819
  msgstr ""
1820
 
1821
- #: includes/Settings.class.php:1233
1822
  msgid ""
1823
  "Input the URL of the page you want the cancellation form to redirect to when "
1824
  "someone cancels their reservation. Only applicable if the \"Allow "
@@ -1826,11 +1853,11 @@ msgid ""
1826
  "success message instead of redirecting."
1827
  msgstr ""
1828
 
1829
- #: includes/Settings.class.php:1252
1830
  msgid "Date Format"
1831
  msgstr ""
1832
 
1833
- #: includes/Settings.class.php:1253
1834
  #, php-format
1835
  msgid ""
1836
  "Define how the date is formatted on the booking form. %sFormatting rules%s. "
@@ -1838,11 +1865,11 @@ msgid ""
1838
  "in notification messages, modify your general %sWordPress Settings%s."
1839
  msgstr ""
1840
 
1841
- #: includes/Settings.class.php:1264
1842
  msgid "Time Format"
1843
  msgstr ""
1844
 
1845
- #: includes/Settings.class.php:1265
1846
  #, php-format
1847
  msgid ""
1848
  "Define how the time is formatted on the booking form. %sFormatting rules%s. "
@@ -1850,56 +1877,56 @@ msgid ""
1850
  "in notification messages, modify your general %sWordPress Settings%s."
1851
  msgstr ""
1852
 
1853
- #: includes/Settings.class.php:1276
1854
  msgid "Display Unavailable Time Slots"
1855
  msgstr ""
1856
 
1857
- #: includes/Settings.class.php:1277
1858
  msgid ""
1859
  "Display any time slots (greyed out) which are not available for booking on "
1860
  "the front end."
1861
  msgstr ""
1862
 
1863
- #: includes/Settings.class.php:1289
1864
  msgid "Language"
1865
  msgstr ""
1866
 
1867
- #: includes/Settings.class.php:1290
1868
  msgid ""
1869
  "Select a language to use for the booking form datepicker if it is different "
1870
  "than your WordPress language setting."
1871
  msgstr ""
1872
 
1873
- #: includes/Settings.class.php:1302
1874
  msgid "Refresh Bookings Page"
1875
  msgstr ""
1876
 
1877
- #: includes/Settings.class.php:1303
1878
  msgid ""
1879
  "After how many minutes should the Bookings page be automatically refreshed? "
1880
  "The minimum is 1 minute and you can disable it by inputting 0 or leaving it "
1881
  "empty."
1882
  msgstr ""
1883
 
1884
- #: includes/Settings.class.php:1311
1885
  msgid "Security"
1886
  msgstr ""
1887
 
1888
- #: includes/Settings.class.php:1322
1889
  msgid "Banned Email Addresses"
1890
  msgstr ""
1891
 
1892
- #: includes/Settings.class.php:1323
1893
  msgid ""
1894
  "You can block bookings from specific email addresses. Enter each email "
1895
  "address on a separate line."
1896
  msgstr ""
1897
 
1898
- #: includes/Settings.class.php:1333
1899
  msgid "Banned IP Addresses"
1900
  msgstr ""
1901
 
1902
- #: includes/Settings.class.php:1334
1903
  msgid ""
1904
  "You can block bookings from specific IP addresses. Enter each IP address on "
1905
  "a separate line. Be aware that many internet providers rotate their IP "
@@ -1909,15 +1936,15 @@ msgid ""
1909
  "block several people."
1910
  msgstr ""
1911
 
1912
- #: includes/Settings.class.php:1342
1913
  msgid "Captcha"
1914
  msgstr ""
1915
 
1916
- #: includes/Settings.class.php:1353
1917
  msgid "Enable Google reCAPTCHA v2"
1918
  msgstr ""
1919
 
1920
- #: includes/Settings.class.php:1354
1921
  #, php-format
1922
  msgid ""
1923
  "Adds Google's reCAPTCHA code to your form, to verify guests before they can "
@@ -1925,388 +1952,387 @@ msgid ""
1925
  "configure this feature."
1926
  msgstr ""
1927
 
1928
- #: includes/Settings.class.php:1364
1929
  msgid "Google Site Key"
1930
  msgstr ""
1931
 
1932
- #: includes/Settings.class.php:1365
1933
  msgid "The site key provided to you by Google"
1934
  msgstr ""
1935
 
1936
- #: includes/Settings.class.php:1375
1937
  msgid "Google Secret Key"
1938
  msgstr ""
1939
 
1940
- #: includes/Settings.class.php:1376
1941
  msgid "The secret key provided to you by Google"
1942
  msgstr ""
1943
 
1944
- #: includes/Settings.class.php:1384
1945
  msgid "Privacy"
1946
  msgstr ""
1947
 
1948
- #: includes/Settings.class.php:1395
1949
  msgid "Disable IP Capture"
1950
  msgstr ""
1951
 
1952
- #: includes/Settings.class.php:1396
1953
  msgid ""
1954
  "This turns off the feature that captures the IP address of the device making "
1955
  "the booking."
1956
  msgstr ""
1957
 
1958
- #: includes/Settings.class.php:1406
1959
  msgid "Require Consent"
1960
  msgstr ""
1961
 
1962
- #: includes/Settings.class.php:1407
1963
  msgid ""
1964
  "Require customers to consent to the collection of their details when making "
1965
  "a booking. This may be required to comply with privacy laws in your country."
1966
  msgstr ""
1967
 
1968
- #: includes/Settings.class.php:1417
1969
  msgid "Consent Statement"
1970
  msgstr ""
1971
 
1972
- #: includes/Settings.class.php:1418
1973
  msgid ""
1974
  "Enter the statement you would like customers to confirm when making a "
1975
  "booking."
1976
  msgstr ""
1977
 
1978
- #: includes/Settings.class.php:1428
1979
  msgid "Privacy Statement Page"
1980
  msgstr ""
1981
 
1982
- #: includes/Settings.class.php:1429
1983
  msgid ""
1984
  "Select a page on your site which contains a privacy statement. If selected, "
1985
  "it will be linked to in your consent statement."
1986
  msgstr ""
1987
 
1988
- #: includes/Settings.class.php:1447
1989
  msgid "Delete Reservation Data Days"
1990
  msgstr ""
1991
 
1992
- #: includes/Settings.class.php:1448
1993
  msgid ""
1994
  "Sets the approximate number of days booking data should be stored for. Leave "
1995
  "blank to keep booking data indefinitely."
1996
  msgstr ""
1997
 
1998
- #: includes/Settings.class.php:1457 includes/Settings.class.php:1963
1999
  msgid "Notifications"
2000
  msgstr ""
2001
 
2002
- #: includes/Settings.class.php:1466
2003
  msgid "Daily Summary"
2004
  msgstr ""
2005
 
2006
- #: includes/Settings.class.php:1477
2007
  msgid "Summary Email Address"
2008
  msgstr ""
2009
 
2010
- #: includes/Settings.class.php:1478
2011
  msgid ""
2012
  "The email address, if any, where a daily summary of upcoming reservations "
2013
  "should be emailed."
2014
  msgstr ""
2015
 
2016
- #: includes/Settings.class.php:1488
2017
  msgid "Summary Email Send Time"
2018
  msgstr ""
2019
 
2020
- #: includes/Settings.class.php:1489
2021
  msgid ""
2022
  "What time should the summary email be sent at? This is based on your "
2023
  "WordPress timezone setting."
2024
  msgstr ""
2025
 
2026
- #: includes/Settings.class.php:1508
2027
  msgid "Reply-To Name"
2028
  msgstr ""
2029
 
2030
- #: includes/Settings.class.php:1509
2031
  msgid ""
2032
  "The name which should appear in the Reply-To field of a user notification "
2033
  "email"
2034
  msgstr ""
2035
 
2036
- #: includes/Settings.class.php:1520
2037
  msgid "Reply-To Email Address"
2038
  msgstr ""
2039
 
2040
- #: includes/Settings.class.php:1521
2041
  msgid ""
2042
  "The email address which should appear in the Reply-To field of a user "
2043
  "notification email."
2044
  msgstr ""
2045
 
2046
- #: includes/Settings.class.php:1532
2047
  msgid "Admin Notification"
2048
  msgstr ""
2049
 
2050
- #: includes/Settings.class.php:1533
2051
  msgid ""
2052
  "Send an email notification to an administrator when a new booking is "
2053
  "requested."
2054
  msgstr ""
2055
 
2056
- #: includes/Settings.class.php:1543
2057
  msgid "Admin New Confirmed Notification"
2058
  msgstr ""
2059
 
2060
- #: includes/Settings.class.php:1544
2061
  msgid ""
2062
  "Send an email notification to an administrator when a new confirmed booking "
2063
  "is made."
2064
  msgstr ""
2065
 
2066
- #: includes/Settings.class.php:1554
2067
  msgid "Admin Cancellation Notification"
2068
  msgstr ""
2069
 
2070
- #: includes/Settings.class.php:1555
2071
  msgid ""
2072
  "Send an email notification to an administrator when a booking is cancelled."
2073
  msgstr ""
2074
 
2075
- #: includes/Settings.class.php:1565
2076
  msgid "Admin Email Address"
2077
  msgstr ""
2078
 
2079
- #: includes/Settings.class.php:1566
2080
  msgid "The email address where admin notifications should be sent."
2081
  msgstr ""
2082
 
2083
- #: includes/Settings.class.php:1575
2084
  msgid "Notification Emails"
2085
  msgstr ""
2086
 
2087
- #: includes/Settings.class.php:1577
2088
  msgid ""
2089
  "Adjust the messages that are emailed to users and admins during the booking "
2090
  "process."
2091
  msgstr ""
2092
 
2093
- #: includes/Settings.class.php:1587
2094
  msgid "Template Tags"
2095
  msgstr ""
2096
 
2097
- #: includes/Settings.class.php:1589
2098
  msgid ""
2099
  "Use the following tags to automatically add booking information to the "
2100
  "emails. Tags labeled with an asterisk (*) can be used in the email subject "
2101
  "as well."
2102
  msgstr ""
2103
 
2104
- #: includes/Settings.class.php:1600
2105
  msgid "Admin Notification Subject (Pending Booking)"
2106
  msgstr ""
2107
 
2108
- #: includes/Settings.class.php:1601
2109
  msgid "The email subject for admin notifications."
2110
  msgstr ""
2111
 
2112
- #: includes/Settings.class.php:1612
2113
  msgid "Admin Notification Email (Pending Booking)"
2114
  msgstr ""
2115
 
2116
- #: includes/Settings.class.php:1613
2117
  msgid ""
2118
  "Enter the email an admin should receive when an initial booking request is "
2119
  "made."
2120
  msgstr ""
2121
 
2122
- #: includes/Settings.class.php:1624
2123
  msgid "Admin Notification Subject (Auto Confirmed Booking)"
2124
  msgstr ""
2125
 
2126
- #: includes/Settings.class.php:1625
2127
  msgid ""
2128
  "The email subject for admin notifications for automatically-confirmed "
2129
  "bookings."
2130
  msgstr ""
2131
 
2132
- #: includes/Settings.class.php:1636
2133
  msgid "Admin Notification Email (Auto Confirmed Booking)"
2134
  msgstr ""
2135
 
2136
- #: includes/Settings.class.php:1637
2137
  msgid ""
2138
  "Enter the email an admin should receive when an automatically-confirmed "
2139
  "booking is made."
2140
  msgstr ""
2141
 
2142
- #: includes/Settings.class.php:1648
2143
  msgid "Admin Booking Cancelled Subject"
2144
  msgstr ""
2145
 
2146
- #: includes/Settings.class.php:1649
2147
  msgid "The email subject for admin notifications when a booking is cancelled."
2148
  msgstr ""
2149
 
2150
- #: includes/Settings.class.php:1660
2151
  msgid "Admin Booking Cancelled Email"
2152
  msgstr ""
2153
 
2154
- #: includes/Settings.class.php:1661
2155
  msgid "Enter the email an admin should receive when a booking is cancelled."
2156
  msgstr ""
2157
 
2158
- #: includes/Settings.class.php:1672
2159
  msgid "New Request Email Subject"
2160
  msgstr ""
2161
 
2162
- #: includes/Settings.class.php:1673
2163
  msgid ""
2164
  "The email subject a user should receive when they make an initial booking "
2165
  "request."
2166
  msgstr ""
2167
 
2168
- #: includes/Settings.class.php:1684 includes/load-customizer.php:211
2169
  msgid "New Request Email"
2170
  msgstr ""
2171
 
2172
- #: includes/Settings.class.php:1685
2173
  msgid ""
2174
  "Enter the email a user should receive when they make an initial booking "
2175
  "request."
2176
  msgstr ""
2177
 
2178
- #: includes/Settings.class.php:1696
2179
  msgid "Confirmed Email Subject"
2180
  msgstr ""
2181
 
2182
- #: includes/Settings.class.php:1697
2183
  msgid ""
2184
  "The email subject a user should receive when their booking has been "
2185
  "confirmed."
2186
  msgstr ""
2187
 
2188
- #: includes/Settings.class.php:1708 includes/load-customizer.php:251
2189
  msgid "Confirmed Email"
2190
  msgstr ""
2191
 
2192
- #: includes/Settings.class.php:1709
2193
  msgid ""
2194
  "Enter the email a user should receive when their booking has been confirmed."
2195
  msgstr ""
2196
 
2197
- #: includes/Settings.class.php:1720
2198
  msgid "Rejected Email Subject"
2199
  msgstr ""
2200
 
2201
- #: includes/Settings.class.php:1721
2202
  msgid ""
2203
  "The email subject a user should receive when their booking has been rejected."
2204
  msgstr ""
2205
 
2206
- #: includes/Settings.class.php:1732 includes/load-customizer.php:291
2207
  msgid "Rejected Email"
2208
  msgstr ""
2209
 
2210
- #: includes/Settings.class.php:1733
2211
  msgid ""
2212
  "Enter the email a user should receive when their booking has been rejected."
2213
  msgstr ""
2214
 
2215
- #: includes/Settings.class.php:1744
2216
  msgid "Booking Cancelled Email Subject"
2217
  msgstr ""
2218
 
2219
- #: includes/Settings.class.php:1745
2220
  msgid ""
2221
  "The email subject a user should receive when they have cancelled their "
2222
  "booking."
2223
  msgstr ""
2224
 
2225
- #: includes/Settings.class.php:1756
2226
  msgid "Booking Cancelled Email"
2227
  msgstr ""
2228
 
2229
- #: includes/Settings.class.php:1757
2230
  msgid "Enter the email a user should receive when they cancel their booking."
2231
  msgstr ""
2232
 
2233
- #: includes/Settings.class.php:1768
2234
  msgid "Admin Update Subject"
2235
  msgstr ""
2236
 
2237
- #: includes/Settings.class.php:1769
2238
  #, php-format
2239
  msgid ""
2240
  "The email subject a user should receive when an admin sends them a custom "
2241
  "email message from the %sbookings panel%s."
2242
  msgstr ""
2243
 
2244
- #: includes/Settings.class.php:1780 includes/Settings.class.php:1823
2245
- #: includes/Settings.class.php:1980
2246
- msgid "Payments"
2247
  msgstr ""
2248
 
2249
- #: includes/Settings.class.php:1804 includes/Settings.class.php:1945
2250
- msgid "Advanced"
2251
  msgstr ""
2252
 
2253
- #: includes/Settings.class.php:1842 includes/Settings.class.php:1996
2254
  msgid "Export"
2255
  msgstr ""
2256
 
2257
- #: includes/Settings.class.php:1861 includes/Settings.class.php:2011
2258
  msgid "Labelling"
2259
  msgstr ""
2260
 
2261
- #: includes/Settings.class.php:1880 includes/Settings.class.php:2027
2262
  msgid "Styling"
2263
  msgstr ""
2264
 
2265
- #: includes/Settings.class.php:1923
2266
  msgid "The premium version also gives you access to the following features:"
2267
  msgstr ""
2268
 
2269
- #: includes/Settings.class.php:1925
2270
  msgid "Multiple Form Layouts"
2271
  msgstr ""
2272
 
2273
- #: includes/Settings.class.php:1926
2274
  msgid "Custom Booking Fields"
2275
  msgstr ""
2276
 
2277
- #: includes/Settings.class.php:1927
2278
  msgid "Advanced Email Designer"
2279
  msgstr ""
2280
 
2281
- #: includes/Settings.class.php:1928
2282
  msgid "Set Table and Seat Restrictions"
2283
  msgstr ""
2284
 
2285
- #: includes/Settings.class.php:1929
2286
  msgid "Automatic Booking Confirmation"
2287
  msgstr ""
2288
 
2289
- #: includes/Settings.class.php:1930
2290
  msgid "Bookings Page for Staff"
2291
  msgstr ""
2292
 
2293
- #: includes/Settings.class.php:1931
2294
  msgid "Export Bookings"
2295
  msgstr ""
2296
 
2297
- #: includes/Settings.class.php:1932
2298
  msgid "Email Support"
2299
  msgstr ""
2300
 
2301
- #: includes/Settings.class.php:1935
2302
  msgid "UPGRADE NOW"
2303
  msgstr ""
2304
 
2305
- #: includes/Settings.class.php:1945 includes/Settings.class.php:1963
2306
  msgid "Premium/Ultimate"
2307
  msgstr ""
2308
 
2309
- #: includes/Settings.class.php:1946
2310
  msgid ""
2311
  "The advanced options let you set a maximum number of reservations or people, "
2312
  "enable automatic confirmation of bookings, configure a view bookings page "
@@ -2317,7 +2343,7 @@ msgid ""
2317
  "when they book and/or manage the tables in the admin."
2318
  msgstr ""
2319
 
2320
- #: includes/Settings.class.php:1964
2321
  msgid ""
2322
  "The email template designer uses the WordPress customizer to let you modify "
2323
  "the look and structure of the notification emails. The reminders section "
@@ -2327,93 +2353,93 @@ msgid ""
2327
  "booking time has passed."
2328
  msgstr ""
2329
 
2330
- #: includes/Settings.class.php:1981
2331
  msgid ""
2332
  "The payment options let you require a deposit for bookings, either via "
2333
  "PayPal or Stripe. Deposits can be made conditional on a minimum party size "
2334
  "or only for certain days/times."
2335
  msgstr ""
2336
 
2337
- #: includes/Settings.class.php:1997
2338
  msgid ""
2339
  "You can export all your bookings to a PDF file, for use by your staff to "
2340
  "manage upcoming bookings, for accounting purposes etc."
2341
  msgstr ""
2342
 
2343
- #: includes/Settings.class.php:2012
2344
  msgid ""
2345
  "The labelling options let you change the wording of the different labels "
2346
  "that appear on the front end of the plugin. You can use this to translate "
2347
  "them, customize the wording for your purpose, etc."
2348
  msgstr ""
2349
 
2350
- #: includes/Settings.class.php:2028
2351
  msgid ""
2352
  "The styling options let you choose a booking form layout and modify the "
2353
  "colors, font family, font size and borders of the various elements found in "
2354
  "the booking form."
2355
  msgstr ""
2356
 
2357
- #: includes/Settings.class.php:2055
2358
  msgid "Any size"
2359
  msgstr ""
2360
 
2361
- #: includes/Settings.class.php:2374
2362
  msgid "Email of the user who made the booking"
2363
  msgstr ""
2364
 
2365
- #: includes/Settings.class.php:2375
2366
  msgid "* Name of the user who made the booking"
2367
  msgstr ""
2368
 
2369
- #: includes/Settings.class.php:2376
2370
  msgid "* Number of people booked"
2371
  msgstr ""
2372
 
2373
- #: includes/Settings.class.php:2377
2374
  msgid "* Date and time of the booking"
2375
  msgstr ""
2376
 
2377
- #: includes/Settings.class.php:2378
2378
  msgid "Phone number if supplied with the request"
2379
  msgstr ""
2380
 
2381
- #: includes/Settings.class.php:2379
2382
  msgid "Message added to the request"
2383
  msgstr ""
2384
 
2385
- #: includes/Settings.class.php:2380
2386
  msgid "A link to the admin panel showing pending bookings"
2387
  msgstr ""
2388
 
2389
- #: includes/Settings.class.php:2381
2390
  msgid ""
2391
  "A link that a guest can use to cancel their booking if cancellations are "
2392
  "enabled"
2393
  msgstr ""
2394
 
2395
- #: includes/Settings.class.php:2382
2396
  msgid ""
2397
  "A link to confirm this booking. Only include this in admin notifications"
2398
  msgstr ""
2399
 
2400
- #: includes/Settings.class.php:2383
2401
  msgid "A link to reject this booking. Only include this in admin notifications"
2402
  msgstr ""
2403
 
2404
- #: includes/Settings.class.php:2384
2405
  msgid "The name of this website"
2406
  msgstr ""
2407
 
2408
- #: includes/Settings.class.php:2385
2409
  msgid "A link to this website"
2410
  msgstr ""
2411
 
2412
- #: includes/Settings.class.php:2386
2413
  msgid "Current date and time"
2414
  msgstr ""
2415
 
2416
- #: includes/Settings.class.php:2387
2417
  msgid "The table(s) for the booking"
2418
  msgstr ""
2419
 
@@ -2717,6 +2743,14 @@ msgstr ""
2717
  msgid "The email a user receives when they are late for their reservation."
2718
  msgstr ""
2719
 
 
 
 
 
 
 
 
 
2720
  #: includes/template-functions.php:150
2721
  #, php-format
2722
  msgid ""
@@ -2740,47 +2774,47 @@ msgstr ""
2740
  msgid "Upload Image"
2741
  msgstr ""
2742
 
2743
- #: restaurant-reservations.php:273
2744
  msgid "Booking Manager"
2745
  msgstr ""
2746
 
2747
- #: restaurant-reservations.php:405
2748
  msgid "MENU"
2749
  msgstr ""
2750
 
2751
- #: restaurant-reservations.php:413
2752
  msgid "Dashboard"
2753
  msgstr ""
2754
 
2755
- #: restaurant-reservations.php:432
2756
  msgid "Custom Fields"
2757
  msgstr ""
2758
 
2759
- #: restaurant-reservations.php:557
2760
  msgid ""
2761
  "Something went wrong. Please try again and if issue persists, please contact "
2762
  "us."
2763
  msgstr ""
2764
 
2765
- #: restaurant-reservations.php:559
2766
  msgid "No Table available at this time. Please change your selection."
2767
  msgstr ""
2768
 
2769
- #: restaurant-reservations.php:582
2770
  msgid "View the help documentation for Restaurant Reservations"
2771
  msgstr ""
2772
 
2773
- #: restaurant-reservations.php:582
2774
  msgid "Help"
2775
  msgstr ""
2776
 
2777
- #: restaurant-reservations.php:672
2778
  msgid ""
2779
  "You're using the Five-Star Restaurant Reservations premium version, but the "
2780
  "premium helper plugin is not active."
2781
  msgstr ""
2782
 
2783
- #: restaurant-reservations.php:674
2784
  #, php-format
2785
  msgid ""
2786
  "Please re-activate the helper plugin, or <a target='_blank' "
2
  msgid ""
3
  msgstr ""
4
  "Project-Id-Version: Five Star Restaurant Reservations\n"
5
+ "POT-Creation-Date: 2022-09-08 15:25-0400\n"
6
  "PO-Revision-Date: 2020-08-20 11:03-0400\n"
7
  "Last-Translator: \n"
8
  "Language-Team: Five Star Plugins\n"
11
  "Content-Type: text/plain; charset=UTF-8\n"
12
  "Content-Transfer-Encoding: 8bit\n"
13
  "Plural-Forms: nplurals=2; plural=(n != 1);\n"
14
+ "X-Generator: Poedit 3.1.1\n"
15
  "X-Poedit-Basepath: ..\n"
16
  "X-Poedit-KeywordsList: __;_e\n"
17
  "X-Poedit-SearchPath-0: .\n"
18
 
19
+ #: assets/js/block-booking-form.js:8 includes/Settings.class.php:1260
20
  #: includes/WP_Widget.BookingFormWidget.class.php:25
21
+ #: includes/patterns/booking-form.php:6
22
  msgid "Booking Form"
23
  msgstr ""
24
 
25
+ #: assets/js/block-booking-form.js:31 includes/Export.CSV.class.php:154
26
+ #: includes/MailChimp.class.php:115 includes/MultipleLocations.class.php:439
27
+ #: includes/Settings.class.php:522
28
  msgid "Location"
29
  msgstr ""
30
 
41
  msgid "Add New"
42
  msgstr ""
43
 
44
+ #: includes/AdminBookings.class.php:170 restaurant-reservations.php:499
45
  msgid "Add Booking"
46
  msgstr ""
47
 
48
  #: includes/AdminBookings.class.php:173 includes/AdminBookings.class.php:214
49
  #: includes/AdminBookings.class.php:259 includes/Editor.class.php:448
50
+ #: includes/Settings.class.php:561
51
  msgid "Cancel"
52
  msgstr ""
53
 
62
  msgstr ""
63
 
64
  #: includes/AdminBookings.class.php:205 includes/Export.CSV.class.php:85
65
+ #: includes/MailChimp.class.php:98 includes/Notifications.class.php:166
66
+ #: includes/Settings.class.php:539
67
  #: includes/WP_List_Table.BookingsTable.class.php:664
68
+ #: includes/template-functions.php:426
69
  msgid "Message"
70
  msgstr ""
71
 
75
 
76
  #: includes/AdminBookings.class.php:275 includes/AdminBookings.class.php:301
77
  #: includes/AdminBookings.class.php:331 includes/AdminBookings.class.php:344
78
+ #: includes/Editor.class.php:481 includes/Settings.class.php:526
79
  msgid "Close"
80
  msgstr ""
81
 
112
 
113
  #: includes/AdminBookings.class.php:478 includes/AdminBookings.class.php:866
114
  #: includes/Editor.class.php:497 includes/Helper.class.php:45
115
+ #: restaurant-reservations.php:697
116
  #, php-format
117
  msgid "You have been logged out. Please %slogin again%s."
118
  msgstr ""
176
  msgid "Ask the customer to select a location"
177
  msgstr ""
178
 
179
+ #: includes/Blocks.class.php:93 includes/Patterns.class.php:53
180
  msgid "Five Star Restaurant Reservations"
181
  msgstr ""
182
 
183
+ #: includes/Booking.class.php:295
184
  msgid "Please enter the date you would like to book."
185
  msgstr ""
186
 
187
+ #: includes/Booking.class.php:305
188
  msgid ""
189
  "The date you entered is not valid. Please select from one of the dates in "
190
  "the calendar."
191
  msgstr ""
192
 
193
+ #: includes/Booking.class.php:316
194
  msgid "Please enter the time you would like to book."
195
  msgstr ""
196
 
197
+ #: includes/Booking.class.php:326
198
  msgid ""
199
  "The time you entered is not valid. Please select from one of the times "
200
  "provided."
201
  msgstr ""
202
 
203
+ #: includes/Booking.class.php:349
204
  #, php-format
205
  msgid "Sorry, bookings can not be made more than %s days in advance."
206
  msgstr ""
207
 
208
+ #: includes/Booking.class.php:360
209
  msgid "Sorry, bookings can not be made in the past."
210
  msgstr ""
211
 
212
+ #: includes/Booking.class.php:369
213
  msgid "Sorry, bookings can not be made for the same day."
214
  msgstr ""
215
 
216
+ #: includes/Booking.class.php:377
217
  #, php-format
218
  msgid "Sorry, bookings must be made more than %s days in advance."
219
  msgstr ""
220
 
221
+ #: includes/Booking.class.php:379
222
  #, php-format
223
  msgid "Sorry, bookings must be made more than %s hours in advance."
224
  msgstr ""
225
 
226
+ #: includes/Booking.class.php:381
227
  #, php-format
228
  msgid "Sorry, bookings must be made more than %s minutes in advance."
229
  msgstr ""
230
 
231
+ #: includes/Booking.class.php:481
232
  msgid "Sorry, no bookings are being accepted then."
233
  msgstr ""
234
 
235
+ #: includes/Booking.class.php:540
236
  msgid "Sorry, no bookings are being accepted on that date."
237
  msgstr ""
238
 
239
+ #: includes/Booking.class.php:546
240
  msgid "Sorry, no bookings are being accepted at that time."
241
  msgstr ""
242
 
243
+ #: includes/Booking.class.php:568
244
  msgid "Please enter a name for this booking."
245
  msgstr ""
246
 
247
+ #: includes/Booking.class.php:578
248
  msgid "Please let us know how many people will be in your party."
249
  msgstr ""
250
 
251
+ #: includes/Booking.class.php:588
252
  #, php-format
253
  msgid "We only accept bookings for parties of up to %d people."
254
  msgstr ""
255
 
256
+ #: includes/Booking.class.php:596
257
  #, php-format
258
  msgid "We only accept bookings for parties of more than %d people."
259
  msgstr ""
260
 
261
+ #: includes/Booking.class.php:607
262
  msgid "Please enter an email address so we can confirm your booking."
263
  msgstr ""
264
 
265
+ #: includes/Booking.class.php:613
266
  msgid "Please enter a valid email address so we can confirm your booking."
267
  msgstr ""
268
 
269
+ #: includes/Booking.class.php:624
270
  msgid "Please provide a phone number so we can confirm your booking."
271
  msgstr ""
272
 
273
+ #: includes/Booking.class.php:637
274
  msgid "Please select a table for your booking."
275
  msgstr ""
276
 
277
+ #: includes/Booking.class.php:647
278
  msgid "Please select a valid table for your booking."
279
  msgstr ""
280
 
281
+ #: includes/Booking.class.php:657
282
  msgid "Please fill out the reCAPTCHA box before submitting."
283
  msgstr ""
284
 
285
+ #: includes/Booking.class.php:679
286
  msgid "Please fill out the reCAPTCHA box again and re-submit."
287
  msgstr ""
288
 
289
+ #: includes/Booking.class.php:681
290
  msgid " If you encounter reCAPTCHA error multiple times, please contact us."
291
  msgstr ""
292
 
293
+ #: includes/Booking.class.php:715
294
  msgid "Please complete this field to request a booking."
295
  msgstr ""
296
 
297
+ #: includes/Booking.class.php:727
298
  msgid ""
299
  "Your booking has been rejected. Please call us if you would like to make a "
300
  "booking."
301
  msgstr ""
302
 
303
+ #: includes/Booking.class.php:741
304
  msgid ""
305
  "The maximum number of reservations for that timeslot has been reached. "
306
  "Please select a different timeslot."
307
  msgstr ""
308
 
309
+ #: includes/Booking.class.php:750
310
  msgid ""
311
  "With your party, the maximum number of seats for that timeslot would be "
312
  "exceeded. Please select a different timeslot or reduce your party size."
313
  msgstr ""
314
 
315
+ #: includes/Booking.class.php:759
316
  msgid ""
317
  "Your booking and personal information exactly matches another booking. If "
318
  "this was not caused by refreshing the page, please call us to make a booking."
321
  #: includes/CustomPostTypes.class.php:50 includes/CustomPostTypes.class.php:52
322
  #: includes/CustomPostTypes.class.php:53
323
  #: includes/WP_List_Table.BookingsTable.class.php:138
324
+ #: restaurant-reservations.php:424
325
  msgid "Bookings"
326
  msgstr ""
327
 
334
  msgid "Add New Booking"
335
  msgstr ""
336
 
337
+ #: includes/CustomPostTypes.class.php:56 restaurant-reservations.php:500
338
  msgid "Edit Booking"
339
  msgstr ""
340
 
427
  msgstr ""
428
 
429
  #: includes/Dashboard.class.php:142 includes/Export.CSV.class.php:79
430
+ #: includes/Settings.class.php:523
431
  #: includes/WP_List_Table.BookingsTable.class.php:547
432
  msgid "Date"
433
  msgstr ""
434
 
435
  #: includes/Dashboard.class.php:143 includes/Export.CSV.class.php:82
436
+ #: includes/Notifications.class.php:148 includes/Settings.class.php:530
437
+ #: includes/Settings.class.php:569 includes/Settings.class.php:791
438
  #: includes/WP_List_Table.BookingsTable.class.php:549
439
  msgid "Party"
440
  msgstr ""
441
 
442
  #: includes/Dashboard.class.php:144 includes/Export.CSV.class.php:81
443
+ #: includes/MailChimp.class.php:95 includes/Notifications.class.php:149
444
+ #: includes/Settings.class.php:535 includes/Settings.class.php:570
445
+ #: includes/Settings.class.php:792
446
  #: includes/WP_List_Table.BookingsTable.class.php:550
447
  msgid "Name"
448
  msgstr ""
449
 
450
  #: includes/Dashboard.class.php:145 includes/Notifications.class.php:153
451
+ #: includes/Settings.class.php:574 includes/Settings.class.php:796
452
  #: includes/WP_List_Table.BookingsTable.class.php:553
453
  msgid "Status"
454
  msgstr ""
469
  msgid "Select version to trial"
470
  msgstr ""
471
 
472
+ #: includes/Dashboard.class.php:265 includes/Settings.class.php:2000
473
+ #: includes/Settings.class.php:2015 includes/Settings.class.php:2031
474
  msgid "Premium"
475
  msgstr ""
476
 
477
+ #: includes/Dashboard.class.php:266 includes/Settings.class.php:1984
478
  msgid "Ultimate"
479
  msgstr ""
480
 
540
  "custom fields will be removed. This action can not be undone."
541
  msgstr ""
542
 
543
+ #: includes/Editor.class.php:114 restaurant-reservations.php:501
544
  msgid ""
545
  "An unspecified error occurred. Please try again. If the problem persists, "
546
  "try logging out and logging back in."
703
 
704
  #: includes/Export.CSV.class.php:80
705
  #: includes/InstallationWalkthrough.class.php:357
706
+ #: includes/Notifications.class.php:147 includes/Settings.class.php:527
707
+ #: includes/Settings.class.php:568 includes/Settings.class.php:790
708
  msgid "Time"
709
  msgstr ""
710
 
711
+ #: includes/Export.CSV.class.php:83 includes/MailChimp.class.php:172
712
+ #: includes/Notifications.class.php:150 includes/Settings.class.php:536
713
+ #: includes/Settings.class.php:571 includes/Settings.class.php:793
714
  #: includes/WP_List_Table.BookingsTable.class.php:551
715
  msgid "Email"
716
  msgstr ""
717
 
718
  #: includes/Export.CSV.class.php:84 includes/Notifications.class.php:151
719
+ #: includes/Settings.class.php:537 includes/Settings.class.php:572
720
+ #: includes/Settings.class.php:794
721
  #: includes/WP_List_Table.BookingsTable.class.php:552
722
  msgid "Phone"
723
  msgstr ""
726
  msgid "Date the request was made"
727
  msgstr ""
728
 
729
+ #: includes/Export.CSV.class.php:197
730
  msgid "Data Privacy Consent"
731
  msgstr ""
732
 
733
+ #: includes/Export.CSV.class.php:213 includes/Settings.class.php:577
734
+ #: includes/Settings.class.php:1194
735
  #: includes/integrations/business-profile.php:293
736
  msgid "Yes"
737
  msgstr ""
738
 
739
+ #: includes/Export.CSV.class.php:213 includes/Settings.class.php:578
740
+ #: includes/Settings.class.php:1193
741
  #: includes/integrations/business-profile.php:294
742
  msgid "No"
743
  msgstr ""
744
 
745
+ #: includes/Export.CSV.class.php:232 includes/Export.PDF.class.php:232
746
+ #: includes/Settings.class.php:531
747
  msgid "Table(s)"
748
  msgstr ""
749
 
750
+ #: includes/Export.CSV.class.php:267 includes/Settings.class.php:563
751
  #: includes/WP_List_Table.BookingsTable.class.php:556
752
  msgid "Deposit"
753
  msgstr ""
754
 
755
+ #: includes/Export.CSV.class.php:268
756
  msgid "Receipt ID"
757
  msgstr ""
758
 
837
  msgid "Confirm"
838
  msgstr ""
839
 
840
+ #: includes/Field.Controller.class.php:543
841
  #, php-format
842
  msgid "%s Checked"
843
  msgstr ""
1011
  msgstr ""
1012
 
1013
  #: includes/InstallationWalkthrough.class.php:221
1014
+ #: includes/MultipleLocations.class.php:880 includes/Settings.class.php:922
1015
  msgid "Add new scheduling rule"
1016
  msgstr ""
1017
 
1055
  msgstr ""
1056
 
1057
  #: includes/InstallationWalkthrough.class.php:258
1058
+ #: includes/Settings.class.php:1004
1059
  msgid "From 1 day in advance"
1060
  msgstr ""
1061
 
1062
  #: includes/InstallationWalkthrough.class.php:259
1063
+ #: includes/Settings.class.php:1005
1064
  msgid "From 1 week in advance"
1065
  msgstr ""
1066
 
1067
  #: includes/InstallationWalkthrough.class.php:260
1068
+ #: includes/Settings.class.php:1006
1069
  msgid "From 2 weeks in advance"
1070
  msgstr ""
1071
 
1072
  #: includes/InstallationWalkthrough.class.php:261
1073
+ #: includes/Settings.class.php:1007
1074
  msgid "From 30 days in advance"
1075
  msgstr ""
1076
 
1077
  #: includes/InstallationWalkthrough.class.php:262
1078
+ #: includes/Settings.class.php:1009
1079
  msgid "From 90 days in advance"
1080
  msgstr ""
1081
 
1084
  msgstr ""
1085
 
1086
  #: includes/InstallationWalkthrough.class.php:268
1087
+ #: includes/Settings.class.php:1025
1088
  msgid "Up to the last minute"
1089
  msgstr ""
1090
 
1091
  #: includes/InstallationWalkthrough.class.php:269
1092
+ #: includes/Settings.class.php:1026
1093
  msgid "At least 15 minutes in advance"
1094
  msgstr ""
1095
 
1096
  #: includes/InstallationWalkthrough.class.php:270
1097
+ #: includes/Settings.class.php:1027
1098
  msgid "At least 30 minutes in advance"
1099
  msgstr ""
1100
 
1101
  #: includes/InstallationWalkthrough.class.php:271
1102
+ #: includes/Settings.class.php:1028
1103
  msgid "At least 45 minutes in advance"
1104
  msgstr ""
1105
 
1106
  #: includes/InstallationWalkthrough.class.php:272
1107
+ #: includes/Settings.class.php:1029
1108
  msgid "At least 1 hour in advance"
1109
  msgstr ""
1110
 
1111
  #: includes/InstallationWalkthrough.class.php:273
1112
+ #: includes/Settings.class.php:1030
1113
  msgid "At least 4 hours in advance"
1114
  msgstr ""
1115
 
1116
  #: includes/InstallationWalkthrough.class.php:274
1117
+ #: includes/Settings.class.php:1031
1118
  msgid "At least 24 hours in advance"
1119
  msgstr ""
1120
 
1127
  msgstr ""
1128
 
1129
  #: includes/InstallationWalkthrough.class.php:281
1130
+ #: includes/Settings.class.php:1069
1131
  msgid "Every 30 minutes"
1132
  msgstr ""
1133
 
1134
  #: includes/InstallationWalkthrough.class.php:282
1135
+ #: includes/Settings.class.php:1070
1136
  msgid "Every 15 minutes"
1137
  msgstr ""
1138
 
1139
  #: includes/InstallationWalkthrough.class.php:283
1140
+ #: includes/Settings.class.php:1071
1141
  msgid "Every 10 minutes"
1142
  msgstr ""
1143
 
1144
  #: includes/InstallationWalkthrough.class.php:284
1145
+ #: includes/Settings.class.php:1072
1146
  msgid "Every 5 minutes"
1147
  msgstr ""
1148
 
1189
  msgstr ""
1190
 
1191
  #: includes/InstallationWalkthrough.class.php:411
1192
+ #: includes/MultipleLocations.class.php:894 includes/Settings.class.php:937
1193
  msgid "Delete scheduling rule"
1194
  msgstr ""
1195
 
1224
  "and try again."
1225
  msgstr ""
1226
 
1227
+ #: includes/MailChimp.class.php:94
1228
  msgid "Date/Time of Booking"
1229
  msgstr ""
1230
 
1231
+ #: includes/MailChimp.class.php:96
1232
  msgid "Party Size"
1233
  msgstr ""
1234
 
1235
+ #: includes/MailChimp.class.php:97
1236
  msgid "Phone Number"
1237
  msgstr ""
1238
 
1239
+ #: includes/MailChimp.class.php:168
1240
  msgid "Booking Form Data"
1241
  msgstr ""
1242
 
1243
+ #: includes/MailChimp.class.php:169
1244
  msgid "MailChimp List Field"
1245
  msgstr ""
1246
 
1247
+ #: includes/MailChimp.class.php:170
1248
  msgid ""
1249
  "Connect information from the booking request to <a href=\"http://kb."
1250
  "mailchimp.com/article/getting-started-with-merge-tags\" target=\"_blank"
1251
  "\">merge fields</a> in your MailChimp list."
1252
  msgstr ""
1253
 
1254
+ #: includes/MailChimp.class.php:171
1255
  msgid ""
1256
  "There was an unexpected error when trying to retrieve the list's merge "
1257
  "fields."
1258
  msgstr ""
1259
 
1260
+ #: includes/MailChimp.class.php:173
1261
  msgid "The email field is automatically merged."
1262
  msgstr ""
1263
 
1264
+ #: includes/MailChimp.class.php:458
1265
  msgid ""
1266
  "The subscription request has been rejected because it does not appear to "
1267
  "have come from this site."
1268
  msgstr ""
1269
 
1270
+ #: includes/MultipleLocations.class.php:336
1271
+ msgid "All Locations"
1272
+ msgstr ""
1273
+
1274
+ #: includes/MultipleLocations.class.php:391
1275
  msgid "Please select a location for your booking."
1276
  msgstr ""
1277
 
1278
+ #: includes/MultipleLocations.class.php:398
1279
  msgid "The location you selected is not valid. Please select another location."
1280
  msgstr ""
1281
 
1282
+ #: includes/MultipleLocations.class.php:507
1283
  msgid "Reservations"
1284
  msgstr ""
1285
 
1286
+ #: includes/MultipleLocations.class.php:720
1287
  msgid "Location for which this booking was made."
1288
  msgstr ""
1289
 
1290
+ #: includes/MultipleLocations.class.php:837
1291
  msgid "Global"
1292
  msgstr ""
1293
 
1294
+ #: includes/MultipleLocations.class.php:859
1295
  msgid "Select Schedule Location"
1296
  msgstr ""
1297
 
1298
+ #: includes/MultipleLocations.class.php:871
1299
  msgid "Schedule Location"
1300
  msgstr ""
1301
 
1302
+ #: includes/MultipleLocations.class.php:872
1303
  msgid ""
1304
  "Select which location the schedule will apply to. If a specific location "
1305
  "doesn't have a schedule set, then it will fall back to the global schedule "
1306
  "when booking."
1307
  msgstr ""
1308
 
1309
+ #: includes/MultipleLocations.class.php:913 includes/Settings.class.php:956
1310
  msgid "Schedule"
1311
  msgstr ""
1312
 
1313
+ #: includes/MultipleLocations.class.php:914 includes/Settings.class.php:957
1314
  msgid "Define the weekly schedule during which you accept bookings."
1315
  msgstr ""
1316
 
1317
+ #: includes/MultipleLocations.class.php:940 includes/Settings.class.php:983
1318
  msgid "Exceptions"
1319
  msgstr ""
1320
 
1321
+ #: includes/MultipleLocations.class.php:941 includes/Settings.class.php:984
1322
  msgid ""
1323
  "Define special opening hours for holidays, events or other needs. Leave the "
1324
  "time empty if you're closed all day."
1325
  msgstr ""
1326
 
1327
+ #: includes/MultipleLocations.class.php:958
1328
  msgid "Select Seat Restrictions Location"
1329
  msgstr ""
1330
 
1331
+ #: includes/MultipleLocations.class.php:970
1332
  msgid "Seat Restrictions Location"
1333
  msgstr ""
1334
 
1335
+ #: includes/MultipleLocations.class.php:971
1336
  msgid ""
1337
  "Select which location the restrictions will apply to. If a specific location "
1338
  "doesn't have restrictions set, then the global total number will be used as "
1339
  "a fall-back."
1340
  msgstr ""
1341
 
1342
+ #: includes/MultipleLocations.class.php:1001
1343
  msgid "Max Reservations"
1344
  msgstr ""
1345
 
1346
+ #: includes/MultipleLocations.class.php:1002
1347
  msgid ""
1348
  "How many reservations, if enabled, should be allowed at the same time at "
1349
  "this location? Set dining block length to change how long a meal typically "
1350
  "lasts."
1351
  msgstr ""
1352
 
1353
+ #: includes/MultipleLocations.class.php:1015
1354
  msgid "Max People"
1355
  msgstr ""
1356
 
1357
+ #: includes/MultipleLocations.class.php:1016
1358
  msgid ""
1359
  "How many people, if enabled, should be allowed to be present at this "
1360
  "restaurant location at the same time? Set dining block length to change how "
1362
  "set."
1363
  msgstr ""
1364
 
1365
+ #: includes/Notification.class.php:105
1366
+ msgid "booking page"
1367
+ msgstr ""
1368
+
1369
  #: includes/Notifications.class.php:138
1370
  msgid "There are currently no bookings today."
1371
  msgstr ""
1374
  msgid "Please find a summary of today's reservations in the table below."
1375
  msgstr ""
1376
 
1377
+ #: includes/Notifications.class.php:152 includes/Settings.class.php:573
1378
+ #: includes/Settings.class.php:795
1379
  #: includes/WP_List_Table.BookingsTable.class.php:557
1380
  msgid "Table"
1381
  msgstr ""
1382
 
1383
+ #: includes/Notifications.class.php:154 includes/Settings.class.php:575
1384
+ #: includes/Settings.class.php:797
1385
  #: includes/WP_List_Table.BookingsTable.class.php:560
1386
  msgid "Details"
1387
  msgstr ""
1388
 
1389
+ #: includes/Notifications.class.php:212
1390
  msgid "Daily Email Summary"
1391
  msgstr ""
1392
 
1461
  msgid "Email Address"
1462
  msgstr ""
1463
 
1464
+ #: includes/Settings.class.php:482
1465
+ msgid ""
1466
+ "Thanks, your booking request is waiting to be confirmed. Updates will be "
1467
+ "sent to the email address you provided."
1468
+ msgstr ""
1469
+
1470
+ #: includes/Settings.class.php:483
1471
+ msgid ""
1472
+ "Thanks, your booking request has been automatically confirmed. We look "
1473
+ "forward to seeing you soon!"
1474
+ msgstr ""
1475
+
1476
+ #: includes/Settings.class.php:486
1477
+ msgid "30"
1478
+ msgstr ""
1479
+
1480
+ #: includes/Settings.class.php:518
1481
  msgid "Sign up for our mailing list."
1482
  msgstr ""
1483
 
1484
+ #: includes/Settings.class.php:521
1485
  msgid "Book a table"
1486
  msgstr ""
1487
 
1488
+ #: includes/Settings.class.php:524
1489
  #: includes/WP_List_Table.BookingsTable.class.php:332
1490
  msgid "Today"
1491
  msgstr ""
1492
 
1493
+ #: includes/Settings.class.php:525 includes/Settings.class.php:528
1494
  msgid "Clear"
1495
  msgstr ""
1496
 
1497
+ #: includes/Settings.class.php:529
1498
  msgid ""
1499
  "There are currently no times available for booking on your selected date."
1500
  msgstr ""
1501
 
1502
+ #: includes/Settings.class.php:532
1503
  msgid "min."
1504
  msgstr ""
1505
 
1506
+ #: includes/Settings.class.php:533
1507
  msgid "max."
1508
  msgstr ""
1509
 
1510
+ #: includes/Settings.class.php:534
1511
  msgid "Contact Details"
1512
  msgstr ""
1513
 
1514
+ #: includes/Settings.class.php:538
1515
  msgid "Add a Message"
1516
  msgstr ""
1517
 
1518
+ #: includes/Settings.class.php:540
1519
  msgid "Request Booking"
1520
  msgstr ""
1521
 
1522
+ #: includes/Settings.class.php:542
1523
  msgid "Payment Gateway"
1524
  msgstr ""
1525
 
1526
+ #: includes/Settings.class.php:543
1527
  msgid "Proceed to Deposit"
1528
  msgstr ""
1529
 
1530
+ #: includes/Settings.class.php:544
1531
  msgid "Request Booking or Proceed to Deposit"
1532
  msgstr ""
1533
 
1534
+ #: includes/Settings.class.php:545
1535
  msgid "Pay via PayPal"
1536
  msgstr ""
1537
 
1538
+ #: includes/Settings.class.php:546
1539
  msgid "Deposit Required: "
1540
  msgstr ""
1541
 
1542
+ #: includes/Settings.class.php:547
1543
  msgid ""
1544
  "We are only placing a hold for the above amount on your payment instrument. "
1545
  "You will be charged later."
1546
  msgstr ""
1547
 
1548
+ #: includes/Settings.class.php:548
1549
  msgid "Card Detail"
1550
  msgstr ""
1551
 
1552
+ #: includes/Settings.class.php:549
1553
  msgid "Card Number"
1554
  msgstr ""
1555
 
1556
+ #: includes/Settings.class.php:550
1557
  msgid "CVC"
1558
  msgstr ""
1559
 
1560
+ #: includes/Settings.class.php:551
1561
  msgid "Expiration (MM/YYYY)"
1562
  msgstr ""
1563
 
1564
+ #: includes/Settings.class.php:552
1565
  msgid ""
1566
  "Please wait. Do not refresh until the button enables or the page reloads."
1567
  msgstr ""
1568
 
1569
+ #: includes/Settings.class.php:553
1570
  msgid "Make Deposit"
1571
  msgstr ""
1572
 
1573
+ #: includes/Settings.class.php:555
1574
  msgid "Want to modify your reservation?"
1575
  msgstr ""
1576
 
1577
+ #: includes/Settings.class.php:556
1578
  msgid "Make a reservation"
1579
  msgstr ""
1580
 
1581
+ #: includes/Settings.class.php:557
1582
  msgid "Use the form below to modify your reservation"
1583
  msgstr ""
1584
 
1585
+ #: includes/Settings.class.php:558
1586
  msgid "Email:"
1587
  msgstr ""
1588
 
1589
+ #: includes/Settings.class.php:559
1590
  msgid "Find Reservations"
1591
  msgstr ""
1592
 
1593
+ #: includes/Settings.class.php:560
1594
  msgid "No bookings were found for the email address you entered."
1595
  msgstr ""
1596
 
1597
+ #: includes/Settings.class.php:562
1598
  msgid "Cancelled"
1599
  msgstr ""
1600
 
1601
+ #: includes/Settings.class.php:564
1602
  msgid "guest"
1603
  msgstr ""
1604
 
1605
+ #: includes/Settings.class.php:565
1606
  msgid "guests"
1607
  msgstr ""
1608
 
1609
+ #: includes/Settings.class.php:567
1610
  msgid "Arrived"
1611
  msgstr ""
1612
 
1613
+ #: includes/Settings.class.php:576
1614
  msgid "Set reservation status to 'Arrived'?"
1615
  msgstr ""
1616
 
1617
+ #: includes/Settings.class.php:580
1618
  msgid "Cancel booking"
1619
  msgstr ""
1620
 
1621
+ #: includes/Settings.class.php:581
1622
  msgid "View pending bookings"
1623
  msgstr ""
1624
 
1625
+ #: includes/Settings.class.php:582
1626
  msgid "Confirm this booking"
1627
  msgstr ""
1628
 
1629
+ #: includes/Settings.class.php:583
1630
  msgid "Reject this booking"
1631
  msgstr ""
1632
 
1633
+ #: includes/Settings.class.php:892 includes/Settings.class.php:893
1634
+ #: restaurant-reservations.php:430
1635
  msgid "Settings"
1636
  msgstr ""
1637
 
1638
+ #: includes/Settings.class.php:905
1639
  msgid "Booking Schedule"
1640
  msgstr ""
1641
 
1642
+ #: includes/Settings.class.php:915
1643
  msgid "Scheduling Options"
1644
  msgstr ""
1645
 
1646
+ #: includes/Settings.class.php:999
1647
  msgid "Early Bookings"
1648
  msgstr ""
1649
 
1650
+ #: includes/Settings.class.php:1000
1651
  msgid ""
1652
  "Select how early customers can make their booking. (Administrators and "
1653
  "Booking Managers are not restricted by this setting.)"
1654
  msgstr ""
1655
 
1656
+ #: includes/Settings.class.php:1003
1657
  msgid "Any time"
1658
  msgstr ""
1659
 
1660
+ #: includes/Settings.class.php:1008
1661
  msgid "From 60 days in advance"
1662
  msgstr ""
1663
 
1664
+ #: includes/Settings.class.php:1021
1665
  msgid "Late Bookings"
1666
  msgstr ""
1667
 
1668
+ #: includes/Settings.class.php:1022
1669
  msgid ""
1670
  "Select how late customers can make their booking. (Administrators and "
1671
  "Booking Managers are not restricted by this setting.)"
1672
  msgstr ""
1673
 
1674
+ #: includes/Settings.class.php:1032
1675
  msgid "Block same-day bookings"
1676
  msgstr ""
1677
 
1678
+ #: includes/Settings.class.php:1044
1679
  msgid "Date Pre-selection"
1680
  msgstr ""
1681
 
1682
+ #: includes/Settings.class.php:1045
1683
  msgid ""
1684
  "When the booking form is loaded, should it automatically attempt to select a "
1685
  "valid date?"
1686
  msgstr ""
1687
 
1688
+ #: includes/Settings.class.php:1048
1689
  msgid "Select today if valid"
1690
  msgstr ""
1691
 
1692
+ #: includes/Settings.class.php:1049
1693
  msgid "Select today or next valid date"
1694
  msgstr ""
1695
 
1696
+ #: includes/Settings.class.php:1050
1697
  msgid "Leave empty"
1698
  msgstr ""
1699
 
1700
+ #: includes/Settings.class.php:1061
1701
  msgid "Time Interval"
1702
  msgstr ""
1703
 
1704
+ #: includes/Settings.class.php:1062
1705
  msgid "Select the number of minutes between each available time."
1706
  msgstr ""
1707
 
1708
+ #: includes/Settings.class.php:1065
1709
  msgid "Every 180 minutes"
1710
  msgstr ""
1711
 
1712
+ #: includes/Settings.class.php:1066
1713
  msgid "Every 120 minutes"
1714
  msgstr ""
1715
 
1716
+ #: includes/Settings.class.php:1067
1717
  msgid "Every 90 minutes"
1718
  msgstr ""
1719
 
1720
+ #: includes/Settings.class.php:1068
1721
  msgid "Every 60 minutes"
1722
  msgstr ""
1723
 
1724
+ #: includes/Settings.class.php:1084
1725
  msgid "Week Starts On"
1726
  msgstr ""
1727
 
1728
+ #: includes/Settings.class.php:1085
1729
  msgid "Select the first day of the week"
1730
  msgstr ""
1731
 
1732
+ #: includes/Settings.class.php:1088
1733
  msgid "Sunday"
1734
  msgstr ""
1735
 
1736
+ #: includes/Settings.class.php:1089
1737
  msgid "Monday"
1738
  msgstr ""
1739
 
1740
+ #: includes/Settings.class.php:1098
1741
  msgid "Basic"
1742
  msgstr ""
1743
 
1744
+ #: includes/Settings.class.php:1108 includes/Settings.class.php:1517
1745
  msgid "General"
1746
  msgstr ""
1747
 
1748
+ #: includes/Settings.class.php:1119
1749
  msgid "Booking Page"
1750
  msgstr ""
1751
 
1752
+ #: includes/Settings.class.php:1120
1753
  msgid ""
1754
  "Select a page on your site to automatically display the booking form and "
1755
  "confirmation message."
1756
  msgstr ""
1757
 
1758
+ #: includes/Settings.class.php:1138
1759
  msgid "Min Party Size"
1760
  msgstr ""
1761
 
1762
+ #: includes/Settings.class.php:1139
1763
  msgid "Set a minimum allowed party size for bookings."
1764
  msgstr ""
1765
 
1766
+ #: includes/Settings.class.php:1151
1767
  msgid "Max Party Size"
1768
  msgstr ""
1769
 
1770
+ #: includes/Settings.class.php:1152
1771
  msgid "Set a maximum allowed party size for bookings."
1772
  msgstr ""
1773
 
1774
+ #: includes/Settings.class.php:1164
1775
  msgid "Automatically Confirm Below Party Size"
1776
  msgstr ""
1777
 
1778
+ #: includes/Settings.class.php:1165
1779
  msgid ""
1780
  "Set a maximum party size below which all bookings will be automatically "
1781
  "confirmed."
1782
  msgstr ""
1783
 
1784
+ #: includes/Settings.class.php:1178
1785
  msgid "Allow Cancellations"
1786
  msgstr ""
1787
 
1788
+ #: includes/Settings.class.php:1179
1789
  msgid ""
1790
  "Adds a cancellation option to your booking form, so that customers are able "
1791
  "to cancel their reservations."
1792
  msgstr ""
1793
 
1794
+ #: includes/Settings.class.php:1189
1795
  msgid "Require Phone"
1796
  msgstr ""
1797
 
1798
+ #: includes/Settings.class.php:1190
1799
  msgid "Don't accept booking requests without a phone number."
1800
  msgstr ""
1801
 
1802
+ #: includes/Settings.class.php:1205
1803
  msgid "Pending Confirmation Message"
1804
  msgstr ""
1805
 
1806
+ #: includes/Settings.class.php:1206
1807
  msgid ""
1808
  "Enter the message to display when a booking request is made and is set to "
1809
  "pending confirmation."
1810
  msgstr ""
1811
 
1812
+ #: includes/Settings.class.php:1217
1813
  msgid "Confirmed Booking Message"
1814
  msgstr ""
1815
 
1816
+ #: includes/Settings.class.php:1218
1817
  msgid ""
1818
  "Enter the message to display when a booking is made that has been "
1819
  "automatically confirmed."
1820
  msgstr ""
1821
 
1822
+ #: includes/Settings.class.php:1229
1823
  msgid "Pending Redirect Page"
1824
  msgstr ""
1825
 
1826
+ #: includes/Settings.class.php:1230
1827
  msgid ""
1828
  "Input the URL of the page you want the booking form to redirect to after a "
1829
  "reservation is made that is set to pending. This overrides the \"Pending "
1830
  "Confirmation Message\" text/option."
1831
  msgstr ""
1832
 
1833
+ #: includes/Settings.class.php:1240
1834
  msgid "Confirmed Redirect Page"
1835
  msgstr ""
1836
 
1837
+ #: includes/Settings.class.php:1241
1838
  msgid ""
1839
  "Input the URL of the page you want the booking form to redirect to after a "
1840
  "reservation is made that is automatically confirmed. This overrides the "
1841
  "\"Confirmed Booking Message\" text/option."
1842
  msgstr ""
1843
 
1844
+ #: includes/Settings.class.php:1251
1845
  msgid "Cancellation Redirect Page"
1846
  msgstr ""
1847
 
1848
+ #: includes/Settings.class.php:1252
1849
  msgid ""
1850
  "Input the URL of the page you want the cancellation form to redirect to when "
1851
  "someone cancels their reservation. Only applicable if the \"Allow "
1853
  "success message instead of redirecting."
1854
  msgstr ""
1855
 
1856
+ #: includes/Settings.class.php:1271
1857
  msgid "Date Format"
1858
  msgstr ""
1859
 
1860
+ #: includes/Settings.class.php:1272
1861
  #, php-format
1862
  msgid ""
1863
  "Define how the date is formatted on the booking form. %sFormatting rules%s. "
1865
  "in notification messages, modify your general %sWordPress Settings%s."
1866
  msgstr ""
1867
 
1868
+ #: includes/Settings.class.php:1283
1869
  msgid "Time Format"
1870
  msgstr ""
1871
 
1872
+ #: includes/Settings.class.php:1284
1873
  #, php-format
1874
  msgid ""
1875
  "Define how the time is formatted on the booking form. %sFormatting rules%s. "
1877
  "in notification messages, modify your general %sWordPress Settings%s."
1878
  msgstr ""
1879
 
1880
+ #: includes/Settings.class.php:1295
1881
  msgid "Display Unavailable Time Slots"
1882
  msgstr ""
1883
 
1884
+ #: includes/Settings.class.php:1296
1885
  msgid ""
1886
  "Display any time slots (greyed out) which are not available for booking on "
1887
  "the front end."
1888
  msgstr ""
1889
 
1890
+ #: includes/Settings.class.php:1308
1891
  msgid "Language"
1892
  msgstr ""
1893
 
1894
+ #: includes/Settings.class.php:1309
1895
  msgid ""
1896
  "Select a language to use for the booking form datepicker if it is different "
1897
  "than your WordPress language setting."
1898
  msgstr ""
1899
 
1900
+ #: includes/Settings.class.php:1321
1901
  msgid "Refresh Bookings Page"
1902
  msgstr ""
1903
 
1904
+ #: includes/Settings.class.php:1322
1905
  msgid ""
1906
  "After how many minutes should the Bookings page be automatically refreshed? "
1907
  "The minimum is 1 minute and you can disable it by inputting 0 or leaving it "
1908
  "empty."
1909
  msgstr ""
1910
 
1911
+ #: includes/Settings.class.php:1330
1912
  msgid "Security"
1913
  msgstr ""
1914
 
1915
+ #: includes/Settings.class.php:1341
1916
  msgid "Banned Email Addresses"
1917
  msgstr ""
1918
 
1919
+ #: includes/Settings.class.php:1342
1920
  msgid ""
1921
  "You can block bookings from specific email addresses. Enter each email "
1922
  "address on a separate line."
1923
  msgstr ""
1924
 
1925
+ #: includes/Settings.class.php:1352
1926
  msgid "Banned IP Addresses"
1927
  msgstr ""
1928
 
1929
+ #: includes/Settings.class.php:1353
1930
  msgid ""
1931
  "You can block bookings from specific IP addresses. Enter each IP address on "
1932
  "a separate line. Be aware that many internet providers rotate their IP "
1936
  "block several people."
1937
  msgstr ""
1938
 
1939
+ #: includes/Settings.class.php:1361
1940
  msgid "Captcha"
1941
  msgstr ""
1942
 
1943
+ #: includes/Settings.class.php:1372
1944
  msgid "Enable Google reCAPTCHA v2"
1945
  msgstr ""
1946
 
1947
+ #: includes/Settings.class.php:1373
1948
  #, php-format
1949
  msgid ""
1950
  "Adds Google's reCAPTCHA code to your form, to verify guests before they can "
1952
  "configure this feature."
1953
  msgstr ""
1954
 
1955
+ #: includes/Settings.class.php:1383
1956
  msgid "Google Site Key"
1957
  msgstr ""
1958
 
1959
+ #: includes/Settings.class.php:1384
1960
  msgid "The site key provided to you by Google"
1961
  msgstr ""
1962
 
1963
+ #: includes/Settings.class.php:1394
1964
  msgid "Google Secret Key"
1965
  msgstr ""
1966
 
1967
+ #: includes/Settings.class.php:1395
1968
  msgid "The secret key provided to you by Google"
1969
  msgstr ""
1970
 
1971
+ #: includes/Settings.class.php:1403
1972
  msgid "Privacy"
1973
  msgstr ""
1974
 
1975
+ #: includes/Settings.class.php:1414
1976
  msgid "Disable IP Capture"
1977
  msgstr ""
1978
 
1979
+ #: includes/Settings.class.php:1415
1980
  msgid ""
1981
  "This turns off the feature that captures the IP address of the device making "
1982
  "the booking."
1983
  msgstr ""
1984
 
1985
+ #: includes/Settings.class.php:1425
1986
  msgid "Require Consent"
1987
  msgstr ""
1988
 
1989
+ #: includes/Settings.class.php:1426
1990
  msgid ""
1991
  "Require customers to consent to the collection of their details when making "
1992
  "a booking. This may be required to comply with privacy laws in your country."
1993
  msgstr ""
1994
 
1995
+ #: includes/Settings.class.php:1436
1996
  msgid "Consent Statement"
1997
  msgstr ""
1998
 
1999
+ #: includes/Settings.class.php:1437
2000
  msgid ""
2001
  "Enter the statement you would like customers to confirm when making a "
2002
  "booking."
2003
  msgstr ""
2004
 
2005
+ #: includes/Settings.class.php:1447
2006
  msgid "Privacy Statement Page"
2007
  msgstr ""
2008
 
2009
+ #: includes/Settings.class.php:1448
2010
  msgid ""
2011
  "Select a page on your site which contains a privacy statement. If selected, "
2012
  "it will be linked to in your consent statement."
2013
  msgstr ""
2014
 
2015
+ #: includes/Settings.class.php:1466
2016
  msgid "Delete Reservation Data Days"
2017
  msgstr ""
2018
 
2019
+ #: includes/Settings.class.php:1467
2020
  msgid ""
2021
  "Sets the approximate number of days booking data should be stored for. Leave "
2022
  "blank to keep booking data indefinitely."
2023
  msgstr ""
2024
 
2025
+ #: includes/Settings.class.php:1476 includes/Settings.class.php:1967
2026
  msgid "Notifications"
2027
  msgstr ""
2028
 
2029
+ #: includes/Settings.class.php:1486
2030
  msgid "Daily Summary"
2031
  msgstr ""
2032
 
2033
+ #: includes/Settings.class.php:1497
2034
  msgid "Summary Email Address"
2035
  msgstr ""
2036
 
2037
+ #: includes/Settings.class.php:1498
2038
  msgid ""
2039
  "The email address, if any, where a daily summary of upcoming reservations "
2040
  "should be emailed."
2041
  msgstr ""
2042
 
2043
+ #: includes/Settings.class.php:1508
2044
  msgid "Summary Email Send Time"
2045
  msgstr ""
2046
 
2047
+ #: includes/Settings.class.php:1509
2048
  msgid ""
2049
  "What time should the summary email be sent at? This is based on your "
2050
  "WordPress timezone setting."
2051
  msgstr ""
2052
 
2053
+ #: includes/Settings.class.php:1528
2054
  msgid "Reply-To Name"
2055
  msgstr ""
2056
 
2057
+ #: includes/Settings.class.php:1529
2058
  msgid ""
2059
  "The name which should appear in the Reply-To field of a user notification "
2060
  "email"
2061
  msgstr ""
2062
 
2063
+ #: includes/Settings.class.php:1540
2064
  msgid "Reply-To Email Address"
2065
  msgstr ""
2066
 
2067
+ #: includes/Settings.class.php:1541
2068
  msgid ""
2069
  "The email address which should appear in the Reply-To field of a user "
2070
  "notification email."
2071
  msgstr ""
2072
 
2073
+ #: includes/Settings.class.php:1552
2074
  msgid "Admin Notification"
2075
  msgstr ""
2076
 
2077
+ #: includes/Settings.class.php:1553
2078
  msgid ""
2079
  "Send an email notification to an administrator when a new booking is "
2080
  "requested."
2081
  msgstr ""
2082
 
2083
+ #: includes/Settings.class.php:1563
2084
  msgid "Admin New Confirmed Notification"
2085
  msgstr ""
2086
 
2087
+ #: includes/Settings.class.php:1564
2088
  msgid ""
2089
  "Send an email notification to an administrator when a new confirmed booking "
2090
  "is made."
2091
  msgstr ""
2092
 
2093
+ #: includes/Settings.class.php:1574
2094
  msgid "Admin Cancellation Notification"
2095
  msgstr ""
2096
 
2097
+ #: includes/Settings.class.php:1575
2098
  msgid ""
2099
  "Send an email notification to an administrator when a booking is cancelled."
2100
  msgstr ""
2101
 
2102
+ #: includes/Settings.class.php:1585
2103
  msgid "Admin Email Address"
2104
  msgstr ""
2105
 
2106
+ #: includes/Settings.class.php:1586
2107
  msgid "The email address where admin notifications should be sent."
2108
  msgstr ""
2109
 
2110
+ #: includes/Settings.class.php:1595
2111
  msgid "Notification Emails"
2112
  msgstr ""
2113
 
2114
+ #: includes/Settings.class.php:1597
2115
  msgid ""
2116
  "Adjust the messages that are emailed to users and admins during the booking "
2117
  "process."
2118
  msgstr ""
2119
 
2120
+ #: includes/Settings.class.php:1607
2121
  msgid "Template Tags"
2122
  msgstr ""
2123
 
2124
+ #: includes/Settings.class.php:1609
2125
  msgid ""
2126
  "Use the following tags to automatically add booking information to the "
2127
  "emails. Tags labeled with an asterisk (*) can be used in the email subject "
2128
  "as well."
2129
  msgstr ""
2130
 
2131
+ #: includes/Settings.class.php:1620
2132
  msgid "Admin Notification Subject (Pending Booking)"
2133
  msgstr ""
2134
 
2135
+ #: includes/Settings.class.php:1621
2136
  msgid "The email subject for admin notifications."
2137
  msgstr ""
2138
 
2139
+ #: includes/Settings.class.php:1632
2140
  msgid "Admin Notification Email (Pending Booking)"
2141
  msgstr ""
2142
 
2143
+ #: includes/Settings.class.php:1633
2144
  msgid ""
2145
  "Enter the email an admin should receive when an initial booking request is "
2146
  "made."
2147
  msgstr ""
2148
 
2149
+ #: includes/Settings.class.php:1644
2150
  msgid "Admin Notification Subject (Auto Confirmed Booking)"
2151
  msgstr ""
2152
 
2153
+ #: includes/Settings.class.php:1645
2154
  msgid ""
2155
  "The email subject for admin notifications for automatically-confirmed "
2156
  "bookings."
2157
  msgstr ""
2158
 
2159
+ #: includes/Settings.class.php:1656
2160
  msgid "Admin Notification Email (Auto Confirmed Booking)"
2161
  msgstr ""
2162
 
2163
+ #: includes/Settings.class.php:1657
2164
  msgid ""
2165
  "Enter the email an admin should receive when an automatically-confirmed "
2166
  "booking is made."
2167
  msgstr ""
2168
 
2169
+ #: includes/Settings.class.php:1668
2170
  msgid "Admin Booking Cancelled Subject"
2171
  msgstr ""
2172
 
2173
+ #: includes/Settings.class.php:1669
2174
  msgid "The email subject for admin notifications when a booking is cancelled."
2175
  msgstr ""
2176
 
2177
+ #: includes/Settings.class.php:1680
2178
  msgid "Admin Booking Cancelled Email"
2179
  msgstr ""
2180
 
2181
+ #: includes/Settings.class.php:1681
2182
  msgid "Enter the email an admin should receive when a booking is cancelled."
2183
  msgstr ""
2184
 
2185
+ #: includes/Settings.class.php:1692
2186
  msgid "New Request Email Subject"
2187
  msgstr ""
2188
 
2189
+ #: includes/Settings.class.php:1693
2190
  msgid ""
2191
  "The email subject a user should receive when they make an initial booking "
2192
  "request."
2193
  msgstr ""
2194
 
2195
+ #: includes/Settings.class.php:1704 includes/load-customizer.php:211
2196
  msgid "New Request Email"
2197
  msgstr ""
2198
 
2199
+ #: includes/Settings.class.php:1705
2200
  msgid ""
2201
  "Enter the email a user should receive when they make an initial booking "
2202
  "request."
2203
  msgstr ""
2204
 
2205
+ #: includes/Settings.class.php:1716
2206
  msgid "Confirmed Email Subject"
2207
  msgstr ""
2208
 
2209
+ #: includes/Settings.class.php:1717
2210
  msgid ""
2211
  "The email subject a user should receive when their booking has been "
2212
  "confirmed."
2213
  msgstr ""
2214
 
2215
+ #: includes/Settings.class.php:1728 includes/load-customizer.php:251
2216
  msgid "Confirmed Email"
2217
  msgstr ""
2218
 
2219
+ #: includes/Settings.class.php:1729
2220
  msgid ""
2221
  "Enter the email a user should receive when their booking has been confirmed."
2222
  msgstr ""
2223
 
2224
+ #: includes/Settings.class.php:1740
2225
  msgid "Rejected Email Subject"
2226
  msgstr ""
2227
 
2228
+ #: includes/Settings.class.php:1741
2229
  msgid ""
2230
  "The email subject a user should receive when their booking has been rejected."
2231
  msgstr ""
2232
 
2233
+ #: includes/Settings.class.php:1752 includes/load-customizer.php:291
2234
  msgid "Rejected Email"
2235
  msgstr ""
2236
 
2237
+ #: includes/Settings.class.php:1753
2238
  msgid ""
2239
  "Enter the email a user should receive when their booking has been rejected."
2240
  msgstr ""
2241
 
2242
+ #: includes/Settings.class.php:1764
2243
  msgid "Booking Cancelled Email Subject"
2244
  msgstr ""
2245
 
2246
+ #: includes/Settings.class.php:1765
2247
  msgid ""
2248
  "The email subject a user should receive when they have cancelled their "
2249
  "booking."
2250
  msgstr ""
2251
 
2252
+ #: includes/Settings.class.php:1776
2253
  msgid "Booking Cancelled Email"
2254
  msgstr ""
2255
 
2256
+ #: includes/Settings.class.php:1777
2257
  msgid "Enter the email a user should receive when they cancel their booking."
2258
  msgstr ""
2259
 
2260
+ #: includes/Settings.class.php:1788
2261
  msgid "Admin Update Subject"
2262
  msgstr ""
2263
 
2264
+ #: includes/Settings.class.php:1789
2265
  #, php-format
2266
  msgid ""
2267
  "The email subject a user should receive when an admin sends them a custom "
2268
  "email message from the %sbookings panel%s."
2269
  msgstr ""
2270
 
2271
+ #: includes/Settings.class.php:1803 includes/Settings.class.php:1949
2272
+ msgid "Advanced"
 
2273
  msgstr ""
2274
 
2275
+ #: includes/Settings.class.php:1823 includes/Settings.class.php:1984
2276
+ msgid "Payments"
2277
  msgstr ""
2278
 
2279
+ #: includes/Settings.class.php:1843 includes/Settings.class.php:2000
2280
  msgid "Export"
2281
  msgstr ""
2282
 
2283
+ #: includes/Settings.class.php:1863 includes/Settings.class.php:2015
2284
  msgid "Labelling"
2285
  msgstr ""
2286
 
2287
+ #: includes/Settings.class.php:1883 includes/Settings.class.php:2031
2288
  msgid "Styling"
2289
  msgstr ""
2290
 
2291
+ #: includes/Settings.class.php:1927
2292
  msgid "The premium version also gives you access to the following features:"
2293
  msgstr ""
2294
 
2295
+ #: includes/Settings.class.php:1929
2296
  msgid "Multiple Form Layouts"
2297
  msgstr ""
2298
 
2299
+ #: includes/Settings.class.php:1930
2300
  msgid "Custom Booking Fields"
2301
  msgstr ""
2302
 
2303
+ #: includes/Settings.class.php:1931
2304
  msgid "Advanced Email Designer"
2305
  msgstr ""
2306
 
2307
+ #: includes/Settings.class.php:1932
2308
  msgid "Set Table and Seat Restrictions"
2309
  msgstr ""
2310
 
2311
+ #: includes/Settings.class.php:1933
2312
  msgid "Automatic Booking Confirmation"
2313
  msgstr ""
2314
 
2315
+ #: includes/Settings.class.php:1934
2316
  msgid "Bookings Page for Staff"
2317
  msgstr ""
2318
 
2319
+ #: includes/Settings.class.php:1935
2320
  msgid "Export Bookings"
2321
  msgstr ""
2322
 
2323
+ #: includes/Settings.class.php:1936
2324
  msgid "Email Support"
2325
  msgstr ""
2326
 
2327
+ #: includes/Settings.class.php:1939
2328
  msgid "UPGRADE NOW"
2329
  msgstr ""
2330
 
2331
+ #: includes/Settings.class.php:1949 includes/Settings.class.php:1967
2332
  msgid "Premium/Ultimate"
2333
  msgstr ""
2334
 
2335
+ #: includes/Settings.class.php:1950
2336
  msgid ""
2337
  "The advanced options let you set a maximum number of reservations or people, "
2338
  "enable automatic confirmation of bookings, configure a view bookings page "
2343
  "when they book and/or manage the tables in the admin."
2344
  msgstr ""
2345
 
2346
+ #: includes/Settings.class.php:1968
2347
  msgid ""
2348
  "The email template designer uses the WordPress customizer to let you modify "
2349
  "the look and structure of the notification emails. The reminders section "
2353
  "booking time has passed."
2354
  msgstr ""
2355
 
2356
+ #: includes/Settings.class.php:1985
2357
  msgid ""
2358
  "The payment options let you require a deposit for bookings, either via "
2359
  "PayPal or Stripe. Deposits can be made conditional on a minimum party size "
2360
  "or only for certain days/times."
2361
  msgstr ""
2362
 
2363
+ #: includes/Settings.class.php:2001
2364
  msgid ""
2365
  "You can export all your bookings to a PDF file, for use by your staff to "
2366
  "manage upcoming bookings, for accounting purposes etc."
2367
  msgstr ""
2368
 
2369
+ #: includes/Settings.class.php:2016
2370
  msgid ""
2371
  "The labelling options let you change the wording of the different labels "
2372
  "that appear on the front end of the plugin. You can use this to translate "
2373
  "them, customize the wording for your purpose, etc."
2374
  msgstr ""
2375
 
2376
+ #: includes/Settings.class.php:2032
2377
  msgid ""
2378
  "The styling options let you choose a booking form layout and modify the "
2379
  "colors, font family, font size and borders of the various elements found in "
2380
  "the booking form."
2381
  msgstr ""
2382
 
2383
+ #: includes/Settings.class.php:2059
2384
  msgid "Any size"
2385
  msgstr ""
2386
 
2387
+ #: includes/Settings.class.php:2378
2388
  msgid "Email of the user who made the booking"
2389
  msgstr ""
2390
 
2391
+ #: includes/Settings.class.php:2379
2392
  msgid "* Name of the user who made the booking"
2393
  msgstr ""
2394
 
2395
+ #: includes/Settings.class.php:2380
2396
  msgid "* Number of people booked"
2397
  msgstr ""
2398
 
2399
+ #: includes/Settings.class.php:2381
2400
  msgid "* Date and time of the booking"
2401
  msgstr ""
2402
 
2403
+ #: includes/Settings.class.php:2382
2404
  msgid "Phone number if supplied with the request"
2405
  msgstr ""
2406
 
2407
+ #: includes/Settings.class.php:2383
2408
  msgid "Message added to the request"
2409
  msgstr ""
2410
 
2411
+ #: includes/Settings.class.php:2384
2412
  msgid "A link to the admin panel showing pending bookings"
2413
  msgstr ""
2414
 
2415
+ #: includes/Settings.class.php:2385
2416
  msgid ""
2417
  "A link that a guest can use to cancel their booking if cancellations are "
2418
  "enabled"
2419
  msgstr ""
2420
 
2421
+ #: includes/Settings.class.php:2386
2422
  msgid ""
2423
  "A link to confirm this booking. Only include this in admin notifications"
2424
  msgstr ""
2425
 
2426
+ #: includes/Settings.class.php:2387
2427
  msgid "A link to reject this booking. Only include this in admin notifications"
2428
  msgstr ""
2429
 
2430
+ #: includes/Settings.class.php:2388
2431
  msgid "The name of this website"
2432
  msgstr ""
2433
 
2434
+ #: includes/Settings.class.php:2389
2435
  msgid "A link to this website"
2436
  msgstr ""
2437
 
2438
+ #: includes/Settings.class.php:2390
2439
  msgid "Current date and time"
2440
  msgstr ""
2441
 
2442
+ #: includes/Settings.class.php:2391
2443
  msgid "The table(s) for the booking"
2444
  msgstr ""
2445
 
2743
  msgid "The email a user receives when they are late for their reservation."
2744
  msgstr ""
2745
 
2746
+ #: includes/patterns/modify-booking.php:6
2747
+ msgid "Modify Booking"
2748
+ msgstr ""
2749
+
2750
+ #: includes/patterns/view-bookings.php:6
2751
+ msgid "View Bookings"
2752
+ msgstr ""
2753
+
2754
  #: includes/template-functions.php:150
2755
  #, php-format
2756
  msgid ""
2774
  msgid "Upload Image"
2775
  msgstr ""
2776
 
2777
+ #: restaurant-reservations.php:278
2778
  msgid "Booking Manager"
2779
  msgstr ""
2780
 
2781
+ #: restaurant-reservations.php:410
2782
  msgid "MENU"
2783
  msgstr ""
2784
 
2785
+ #: restaurant-reservations.php:418
2786
  msgid "Dashboard"
2787
  msgstr ""
2788
 
2789
+ #: restaurant-reservations.php:437
2790
  msgid "Custom Fields"
2791
  msgstr ""
2792
 
2793
+ #: restaurant-reservations.php:562
2794
  msgid ""
2795
  "Something went wrong. Please try again and if issue persists, please contact "
2796
  "us."
2797
  msgstr ""
2798
 
2799
+ #: restaurant-reservations.php:564
2800
  msgid "No Table available at this time. Please change your selection."
2801
  msgstr ""
2802
 
2803
+ #: restaurant-reservations.php:587
2804
  msgid "View the help documentation for Restaurant Reservations"
2805
  msgstr ""
2806
 
2807
+ #: restaurant-reservations.php:587
2808
  msgid "Help"
2809
  msgstr ""
2810
 
2811
+ #: restaurant-reservations.php:677
2812
  msgid ""
2813
  "You're using the Five-Star Restaurant Reservations premium version, but the "
2814
  "premium helper plugin is not active."
2815
  msgstr ""
2816
 
2817
+ #: restaurant-reservations.php:679
2818
  #, php-format
2819
  msgid ""
2820
  "Please re-activate the helper plugin, or <a target='_blank' "
lib/simple-admin-pages/classes/AdminPage.Menu.class.php CHANGED
@@ -8,7 +8,7 @@
8
  * @package Simple Admin Pages
9
  */
10
 
11
- class sapAdminPageMenu_2_6_7 extends sapAdminPage_2_6_7 {
12
 
13
  public $setup_function = 'add_menu_page'; // WP function to register the page
14
 
8
  * @package Simple Admin Pages
9
  */
10
 
11
+ class sapAdminPageMenu_2_6_9 extends sapAdminPage_2_6_9 {
12
 
13
  public $setup_function = 'add_menu_page'; // WP function to register the page
14
 
lib/simple-admin-pages/classes/AdminPage.Submenu.class.php CHANGED
@@ -8,7 +8,7 @@
8
  * @package Simple Admin Pages
9
  */
10
 
11
- class sapAdminPageSubmenu_2_6_7 extends sapAdminPage_2_6_7 {
12
 
13
  public $setup_function = 'add_submenu_page'; // WP function to register the page
14
 
8
  * @package Simple Admin Pages
9
  */
10
 
11
+ class sapAdminPageSubmenu_2_6_9 extends sapAdminPage_2_6_9 {
12
 
13
  public $setup_function = 'add_submenu_page'; // WP function to register the page
14
 
lib/simple-admin-pages/classes/AdminPage.Themes.class.php CHANGED
@@ -8,7 +8,7 @@
8
  * @package Simple Admin Pages
9
  */
10
 
11
- class sapAdminPageThemes_2_6_7 extends sapAdminPage_2_6_7 {
12
 
13
  public $setup_function = 'add_theme_page'; // WP function to register the page
14
 
8
  * @package Simple Admin Pages
9
  */
10
 
11
+ class sapAdminPageThemes_2_6_9 extends sapAdminPage_2_6_9 {
12
 
13
  public $setup_function = 'add_theme_page'; // WP function to register the page
14
 
lib/simple-admin-pages/classes/AdminPage.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPage_2_6_7 {
11
 
12
  public $title;
13
  public $menu_title;
@@ -234,6 +234,7 @@ class sapAdminPage_2_6_7 {
234
 
235
  <form method="post" action="options.php" class="sap-parent-form">
236
  <?php settings_fields( $this->id ); ?>
 
237
  <?php do_settings_sections( $current_page ); ?>
238
  <?php if ( $this->show_button ) { submit_button(); } ?>
239
  </form>
@@ -256,4 +257,28 @@ class sapAdminPage_2_6_7 {
256
  <?php
257
  }
258
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
259
  }
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPage_2_6_9 {
11
 
12
  public $title;
13
  public $menu_title;
234
 
235
  <form method="post" action="options.php" class="sap-parent-form">
236
  <?php settings_fields( $this->id ); ?>
237
+ <?php $this->maybe_print_tutorial_div( $current_page ); ?>
238
  <?php do_settings_sections( $current_page ); ?>
239
  <?php if ( $this->show_button ) { submit_button(); } ?>
240
  </form>
257
  <?php
258
  }
259
 
260
+ /**
261
+ * Output the title of the page
262
+ * @since 2.6.9
263
+ */
264
+ public function maybe_print_tutorial_div( $current_page ) {
265
+
266
+ foreach ( $this->sections as $section ) {
267
+
268
+ if ( $current_page == $section->id and ! empty( $section->tutorial_yt_id ) ) { ?>
269
+
270
+ <div class='sap-tutorial-div sap-hidden'>
271
+
272
+ <iframe width="560" height="315" src="https://www.youtube.com/embed/<?php echo esc_attr( $section->tutorial_yt_id ); ?>" frameborder="0" allow="autoplay; clipboard-write; encrypted-media; gyroscope;" allowfullscreen></iframe>
273
+
274
+ </div>
275
+
276
+ <?php
277
+
278
+ return true;
279
+ }
280
+ }
281
+
282
+ return false;
283
+ }
284
  }
lib/simple-admin-pages/classes/AdminPageSection.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSection_2_6_7 {
11
 
12
  // Page defaults
13
  public $id; // unique id for this section
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSection_2_6_9 {
11
 
12
  // Page defaults
13
  public $id; // unique id for this section
lib/simple-admin-pages/classes/AdminPageSetting.Address.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingAddress_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  /*
13
  * Size of this textarea
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingAddress_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  /*
13
  * Size of this textarea
lib/simple-admin-pages/classes/AdminPageSetting.Checkbox.class.php CHANGED
@@ -19,7 +19,7 @@
19
  * @package Simple Admin Pages
20
  */
21
 
22
- class sapAdminPageSettingCheckbox_2_6_7 extends sapAdminPageSetting_2_6_7 {
23
 
24
  //public $sanitize_callback = 'sanitize_text_field';
25
 
19
  * @package Simple Admin Pages
20
  */
21
 
22
+ class sapAdminPageSettingCheckbox_2_6_9 extends sapAdminPageSetting_2_6_9 {
23
 
24
  //public $sanitize_callback = 'sanitize_text_field';
25
 
lib/simple-admin-pages/classes/AdminPageSetting.ColorPicker.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingColorPicker_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingColorPicker_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
lib/simple-admin-pages/classes/AdminPageSetting.Count.class.php CHANGED
@@ -24,7 +24,7 @@
24
  * @package Simple Admin Pages
25
  */
26
 
27
- class sapAdminPageSettingCount_2_6_7 extends sapAdminPageSetting_2_6_7 {
28
 
29
  public $sanitize_callback = 'sanitize_text_field';
30
 
24
  * @package Simple Admin Pages
25
  */
26
 
27
+ class sapAdminPageSettingCount_2_6_9 extends sapAdminPageSetting_2_6_9 {
28
 
29
  public $sanitize_callback = 'sanitize_text_field';
30
 
lib/simple-admin-pages/classes/AdminPageSetting.Editor.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingEditor_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  public $sanitize_callback = 'wp_kses_post';
13
 
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingEditor_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  public $sanitize_callback = 'wp_kses_post';
13
 
lib/simple-admin-pages/classes/AdminPageSetting.FileUpload.class.php CHANGED
@@ -15,7 +15,7 @@
15
  * @package Simple Admin Pages
16
  */
17
 
18
- class sapAdminPageSettingFileUpload_2_6_7 extends sapAdminPageSetting_2_6_7 {
19
 
20
  public $sanitize_callback = 'esc_url_raw';
21
 
15
  * @package Simple Admin Pages
16
  */
17
 
18
+ class sapAdminPageSettingFileUpload_2_6_9 extends sapAdminPageSetting_2_6_9 {
19
 
20
  public $sanitize_callback = 'esc_url_raw';
21
 
lib/simple-admin-pages/classes/AdminPageSetting.HTML.class.php CHANGED
@@ -14,7 +14,7 @@
14
  * @package Simple Admin Pages
15
  */
16
 
17
- class sapAdminPageSettingHTML_2_6_7 extends sapAdminPageSetting_2_6_7 {
18
 
19
  public $sanitize_callback = 'sanitize_text_field';
20
 
14
  * @package Simple Admin Pages
15
  */
16
 
17
+ class sapAdminPageSettingHTML_2_6_9 extends sapAdminPageSetting_2_6_9 {
18
 
19
  public $sanitize_callback = 'sanitize_text_field';
20
 
lib/simple-admin-pages/classes/AdminPageSetting.Image.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingImage_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  public $sanitize_callback = 'absint';
13
 
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingImage_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  public $sanitize_callback = 'absint';
13
 
lib/simple-admin-pages/classes/AdminPageSetting.InfiniteTable.class.php CHANGED
@@ -24,7 +24,7 @@
24
  * @package Simple Admin Pages
25
  */
26
 
27
- class sapAdminPageSettingInfiniteTable_2_6_7 extends sapAdminPageSetting_2_6_7 {
28
 
29
  public $sanitize_callback = 'sanitize_textarea_field';
30
 
24
  * @package Simple Admin Pages
25
  */
26
 
27
+ class sapAdminPageSettingInfiniteTable_2_6_9 extends sapAdminPageSetting_2_6_9 {
28
 
29
  public $sanitize_callback = 'sanitize_textarea_field';
30
 
lib/simple-admin-pages/classes/AdminPageSetting.McApiKey.class.php CHANGED
@@ -14,7 +14,7 @@
14
  *
15
  */
16
 
17
- class mcfrtbAdminPageSettingMcApiKey_2_6_7 {
18
 
19
  /**
20
  * Scripts and styles to load for this component
14
  *
15
  */
16
 
17
+ class mcfrtbAdminPageSettingMcApiKey_2_6_9 {
18
 
19
  /**
20
  * Scripts and styles to load for this component
lib/simple-admin-pages/classes/AdminPageSetting.McListMerge.class.php CHANGED
@@ -14,7 +14,7 @@
14
  *
15
  */
16
 
17
- class mcfrtbAdminPageSettingMcListMerge_2_6_7 {
18
 
19
  /**
20
  * Scripts and styles to load for this component
14
  *
15
  */
16
 
17
+ class mcfrtbAdminPageSettingMcListMerge_2_6_9 {
18
 
19
  /**
20
  * Scripts and styles to load for this component
lib/simple-admin-pages/classes/AdminPageSetting.Number.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingNumber_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingNumber_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
lib/simple-admin-pages/classes/AdminPageSetting.OpeningHours.class.php CHANGED
@@ -25,7 +25,7 @@
25
  * @package Simple Admin Pages
26
  */
27
 
28
- class sapAdminPageSettingOpeningHours_2_6_7 extends sapAdminPageSetting_2_6_7 {
29
 
30
  public $sanitize_callback = 'sanitize_text_field';
31
 
25
  * @package Simple Admin Pages
26
  */
27
 
28
+ class sapAdminPageSettingOpeningHours_2_6_9 extends sapAdminPageSetting_2_6_9 {
29
 
30
  public $sanitize_callback = 'sanitize_text_field';
31
 
lib/simple-admin-pages/classes/AdminPageSetting.Ordering.class.php CHANGED
@@ -18,7 +18,7 @@
18
  * @package Simple Admin Pages
19
  */
20
 
21
- class sapAdminPageSettingOrdering_2_6_7 extends sapAdminPageSetting_2_6_7 {
22
 
23
  public $sanitize_callback = 'sanitize_text_field';
24
 
18
  * @package Simple Admin Pages
19
  */
20
 
21
+ class sapAdminPageSettingOrdering_2_6_9 extends sapAdminPageSetting_2_6_9 {
22
 
23
  public $sanitize_callback = 'sanitize_text_field';
24
 
lib/simple-admin-pages/classes/AdminPageSetting.Password.class.php ADDED
@@ -0,0 +1,38 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ <?php
2
+
3
+ /**
4
+ * Register, display and save a password field setting in the admin menu
5
+ *
6
+ * @since 2.6.8
7
+ * @package Simple Admin Pages
8
+ */
9
+
10
+ class sapAdminPageSettingPassword_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
+
12
+ public $sanitize_callback = 'sanitize_text_field';
13
+
14
+ /**
15
+ * Placeholder string for the input field
16
+ * @since 2.6.8
17
+ */
18
+ public $placeholder = '';
19
+
20
+ /**
21
+ * Display this setting
22
+ * @since 2.6.8
23
+ */
24
+ public function display_setting() {
25
+ ?>
26
+
27
+ <fieldset <?php $this->print_conditional_data(); ?>>
28
+ <input name="<?php echo esc_attr( $this->get_input_name() ); ?>" type="password" id="<?php echo esc_attr( $this->get_input_name() ); ?>" value="<?php echo esc_attr( $this->value ); ?>"<?php echo !empty( $this->placeholder ) ? ' placeholder="' . esc_attr( $this->placeholder ) . '"' : ''; ?> class="regular-text <?php echo ( $this->small ? 'sap-small-text-input' : '' ); ?>" <?php echo ( $this->disabled ? 'disabled' : ''); ?> />
29
+
30
+ <?php $this->display_disabled(); ?>
31
+ </fieldset>
32
+
33
+ <?php
34
+
35
+ $this->display_description();
36
+ }
37
+
38
+ }
lib/simple-admin-pages/classes/AdminPageSetting.Radio.class.php CHANGED
@@ -19,7 +19,7 @@
19
  * @package Simple Admin Pages
20
  */
21
 
22
- class sapAdminPageSettingRadio_2_6_7 extends sapAdminPageSetting_2_6_7 {
23
 
24
  public $sanitize_callback = 'sanitize_text_field';
25
 
19
  * @package Simple Admin Pages
20
  */
21
 
22
+ class sapAdminPageSettingRadio_2_6_9 extends sapAdminPageSetting_2_6_9 {
23
 
24
  public $sanitize_callback = 'sanitize_text_field';
25
 
lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php CHANGED
@@ -10,7 +10,7 @@
10
  * @package Simple Admin Pages
11
  */
12
 
13
- class sapAdminPageSettingScheduler_2_6_7 extends sapAdminPageSetting_2_6_7 {
14
 
15
  public $sanitize_callback = 'sanitize_text_field';
16
 
10
  * @package Simple Admin Pages
11
  */
12
 
13
+ class sapAdminPageSettingScheduler_2_6_9 extends sapAdminPageSetting_2_6_9 {
14
 
15
  public $sanitize_callback = 'sanitize_text_field';
16
 
lib/simple-admin-pages/classes/AdminPageSetting.Select.class.php CHANGED
@@ -21,7 +21,7 @@
21
  * @package Simple Admin Pages
22
  */
23
 
24
- class sapAdminPageSettingSelect_2_6_7 extends sapAdminPageSetting_2_6_7 {
25
 
26
  public $sanitize_callback = 'sanitize_text_field';
27
 
21
  * @package Simple Admin Pages
22
  */
23
 
24
+ class sapAdminPageSettingSelect_2_6_9 extends sapAdminPageSetting_2_6_9 {
25
 
26
  public $sanitize_callback = 'sanitize_text_field';
27
 
lib/simple-admin-pages/classes/AdminPageSetting.SelectMenu.class.php CHANGED
@@ -17,7 +17,7 @@
17
  * @package Simple Admin Pages
18
  */
19
 
20
- class sapAdminPageSettingSelectMenu_2_6_7 extends sapAdminPageSetting_2_6_7 {
21
 
22
  public $sanitize_callback = 'intval';
23
 
17
  * @package Simple Admin Pages
18
  */
19
 
20
+ class sapAdminPageSettingSelectMenu_2_6_9 extends sapAdminPageSetting_2_6_9 {
21
 
22
  public $sanitize_callback = 'intval';
23
 
lib/simple-admin-pages/classes/AdminPageSetting.SelectPost.class.php CHANGED
@@ -17,7 +17,7 @@
17
  * @package Simple Admin Pages
18
  */
19
 
20
- class sapAdminPageSettingSelectPost_2_6_7 extends sapAdminPageSetting_2_6_7 {
21
 
22
  public $sanitize_callback = 'intval';
23
 
17
  * @package Simple Admin Pages
18
  */
19
 
20
+ class sapAdminPageSettingSelectPost_2_6_9 extends sapAdminPageSetting_2_6_9 {
21
 
22
  public $sanitize_callback = 'intval';
23
 
lib/simple-admin-pages/classes/AdminPageSetting.SelectTaxonomy.class.php CHANGED
@@ -19,7 +19,7 @@
19
  * @package Simple Admin Pages
20
  */
21
 
22
- class sapAdminPageSettingSelectTaxonomy_2_6_7 extends sapAdminPageSetting_2_6_7 {
23
 
24
  public $sanitize_callback = 'intval';
25
 
19
  * @package Simple Admin Pages
20
  */
21
 
22
+ class sapAdminPageSettingSelectTaxonomy_2_6_9 extends sapAdminPageSetting_2_6_9 {
23
 
24
  public $sanitize_callback = 'intval';
25
 
lib/simple-admin-pages/classes/AdminPageSetting.Text.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingText_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingText_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
lib/simple-admin-pages/classes/AdminPageSetting.Textarea.class.php CHANGED
@@ -9,7 +9,7 @@
9
  * @todo textareas should have an option to swap new lines for <br>s
10
  */
11
 
12
- class sapAdminPageSettingTextarea_2_6_7 extends sapAdminPageSetting_2_6_7 {
13
 
14
  /*
15
  * Size of this textarea
9
  * @todo textareas should have an option to swap new lines for <br>s
10
  */
11
 
12
+ class sapAdminPageSettingTextarea_2_6_9 extends sapAdminPageSetting_2_6_9 {
13
 
14
  /*
15
  * Size of this textarea
lib/simple-admin-pages/classes/AdminPageSetting.Time.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingTime_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingTime_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
lib/simple-admin-pages/classes/AdminPageSetting.Toggle.class.php CHANGED
@@ -17,7 +17,7 @@
17
  * @package Simple Admin Pages
18
  */
19
 
20
- class sapAdminPageSettingToggle_2_6_7 extends sapAdminPageSetting_2_6_7 {
21
 
22
  public $sanitize_callback = 'sanitize_text_field';
23
 
17
  * @package Simple Admin Pages
18
  */
19
 
20
+ class sapAdminPageSettingToggle_2_6_9 extends sapAdminPageSetting_2_6_9 {
21
 
22
  public $sanitize_callback = 'sanitize_text_field';
23
 
lib/simple-admin-pages/classes/AdminPageSetting.WarningTip.class.php CHANGED
@@ -7,7 +7,7 @@
7
  * @package Simple Admin Pages
8
  */
9
 
10
- class sapAdminPageSettingWarningTip_2_6_7 extends sapAdminPageSetting_2_6_7 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
7
  * @package Simple Admin Pages
8
  */
9
 
10
+ class sapAdminPageSettingWarningTip_2_6_9 extends sapAdminPageSetting_2_6_9 {
11
 
12
  public $sanitize_callback = 'sanitize_text_field';
13
 
lib/simple-admin-pages/classes/AdminPageSetting.class.php CHANGED
@@ -16,7 +16,7 @@
16
  * @package Simple Admin Pages
17
  */
18
 
19
- abstract class sapAdminPageSetting_2_6_7 {
20
 
21
  // Page defaults
22
  public $id; // used in form fields and database to track and store setting
16
  * @package Simple Admin Pages
17
  */
18
 
19
+ abstract class sapAdminPageSetting_2_6_9 {
20
 
21
  // Page defaults
22
  public $id; // used in form fields and database to track and store setting
lib/simple-admin-pages/classes/Library.class.php CHANGED
@@ -1,5 +1,5 @@
1
  <?php
2
- if ( !class_exists( 'sapLibrary_2_6_7' ) ) {
3
  /**
4
  * This library class loads and provides access to the correct version of the
5
  * Simple Admin Pages library.
@@ -7,10 +7,10 @@ if ( !class_exists( 'sapLibrary_2_6_7' ) ) {
7
  * @since 1.0
8
  * @package Simple Admin Pages
9
  */
10
- class sapLibrary_2_6_7 {
11
 
12
  // Version of the library
13
- private $version = '2.6.7';
14
 
15
  // A full URL to the library which is used to correctly link scripts and
16
  // stylesheets.
@@ -49,7 +49,7 @@ class sapLibrary_2_6_7 {
49
  public function __construct( $args ) {
50
 
51
  if ( ! defined( 'SAP_VERSION' ) ) {
52
- define( 'SAP_VERSION', '2.6.7' );
53
  }
54
 
55
  // If no URL path to the library is passed, we won't be able to add the
@@ -233,6 +233,10 @@ class sapLibrary_2_6_7 {
233
  require_once('AdminPageSetting.McListMerge.class.php');
234
  return $this->get_versioned_classname( 'mcfrtbAdminPageSettingMcListMerge' );
235
 
 
 
 
 
236
  default :
237
 
238
  // Exit early if a custom type is declared without providing the
1
  <?php
2
+ if ( !class_exists( 'sapLibrary_2_6_9' ) ) {
3
  /**
4
  * This library class loads and provides access to the correct version of the
5
  * Simple Admin Pages library.
7
  * @since 1.0
8
  * @package Simple Admin Pages
9
  */
10
+ class sapLibrary_2_6_9 {
11
 
12
  // Version of the library
13
+ private $version = '2.6.9';
14
 
15
  // A full URL to the library which is used to correctly link scripts and
16
  // stylesheets.
49
  public function __construct( $args ) {
50
 
51
  if ( ! defined( 'SAP_VERSION' ) ) {
52
+ define( 'SAP_VERSION', '2.6.9' );
53
  }
54
 
55
  // If no URL path to the library is passed, we won't be able to add the
233
  require_once('AdminPageSetting.McListMerge.class.php');
234
  return $this->get_versioned_classname( 'mcfrtbAdminPageSettingMcListMerge' );
235
 
236
+ case 'password' :
237
+ require_once('AdminPageSetting.Password.class.php');
238
+ return $this->get_versioned_classname( 'sapAdminPageSettingPassword' );
239
+
240
  default :
241
 
242
  // Exit early if a custom type is declared without providing the
lib/simple-admin-pages/js/admin-settings.js CHANGED
@@ -102,4 +102,21 @@ jQuery( document ).ready( function() {
102
  setTimeout( resizeLockdownBoxes, 750 );
103
  setInterval( resizeLockdownBoxes, 3000 );
104
  jQuery( window ).on( 'resize', resizeLockdownBoxes );
105
- });
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
102
  setTimeout( resizeLockdownBoxes, 750 );
103
  setInterval( resizeLockdownBoxes, 3000 );
104
  jQuery( window ).on( 'resize', resizeLockdownBoxes );
105
+ });
106
+
107
+ /* TUTORIAL VIDEOS */
108
+ jQuery( document ).ready( function() {
109
+
110
+ if ( ! jQuery( '.sap-tutorial-div' ).length ) { return; }
111
+
112
+ var tutorial_div = jQuery( '.sap-tutorial-div' );
113
+
114
+ tutorial_div.next().insertBefore( tutorial_div );
115
+
116
+ jQuery( '.sap-parent-form h2:first-of-type' ).after( '<div class="sap-tutorial-toggle">(Video Tutorial)</div>' );
117
+
118
+ jQuery( document ).on('click', '.sap-tutorial-toggle', function( event ) {
119
+
120
+ jQuery( '.sap-tutorial-div' ).toggleClass( 'sap-hidden' );
121
+ } );
122
+ } );
readme.txt CHANGED
@@ -3,7 +3,7 @@ Contributors: FiveStarPlugins
3
  Requires at Least: 5.0
4
  Tested Up To: 6.0
5
  Tags: reservation, reservations, restaurant reservations, reservation form, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
6
- Stable tag: 2.5.16
7
  License: GPLv3
8
  License URI:http://www.gnu.org/licenses/gpl-3.0.html
9
  Donate Link: https://www.etoilewebdesign.com/plugin-donations/
@@ -14,31 +14,32 @@ Restaurant reservations made easy. Accept bookings online. Quickly confirm or re
14
 
15
  Restaurant reservations made easy. Accept reservations and table bookings online. Quickly confirm or reject restaurant reservations, send out custom email notifications, restrict booking times and more.
16
 
17
- <strong>Includes Gutenberg restaurant block for displaying your reservation form!</strong> You can also use the handy restaurant reservation shortcode or set the reservation page directly in the plugin settings.
18
-
19
  [Reservations Demo](https://www.fivestarplugins.com/five-star-restaurant-reservations-demo/)
20
 
 
 
21
  = Key Features =
22
 
23
  * Create a customized restaurant reservation form
24
  * Responsive booking form layout that looks great for mobile reservations and on all devices
25
  * Add your reservation form to any page via the included Gutenberg restaurant booking block or shortcode, or just choose your reservation page in the settings
 
26
  * Quickly [confirm or reject](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/manage/confirm-reject-bookings) a booking
27
  * Notify a customer by email when their request is confirmed or rejected
28
  * Receive an [email notification](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/config/email-notifications) when a booking request is made
29
 
30
- [youtube https://www.youtube.com/watch?v=b6x0QkgHBKI]
31
 
32
- Create a five star restaurant reservation experience by tailoring your form to yours and your customers' specific needs. With options to set minimum and maximum party sizes, to require a phone number, to change the date and time format and to write a custom message after a successful online restaurant booking, you can create a familiar and comfortable atmosphere and make the reservation process as easy and effortless as possible.
 
 
33
 
34
  = Additional Restaurant Reservation Features =
35
 
36
  Our customizable restaurant reservations plugin comes with several additional features that will help ensure you're able to set it up not only easily, but with all the options you need. It will also allow you to deliver the best and easiest online restaurant booking system for your visitors. These features include:
37
 
38
  * Add and edit bookings directly from the plugin admin panel
39
- * Set up a specific restaurant schedule by defining the times and dates available for reservation
40
  * Add exceptions to your schedule (e.g. for holidays and special events)
41
- * Support for multiple booking locations when using [Five Star Business Profile](https://wordpress.org/plugins/business-profile/)
42
  * Send customers [an email](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/manage/send-emails) about their booking from the admin panel
43
  * Option to automatically confirm reservations below a certain party size.
44
  * Customize all [notification messages](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/config/email-notifications#understanding-the-template-tags) as well as date and time formats
@@ -50,46 +51,81 @@ With our reservation system, you can set up the booking schedule for you restaur
50
 
51
  You know your customers best. With features like the ability to enable automatic confirmation and to customize your notifications, you can tailor your restaurant booking form to meet the specific requirements of your restaurant and business.
52
 
53
- [youtube https://www.youtube.com/watch?v=1OsaLLpEevc]
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
54
 
55
  = Premium Restaurant Reservations =
56
 
57
- With the premium version of our restaurant reservations plugin, you can extend the functionality of your booking form to offer your customers the best possible experience. Premium features include:
58
 
59
  * Stylish New Layout Options: Choose from multiple modern restaurant form layouts to find the one that best suits your site.
60
  * Custom Fields: Plan your dinner service better by asking for special seating requests, dietary needs and more when customers book online. Similar to open table, this allows you to customize the reservation system to have any field you want, allowing you to gather all the info you need to offer the best experience to your customers. This feature also allows you to modify the existing default fields.
 
61
  * Email Templates and Designer: Send beautiful email notifications with your own logo and brand colors when your customers make a reservation.
62
  * Export Bookings: Easily print your restaurant bookings via PDF or export them to an Excel/CSV file so you can analyze patterns, gather customer data and import bookings into other services.
63
  * MailChimp Integration: Subscribe new reservation requests to your MailChimp mailing list and watch your subscription rates grow effortlessly.
64
- * Reservation Restrictions: Easily set the desired dining block length as well as a maximum number of reservations.
65
- * View Bookings Page: Create a page on the front end of your site that displays upcoming bookings and allows you to check in guests who have arrived.
66
- * Automatic Reservation Confirmation: Enable automatic confirmation of a reservation request if that date/time is currently below the maximum reservation or seat number.
67
- * Styling Options: Many styling options are included that let you set the color, font-size, borders, etc. for the different elements of the form.
68
 
69
  = Restaurant Reservations Ultimate =
70
 
71
- The ultimate version of our restaurant reservations plugin is meant for restaurants that want to take their reservations to the next level. It several powerful features to give you the ultimate reservations experience including:
 
 
 
 
 
 
 
 
 
72
 
73
- * Booking by Table: Add your restaurant's table in the setting panel, and let (or require) guests to select a table(s) when they make their reservation, based on the booking time and party size.
74
- * Booking Deposits: Require a deposit, either per guest or per reservation, when someone makes a reservation to help prevent no-shows.
75
- * Reservation Reminders: Send out an email or SMS message before a booking at a time that you specify (ex. 4 hours before a reservation).
76
- * Late-Arrival Notices: Send out an email or SMS message when a guest is late by a specified amount for their reservation.
 
77
 
 
 
 
 
 
78
 
79
  For further information and purchasing options, please visit our <a href="https://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/" target="_blank">WordPress restaurant reservations</a> homepage.
80
 
81
- [youtube https://www.youtube.com/watch?v=0DigZnw_3Qw]
82
 
83
- This easy restaurant booking system is one part of our suite of plugins designed to give you the best WordPress restaurant experience. Check out the powerful [Restaurant Menu](https://wordpress.org/plugins/food-and-drink-menu/) plugin and let your customers view your full menu directly on your site. With its intuitive and easy-to-use interface, you'll be sure to not lose out on business to your competitors.
84
 
85
  = For help and support, please see: =
86
 
87
- * Our FAQ page, here: https://wordpress.org/plugins/restaurant-reservations/faq/
88
- * Our installation guide, here: https://wordpress.org/plugins/restaurant-reservations/installation/
89
- * Our documentation and user guide, here: http://doc.fivestarplugins.com/plugins/restaurant-reservations/?utm_source=Plugin&utm_medium=Plugin%20Description&utm_campaign=Restaurant%20Reservations
90
- * The Restaurant Menu support forum, here: https://wordpress.org/support/plugin/restaurant-reservations/
 
 
91
 
92
- This plugin also comes with hooks that developers can use to extend and customize it. Take a look at the [Developer Documentation](http://doc.fivestarplugins.com/plugins/restaurant-reservations/developer/?utm_source=Plugin&utm_medium=Plugin%20Description&utm_campaign=Restaurant%20Reservations).
93
 
94
 
95
  == Installation ==
@@ -105,46 +141,57 @@ or
105
 
106
  = Getting Started =
107
 
 
 
 
 
108
  1. To place your restaurant booking form on a page:
109
- * Option 1: Go to the 'General' tab in the plugin settings and use the Booking Page dropdown to select the page on which you want your reservation form to appear.
110
  * Option 2: Place the included reservations Gutenberg block on the page on which you want your reservation form to appear.
111
- * Option 3: Place the [booking-form] shortcode on the page on which you want your reservation form to appear.
112
 
113
  2. To customize the form:
114
- * Go to the Settings area of the plugin admin and click the 'General' tab. There you'll be able to set the min and max party size, the successful booking message, the date and time format and make use of our security and privacy features.
115
- * Also in the Settings area, go to the 'Booking Schedule' tab. There you'll be able to set your restaurant's schedule, the interval between booking slots, earliest and latest bookings and also create exceptions for the schedule.
116
 
117
  3. To set up notifications.
118
- * Go to the 'Notifications' tab in the settings.
119
- * Use the Subject and Email fields there to craft your message for each different circumstance
120
- * There is also a list of template tags there that you can include in your messages to display reservation-specific messages about the table reserved.
121
 
122
  4. To view and manage your bookings:
123
- * Go to the 'Bookings' area of the plugin admin.
124
- * There you'll be able to view and modify any bookings that have been placed on your site.
125
- * You'll also be able to manually create a new restaurant reservation (e.g. a reservation you took over the phone).
126
 
127
- For a list of specific features, see the Restaurant Menu description page here: https://wordpress.org/plugins/restaurant-reservations/.
128
 
129
- For help and support, please see:
 
 
 
 
 
 
130
 
131
- * Our FAQ page, here: https://wordpress.org/plugins/restaurant-reservations/faq/
132
- * Our documentation and user guide, here: http://doc.fivestarplugins.com/plugins/restaurant-reservations/?utm_source=Plugin&utm_medium=Plugin%20Description&utm_campaign=Restaurant%20Reservations
133
- * The Restaurant Menu support forum, here: https://wordpress.org/support/plugin/restaurant-reservations/
134
 
135
  == Frequently Asked Questions ==
136
 
137
- = Is there a shortcode to print the booking form? =
 
 
 
 
138
 
139
  Yes, use the `[booking-form]` shortcode.
140
 
141
  = Can I change the format of the date or time? =
142
 
143
- Yes, set the format for the datepicker in *Bookings > Settings*. The format used in the backend will depend on the date and time formats in your WordPress settings.
144
 
145
  = The datepicker or timepicker is not working. =
146
 
147
- If you load up the form and no date or time picker is popping up when you select those fields, this is likely caused by a Javascript error from another plugin or theme. You can find the problematic plugin by deactivating other plugins you're using one-by-one. Test after each deactivation to see if the date and time pickers work.
148
 
149
  If you have deactivated all other plugins and still have a problem, try switching to a default theme (one of the TwentySomething themes).
150
 
@@ -152,7 +199,7 @@ If you have deactivated all other plugins and still have a problem, try switchin
152
 
153
  This is almost always the result of issues with your server and can be caused by a number of things. Before posting a support request, please run through the following checklist:
154
 
155
- 1. Double-check that the notification email in *Bookings > Settings > Notifications* is correct.
156
  2. Make sure that WordPress is able to send emails. The admin email address in the WordPress settings page should receive notifications of new users.
157
  3. If you're not able to receive regular WordPress emails, contact your web host and ask them for help sorting it out.
158
  4. If you're able to receive regular WordPress emails but not booking notifications, check your spam filters or junk mail folders.
@@ -160,13 +207,14 @@ This is almost always the result of issues with your server and can be caused by
160
 
161
  = Can I make the phone number required? =
162
 
163
- This is a common request so I have written a small addon to do this for you. [Learn more](https://fivestarplugins.com/2015/01/08/simple-phone-validation-restaurant-reservations/).
164
 
165
  = Can I translate the booking form? =
166
 
167
  Yes, everything in this plugin can be translated using the standard translation process and software like PoEdit. If you're not familiar with that process, I'd recommend you take a look at the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin, which provides a simple interface in your WordPress admin area for translating themes and plugins.
168
 
169
  = I set Early or Late Bookings restrictions, but I scan still book during that time =
 
170
  Users with the Administrator and Booking Manager roles are exempt from these restrictions. This is so that they can make last-minute changes to bookings as needed. If you want to test the Early or Late Bookings restrictions, try logging out and testing.
171
 
172
  = I want to add a field to the form. Can I do that? =
@@ -175,30 +223,48 @@ The premium version does indeed come with a custom fields feature that lets you
175
 
176
  = More questions and answers =
177
 
178
- Find answers to even more questions in the [FAQ](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/faq?utm_source=Plugin&utm_medium=Plugin%20Description&utm_campaign=Restaurant%20Reservations).
 
 
 
 
 
 
 
 
 
179
 
180
  == Screenshots ==
181
 
182
  1. Booking form with the Contemporary layout.
183
  2. Booking form with the Columns layout.
184
- 3. Booking form with the default layout.
185
- 4. Great, mobile-friendly date picker to make it easy for your customers.
186
- 5. Great, mobile-friendly time picker to make it easy for your customers.
187
- 6. Easily manage bookings. View today's bookings or upcoming bookings at-a-glance. Confirm or reject bookings quickly.
188
- 7. The Booking Schedule area of the Settings page.
189
- 8. The Basic area of the Settings page.
190
- 9. The Notifications area of the Settings page.
191
- 10. The Premium area of the Settings page.
192
- 11. The Styling area of the Settings page.
193
- 12. The custom fields editor.
194
- 13. Add and edit bookings from an admin panel.
195
- 14. Quickly find bookings before or after a date. You can also filter by status or view just Today's bookings.
196
- 15. It also integrates with the Business Profile plugin to support booking for multiple locations.
197
- 16. Access a short guide from your Plugins list to help you get started quickly.
198
-
 
 
 
199
 
200
  == Changelog ==
201
 
 
 
 
 
 
 
202
  = 2.5.16 (2022-08-22) =
203
  - Updating a condition to make sure the new block patterns don't cause an error on WordPress installations using a version of WordPress older than 5.5.
204
 
@@ -633,374 +699,4 @@ Find answers to even more questions in the [FAQ](http://doc.fivestarplugins.com/
633
  - Updated the upgrade-to-premium process to be much quicker and easier
634
  - Corrected issue causing the email template designer to not load properly in the customizer
635
  - Corrected internal settings version numbering that was causing an issue with the Business Profile plugin settings
636
- - Removed files from the plugin that were not being used/not needed
637
-
638
- = 1.9.0 =
639
- - Name change and new banner and icon
640
-
641
- = 1.8.2 (2019-03-18) =
642
- - Fix: Date and time picker in latest Chromium version
643
-
644
- = 1.8.1 (2018-12-12) =
645
- - Fix: Booking form block loads without correct location in editor
646
-
647
- = 1.8 (2018-12-11) =
648
- - Add: Gutenberg block for the booking form
649
-
650
- = 1.7.8 (2018-09-13) =
651
- - Add: #126 Setting to override the FROM header's email address
652
- - Fix: #136 Preserve consent acquired state when booking is edited
653
- - Update: German, French and Dutch translations
654
-
655
- = 1.7.7 (2018-04-27) =
656
- * Add: #135 Option to collect consent to store data (GDPR)
657
- * Add: #135 Ability to delete all bookings related to an email address (GDPR)
658
- * Fix: Some data not updated in confirm/reject emails when changed
659
-
660
- = 1.7.6 (2017-05-15) =
661
- * Fix: Prevent IP address from being modified after initial submission
662
- * Fix: Schema type for Bakery used when integrating with Business Profile
663
-
664
- = 1.7.5 (2017-03-31) =
665
- * Add: #104 Show count of upcoming pending bookings in admin nav menu
666
- * Add: #44 Reject invalid email addresses in booking requests
667
- * Add: Setting to require a phone number
668
- * Add: Recommended themes with booking form styles listed in the Addons page
669
-
670
- = 1.7.4 (2017-03-21) =
671
- * Fix: Wrong time restrictions for day one month in advance. See #102
672
- * Add: Disable button when submitted to prevent duplicate submissions
673
- * Add: Polish translation. h/t Wojciech Sadowski
674
-
675
- = 1.7.3 (2017-03-02) =
676
- * Fix: Apply late bookings restrictions more than 1 day to date picker
677
- * Fix: Allow multiple email addresses for location-specific admin notifications
678
- * Fix: Translation textdomain used for Business Profile integration
679
- * Add: Apply early bookings restrictions to the date picker
680
-
681
- = 1.7.2 (2017-01-12) =
682
- * Fix: acceptsReservations schema property sometimes didn't appear in Business Profile integration
683
- * Update: improve early bookings options language. Changed "Up to X days in advance" to "From X days in advance".
684
-
685
- = 1.7.1 (2016-12-14) =
686
- * Fix: Submitted by date and time in the bookings list
687
- * Fix: Fatal error when creating a new location with the Business Profile plugin
688
- * Fix: Remove or archive unexpected "Auto Draft" that was created in some circumstances
689
-
690
- = 1.7 (2016-12-05) =
691
- * Add: Allow customer banning by email and IP address
692
- * Add: HTML5 required and aria-required attributes where appropriate
693
- * Add: Disable times in the time picker blocked by late bookings restrictions
694
- * Add: Option to block same-day bookings
695
- * Add: Option for minimum party size
696
- * Fix: Location printed twice in booking details
697
- * Fix: Allow Bookings Managers to edit bookings in the past
698
- * Update: Deprecated RTB_LOAD_FRONTEND_ASSETS moved `rtb-load-frontend-assets` filter
699
- * Update: Sort bookings by latest date first when viewing All bookings
700
-
701
- = 1.6.3 (2016-10-31) =
702
- * Fix: Exporting bookings by location (addon). Location query args are now support for rtbQuery objects.
703
- * Add: Option to select start of the week for the datepicker
704
-
705
- = 1.6.2 (2016-08-20) =
706
- * Fix: Broken time picker introduced in 1.6.1
707
-
708
- = 1.6.1 (2016-08-19) =
709
- * Fix: Support location post ids in booking form shortcode
710
- * Fix: JavaScript error if the time field is hidden
711
- * Fix: Fix booking detail popup issue when used with custom fields addon
712
- * Add: Notification template tag for location: {location}
713
- * Add: Russian language translation. h/t Alexandra Kuksa
714
- * Update: Spanish language translation. h/t Matias Rodriguez
715
-
716
- = 1.6 (2016-06-20) =
717
- * Fix: Currently visible notice in bookings list on mobile devices
718
- * Fix: Conflict with WooCommerce that prevented booking managers from viewing bookings
719
- * Add: Support multi-location bookings
720
- * Add: Add reservation schema.org markup when Business Profile used
721
- * Add: Allow custom first day of the week for date picker
722
-
723
- = 1.5.3 (2016-03-25) =
724
- * Fix: no bookings found when searching by start and end dates that are the same
725
- * Add: clarify that early/late bookings restrictions don't apply to admins
726
- * Add: Brazilian and Norwegian translations
727
- * Update: Dutch translation
728
- * Update: link to new online documentation
729
- * Other: Tested for compatibility with WP 4.5
730
-
731
- = 1.5.2 (2016-02-29) =
732
- * Fix: booking managers can not confirm/reject bookings
733
-
734
- = 1.5.1 (2016-02-19) =
735
- * Fix: increase security of the quicklink feature for confirming/rejecting bookings
736
- * Fix: Improve wp-cli compatibility
737
-
738
- = 1.5 (2015-12-17) =
739
- * Fix: pickadate iOS bug
740
- * Fix: Bookings table's Today view didn't respect WordPress timezone setting
741
- * Add: Allow bookings table columns to be toggled on/off
742
- * Update: Convert message column/row drop-down to a details modal for all hidden columns
743
- * Update: Put focus into message field when expanded in booking form
744
-
745
- = 1.4.10 (2015-10-29) =
746
- * Fix: Allow settings page required capability to be filtered later
747
- * Fix: Compatibility issue with old versions of jQuery
748
- * Add: Spanish translation from Rafa dMC
749
-
750
- = 1.4.9 (2015-10-06) =
751
- * Fix: iOS 8 bug with date and time pickers
752
- * Add: newsletter signup prompt to addons page
753
-
754
- = 1.4.8 (2015-08-20) =
755
- * Add: WPML config file for improved multi-lingual compatibility
756
- * Add: Danish translation by Yusef Mubeen
757
- * Fix: Allow bookings managers to bypass early/late bookings restrictions
758
- * Fix: No times available when latest time falls between last interval and midnight
759
- * Updated: Improve bookings message view on small screens (adapt to 4.3 style)
760
- * Updated: Simple Admin Pages lib to v2.0.a.10
761
- * Updated: Dutch translation h/t Roy van den Houten and Clements Tolboom
762
-
763
- = 1.4.7 (2015-07-02) =
764
- * Add: Spanish translation from Joaqin Sanz Boixader
765
- * Fix: Sorting of bookings by date and name in list table broken
766
- * Fix: Custom late bookings values more than one day aren't reflected in date picker
767
- * Fix: Norwegian doesn't include time picker translation for some strings
768
- * Updated: German translation from Roland Stumpp
769
- * Updated: pickadate.js language translations
770
-
771
- = 1.4.6 (2015-06-20) =
772
- * Add: Remove old schedule exceptions and sort exceptions by date
773
- * Add: CSS class indicating type of booking form field
774
- * Fix: Extended Latin can cause Reply-To email headers to fail in some clients
775
- * Fix: PHP Warning when performing bulk or quick action in bookings panel
776
- * Fix: Message row lingers after booking trashed in admin panel
777
- * Updated .pot file
778
-
779
- = 1.4.5 (2015-04-23) =
780
- * Fix: Loading spinner not visible due to 4.2 changes
781
- * Add: new addon Export Bookings released
782
-
783
- = 1.4.4 (2015-04-20) =
784
- * Fix: low-risk XSS security vulnerability with escaped URLs on admin bookings page
785
-
786
- = 1.4.3 (2015-04-20) =
787
- * Add: Datepickers for start/end date filters in admin bookings list
788
- * Fix: Disabled weekdays get offset when editing bookings
789
- * Fix: Start/end date filters in admin bookings list
790
- * Fix: Booking form shouldn't appear on password-protected posts
791
- * Fix: Dutch translation
792
- * Updated: Dutch and German translations
793
- * Updated: pickadate.js lib now at v3.5.6
794
-
795
- = 1.4.2 (2015-03-31) =
796
- * Fix: Speed issue if licensed addon active
797
-
798
- = 1.4.1 (2015-03-31) =
799
- * Add: rtbQuery class for fetching bookings
800
- * Add: Centralized system for handling extension licenses
801
- * Add: Several filters for the bookings admin list table
802
- * Add: French translation h/t I-Visio
803
- * Add: Italian translation h/t Pierfilippo Trevisan
804
- * Updated: German translation h/t Roland Stumpp
805
- * Fix: Button label in send email modal
806
-
807
- = 1.4 (2015-02-24) =
808
- * Add: Send a custom email from the bookings list
809
- * Add: Hebrew translation. h/t Ahrale
810
- * Add: Default template functions for checkbox, radio and confirmation fields
811
- * Fix: Replace dialect with more common German in translation file. h/t Roland Stumpp
812
-
813
- = 1.3 (2015-02-03) =
814
- * Add and edit bookings from the admin area
815
- * Fix: date and time pickers broken on iOS 8 devices
816
- * Add complete German translation from scolast34
817
- * Add partial Dutch and Chilean translations
818
- * Change Party text field to a dropdown selection
819
- * Bookings admin panel shows upcoming bookings by default
820
- * Use new HTML5 input types for email and phone
821
- * Change textdomain to comply with upcoming translation standards
822
- * Improve WPML compatibility
823
- * New support for assigning custom classes to fields, fieldsets and legends. h/t Primoz Cigler
824
- * New filters for email notifications
825
- * Fix: some bookings menu pages don't load when screen names are translated
826
- * Fix: addons list won't load if allow_url_fopen is disabled
827
-
828
-
829
- = 1.2.3 (2014-11-04) =
830
- * Add a {user_email} notification template tag
831
- * Add filter to notification template tag descriptions for extensions
832
- * Add Reply-To mail headers and use a more reliable From header
833
- * Add filter to the datepicker rules for disabled dates
834
- * Fix: missing "Clear" button translation in time picker for many languages
835
- * Fix: open time picker in body container to mitigate rare positioning bugs
836
- * Fix: don't auto-select today's date if it's not a valid date or errors are attached to the date field
837
-
838
- = 1.2.2 (2014-08-24) =
839
- * Fix: custom date formats can break date validation for new bookings
840
- * Add new booking form generation hooks for easier customization
841
- * Add support for upcoming MailChimp addon
842
- * Add new addons page
843
- * Update Simple Admin Pages library to v2.0.a.7
844
-
845
- = 1.2.1 (2014-08-01) =
846
- * Fix: bulk actions below the bookings table don't work
847
- * Fix: PHP Notice generated during validation
848
-
849
- = 1.2 (2014-07-17) =
850
- * Add notification template tags for phone number and message
851
- * Add automatic selection of date when page is loaded (option to disable this feature)
852
- * Add option to set time interval of time picker
853
- * Fix auto-detection of pickadate language from WordPress site language
854
- * Fix duplicate entry in .pot file that caused PoEdit error
855
-
856
- = 1.1.4 (2014-07-03) =
857
- * Add a .pot file for easier translations
858
- * Fix notifications that showed MySQL date format instead of user-selected format
859
- * Fix Arabic translation of pickadate component
860
- * Add support for the correct start of the week depending on language
861
-
862
- = 1.1.3 (2014-05-22) =
863
- * Fix an error where the wrong date would be selected when a form was reloaded with validation errors
864
-
865
- = 1.1.2 (2014-05-14) =
866
- * Update Simple Admin Pages library to fix an uncommon error when saving Textarea components
867
-
868
- = 1.1.1 (2014-05-14) =
869
- * Update Simple Admin Pages library to fix broken Scheduler in Firefox
870
-
871
- = 1.1 (2014-05-12) =
872
- * Attempt to load the correct language for the datepicker from the WordPress settings
873
- * Add support for choosing a language for the datepicker if different from WordPress settings
874
- * Allow late bookings to be blocked 4 hours and 1 day in advance
875
- * Fix: don't show settings under WordPress's core General settings page
876
-
877
- = 1.0.2 (2014-05-08) =
878
- * Remove development tool from codebase
879
-
880
- = 1.0.1 (2014-05-08) =
881
- * Replace dashicons caret with CSS-only caret in booking form
882
-
883
- = 1.0 (2014-05-07) =
884
- * Initial release
885
-
886
- == Upgrade Notice ==
887
-
888
- = 1.8.2 =
889
- This update fixes an issue with the date and time pickers that occurs with the latest version of the Chrome browser.
890
-
891
- = 1.8.1 =
892
- This update fixes a bug in the booking form block where the location would not be reloaded correctly after saving.
893
-
894
- = 1.8 =
895
- This update adds a block to the new Gutenberg editor for the booking form.
896
-
897
- = 1.7.8 =
898
- This update fixes a bug which removed the GDPR consent status for a booking when the booking was edited. It also adds an option to modify the FROM email header address and updates some translations.
899
-
900
- = 1.7.7 =
901
- This update adds two features to help you comply with GDPR privacy regulations in Europe: a confirmation field can be added to the booking form to collect a customer's consent to store their data. And you can delete all bookings related to an email address.
902
-
903
- = 1.7.5 =
904
- This update adds an option to require a phone, email address validation and a notification bubble showing the number of upcoming pending bookings in the admin area.
905
-
906
- = 1.7.4 =
907
- This update fixes an issue with time restrictions when applied to the same day one month in advance. It also adds a technique to attempt to prevent duplicate submissions. Adds Polish translation.
908
-
909
- = 1.7.3 =
910
- This minor maintenance update ensures scheduling restrictions are reflected in the date and time pickers. It also allows multiple email addresses to be used in location-specific admin notifications.
911
-
912
- = 1.7.2 =
913
- This minor maintenance update fixes a bug with the integration with the Business Profile plugin. It also adds the new Email Templates addon to the list of available addons.
914
-
915
- = 1.7.1 =
916
- This update fixes a critical bug introduced in v1.7 if you use bookings with the multi-location features of Business Profile. You are encouraged to update as soon as possible.
917
-
918
- = 1.7 =
919
- This update adds new features for banning bookings from no-shows and preventing blocked times from appearing in the time picker. New options for min party size and same-day bookings have been added. Bookings Managers can now edit bookings in the past.
920
-
921
- = 1.6.2 =
922
- This update fixes a critical error introduced in v1.6.1 which broke the time picker.
923
-
924
- = 1.6.1 =
925
- This maintenance update adds a {location} tag for notifications, improves the location argument in the booking form shortcode and fixes a few minor bugs.
926
-
927
- = 1.6 =
928
- This is a major update that adds support for accepting bookings at multiple locations. View the online documentation for further details.
929
-
930
- = 1.5.3 =
931
- This update fixes a minor bug when searching for bookings by date, updates compatibilty for WP v4.5, and adds links to the new online documentation.
932
-
933
- = 1.5.2 =
934
- This update fixes a bug introduced in the last version which prevented Booking Managers from approving/rejecting reservations.
935
-
936
- = 1.5.1 =
937
- This update increases security for the quick link feature to confirm/reject bookings from the admin notification email.
938
-
939
- = 1.5 =
940
- This update adds the ability to configure which columns are visible in the bookings table. It works with the Custom Fields addon. If you have added fields using custom code, please read the release notification at themeofthecrop.com before updating.
941
-
942
- = 1.4.10 =
943
- This update includes a new Spanish translation and a few minor fixes. Updating isn't necessary for most people.
944
-
945
- = 1.4.9 =
946
- This update fixes a bug that made it difficult for iOS 8 users to select a date and time in their bookings. I strongly recommend you update.
947
-
948
- = 1.4.8 =
949
- This update fixes a bug that prevented bookings managers from editing bookings within the early/late schedule restrictions. It also fixed a bug with late opening times, added a WPML config file for better multi-lingual compatibility, updated translations, and improved the mobile view of the bookings list.
950
-
951
- = 1.4.7 =
952
- This update fixes a bug that prevented bookings from being sorted by date or name in the admin panel. It also updates some translations and improves support for custom late bookings values.
953
-
954
- = 1.4.6 =
955
- This update improves compatibility with an upcoming Custom Fields addon. It also fixes some minor bugs with extended Latin characters in emails and the admin list table, and removes expired schedule exceptions.
956
-
957
- = 1.4.5 =
958
- This update fixes a non-critical issue with the display of the loading spinner in the upcoming 4.2 version of WordPress.
959
-
960
- = 1.4.4 =
961
- This update fixes a low-risk XSS security vulnerability. It is low-risk because in order to exploit this vulnerability a user would need to have access to the bookings management panel in the admin area, which only trusted users should have.
962
-
963
- = 1.4.3 =
964
- This update adds datepickers to the start/end date filters in the admin bookings list and fixes a small error with the filters. It also fixes an issue with disabled weekdays when editing bookings. Dutch and German translation updates.
965
-
966
- = 1.4.2 =
967
- This update is a maintenance release that fixes a couple minor issues, adds French and Italian translations, and includes some under-the-hood changes to support upcoming extensions. 1.4.1-1.4.2 fixes a rare but vital performance issue in the admin.
968
-
969
- = 1.4.1 =
970
- This update is a maintenance release that fixes a couple minor issues, adds French and Italian translations, and includes some under-the-hood changes to support upcoming extensions.
971
-
972
- = 1.4 =
973
- Thanks to sponsorship from Gemini Design, the plugin now supports sending an email directly to customers from the list of bookings, so you can request more details or suggest an alternative booking time. This update also improves the German translation and adds a Hebrew translation. Read the full changelog for details.
974
-
975
- = 1.3 =
976
- This update adds support for adding and editing bookings from the admin panel. The bookings panel now shows upcoming bookings by default. The Party field in the booking form is now a dropdown selection. Plus a bunch of new features and fixes. Read the full changelog for details.
977
-
978
- = 1.2.3 =
979
- This update adds a {user_email} notification template tag and improves the mail headers on notifications to mitigate spam risk. It also adds the missing translation for the Clear button in the time picker for many languages. More minor bug fixes listed in the changelog.
980
-
981
- = 1.2.2 =
982
- This update adds support for a new MailChimp addon that will be released soon. An addons page is now available under the Bookings menu. A bug in which custom date/time formats could cause validation errors has been fixed. New hooks are now in place so that it's easier to customize the form output.
983
-
984
- = 1.2.1 =
985
- This is a minor maintenance update which fixes a couple of small bugs.
986
-
987
- = 1.2 =
988
- This update adds new template tags for notification emails, a new option to customize the time interval and more. A new .pot file has been generated, so update your translations. Consult the changelog for further details.
989
-
990
- = 1.1.4 =
991
- This updated fixes an error with the format of the date in notification emails. Now it will show you the date formatted however you have chosen for it to be formatted in your WordPress installation. It also now displays the correct start of the week depending on the language selected for the datepicker. A .pot file is now included for easier translations.
992
-
993
- = 1.1.3 =
994
- This update fixes an error when the form had validation errors (missing fields or wrong date/time selected). Instead of loading the selected date it would load today's date. This update ensures the selected date is reloaded properly.
995
-
996
- = 1.1.2 =
997
- This update fixes an error some people may experience when trying to save settings. This is the second update today, so if you missed the other one please read the changelog for the 1.1.1 update as well.
998
-
999
- = 1.1.1 =
1000
- This update fixes problems some users reported when using the Firefox browser to modify the booking schedule. This required an update to a library that is shared with another plugin, Food and Drink Menu. If you are using that plugin, please update that one as well or you may get some odd behavior. (Thanks to sangwh and bforsoft for reporting the issue.)
1001
-
1002
- = 1.1 =
1003
- This update improves internationalization (i8n) by attempting to determine the appropriate language for the booking form datepicker from your WordPress settings. It also adds a setting to pick a language manually from a list of supported languages. This update also adds options to block late bookings at least 4 hours or 1 day in advance. Thanks to Remco and Roland for their early feedback.
1004
-
1005
- = 1.0.2 =
1006
- This update removes a bit of code that was used for development purposes. Please update as this code could be run by any user on the frontend.
3
  Requires at Least: 5.0
4
  Tested Up To: 6.0
5
  Tags: reservation, reservations, restaurant reservations, reservation form, restaurant booking, restaurant reservation form, restaurant booking form, restaurant booking system, reservation system, online reservations, online restaurant booking, dinner reservations, restaurant form, gutenberg reservations, gutenberg restaurant reservations, gutenberg restaurant booking, mobile reservations, responsive reservations, table reservations, open table, book table, reserve table, easy reservations, simple reservations, quick restaurant reservations, custom reservation form, custom restaurant reservations
6
+ Stable tag: 2.5.17
7
  License: GPLv3
8
  License URI:http://www.gnu.org/licenses/gpl-3.0.html
9
  Donate Link: https://www.etoilewebdesign.com/plugin-donations/
14
 
15
  Restaurant reservations made easy. Accept reservations and table bookings online. Quickly confirm or reject restaurant reservations, send out custom email notifications, restrict booking times and more.
16
 
 
 
17
  [Reservations Demo](https://www.fivestarplugins.com/five-star-restaurant-reservations-demo/)
18
 
19
+ <strong>The plugin includes a Gutenberg restaurant block as well as a restaurant reservation shortcode, so you can display your booking form on any page, no matter which page editing system you are using. We also include several patterns, so you can integrate your forms directly into your block-based theme.</strong>
20
+
21
  = Key Features =
22
 
23
  * Create a customized restaurant reservation form
24
  * Responsive booking form layout that looks great for mobile reservations and on all devices
25
  * Add your reservation form to any page via the included Gutenberg restaurant booking block or shortcode, or just choose your reservation page in the settings
26
+ * Set up a specific restaurant schedule by defining the times and dates available for reservation
27
  * Quickly [confirm or reject](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/manage/confirm-reject-bookings) a booking
28
  * Notify a customer by email when their request is confirmed or rejected
29
  * Receive an [email notification](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/config/email-notifications) when a booking request is made
30
 
31
+ <em>Five Star Restaurant Reservations is very user friendly and comes with a walk-through that runs automatically when you activate the plugin and will help you add the booking form to your site and set key options!</em>
32
 
33
+ [youtube https://www.youtube.com/watch?v=a-dJeE2Ilh4]
34
+
35
+ Create a five star restaurant reservation experience by tailoring your form to yours and your customers' specific needs. With options to set minimum and maximum party sizes, to require a phone number, to change the date and time format and to write a custom message after a successful online restaurant booking, you can create a familiar and comfortable atmosphere, and make the reservation process as easy and effortless as possible.
36
 
37
  = Additional Restaurant Reservation Features =
38
 
39
  Our customizable restaurant reservations plugin comes with several additional features that will help ensure you're able to set it up not only easily, but with all the options you need. It will also allow you to deliver the best and easiest online restaurant booking system for your visitors. These features include:
40
 
41
  * Add and edit bookings directly from the plugin admin panel
 
42
  * Add exceptions to your schedule (e.g. for holidays and special events)
 
43
  * Send customers [an email](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/manage/send-emails) about their booking from the admin panel
44
  * Option to automatically confirm reservations below a certain party size.
45
  * Customize all [notification messages](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/config/email-notifications#understanding-the-template-tags) as well as date and time formats
51
 
52
  You know your customers best. With features like the ability to enable automatic confirmation and to customize your notifications, you can tailor your restaurant booking form to meet the specific requirements of your restaurant and business.
53
 
54
+ = Multiple Locations =
55
+
56
+ If you have multiple restaurant locations, you can easily add this as a choice to your booking form. This is made possible by integrating with the [Five Star Business Profile](https://wordpress.org/plugins/business-profile/) plugin. When you enable and create multiple locations in that plugin, they will automatically show up and be included in the Five Star Restaurant Reservations plugin. This lets you:
57
+
58
+ * Have a dropdown in your booking form to let your guests choose which location they want to reserve at.
59
+ * Set separate schedules and exceptions for each location.
60
+ * Set separate restrictions and limits at each location (premium feature, see below).
61
+
62
+ No need to have many separate forms or pages, or a complicated solution, to accept bookings at your multiple locations. Five Star Restaurant Reservations has you covered!
63
+
64
+ = Limit the Number of People or Reservations (Requires Premium) =
65
+
66
+ The premium version of our restaurant reservations plugin comes with several features that let you restrict the number of people in your restaurant, so you can be sure to never overbook and also that you are following any recommended capacity limits in your region.
67
+
68
+ * Set a dining block length used as a guide to apply the restrictions.
69
+ * Set a maximum number of reservations allowed per dining block length.
70
+ * Or set a maximum number of seats/people allowed per dining block length.
71
+ * Additional options to set a maximum number of reservations or seats per dining block length below which all bookings will be automatically confirmed.
72
+ * Works in tandem with all other restriction options (e.g. party size, auto-confirmation of bookings, early bookings, etc.) to make sure only available days and time slots that match all settings show in the booking form.
73
+
74
+ [youtube https://www.youtube.com/watch?v=XsDvPklGgF4]
75
 
76
  = Premium Restaurant Reservations =
77
 
78
+ The premium version also comes with many other features that let you extend the functionality of your booking form to offer your customers the best possible experience. These include:
79
 
80
  * Stylish New Layout Options: Choose from multiple modern restaurant form layouts to find the one that best suits your site.
81
  * Custom Fields: Plan your dinner service better by asking for special seating requests, dietary needs and more when customers book online. Similar to open table, this allows you to customize the reservation system to have any field you want, allowing you to gather all the info you need to offer the best experience to your customers. This feature also allows you to modify the existing default fields.
82
+ * View Bookings Page: Create a page on the front end of your site that displays upcoming bookings and allows you to check in guests who have arrived.
83
  * Email Templates and Designer: Send beautiful email notifications with your own logo and brand colors when your customers make a reservation.
84
  * Export Bookings: Easily print your restaurant bookings via PDF or export them to an Excel/CSV file so you can analyze patterns, gather customer data and import bookings into other services.
85
  * MailChimp Integration: Subscribe new reservation requests to your MailChimp mailing list and watch your subscription rates grow effortlessly.
86
+ * Styling Options: Many styling options are included that let you set the color, font-size, borders, etc. for the different elements of the booking form.
 
 
 
87
 
88
  = Restaurant Reservations Ultimate =
89
 
90
+ The ultimate version of the restaurant reservations plugin contains several powerful features to give you and your guests an amazing booking experience, and also to help you reduce the amount of no-shows at your restaurant. These include:
91
+
92
+ * <strong>Booking by Table</strong>: Add your restaurant's tables to the plugin and allow (or require) guests to select a table when they make their reservation, based on the booking time and party size.
93
+ * You can set a minimum and maximum number of seats at each table.
94
+ * You can also combine tables to let people book for large parties.
95
+ * <strong>Booking Deposits</strong>: Require a deposit, either per guest or per reservation, when someone makes a reservation to help prevent no-shows.
96
+ * Both Stripe and PayPal are available as payment gateways.
97
+ * Options to require deposit only for certain party sizes or only at certain times.
98
+ * <strong>Reservation Reminders</strong>: Send an SMS or email reminder message before a booking at a time that you specify (ex. 4 hours before a reservation).
99
+ * <strong>Late-Arrival Notices</strong>: Send an SMS or email message when a guest is late for their reservation by a specified amount of time.
100
 
101
+ [youtube https://www.youtube.com/watch?v=0DigZnw_3Qw]
102
+
103
+ = Five Star Restaurant Manager Mobile App =
104
+
105
+ The ultimate version also syncs directly with our Five Star Restaurant Manager mobile app, for iOS and Android, which lets you manage your bookings from your phone or tablet without needing to log in to your site/WordPress. With this, you can:
106
 
107
+ * View all new bookings directly in the app.
108
+ * Change the status (e.g. to confirmed) and modify the other reservation info.
109
+ * Check people in as they arrive.
110
+
111
+ With these features, you can set the app up on a tablet for your host to use front of house to manage the bookings for the day, or for you to manage them anywhere on the go!
112
 
113
  For further information and purchasing options, please visit our <a href="https://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/" target="_blank">WordPress restaurant reservations</a> homepage.
114
 
115
+ ** We are also pleased to offer a free 7-day trial of either the premium version or the ultimate version, which you can use to test out features like the reservation restrictions, custom fields and payment deposits before buying! **
116
 
117
+ This easy restaurant booking system is one part of our suite of plugins designed to give you the best WordPress restaurant experience. Check out the powerful [Restaurant Menu](https://wordpress.org/plugins/food-and-drink-menu/) plugin and let your customers view your full menu and place food orders directly on your site! With its intuitive and easy-to-use interface, you'll be sure to not lose out on business to your competitors.
118
 
119
  = For help and support, please see: =
120
 
121
+ * Our documentation and user guide, here: [https://doc.fivestarplugins.com/plugins/restaurant-reservations/user/](https://doc.fivestarplugins.com/plugins/restaurant-reservations/user/)
122
+ * Our FAQ page, here: [https://wordpress.org/plugins/restaurant-reservations/faq/](https://wordpress.org/plugins/restaurant-reservations/faq/)
123
+ * Our installation guide, here: [https://wordpress.org/plugins/restaurant-reservations/installation/](https://wordpress.org/plugins/restaurant-reservations/installation/)
124
+ * Our tutorial videos, here: [https://www.youtube.com/watch?v=b6x0QkgHBKI&list=PLEndQUuhlvSpWIb_sbRdFsHSkDADYU7JF](https://www.youtube.com/watch?v=b6x0QkgHBKI&list=PLEndQUuhlvSpWIb_sbRdFsHSkDADYU7JF)
125
+ * The Restaurant Menu support forum, here: [https://wordpress.org/support/plugin/restaurant-reservations/](https://wordpress.org/support/plugin/restaurant-reservations/)
126
+ * Our Support Center, here: [https://www.fivestarplugins.com/support-center/](https://www.fivestarplugins.com/support-center/)
127
 
128
+ This plugin also comes with hooks that developers can use to extend and customize it. Take a look at the [Developer Documentation](https://doc.fivestarplugins.com/plugins/restaurant-reservations/developer/) to find out more.
129
 
130
 
131
  == Installation ==
141
 
142
  = Getting Started =
143
 
144
+ After activating the plugin, <strong>a walk-through will run automatically</strong>, which will help you to add the booking form to your site and set key options.
145
+
146
+ You can also follow these steps to configure the plugin.
147
+
148
  1. To place your restaurant booking form on a page:
149
+ * Option 1: Go to the Basic tab in the plugin settings and use the Booking Page dropdown to select the page on which you want your reservation form to appear.
150
  * Option 2: Place the included reservations Gutenberg block on the page on which you want your reservation form to appear.
151
+ * Option 3: Place the [booking-form] shortcode on the page on which you want your reservation form to appear.
152
 
153
  2. To customize the form:
154
+ * Go to the Settings area of the plugin admin and click the Basic tab. There you'll be able to set the minimum and maximum party size, the successful booking message, the date and time format and make use of our security and privacy features.
155
+ * Also in the Settings area, go to the 'Booking Schedule' tab. There you'll be able to set your restaurant's schedule, the interval between booking slots, earliest and latest bookings and also create exceptions for the schedule.
156
 
157
  3. To set up notifications.
158
+ * Go to the 'Notifications' tab in the settings.
159
+ * Use the Subject and Email fields there to craft your message for each different circumstance
160
+ * There is also a list of template tags there that you can include in your messages to display reservation-specific messages about the booking.
161
 
162
  4. To view and manage your bookings:
163
+ * Go to the 'Bookings' area of the plugin admin.
164
+ * There you'll be able to view and modify any bookings that have been placed on your site.
165
+ * You'll also be able to manually create a new restaurant reservation (e.g. a reservation you took over the phone).
166
 
167
+ For a list of specific features, see the Restaurant Reservations description page here: https://wordpress.org/plugins/restaurant-reservations/.
168
 
169
+ = For help and support, please see: =
170
+
171
+ * Our documentation and user guide, here: [https://doc.fivestarplugins.com/plugins/restaurant-reservations/user/](https://doc.fivestarplugins.com/plugins/restaurant-reservations/user/)
172
+ * Our FAQ page, here: [https://wordpress.org/plugins/restaurant-reservations/faq/](https://wordpress.org/plugins/restaurant-reservations/faq/)
173
+ * Our tutorial videos, here: [https://www.youtube.com/watch?v=b6x0QkgHBKI&list=PLEndQUuhlvSpWIb_sbRdFsHSkDADYU7JF](https://www.youtube.com/watch?v=b6x0QkgHBKI&list=PLEndQUuhlvSpWIb_sbRdFsHSkDADYU7JF)
174
+ * The Restaurant Menu support forum, here: [https://wordpress.org/support/plugin/restaurant-reservations/](https://wordpress.org/support/plugin/restaurant-reservations/)
175
+ * Our Support Center, here: [https://www.fivestarplugins.com/support-center/](https://www.fivestarplugins.com/support-center/)
176
 
 
 
 
177
 
178
  == Frequently Asked Questions ==
179
 
180
+ = Is there a Gutenberg block to display the booking form? =
181
+
182
+ Yes, just search for the 'Booking Form' block and add that to your page.
183
+
184
+ = Is there a shortcode to display the booking form? =
185
 
186
  Yes, use the `[booking-form]` shortcode.
187
 
188
  = Can I change the format of the date or time? =
189
 
190
+ Yes, set the format for the datepicker in *Settings > Basic*.
191
 
192
  = The datepicker or timepicker is not working. =
193
 
194
+ If you load up the form and no date or time picker is popping up when you select those fields, this is likely caused by a JavaScript error from another plugin or theme. You can find the problematic plugin by deactivating other plugins you're using one by one. Test after each deactivation to see if the date and time pickers work.
195
 
196
  If you have deactivated all other plugins and still have a problem, try switching to a default theme (one of the TwentySomething themes).
197
 
199
 
200
  This is almost always the result of issues with your server and can be caused by a number of things. Before posting a support request, please run through the following checklist:
201
 
202
+ 1. Double-check that the notification email in *Settings > Notifications* is correct.
203
  2. Make sure that WordPress is able to send emails. The admin email address in the WordPress settings page should receive notifications of new users.
204
  3. If you're not able to receive regular WordPress emails, contact your web host and ask them for help sorting it out.
205
  4. If you're able to receive regular WordPress emails but not booking notifications, check your spam filters or junk mail folders.
207
 
208
  = Can I make the phone number required? =
209
 
210
+ Yes, there is an option for this in the Basic area of the Settings page.
211
 
212
  = Can I translate the booking form? =
213
 
214
  Yes, everything in this plugin can be translated using the standard translation process and software like PoEdit. If you're not familiar with that process, I'd recommend you take a look at the [Loco Translate](https://wordpress.org/plugins/loco-translate/) plugin, which provides a simple interface in your WordPress admin area for translating themes and plugins.
215
 
216
  = I set Early or Late Bookings restrictions, but I scan still book during that time =
217
+
218
  Users with the Administrator and Booking Manager roles are exempt from these restrictions. This is so that they can make last-minute changes to bookings as needed. If you want to test the Early or Late Bookings restrictions, try logging out and testing.
219
 
220
  = I want to add a field to the form. Can I do that? =
223
 
224
  = More questions and answers =
225
 
226
+ Find answers to even more questions in the [FAQ](http://doc.fivestarplugins.com/plugins/restaurant-reservations/user/faq).
227
+
228
+ = For help and support, please see: =
229
+
230
+ * Our documentation and user guide, here: [https://doc.fivestarplugins.com/plugins/restaurant-reservations/user/](https://doc.fivestarplugins.com/plugins/restaurant-reservations/user/)
231
+ * Our installation guide, here: [https://wordpress.org/plugins/restaurant-reservations/installation/](https://wordpress.org/plugins/restaurant-reservations/installation/)
232
+ * Our tutorial videos, here: [https://www.youtube.com/watch?v=b6x0QkgHBKI&list=PLEndQUuhlvSpWIb_sbRdFsHSkDADYU7JF](https://www.youtube.com/watch?v=b6x0QkgHBKI&list=PLEndQUuhlvSpWIb_sbRdFsHSkDADYU7JF)
233
+ * The Restaurant Menu support forum, here: [https://wordpress.org/support/plugin/restaurant-reservations/](https://wordpress.org/support/plugin/restaurant-reservations/)
234
+ * Our Support Center, here: [https://www.fivestarplugins.com/support-center/](https://www.fivestarplugins.com/support-center/)
235
+
236
 
237
  == Screenshots ==
238
 
239
  1. Booking form with the Contemporary layout.
240
  2. Booking form with the Columns layout.
241
+ 3. Columns layout with some custom CSS added.
242
+ 4. Booking form with the default layout, with multiple locations, tables and deposits enabled.
243
+ 5. Great, mobile-friendly date picker.
244
+ 6. Great, mobile-friendly time picker.
245
+ 7. Email received after making a booking.
246
+ 8. View bookings form, where you can also check guests in as arrived (premium).
247
+ 9. Payment screen for deposit (ultimate).
248
+ 10. Email reminder of upcoming reservation (ultimate).
249
+ 11. Easily manage bookings. View today's bookings or upcoming bookings at-a-glance. Confirm or reject bookings quickly.
250
+ 12. Quickly find bookings within a specific date range and/or for a specific location.
251
+ 13. Edit bookings from the admin panel.
252
+ 14. Adding the booking form block to a page.
253
+ 15. The custom fields editor.
254
+ 16. The plugin admin dashboard screen.
255
+ 17. The scheduler.
256
+ 18. Editing a notification email.
257
+ 19. The Styling area of the Settings page.
258
+ 20. Viewing bookings in the Five Star Restaurant Manager app.
259
 
260
  == Changelog ==
261
 
262
+ = 2.5.17 (2022-10-18) =
263
+ - Added an option to include a blank entry in the party size dropdown, so visitors are forced to make a selection, instead of it defaulting to 1.
264
+ - Updated the time display in the view bookings form to use the format specified in your WordPress general settings.
265
+ - Added two new tags for notifications: {booking_url} and {cancellation_url}.
266
+ - Corrected an issue with notification emails not sending correctly if you used the bulk actions menu to change the status of multiple bookings from pending to closed.
267
+
268
  = 2.5.16 (2022-08-22) =
269
  - Updating a condition to make sure the new block patterns don't cause an error on WordPress installations using a version of WordPress older than 5.5.
270
 
699
  - Updated the upgrade-to-premium process to be much quicker and easier
700
  - Corrected issue causing the email template designer to not load properly in the customizer
701
  - Corrected internal settings version numbering that was causing an issue with the Business Profile plugin settings
702
+ - Removed files from the plugin that were not being used/not needed
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
restaurant-reservations.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Five Star Restaurant Reservations - WordPress Booking Plugin
4
  * Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
5
  * Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
6
- * Version: 2.5.16
7
  * Author: FiveStarPlugins
8
  * Author URI: https://profiles.wordpress.org/fivestarplugins/
9
  * Text Domain: restaurant-reservations
@@ -39,7 +39,7 @@ class rtbInit {
39
  public function __construct() {
40
 
41
  // Common strings
42
- define( 'RTB_VERSION', '2.5.16' );
43
  define( 'RTB_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
44
  define( 'RTB_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
45
  define( 'RTB_PLUGIN_FNAME', plugin_basename( __FILE__ ) );
3
  * Plugin Name: Five Star Restaurant Reservations - WordPress Booking Plugin
4
  * Plugin URI: http://www.fivestarplugins.com/plugins/five-star-restaurant-reservations/
5
  * Description: Restaurant reservations made easy. Accept bookings online. Quickly confirm or reject reservations, send email notifications, set booking times and more.
6
+ * Version: 2.5.17
7
  * Author: FiveStarPlugins
8
  * Author URI: https://profiles.wordpress.org/fivestarplugins/
9
  * Text Domain: restaurant-reservations
39
  public function __construct() {
40
 
41
  // Common strings
42
+ define( 'RTB_VERSION', '2.5.17' );
43
  define( 'RTB_PLUGIN_DIR', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
44
  define( 'RTB_PLUGIN_URL', untrailingslashit( plugins_url( basename( plugin_dir_path( __FILE__ ) ), basename( __FILE__ ) ) ) );
45
  define( 'RTB_PLUGIN_FNAME', plugin_basename( __FILE__ ) );