Restaurant Reservations - Version 1.2

Version Description

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.

Download this release

Release Info

Developer NateWr
Plugin Icon 128x128 Restaurant Reservations
Version 1.2
Comparing to
See all releases

Code changes from version 1.1.4 to 1.2

assets/js/booking-form.js CHANGED
@@ -47,6 +47,7 @@ jQuery(document).ready(function ($) {
47
  // Declare timepicker
48
  var $time_input = $( '#rtb-time' ).pickatime({
49
  format: rtb_pickadate.time_format,
 
50
  });
51
 
52
  var datepicker = $date_input.pickadate( 'picker' );
@@ -72,7 +73,7 @@ jQuery(document).ready(function ($) {
72
  }
73
  }
74
  }
75
-
76
  datepicker.set( 'disable', rtb_pickadate.disable_dates );
77
  }
78
 
@@ -80,6 +81,12 @@ jQuery(document).ready(function ($) {
80
  datepicker.set( 'min', 1 );
81
  }
82
 
 
 
 
 
 
 
83
  // Update timepicker on pageload and whenever the datepicker is closed
84
  rtb_update_timepicker_range();
85
  datepicker.on( {
47
  // Declare timepicker
48
  var $time_input = $( '#rtb-time' ).pickatime({
49
  format: rtb_pickadate.time_format,
50
+ interval: parseInt( rtb_pickadate.time_interval, 10 )
51
  });
52
 
53
  var datepicker = $date_input.pickadate( 'picker' );
73
  }
74
  }
75
  }
76
+
77
  datepicker.set( 'disable', rtb_pickadate.disable_dates );
78
  }
79
 
81
  datepicker.set( 'min', 1 );
82
  }
83
 
84
+ // If no date has been set, select today's date or the soonest valid
85
+ // date. User may opt not to do this in the settings.
86
+ if ( rtb_pickadate.date_onload !== 'empty' && $( '#rtb-date' ).val() === '' ) {
87
+ datepicker.set( 'select', new Date() );
88
+ }
89
+
90
  // Update timepicker on pageload and whenever the datepicker is closed
91
  rtb_update_timepicker_range();
92
  datepicker.on( {
includes/Booking.class.php CHANGED
@@ -355,6 +355,21 @@ class rtbBooking {
355
  'post_variable' => $this->party,
356
  'message' => __( 'Please let us know how many people will be in your party.', RTB_TEXTDOMAIN ),
357
  );
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
358
  }
359
 
360
  // Email/Phone
355
  'post_variable' => $this->party,
356
  'message' => __( 'Please let us know how many people will be in your party.', RTB_TEXTDOMAIN ),
357
  );
358
+
359
+ // Check party size
360
+ // If the user has entered a party size like "five" or "3-4" or
361
+ // something like that, let's go ahead and allow it. Restaurant manager
362
+ // can choose to accept or deny it. We'll only evaluate the max party
363
+ // size criteria on pure digits ("2" or "10").
364
+ } elseif ( ctype_digit( $this->party ) ) {
365
+ $party_size = $rtb_controller->settings->get_setting( 'party-size' );
366
+ if ( !empty( $party_size ) && $party_size < (int) $this->party ) {
367
+ $this->validation_errors[] = array(
368
+ 'field' => 'party',
369
+ 'post_variable' => $this->party,
370
+ 'message' => sprintf( __( 'We only accept bookings for parties of up to %d people.', RTB_TEXTDOMAIN ), $party_size ),
371
+ );
372
+ }
373
  }
374
 
375
  // Email/Phone
includes/Notification.class.php CHANGED
@@ -82,6 +82,8 @@ abstract class rtbNotification {
82
  '{user_name}' => $this->booking->name,
83
  '{party}' => $this->booking->party,
84
  '{date}' => $this->booking->format_date( $this->booking->date ),
 
 
85
  '{bookings_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&status=pending' ) . '">' . __( 'View pending bookings', RTB_TEXTDOMAIN ) . '</a>',
86
  '{confirm_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&rtb-quicklink=confirm&booking=' . esc_attr( $this->booking->ID ) ) . '">' . __( 'Confirm this booking', RTB_TEXTDOMAIN ) . '</a>',
87
  '{close_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&rtb-quicklink=close&booking=' . esc_attr( $this->booking->ID ) ) . '">' . __( 'Reject this booking', RTB_TEXTDOMAIN ) . '</a>',
82
  '{user_name}' => $this->booking->name,
83
  '{party}' => $this->booking->party,
84
  '{date}' => $this->booking->format_date( $this->booking->date ),
85
+ '{phone}' => $this->booking->phone,
86
+ '{message}' => $this->booking->message,
87
  '{bookings_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&status=pending' ) . '">' . __( 'View pending bookings', RTB_TEXTDOMAIN ) . '</a>',
88
  '{confirm_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&rtb-quicklink=confirm&booking=' . esc_attr( $this->booking->ID ) ) . '">' . __( 'Confirm this booking', RTB_TEXTDOMAIN ) . '</a>',
89
  '{close_link}' => '<a href="' . admin_url( 'admin.php?page=rtb-bookings&rtb-quicklink=close&booking=' . esc_attr( $this->booking->ID ) ) . '">' . __( 'Reject this booking', RTB_TEXTDOMAIN ) . '</a>',
includes/Settings.class.php CHANGED
@@ -20,9 +20,9 @@ class rtbSettings {
20
  * @since 0.0.1
21
  */
22
  public $settings = array();
23
-
24
  /**
25
- *
26
  */
27
  public $supported_i8n = array(
28
  'ar' => 'ar',
@@ -83,6 +83,7 @@ class rtbSettings {
83
  'success-message' => _x( 'Thanks, your booking request is waiting to be confirmed. Updates will be sent to the email address you provided.', RTB_TEXTDOMAIN ),
84
  'date-format' => _x( 'mmmm d, yyyy', 'Default date format for display. Must match formatting rules at http://amsul.ca/pickadate.js/date.htm#formatting-rules', RTB_TEXTDOMAIN ),
85
  'time-format' => _x( 'h:i A', 'Default time format for display. Must match formatting rules at http://amsul.ca/pickadate.js/time.htm#formats', RTB_TEXTDOMAIN ),
 
86
 
87
  // Email address where admin notifications should be sent
88
  'admin-email-address' => get_option( 'admin_email' ),
@@ -165,8 +166,8 @@ Sorry, we could not accomodate your booking request. We\'re full or not open at
165
  RTB_TEXTDOMAIN
166
  ),
167
  );
168
-
169
- $i8n = get_bloginfo( 'language' );
170
  if ( array_key_exists( $i8n, $this->supported_i8n ) ) {
171
  $this->defaults['i8n'] = $i8n;
172
  }
@@ -249,6 +250,18 @@ Sorry, we could not accomodate your booking request. We\'re full or not open at
249
  )
250
  );
251
 
 
 
 
 
 
 
 
 
 
 
 
 
252
  $sap->add_setting(
253
  'rtb-settings',
254
  'rtb-general',
@@ -392,6 +405,40 @@ Sorry, we could not accomodate your booking request. We\'re full or not open at
392
  )
393
  );
394
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
395
  $sap->add_section(
396
  'rtb-settings',
397
  array(
@@ -478,6 +525,12 @@ Sorry, we could not accomodate your booking request. We\'re full or not open at
478
  <div class="rtb-template-tags-box">
479
  <strong>{date}</strong> ' . __( 'Date and time of the booking', RTB_TEXTDOMAIN ) . '
480
  </div>
 
 
 
 
 
 
481
  <div class="rtb-template-tags-box">
482
  <strong>{bookings_link}</strong> ' . __( 'A link to the admin panel showing pending bookings', RTB_TEXTDOMAIN ) . '
483
  </div>
20
  * @since 0.0.1
21
  */
22
  public $settings = array();
23
+
24
  /**
25
+ * Languages supported by the pickadate library
26
  */
27
  public $supported_i8n = array(
28
  'ar' => 'ar',
83
  'success-message' => _x( 'Thanks, your booking request is waiting to be confirmed. Updates will be sent to the email address you provided.', RTB_TEXTDOMAIN ),
84
  'date-format' => _x( 'mmmm d, yyyy', 'Default date format for display. Must match formatting rules at http://amsul.ca/pickadate.js/date.htm#formatting-rules', RTB_TEXTDOMAIN ),
85
  'time-format' => _x( 'h:i A', 'Default time format for display. Must match formatting rules at http://amsul.ca/pickadate.js/time.htm#formats', RTB_TEXTDOMAIN ),
86
+ 'time-interval' => _x( '30', 'Default interval in minutes when selecting a time.', RTB_TEXTDOMAIN ),
87
 
88
  // Email address where admin notifications should be sent
89
  'admin-email-address' => get_option( 'admin_email' ),
166
  RTB_TEXTDOMAIN
167
  ),
168
  );
169
+
170
+ $i8n = str_replace( '-', '_', get_bloginfo( 'language' ) );
171
  if ( array_key_exists( $i8n, $this->supported_i8n ) ) {
172
  $this->defaults['i8n'] = $i8n;
173
  }
250
  )
251
  );
252
 
253
+ $sap->add_setting(
254
+ 'rtb-settings',
255
+ 'rtb-general',
256
+ 'text',
257
+ array(
258
+ 'id' => 'party-size',
259
+ 'title' => __( 'Max Party Size', RTB_TEXTDOMAIN ),
260
+ 'description' => __( 'Set a maximum allowed party size for bookings. Leave it empty to allow parties of any size.', RTB_TEXTDOMAIN ),
261
+ 'placeholder' => __( 'No limit', RTB_TEXTDOMAIN ),
262
+ )
263
+ );
264
+
265
  $sap->add_setting(
266
  'rtb-settings',
267
  'rtb-general',
405
  )
406
  );
407
 
408
+ $sap->add_setting(
409
+ 'rtb-settings',
410
+ 'rtb-schedule',
411
+ 'select',
412
+ array(
413
+ 'id' => 'date-onload',
414
+ 'title' => __( 'Date Pre-selection', RTB_TEXTDOMAIN ),
415
+ 'description' => __( 'When the booking form is loaded, should it automatically attempt to select a valid date?', RTB_TEXTDOMAIN ),
416
+ 'blank_option' => false,
417
+ 'options' => array(
418
+ '' => __( 'Select today or soonest valid date', RTB_TEXTDOMAIN ),
419
+ 'empty' => __( 'Leave empty', RTB_TEXTDOMAIN ),
420
+ )
421
+ )
422
+ );
423
+
424
+ $sap->add_setting(
425
+ 'rtb-settings',
426
+ 'rtb-schedule',
427
+ 'select',
428
+ array(
429
+ 'id' => 'time-interval',
430
+ 'title' => __( 'Time Interval', RTB_TEXTDOMAIN ),
431
+ 'description' => __( 'Select the number of minutes between each available time.', RTB_TEXTDOMAIN ),
432
+ 'blank_option' => false,
433
+ 'options' => array(
434
+ '' => __( 'Every 30 minutes', RTB_TEXTDOMAIN ),
435
+ '15' => __( 'Every 15 minutes', RTB_TEXTDOMAIN ),
436
+ '10' => __( 'Every 10 minutes', RTB_TEXTDOMAIN ),
437
+ '5' => __( 'Every 5 minutes', RTB_TEXTDOMAIN ),
438
+ )
439
+ )
440
+ );
441
+
442
  $sap->add_section(
443
  'rtb-settings',
444
  array(
525
  <div class="rtb-template-tags-box">
526
  <strong>{date}</strong> ' . __( 'Date and time of the booking', RTB_TEXTDOMAIN ) . '
527
  </div>
528
+ <div class="rtb-template-tags-box">
529
+ <strong>{phone}</strong> ' . __( 'Phone number if supplied with the request', RTB_TEXTDOMAIN ) . '
530
+ </div>
531
+ <div class="rtb-template-tags-box">
532
+ <strong>{message}</strong> ' . __( 'Message added to the request', RTB_TEXTDOMAIN ) . '
533
+ </div>
534
  <div class="rtb-template-tags-box">
535
  <strong>{bookings_link}</strong> ' . __( 'A link to the admin panel showing pending bookings', RTB_TEXTDOMAIN ) . '
536
  </div>
includes/template-functions.php CHANGED
@@ -23,7 +23,7 @@ if ( !function_exists( 'rtb_print_booking_form' ) ) {
23
  function rtb_print_booking_form() {
24
 
25
  global $rtb_controller;
26
-
27
  // Only allow the form to be displayed once on a page
28
  if ( $rtb_controller->form_rendered === true ) {
29
  return;
@@ -192,6 +192,8 @@ function rtb_enqueue_assets() {
192
  'schedule_closed' => $rtb_controller->settings->get_setting( 'schedule-closed' ),
193
  'early_bookings' => $rtb_controller->settings->get_setting( 'early-bookings' ),
194
  'late_bookings' => $rtb_controller->settings->get_setting( 'late-bookings' ),
 
 
195
  )
196
  );
197
 
23
  function rtb_print_booking_form() {
24
 
25
  global $rtb_controller;
26
+
27
  // Only allow the form to be displayed once on a page
28
  if ( $rtb_controller->form_rendered === true ) {
29
  return;
192
  'schedule_closed' => $rtb_controller->settings->get_setting( 'schedule-closed' ),
193
  'early_bookings' => $rtb_controller->settings->get_setting( 'early-bookings' ),
194
  'late_bookings' => $rtb_controller->settings->get_setting( 'late-bookings' ),
195
+ 'date_onload' => $rtb_controller->settings->get_setting( 'date-onload' ),
196
+ 'time_interval' => $rtb_controller->settings->get_setting( 'time-interval' ),
197
  )
198
  );
199
 
languages/restaurant-reservations.pot DELETED
@@ -1,914 +0,0 @@
1
- # Copyright (C) 2014 Restaurant Reservations
2
- # This file is distributed under the same license as the Restaurant Reservations package.
3
- msgid ""
4
- msgstr ""
5
- "Project-Id-Version: Restaurant Reservations 1.1.4\n"
6
- "Report-Msgid-Bugs-To: http://wordpress.org/support/plugin/restaurant-reservations\n"
7
- "POT-Creation-Date: 2014-07-03 12:29:35+00:00\n"
8
- "MIME-Version: 1.0\n"
9
- "Content-Type: text/plain; charset=UTF-8\n"
10
- "Content-Transfer-Encoding: 8bit\n"
11
- "PO-Revision-Date: 2014-MO-DA HO:MI+ZONE\n"
12
- "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
13
- "Language-Team: LANGUAGE <LL@li.org>\n"
14
-
15
- #: includes/Booking.class.php:154
16
- msgid "Please enter the date you would like to book."
17
- msgstr ""
18
-
19
- #: includes/Booking.class.php:164
20
- msgid "The date you entered is not valid. Please select from one of the dates in the calendar."
21
- msgstr ""
22
-
23
- #: includes/Booking.class.php:175
24
- msgid "Please enter the time you would like to book."
25
- msgstr ""
26
-
27
- #: includes/Booking.class.php:185
28
- msgid "The time you entered is not valid. Please select from one of the times provided."
29
- msgstr ""
30
-
31
- #: includes/Booking.class.php:204
32
- msgid "Sorry, bookings can not be made more than %s days in advance."
33
- msgstr ""
34
-
35
- #: includes/Booking.class.php:215
36
- msgid "Sorry, bookings can not be made in the past."
37
- msgstr ""
38
-
39
- #: includes/Booking.class.php:223
40
- msgid "Sorry, bookings must be made more than %s days in advance."
41
- msgstr ""
42
-
43
- #: includes/Booking.class.php:225
44
- msgid "Sorry, bookings must be made more than %s hours in advance."
45
- msgstr ""
46
-
47
- #: includes/Booking.class.php:227
48
- msgid "Sorry, bookings must be made more than %s mings in advance."
49
- msgstr ""
50
-
51
- #: includes/Booking.class.php:266
52
- msgid "Sorry, no bookings are being accepted then."
53
- msgstr ""
54
-
55
- #: includes/Booking.class.php:318
56
- msgid "Sorry, no bookings are being accepted on that date."
57
- msgstr ""
58
-
59
- #: includes/Booking.class.php:324
60
- msgid "Sorry, no bookings are being accepted at that time."
61
- msgstr ""
62
-
63
- #: includes/Booking.class.php:346
64
- msgid "Please enter a name for this booking."
65
- msgstr ""
66
-
67
- #: includes/Booking.class.php:356
68
- msgid "Please let us know how many people will be in your party."
69
- msgstr ""
70
-
71
- #: includes/Booking.class.php:366
72
- msgid "Please enter an email address so we can confirm your booking."
73
- msgstr ""
74
-
75
- #: includes/CustomPostTypes.class.php:38 includes/CustomPostTypes.class.php:40
76
- #: includes/CustomPostTypes.class.php:41
77
- #: includes/WP_List_Table.BookingsTable.class.php:76
78
- msgid "Bookings"
79
- msgstr ""
80
-
81
- #: includes/CustomPostTypes.class.php:39
82
- #: includes/WP_List_Table.BookingsTable.class.php:75
83
- msgid "Booking"
84
- msgstr ""
85
-
86
- #: includes/CustomPostTypes.class.php:42
87
- msgid "Add New"
88
- msgstr ""
89
-
90
- #: includes/CustomPostTypes.class.php:43
91
- msgid "Add New Booking"
92
- msgstr ""
93
-
94
- #: includes/CustomPostTypes.class.php:44
95
- msgid "Edit Booking"
96
- msgstr ""
97
-
98
- #: includes/CustomPostTypes.class.php:45
99
- msgid "New Booking"
100
- msgstr ""
101
-
102
- #: includes/CustomPostTypes.class.php:46
103
- msgid "View Booking"
104
- msgstr ""
105
-
106
- #: includes/CustomPostTypes.class.php:47
107
- msgid "Search Bookings"
108
- msgstr ""
109
-
110
- #: includes/CustomPostTypes.class.php:48
111
- msgid "No bookings found"
112
- msgstr ""
113
-
114
- #: includes/CustomPostTypes.class.php:49
115
- msgid "No bookings found in trash"
116
- msgstr ""
117
-
118
- #: includes/CustomPostTypes.class.php:50
119
- msgid "All Bookings"
120
- msgstr ""
121
-
122
- #: includes/CustomPostTypes.class.php:80
123
- msgctxt "Booking status when it is pending review"
124
- msgid "Pending"
125
- msgstr ""
126
-
127
- #: includes/CustomPostTypes.class.php:86
128
- msgctxt "Booking status for a confirmed booking"
129
- msgid "Confirmed"
130
- msgstr ""
131
-
132
- #: includes/CustomPostTypes.class.php:93
133
- msgid "Confirmed <span class=\"count\">(%s)</span>"
134
- msgid_plural "Confirmed <span class=\"count\">(%s)</span>"
135
- msgstr[0] ""
136
- msgstr[1] ""
137
-
138
- #: includes/CustomPostTypes.class.php:97
139
- msgctxt "Booking status for a closed booking"
140
- msgid "Closed"
141
- msgstr ""
142
-
143
- #: includes/CustomPostTypes.class.php:104
144
- msgid "Closed <span class=\"count\">(%s)</span>"
145
- msgid_plural "Closed <span class=\"count\">(%s)</span>"
146
- msgstr[0] ""
147
- msgstr[1] ""
148
-
149
- #: includes/Notification.class.php:85
150
- msgid "View pending bookings"
151
- msgstr ""
152
-
153
- #: includes/Notification.class.php:86
154
- msgid "Confirm this booking"
155
- msgstr ""
156
-
157
- #: includes/Notification.class.php:87
158
- msgid "Reject this booking"
159
- msgstr ""
160
-
161
- #: includes/Settings.class.php:84
162
- msgctxt "Default date format for display. Must match formatting rules at http://amsul.ca/pickadate.js/date.htm#formatting-rules"
163
- msgid "mmmm d, yyyy"
164
- msgstr ""
165
-
166
- #: includes/Settings.class.php:85
167
- msgctxt "Default time format for display. Must match formatting rules at http://amsul.ca/pickadate.js/time.htm#formats"
168
- msgid "h:i A"
169
- msgstr ""
170
-
171
- #: includes/Settings.class.php:95
172
- msgctxt "Default email subject for admin notifications of new bookings"
173
- msgid "New Booking Request"
174
- msgstr ""
175
-
176
- #: includes/Settings.class.php:96
177
- msgctxt "Default email sent to the admin when a new booking request is made. The tags in {brackets} will be replaced by the appropriate content and should be left in place. HTML is allowed, but be aware that many email clients do not handle HTML very well."
178
- msgid ""
179
- "A new booking request has been made at {site_name}:\n"
180
- "\n"
181
- "{user_name}\n"
182
- "{party} people\n"
183
- "{date}\n"
184
- "\n"
185
- "{bookings_link}\n"
186
- "{confirm_link}\n"
187
- "{close_link}\n"
188
- "\n"
189
- "&nbsp;\n"
190
- "\n"
191
- "<em>This message was sent by {site_link} on {current_time}.</em>"
192
- msgstr ""
193
-
194
- #: includes/Settings.class.php:114
195
- msgctxt "Default email subject sent to user when they request a booking. %s will be replaced by the website name"
196
- msgid "Your booking at %s is pending"
197
- msgstr ""
198
-
199
- #: includes/Settings.class.php:115
200
- msgctxt "Default email sent to users when they make a new booking request. The tags in {brackets} will be replaced by the appropriate content and should be left in place. HTML is allowed, but be aware that many email clients do not handle HTML very well."
201
- msgid ""
202
- "Thanks {user_name},\n"
203
- "\n"
204
- "Your booking request is <strong>waiting to be confirmed</strong>.\n"
205
- "\n"
206
- "Give us a few moments to make sure that we've got space for you. You will receive another email from us soon. If this request was made outside of our normal working hours, we may not be able to confirm it until we're open again.\n"
207
- "\n"
208
- "<strong>Your request details:</strong>\n"
209
- "{user_name}\n"
210
- "{party} people\n"
211
- "{date}\n"
212
- "\n"
213
- "&nbsp;\n"
214
- "\n"
215
- "<em>This message was sent by {site_link} on {current_time}.</em>"
216
- msgstr ""
217
-
218
- #: includes/Settings.class.php:134
219
- msgctxt "Default email subject sent to user when their booking is confirmed. %s will be replaced by the website name"
220
- msgid "Your booking at %s is confirmed"
221
- msgstr ""
222
-
223
- #: includes/Settings.class.php:135
224
- msgctxt "Default email sent to users when they make a new booking request. The tags in {brackets} will be replaced by the appropriate content and should be left in place. HTML is allowed, but be aware that many email clients do not handle HTML very well."
225
- msgid ""
226
- "Hi {user_name},\n"
227
- "\n"
228
- "Your booking request has been <strong>confirmed</strong>. We look forward to seeing you soon.\n"
229
- "\n"
230
- "<strong>Your booking:</strong>\n"
231
- "{user_name}\n"
232
- "{party} people\n"
233
- "{date}\n"
234
- "\n"
235
- "&nbsp;\n"
236
- "\n"
237
- "<em>This message was sent by {site_link} on {current_time}.</em>"
238
- msgstr ""
239
-
240
- #: includes/Settings.class.php:152
241
- msgctxt "Default email subject sent to user when their booking is rejected. %s will be replaced by the website name"
242
- msgid "Your booking at %s was not accepted"
243
- msgstr ""
244
-
245
- #: includes/Settings.class.php:153
246
- msgctxt "Default email sent to users when they make a new booking request. The tags in {brackets} will be replaced by the appropriate content and should be left in place. HTML is allowed, but be aware that many email clients do not handle HTML very well."
247
- msgid ""
248
- "Hi {user_name},\n"
249
- "\n"
250
- "Sorry, we could not accomodate your booking request. We're full or not open at the time you requested:\n"
251
- "\n"
252
- "{user_name}\n"
253
- "{party} people\n"
254
- "{date}\n"
255
- "\n"
256
- "&nbsp;\n"
257
- "\n"
258
- "<em>This message was sent by {site_link} on {current_time}.</em>"
259
- msgstr ""
260
-
261
- #: includes/Settings.class.php:217 includes/Settings.class.php:218
262
- msgid "Settings"
263
- msgstr ""
264
-
265
- #: includes/Settings.class.php:230
266
- msgid "General"
267
- msgstr ""
268
-
269
- #: includes/Settings.class.php:241
270
- msgid "Booking Page"
271
- msgstr ""
272
-
273
- #: includes/Settings.class.php:242
274
- msgid "Select a page on your site to automatically display the booking form and confirmation message."
275
- msgstr ""
276
-
277
- #: includes/Settings.class.php:258
278
- msgid "Success Message"
279
- msgstr ""
280
-
281
- #: includes/Settings.class.php:259
282
- msgid "Enter the message to display when a booking request is made."
283
- msgstr ""
284
-
285
- #: includes/Settings.class.php:270
286
- msgid "Date Format"
287
- msgstr ""
288
-
289
- #: includes/Settings.class.php:271
290
- msgid "Define how the date should appear after it has been selected. <a href=\"http://amsul.ca/pickadate.js/date.htm#formatting-rules\">Formatting rules</a>"
291
- msgstr ""
292
-
293
- #: includes/Settings.class.php:282
294
- msgid "Time Format"
295
- msgstr ""
296
-
297
- #: includes/Settings.class.php:283
298
- msgid "Define how the time should appear after it has been selected. <a href=\"http://amsul.ca/pickadate.js/time.htm#formatting-rules\">Formatting rules</a>"
299
- msgstr ""
300
-
301
- #: includes/Settings.class.php:296
302
- msgid "Language"
303
- msgstr ""
304
-
305
- #: includes/Settings.class.php:297
306
- msgid "Select a language to use for the booking form datepicker if it is different than your WordPress language setting."
307
- msgstr ""
308
-
309
- #: includes/Settings.class.php:307
310
- msgid "Booking Schedule"
311
- msgstr ""
312
-
313
- #: includes/Settings.class.php:318
314
- msgid "Schedule"
315
- msgstr ""
316
-
317
- #: includes/Settings.class.php:319
318
- msgid "Define the weekly schedule during which you accept bookings."
319
- msgstr ""
320
-
321
- #: includes/Settings.class.php:321
322
- msgctxt "Monday abbreviation"
323
- msgid "Mo"
324
- msgstr ""
325
-
326
- #: includes/Settings.class.php:322
327
- msgctxt "Tuesday abbreviation"
328
- msgid "Tu"
329
- msgstr ""
330
-
331
- #: includes/Settings.class.php:323
332
- msgctxt "Wednesday abbreviation"
333
- msgid "We"
334
- msgstr ""
335
-
336
- #: includes/Settings.class.php:324
337
- msgctxt "Thursday abbreviation"
338
- msgid "Th"
339
- msgstr ""
340
-
341
- #: includes/Settings.class.php:325
342
- msgctxt "Friday abbreviation"
343
- msgid "Fr"
344
- msgstr ""
345
-
346
- #: includes/Settings.class.php:326
347
- msgctxt "Saturday abbreviation"
348
- msgid "Sa"
349
- msgstr ""
350
-
351
- #: includes/Settings.class.php:327
352
- msgctxt "Sunday abbreviation"
353
- msgid "Su"
354
- msgstr ""
355
-
356
- #: includes/Settings.class.php:342
357
- msgid "Exceptions"
358
- msgstr ""
359
-
360
- #: includes/Settings.class.php:343
361
- msgid "Define special opening hours for holidays, events or other needs. Leave the time empty if you're closed all day."
362
- msgstr ""
363
-
364
- #: includes/Settings.class.php:349
365
- msgctxt "Brief description of a scheduling exception when no times are set"
366
- msgid "Closed all day"
367
- msgstr ""
368
-
369
- #: includes/Settings.class.php:360
370
- msgid "Early Bookings"
371
- msgstr ""
372
-
373
- #: includes/Settings.class.php:361
374
- msgid "Select how early customers can make their booking."
375
- msgstr ""
376
-
377
- #: includes/Settings.class.php:364
378
- msgid "Any time"
379
- msgstr ""
380
-
381
- #: includes/Settings.class.php:365
382
- msgid "Up to 1 day in advance"
383
- msgstr ""
384
-
385
- #: includes/Settings.class.php:366
386
- msgid "Up to 1 week in advance"
387
- msgstr ""
388
-
389
- #: includes/Settings.class.php:367
390
- msgid "Up to 2 weeks in advance"
391
- msgstr ""
392
-
393
- #: includes/Settings.class.php:368
394
- msgid "Up to 30 days in advance"
395
- msgstr ""
396
-
397
- #: includes/Settings.class.php:369
398
- msgid "Up to 90 days in advance"
399
- msgstr ""
400
-
401
- #: includes/Settings.class.php:380
402
- msgid "Late Bookings"
403
- msgstr ""
404
-
405
- #: includes/Settings.class.php:381
406
- msgid "Select how late customers can make their booking."
407
- msgstr ""
408
-
409
- #: includes/Settings.class.php:384
410
- msgid "Up to the last minute"
411
- msgstr ""
412
-
413
- #: includes/Settings.class.php:385
414
- msgid "At least 15 minutes in advance"
415
- msgstr ""
416
-
417
- #: includes/Settings.class.php:386
418
- msgid "At least 30 minutes in advance"
419
- msgstr ""
420
-
421
- #: includes/Settings.class.php:387
422
- msgid "At least 45 minutes in advance"
423
- msgstr ""
424
-
425
- #: includes/Settings.class.php:388
426
- msgid "At least 1 hour in advance"
427
- msgstr ""
428
-
429
- #: includes/Settings.class.php:389
430
- msgid "At least 4 hours in advance"
431
- msgstr ""
432
-
433
- #: includes/Settings.class.php:390
434
- msgid "At least 1 day in advance"
435
- msgstr ""
436
-
437
- #: includes/Settings.class.php:399
438
- msgid "Notifications"
439
- msgstr ""
440
-
441
- #: includes/Settings.class.php:410
442
- msgid "Reply-To Name"
443
- msgstr ""
444
-
445
- #: includes/Settings.class.php:411
446
- msgid "The name which should appear in the Reply-To field of a notification email"
447
- msgstr ""
448
-
449
- #: includes/Settings.class.php:422
450
- msgid "Reply-To Email Address"
451
- msgstr ""
452
-
453
- #: includes/Settings.class.php:423
454
- msgid "The email address which should appear in the Reply-To field of a notification email."
455
- msgstr ""
456
-
457
- #: includes/Settings.class.php:434
458
- msgid "Admin Notification"
459
- msgstr ""
460
-
461
- #: includes/Settings.class.php:435
462
- msgid "Send an email notification to an administrator when a new booking is requested."
463
- msgstr ""
464
-
465
- #: includes/Settings.class.php:445
466
- msgid "Admin Email Address"
467
- msgstr ""
468
-
469
- #: includes/Settings.class.php:446
470
- msgid "The email address where admin notifications should be sent."
471
- msgstr ""
472
-
473
- #: includes/Settings.class.php:455
474
- msgid "Email Templates"
475
- msgstr ""
476
-
477
- #: includes/Settings.class.php:469
478
- msgid "Template Tags"
479
- msgstr ""
480
-
481
- #: includes/Settings.class.php:471
482
- msgid "Use the following tags to automatically add booking information to the emails."
483
- msgstr ""
484
-
485
- #: includes/Settings.class.php:473
486
- msgid "Name of the user who made the booking"
487
- msgstr ""
488
-
489
- #: includes/Settings.class.php:476
490
- msgid "Number of people booked"
491
- msgstr ""
492
-
493
- #: includes/Settings.class.php:479
494
- msgid "Date and time of the booking"
495
- msgstr ""
496
-
497
- #: includes/Settings.class.php:482
498
- msgid "A link to the admin panel showing pending bookings"
499
- msgstr ""
500
-
501
- #: includes/Settings.class.php:485
502
- msgid "A link to confirm this booking. Only include this in admin notifications"
503
- msgstr ""
504
-
505
- #: includes/Settings.class.php:488
506
- msgid "A link to reject this booking. Only include this in admin notifications"
507
- msgstr ""
508
-
509
- #: includes/Settings.class.php:491
510
- msgid "The name of this website"
511
- msgstr ""
512
-
513
- #: includes/Settings.class.php:494
514
- msgid "A link to this website"
515
- msgstr ""
516
-
517
- #: includes/Settings.class.php:497
518
- msgid "Current date and time"
519
- msgstr ""
520
-
521
- #: includes/Settings.class.php:508
522
- msgid "Admin Notification Subject"
523
- msgstr ""
524
-
525
- #: includes/Settings.class.php:509
526
- msgid "The email subject for admin notifications."
527
- msgstr ""
528
-
529
- #: includes/Settings.class.php:520
530
- msgid "Admin Notification Email"
531
- msgstr ""
532
-
533
- #: includes/Settings.class.php:521
534
- msgid "Enter the email an admin should receive when an initial booking request is made."
535
- msgstr ""
536
-
537
- #: includes/Settings.class.php:532
538
- msgid "New Request Email Subject"
539
- msgstr ""
540
-
541
- #: includes/Settings.class.php:533
542
- msgid "The email subject a user should receive when they make an initial booking request."
543
- msgstr ""
544
-
545
- #: includes/Settings.class.php:544
546
- msgid "New Request Email"
547
- msgstr ""
548
-
549
- #: includes/Settings.class.php:545
550
- msgid "Enter the email a user should receive when they make an initial booking request."
551
- msgstr ""
552
-
553
- #: includes/Settings.class.php:556
554
- msgid "Confirmed Email Subject"
555
- msgstr ""
556
-
557
- #: includes/Settings.class.php:557
558
- msgid "The email subject a user should receive when their booking has been confirmed."
559
- msgstr ""
560
-
561
- #: includes/Settings.class.php:568
562
- msgid "Confirmed Email"
563
- msgstr ""
564
-
565
- #: includes/Settings.class.php:569
566
- msgid "Enter the email a user should receive when their booking has been confirmed."
567
- msgstr ""
568
-
569
- #: includes/Settings.class.php:580
570
- msgid "Rejected Email Subject"
571
- msgstr ""
572
-
573
- #: includes/Settings.class.php:581
574
- msgid "The email subject a user should receive when their booking has been rejected."
575
- msgstr ""
576
-
577
- #: includes/Settings.class.php:592
578
- msgid "Rejected Email"
579
- msgstr ""
580
-
581
- #: includes/Settings.class.php:593
582
- msgid "Enter the email a user should receive when their booking has been rejected."
583
- msgstr ""
584
-
585
- #: includes/WP_List_Table.BookingsTable.class.php:172
586
- #: includes/WP_List_Table.BookingsTable.class.php:235
587
- msgid "All"
588
- msgstr ""
589
-
590
- #: includes/WP_List_Table.BookingsTable.class.php:173
591
- msgid "Today"
592
- msgstr ""
593
-
594
- #: includes/WP_List_Table.BookingsTable.class.php:174
595
- msgid "Upcoming"
596
- msgstr ""
597
-
598
- #: includes/WP_List_Table.BookingsTable.class.php:180
599
- msgctxt "Separator between two dates in a date range"
600
- msgid "&mdash;"
601
- msgstr ""
602
-
603
- #: includes/WP_List_Table.BookingsTable.class.php:192
604
- msgid "Start Date:"
605
- msgstr ""
606
-
607
- #: includes/WP_List_Table.BookingsTable.class.php:193
608
- msgid "Start Date"
609
- msgstr ""
610
-
611
- #: includes/WP_List_Table.BookingsTable.class.php:194
612
- msgid "End Date:"
613
- msgstr ""
614
-
615
- #: includes/WP_List_Table.BookingsTable.class.php:195
616
- msgid "End Date"
617
- msgstr ""
618
-
619
- #: includes/WP_List_Table.BookingsTable.class.php:196
620
- msgid "Apply"
621
- msgstr ""
622
-
623
- #: includes/WP_List_Table.BookingsTable.class.php:198
624
- msgid "Clear Filter"
625
- msgstr ""
626
-
627
- #: includes/WP_List_Table.BookingsTable.class.php:236
628
- msgid "Pending"
629
- msgstr ""
630
-
631
- #: includes/WP_List_Table.BookingsTable.class.php:237
632
- msgid "Confirmed"
633
- msgstr ""
634
-
635
- #: includes/WP_List_Table.BookingsTable.class.php:238
636
- msgid "Closed"
637
- msgstr ""
638
-
639
- #: includes/WP_List_Table.BookingsTable.class.php:239
640
- msgid "Trash"
641
- msgstr ""
642
-
643
- #: includes/WP_List_Table.BookingsTable.class.php:267
644
- #: includes/template-functions.php:89
645
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:365
646
- msgid "Date"
647
- msgstr ""
648
-
649
- #: includes/WP_List_Table.BookingsTable.class.php:268
650
- #: includes/template-functions.php:103
651
- msgid "Party"
652
- msgstr ""
653
-
654
- #: includes/WP_List_Table.BookingsTable.class.php:269
655
- #: includes/template-functions.php:115
656
- msgid "Name"
657
- msgstr ""
658
-
659
- #: includes/WP_List_Table.BookingsTable.class.php:270
660
- #: includes/template-functions.php:122
661
- msgid "Email"
662
- msgstr ""
663
-
664
- #: includes/WP_List_Table.BookingsTable.class.php:271
665
- #: includes/template-functions.php:129
666
- msgid "Phone"
667
- msgstr ""
668
-
669
- #: includes/WP_List_Table.BookingsTable.class.php:272
670
- #: includes/template-functions.php:141
671
- msgid "Message"
672
- msgstr ""
673
-
674
- #: includes/WP_List_Table.BookingsTable.class.php:273
675
- msgid "Status"
676
- msgstr ""
677
-
678
- #: includes/WP_List_Table.BookingsTable.class.php:324
679
- msgctxt "Status label for bookings put in the trash"
680
- msgid "Trash"
681
- msgstr ""
682
-
683
- #: includes/WP_List_Table.BookingsTable.class.php:356
684
- msgid "Delete"
685
- msgstr ""
686
-
687
- #: includes/WP_List_Table.BookingsTable.class.php:357
688
- msgid "Set To Confirmed"
689
- msgstr ""
690
-
691
- #: includes/WP_List_Table.BookingsTable.class.php:358
692
- msgid "Set To Pending Review"
693
- msgstr ""
694
-
695
- #: includes/WP_List_Table.BookingsTable.class.php:359
696
- msgid "Set To Closed"
697
- msgstr ""
698
-
699
- #: includes/WP_List_Table.BookingsTable.class.php:471
700
- msgid "%d booking deleted successfully."
701
- msgid_plural "%d bookings deleted successfully."
702
- msgstr[0] ""
703
- msgstr[1] ""
704
-
705
- #: includes/WP_List_Table.BookingsTable.class.php:474
706
- msgid "%d booking confirmed."
707
- msgid_plural "%d bookings confirmed."
708
- msgstr[0] ""
709
- msgstr[1] ""
710
-
711
- #: includes/WP_List_Table.BookingsTable.class.php:477
712
- msgid "%d booking set to pending."
713
- msgid_plural "%d bookings set to pending."
714
- msgstr[0] ""
715
- msgstr[1] ""
716
-
717
- #: includes/WP_List_Table.BookingsTable.class.php:480
718
- msgid "%d booking closed."
719
- msgid_plural "%d bookings closed."
720
- msgstr[0] ""
721
- msgstr[1] ""
722
-
723
- #: includes/WP_List_Table.BookingsTable.class.php:492
724
- msgid "%d booking had errors and could not be processed."
725
- msgid_plural "%d bookings had errors and could not be processed."
726
- msgstr[0] ""
727
- msgstr[1] ""
728
-
729
- #: includes/WP_Widget.BookingFormWidget.class.php:25
730
- msgid "Booking Form"
731
- msgstr ""
732
-
733
- #: includes/WP_Widget.BookingFormWidget.class.php:26
734
- msgid "Display a form to accept bookings."
735
- msgstr ""
736
-
737
- #: includes/WP_Widget.BookingFormWidget.class.php:64
738
- msgid "Title"
739
- msgstr ""
740
-
741
- #: includes/template-functions.php:84
742
- msgid "Book a table"
743
- msgstr ""
744
-
745
- #: includes/template-functions.php:96
746
- msgid "Time"
747
- msgstr ""
748
-
749
- #: includes/template-functions.php:110
750
- msgid "Contact Details"
751
- msgstr ""
752
-
753
- #: includes/template-functions.php:135
754
- msgid "Add a Message"
755
- msgstr ""
756
-
757
- #: includes/template-functions.php:146
758
- msgid "Request Booking"
759
- msgstr ""
760
-
761
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:266
762
- msgid "Add new scheduling rule"
763
- msgstr ""
764
-
765
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:293
766
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:306
767
- msgctxt "Format of a scheduling rule"
768
- msgid "Weekly"
769
- msgstr ""
770
-
771
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:295
772
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:314
773
- msgctxt "Format of a scheduling rule"
774
- msgid "Monthly"
775
- msgstr ""
776
-
777
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:297
778
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:322
779
- msgctxt "Format of a scheduling rule"
780
- msgid "Date"
781
- msgstr ""
782
-
783
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:333
784
- msgctxt "Label for selecting days of the week in a scheduling rule"
785
- msgid "Days of the week"
786
- msgstr ""
787
-
788
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:349
789
- msgctxt "Label for selecting weeks of the month in a scheduling rule"
790
- msgid "Weeks of the month"
791
- msgstr ""
792
-
793
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:380
794
- msgctxt "Label to select time slot for a scheduling rule"
795
- msgid "Time"
796
- msgstr ""
797
-
798
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:385
799
- msgctxt "Label to set a scheduling rule to last all day"
800
- msgid "All day"
801
- msgstr ""
802
-
803
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:394
804
- msgctxt "Label for the starting time of a scheduling rule"
805
- msgid "Start"
806
- msgstr ""
807
-
808
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:402
809
- msgctxt "Label for the ending time of a scheduling rule"
810
- msgid "End"
811
- msgstr ""
812
-
813
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:411
814
- msgctxt "Prompt displayed when a scheduling rule is set without any time restrictions."
815
- msgid "All day long. Want to <a href=\"#\" data-format=\"time-slot\">set a time slot</a>?"
816
- msgstr ""
817
-
818
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:430
819
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:433
820
- msgid "Open and close this rule"
821
- msgstr ""
822
-
823
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:436
824
- msgid "Delete rule"
825
- msgstr ""
826
-
827
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:439
828
- msgid "Delete scheduling rule"
829
- msgstr ""
830
-
831
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:523
832
- msgctxt "Brief default description of a scheduling rule when no weekdays or weeks are included in the rule."
833
- msgid "Never"
834
- msgstr ""
835
-
836
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:524
837
- msgctxt "Brief default description of a scheduling rule when all the weekdays/weeks are included in the rule."
838
- msgid "Every day"
839
- msgstr ""
840
-
841
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:525
842
- msgctxt "Brief default description of a scheduling rule when some weekdays are included on only some weeks of the month. The {days} and {weeks} bits should be left alone and will be replaced by a comma-separated list of days (the first one) and weeks (the second one) in the following format: M, T, W on the first, second week of the month"
843
- msgid "{days} on the {weeks} week of the month"
844
- msgstr ""
845
-
846
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:526
847
- msgctxt "Brief description of a scheduling rule when some weeks of the month are included but all or no weekdays are selected. {weeks} should be left alone and will be replaced by a comma-separated list of weeks (the second one) in the following format: First, second week of the month"
848
- msgid "{weeks} week of the month"
849
- msgstr ""
850
-
851
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:527
852
- msgctxt "Brief default description of a scheduling rule when no times are set"
853
- msgid "All day"
854
- msgstr ""
855
-
856
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:528
857
- msgctxt "Brief default description of a scheduling rule when an end time is set but no start time. If the end time is 6pm, it will read: Ends at 6pm."
858
- msgid "Ends at"
859
- msgstr ""
860
-
861
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:529
862
- msgctxt "Brief default description of a scheduling rule when a start time is set but no end time. If the start time is 6pm, it will read: Starts at 6pm."
863
- msgid "Starts at"
864
- msgstr ""
865
-
866
- #: lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:530
867
- msgctxt "Default separator between times of a scheduling rule."
868
- msgid "&mdash;"
869
- msgstr ""
870
-
871
- #: restaurant-reservations.php:127
872
- msgid "Booking Manager"
873
- msgstr ""
874
-
875
- #: restaurant-reservations.php:155
876
- msgctxt "Title of admin page that lists bookings"
877
- msgid "Bookings"
878
- msgstr ""
879
-
880
- #: restaurant-reservations.php:156
881
- msgctxt "Title of bookings admin menu item"
882
- msgid "Bookings"
883
- msgstr ""
884
-
885
- #: restaurant-reservations.php:178
886
- msgid "Restaurant Bookings"
887
- msgstr ""
888
-
889
- #: restaurant-reservations.php:279
890
- msgid "View the help documentation for Restaurant Reservations"
891
- msgstr ""
892
-
893
- #: restaurant-reservations.php:279
894
- msgid "Help"
895
- msgstr ""
896
- #. Plugin Name of the plugin/theme
897
- msgid "Restaurant Reservations"
898
- msgstr ""
899
-
900
- #. Plugin URI of the plugin/theme
901
- msgid "http://themeofthecrop.com"
902
- msgstr ""
903
-
904
- #. Description of the plugin/theme
905
- msgid "Accept restaurant reservations and bookings online."
906
- msgstr ""
907
-
908
- #. Author of the plugin/theme
909
- msgid "Theme of the Crop"
910
- msgstr ""
911
-
912
- #. Author URI of the plugin/theme
913
- msgid "http://themeofthecrop.com"
914
- msgstr ""
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
languages/rtbdomain.pot ADDED
@@ -0,0 +1,1079 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ # Loco Gettext template
2
+ #, fuzzy
3
+ msgid ""
4
+ msgstr ""
5
+ "Project-Id-Version: Restaurant Reservations\n"
6
+ "Report-Msgid-Bugs-To: \n"
7
+ "POT-Creation-Date: Thu Jul 17 2014 15:43:57 GMT+0100 (GMT Daylight Time)\n"
8
+ "POT-Revision-Date: Thu Jul 17 2014 15:44:22 GMT+0100 (GMT Daylight Time)\n"
9
+ "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
10
+ "Last-Translator: \n"
11
+ "Language-Team: \n"
12
+ "Language: \n"
13
+ "Plural-Forms: nplurals=INTEGER; plural=EXPRESSION\n"
14
+ "MIME-Version: 1.0\n"
15
+ "Content-Type: text/plain; charset=UTF-8\n"
16
+ "Content-Transfer-Encoding: 8bit\n"
17
+ "X-Poedit-SourceCharset: UTF-8\n"
18
+ "X-Poedit-Basepath: .\n"
19
+ "X-Poedit-SearchPath-0: ..\n"
20
+ "X-Poedit-KeywordsList: _:1;gettext:1;dgettext:2;ngettext:1,2;dngettext:2,3;"
21
+ "__:1;_e:1;_c:1;_n:1,2;_n_noop:1,2;_nc:1,2;__ngettext:1,2;__ngettext_noop:1,2;"
22
+ "_x:1,2c;_ex:1,2c;_nx:1,2,4c;_nx_noop:1,2,3c;_n_js:1,2;_nx_js:1,2,3c;"
23
+ "esc_attr__:1;esc_html__:1;esc_attr_e:1;esc_html_e:1;esc_attr_x:1,2c;"
24
+ "esc_html_x:1,2c;comments_number_link:2,3;t:1;st:1;trans:1;transChoice:1,2\n"
25
+ "X-Generator: Loco - https://localise.biz/"
26
+
27
+ #: ../restaurant-reservations.php:127
28
+ msgid "Booking Manager"
29
+ msgstr ""
30
+
31
+ #: ../restaurant-reservations.php:155
32
+ msgctxt "Title of admin page that lists bookings"
33
+ msgid "Bookings"
34
+ msgstr ""
35
+
36
+ #: ../restaurant-reservations.php:156
37
+ msgctxt "Title of bookings admin menu item"
38
+ msgid "Bookings"
39
+ msgstr ""
40
+
41
+ #: ../restaurant-reservations.php:178
42
+ msgid "Restaurant Bookings"
43
+ msgstr ""
44
+
45
+ #: ../restaurant-reservations.php:279
46
+ msgid "View the help documentation for Restaurant Reservations"
47
+ msgstr ""
48
+
49
+ #: ../restaurant-reservations.php:279
50
+ msgid "Help"
51
+ msgstr ""
52
+
53
+ #: ../includes/Booking.class.php:154
54
+ msgid "Please enter the date you would like to book."
55
+ msgstr ""
56
+
57
+ #: ../includes/Booking.class.php:164
58
+ msgid ""
59
+ "The date you entered is not valid. Please select from one of the dates in "
60
+ "the calendar."
61
+ msgstr ""
62
+
63
+ #: ../includes/Booking.class.php:175
64
+ msgid "Please enter the time you would like to book."
65
+ msgstr ""
66
+
67
+ #: ../includes/Booking.class.php:185
68
+ msgid ""
69
+ "The time you entered is not valid. Please select from one of the times "
70
+ "provided."
71
+ msgstr ""
72
+
73
+ #: ../includes/Booking.class.php:204
74
+ #, php-format
75
+ msgid "Sorry, bookings can not be made more than %s days in advance."
76
+ msgstr ""
77
+
78
+ #: ../includes/Booking.class.php:215
79
+ msgid "Sorry, bookings can not be made in the past."
80
+ msgstr ""
81
+
82
+ #: ../includes/Booking.class.php:223
83
+ #, php-format
84
+ msgid "Sorry, bookings must be made more than %s days in advance."
85
+ msgstr ""
86
+
87
+ #: ../includes/Booking.class.php:225
88
+ #, php-format
89
+ msgid "Sorry, bookings must be made more than %s hours in advance."
90
+ msgstr ""
91
+
92
+ #: ../includes/Booking.class.php:227
93
+ #, php-format
94
+ msgid "Sorry, bookings must be made more than %s mings in advance."
95
+ msgstr ""
96
+
97
+ #: ../includes/Booking.class.php:266
98
+ msgid "Sorry, no bookings are being accepted then."
99
+ msgstr ""
100
+
101
+ #: ../includes/Booking.class.php:318
102
+ msgid "Sorry, no bookings are being accepted on that date."
103
+ msgstr ""
104
+
105
+ #: ../includes/Booking.class.php:324
106
+ msgid "Sorry, no bookings are being accepted at that time."
107
+ msgstr ""
108
+
109
+ #: ../includes/Booking.class.php:346
110
+ msgid "Please enter a name for this booking."
111
+ msgstr ""
112
+
113
+ #: ../includes/Booking.class.php:356
114
+ msgid "Please let us know how many people will be in your party."
115
+ msgstr ""
116
+
117
+ #: ../includes/Booking.class.php:370
118
+ #, php-format
119
+ msgid "We only accept bookings for parties of up to %d people."
120
+ msgstr ""
121
+
122
+ #: ../includes/Booking.class.php:381
123
+ msgid "Please enter an email address so we can confirm your booking."
124
+ msgstr ""
125
+
126
+ #: ../includes/CustomPostTypes.class.php:38 ../includes/CustomPostTypes.class.php:
127
+ #: 40 ../includes/CustomPostTypes.class.php:41 ../includes/WP_List_Table.
128
+ #: BookingsTable.class.php:76
129
+ msgid "Bookings"
130
+ msgstr ""
131
+
132
+ #: ../includes/CustomPostTypes.class.php:39 ../includes/WP_List_Table.
133
+ #: BookingsTable.class.php:75
134
+ msgid "Booking"
135
+ msgstr ""
136
+
137
+ #: ../includes/CustomPostTypes.class.php:42
138
+ msgid "Add New"
139
+ msgstr ""
140
+
141
+ #: ../includes/CustomPostTypes.class.php:43
142
+ msgid "Add New Booking"
143
+ msgstr ""
144
+
145
+ #: ../includes/CustomPostTypes.class.php:44
146
+ msgid "Edit Booking"
147
+ msgstr ""
148
+
149
+ #: ../includes/CustomPostTypes.class.php:45
150
+ msgid "New Booking"
151
+ msgstr ""
152
+
153
+ #: ../includes/CustomPostTypes.class.php:46
154
+ msgid "View Booking"
155
+ msgstr ""
156
+
157
+ #: ../includes/CustomPostTypes.class.php:47
158
+ msgid "Search Bookings"
159
+ msgstr ""
160
+
161
+ #: ../includes/CustomPostTypes.class.php:48
162
+ msgid "No bookings found"
163
+ msgstr ""
164
+
165
+ #: ../includes/CustomPostTypes.class.php:49
166
+ msgid "No bookings found in trash"
167
+ msgstr ""
168
+
169
+ #: ../includes/CustomPostTypes.class.php:50
170
+ msgid "All Bookings"
171
+ msgstr ""
172
+
173
+ #: ../includes/CustomPostTypes.class.php:80
174
+ msgctxt "Booking status when it is pending review"
175
+ msgid "Pending"
176
+ msgstr ""
177
+
178
+ #: ../includes/CustomPostTypes.class.php:86
179
+ msgctxt "Booking status for a confirmed booking"
180
+ msgid "Confirmed"
181
+ msgstr ""
182
+
183
+ #: ../includes/CustomPostTypes.class.php:93
184
+ #, php-format
185
+ msgid "Confirmed <span class=\"count\">(%s)</span>"
186
+ msgid_plural "Confirmed <span class=\"count\">(%s)</span>"
187
+ msgstr[0] ""
188
+ msgstr[1] ""
189
+
190
+ #: ../includes/CustomPostTypes.class.php:97
191
+ msgctxt "Booking status for a closed booking"
192
+ msgid "Closed"
193
+ msgstr ""
194
+
195
+ #: ../includes/CustomPostTypes.class.php:104
196
+ #, php-format
197
+ msgid "Closed <span class=\"count\">(%s)</span>"
198
+ msgid_plural "Closed <span class=\"count\">(%s)</span>"
199
+ msgstr[0] ""
200
+ msgstr[1] ""
201
+
202
+ #: ../includes/Notification.class.php:87
203
+ msgid "View pending bookings"
204
+ msgstr ""
205
+
206
+ #: ../includes/Notification.class.php:88
207
+ msgid "Confirm this booking"
208
+ msgstr ""
209
+
210
+ #: ../includes/Notification.class.php:89
211
+ msgid "Reject this booking"
212
+ msgstr ""
213
+
214
+ #: ../includes/Settings.class.php:83
215
+ msgid ""
216
+ "Thanks, your booking request is waiting to be confirmed. Updates will be "
217
+ "sent to the email address you provided."
218
+ msgstr ""
219
+
220
+ #: ../includes/Settings.class.php:84
221
+ msgctxt ""
222
+ "Default date format for display. Must match formatting rules at http://amsul."
223
+ "ca/pickadate.js/date.htm#formatting-rules"
224
+ msgid "mmmm d, yyyy"
225
+ msgstr ""
226
+
227
+ #: ../includes/Settings.class.php:85
228
+ msgctxt ""
229
+ "Default time format for display. Must match formatting rules at http://amsul."
230
+ "ca/pickadate.js/time.htm#formats"
231
+ msgid "h:i A"
232
+ msgstr ""
233
+
234
+ #: ../includes/Settings.class.php:86
235
+ msgctxt "Default interval in minutes when selecting a time."
236
+ msgid "30"
237
+ msgstr ""
238
+
239
+ #: ../includes/Settings.class.php:96
240
+ msgctxt "Default email subject for admin notifications of new bookings"
241
+ msgid "New Booking Request"
242
+ msgstr ""
243
+
244
+ #: ../includes/Settings.class.php:97
245
+ msgctxt ""
246
+ "Default email sent to the admin when a new booking request is made. The tags "
247
+ "in {brackets} will be replaced by the appropriate content and should be left "
248
+ "in place. HTML is allowed, but be aware that many email clients do not "
249
+ "handle HTML very well."
250
+ msgid ""
251
+ "A new booking request has been made at {site_name}:\n"
252
+ "\n"
253
+ "{user_name}\n"
254
+ "{party} people\n"
255
+ "{date}\n"
256
+ "\n"
257
+ "{bookings_link}\n"
258
+ "{confirm_link}\n"
259
+ "{close_link}\n"
260
+ "\n"
261
+ "&nbsp;\n"
262
+ "\n"
263
+ "<em>This message was sent by {site_link} on {current_time}.</em>"
264
+ msgstr ""
265
+
266
+ #: ../includes/Settings.class.php:115
267
+ #, php-format
268
+ msgctxt ""
269
+ "Default email subject sent to user when they request a booking. %s will be "
270
+ "replaced by the website name"
271
+ msgid "Your booking at %s is pending"
272
+ msgstr ""
273
+
274
+ #: ../includes/Settings.class.php:116
275
+ msgctxt ""
276
+ "Default email sent to users when they make a new booking request. The tags "
277
+ "in {brackets} will be replaced by the appropriate content and should be left "
278
+ "in place. HTML is allowed, but be aware that many email clients do not "
279
+ "handle HTML very well."
280
+ msgid ""
281
+ "Thanks {user_name},\n"
282
+ "\n"
283
+ "Your booking request is <strong>waiting to be confirmed</strong>.\n"
284
+ "\n"
285
+ "Give us a few moments to make sure that we've got space for you. You will "
286
+ "receive another email from us soon. If this request was made outside of our "
287
+ "normal working hours, we may not be able to confirm it until we're open "
288
+ "again.\n"
289
+ "\n"
290
+ "<strong>Your request details:</strong>\n"
291
+ "{user_name}\n"
292
+ "{party} people\n"
293
+ "{date}\n"
294
+ "\n"
295
+ "&nbsp;\n"
296
+ "\n"
297
+ "<em>This message was sent by {site_link} on {current_time}.</em>"
298
+ msgstr ""
299
+
300
+ #: ../includes/Settings.class.php:135
301
+ #, php-format
302
+ msgctxt ""
303
+ "Default email subject sent to user when their booking is confirmed. %s will "
304
+ "be replaced by the website name"
305
+ msgid "Your booking at %s is confirmed"
306
+ msgstr ""
307
+
308
+ #: ../includes/Settings.class.php:136
309
+ msgctxt ""
310
+ "Default email sent to users when they make a new booking request. The tags "
311
+ "in {brackets} will be replaced by the appropriate content and should be left "
312
+ "in place. HTML is allowed, but be aware that many email clients do not "
313
+ "handle HTML very well."
314
+ msgid ""
315
+ "Hi {user_name},\n"
316
+ "\n"
317
+ "Your booking request has been <strong>confirmed</strong>. We look forward to "
318
+ "seeing you soon.\n"
319
+ "\n"
320
+ "<strong>Your booking:</strong>\n"
321
+ "{user_name}\n"
322
+ "{party} people\n"
323
+ "{date}\n"
324
+ "\n"
325
+ "&nbsp;\n"
326
+ "\n"
327
+ "<em>This message was sent by {site_link} on {current_time}.</em>"
328
+ msgstr ""
329
+
330
+ #: ../includes/Settings.class.php:153
331
+ #, php-format
332
+ msgctxt ""
333
+ "Default email subject sent to user when their booking is rejected. %s will "
334
+ "be replaced by the website name"
335
+ msgid "Your booking at %s was not accepted"
336
+ msgstr ""
337
+
338
+ #: ../includes/Settings.class.php:154
339
+ msgctxt ""
340
+ "Default email sent to users when they make a new booking request. The tags "
341
+ "in {brackets} will be replaced by the appropriate content and should be left "
342
+ "in place. HTML is allowed, but be aware that many email clients do not "
343
+ "handle HTML very well."
344
+ msgid ""
345
+ "Hi {user_name},\n"
346
+ "\n"
347
+ "Sorry, we could not accomodate your booking request. We're full or not open "
348
+ "at the time you requested:\n"
349
+ "\n"
350
+ "{user_name}\n"
351
+ "{party} people\n"
352
+ "{date}\n"
353
+ "\n"
354
+ "&nbsp;\n"
355
+ "\n"
356
+ "<em>This message was sent by {site_link} on {current_time}.</em>"
357
+ msgstr ""
358
+
359
+ #: ../includes/Settings.class.php:218 ../includes/Settings.class.php:219
360
+ msgid "Settings"
361
+ msgstr ""
362
+
363
+ #: ../includes/Settings.class.php:231
364
+ msgid "General"
365
+ msgstr ""
366
+
367
+ #: ../includes/Settings.class.php:242
368
+ msgid "Booking Page"
369
+ msgstr ""
370
+
371
+ #: ../includes/Settings.class.php:243
372
+ msgid ""
373
+ "Select a page on your site to automatically display the booking form and "
374
+ "confirmation message."
375
+ msgstr ""
376
+
377
+ #: ../includes/Settings.class.php:259
378
+ msgid "Max Party Size"
379
+ msgstr ""
380
+
381
+ #: ../includes/Settings.class.php:260
382
+ msgid ""
383
+ "Set a maximum allowed party size for bookings. Leave it empty to allow "
384
+ "parties of any size."
385
+ msgstr ""
386
+
387
+ #: ../includes/Settings.class.php:261
388
+ msgid "No limit"
389
+ msgstr ""
390
+
391
+ #: ../includes/Settings.class.php:271
392
+ msgid "Success Message"
393
+ msgstr ""
394
+
395
+ #: ../includes/Settings.class.php:272
396
+ msgid "Enter the message to display when a booking request is made."
397
+ msgstr ""
398
+
399
+ #: ../includes/Settings.class.php:283
400
+ msgid "Date Format"
401
+ msgstr ""
402
+
403
+ #: ../includes/Settings.class.php:284
404
+ msgid ""
405
+ "Define how the date should appear after it has been selected. <a href=\"http:"
406
+ "//amsul.ca/pickadate.js/date.htm#formatting-rules\">Formatting rules</a>"
407
+ msgstr ""
408
+
409
+ #: ../includes/Settings.class.php:295
410
+ msgid "Time Format"
411
+ msgstr ""
412
+
413
+ #: ../includes/Settings.class.php:296
414
+ msgid ""
415
+ "Define how the time should appear after it has been selected. <a href=\"http:"
416
+ "//amsul.ca/pickadate.js/time.htm#formatting-rules\">Formatting rules</a>"
417
+ msgstr ""
418
+
419
+ #: ../includes/Settings.class.php:309
420
+ msgid "Language"
421
+ msgstr ""
422
+
423
+ #: ../includes/Settings.class.php:310
424
+ msgid ""
425
+ "Select a language to use for the booking form datepicker if it is different "
426
+ "than your WordPress language setting."
427
+ msgstr ""
428
+
429
+ #: ../includes/Settings.class.php:320
430
+ msgid "Booking Schedule"
431
+ msgstr ""
432
+
433
+ #: ../includes/Settings.class.php:331
434
+ msgid "Schedule"
435
+ msgstr ""
436
+
437
+ #: ../includes/Settings.class.php:332
438
+ msgid "Define the weekly schedule during which you accept bookings."
439
+ msgstr ""
440
+
441
+ #: ../includes/Settings.class.php:334
442
+ msgctxt "Monday abbreviation"
443
+ msgid "Mo"
444
+ msgstr ""
445
+
446
+ #: ../includes/Settings.class.php:335
447
+ msgctxt "Tuesday abbreviation"
448
+ msgid "Tu"
449
+ msgstr ""
450
+
451
+ #: ../includes/Settings.class.php:336
452
+ msgctxt "Wednesday abbreviation"
453
+ msgid "We"
454
+ msgstr ""
455
+
456
+ #: ../includes/Settings.class.php:337
457
+ msgctxt "Thursday abbreviation"
458
+ msgid "Th"
459
+ msgstr ""
460
+
461
+ #: ../includes/Settings.class.php:338
462
+ msgctxt "Friday abbreviation"
463
+ msgid "Fr"
464
+ msgstr ""
465
+
466
+ #: ../includes/Settings.class.php:339
467
+ msgctxt "Saturday abbreviation"
468
+ msgid "Sa"
469
+ msgstr ""
470
+
471
+ #: ../includes/Settings.class.php:340
472
+ msgctxt "Sunday abbreviation"
473
+ msgid "Su"
474
+ msgstr ""
475
+
476
+ #: ../includes/Settings.class.php:355
477
+ msgid "Exceptions"
478
+ msgstr ""
479
+
480
+ #: ../includes/Settings.class.php:356
481
+ msgid ""
482
+ "Define special opening hours for holidays, events or other needs. Leave the "
483
+ "time empty if you're closed all day."
484
+ msgstr ""
485
+
486
+ #: ../includes/Settings.class.php:362
487
+ msgctxt "Brief description of a scheduling exception when no times are set"
488
+ msgid "Closed all day"
489
+ msgstr ""
490
+
491
+ #: ../includes/Settings.class.php:373
492
+ msgid "Early Bookings"
493
+ msgstr ""
494
+
495
+ #: ../includes/Settings.class.php:374
496
+ msgid "Select how early customers can make their booking."
497
+ msgstr ""
498
+
499
+ #: ../includes/Settings.class.php:377
500
+ msgid "Any time"
501
+ msgstr ""
502
+
503
+ #: ../includes/Settings.class.php:378
504
+ msgid "Up to 1 day in advance"
505
+ msgstr ""
506
+
507
+ #: ../includes/Settings.class.php:379
508
+ msgid "Up to 1 week in advance"
509
+ msgstr ""
510
+
511
+ #: ../includes/Settings.class.php:380
512
+ msgid "Up to 2 weeks in advance"
513
+ msgstr ""
514
+
515
+ #: ../includes/Settings.class.php:381
516
+ msgid "Up to 30 days in advance"
517
+ msgstr ""
518
+
519
+ #: ../includes/Settings.class.php:382
520
+ msgid "Up to 90 days in advance"
521
+ msgstr ""
522
+
523
+ #: ../includes/Settings.class.php:393
524
+ msgid "Late Bookings"
525
+ msgstr ""
526
+
527
+ #: ../includes/Settings.class.php:394
528
+ msgid "Select how late customers can make their booking."
529
+ msgstr ""
530
+
531
+ #: ../includes/Settings.class.php:397
532
+ msgid "Up to the last minute"
533
+ msgstr ""
534
+
535
+ #: ../includes/Settings.class.php:398
536
+ msgid "At least 15 minutes in advance"
537
+ msgstr ""
538
+
539
+ #: ../includes/Settings.class.php:399
540
+ msgid "At least 30 minutes in advance"
541
+ msgstr ""
542
+
543
+ #: ../includes/Settings.class.php:400
544
+ msgid "At least 45 minutes in advance"
545
+ msgstr ""
546
+
547
+ #: ../includes/Settings.class.php:401
548
+ msgid "At least 1 hour in advance"
549
+ msgstr ""
550
+
551
+ #: ../includes/Settings.class.php:402
552
+ msgid "At least 4 hours in advance"
553
+ msgstr ""
554
+
555
+ #: ../includes/Settings.class.php:403
556
+ msgid "At least 1 day in advance"
557
+ msgstr ""
558
+
559
+ #: ../includes/Settings.class.php:414
560
+ msgid "Date Pre-selection"
561
+ msgstr ""
562
+
563
+ #: ../includes/Settings.class.php:415
564
+ msgid ""
565
+ "When the booking form is loaded, should it automatically attempt to select a "
566
+ "valid date?"
567
+ msgstr ""
568
+
569
+ #: ../includes/Settings.class.php:418
570
+ msgid "Select today or soonest valid date"
571
+ msgstr ""
572
+
573
+ #: ../includes/Settings.class.php:419
574
+ msgid "Leave empty"
575
+ msgstr ""
576
+
577
+ #: ../includes/Settings.class.php:430
578
+ msgid "Time Interval"
579
+ msgstr ""
580
+
581
+ #: ../includes/Settings.class.php:431
582
+ msgid "Select the number of minutes between each available time."
583
+ msgstr ""
584
+
585
+ #: ../includes/Settings.class.php:434
586
+ msgid "Every 30 minutes"
587
+ msgstr ""
588
+
589
+ #: ../includes/Settings.class.php:435
590
+ msgid "Every 15 minutes"
591
+ msgstr ""
592
+
593
+ #: ../includes/Settings.class.php:436
594
+ msgid "Every 10 minutes"
595
+ msgstr ""
596
+
597
+ #: ../includes/Settings.class.php:437
598
+ msgid "Every 5 minutes"
599
+ msgstr ""
600
+
601
+ #: ../includes/Settings.class.php:446
602
+ msgid "Notifications"
603
+ msgstr ""
604
+
605
+ #: ../includes/Settings.class.php:457
606
+ msgid "Reply-To Name"
607
+ msgstr ""
608
+
609
+ #: ../includes/Settings.class.php:458
610
+ msgid "The name which should appear in the Reply-To field of a notification email"
611
+ msgstr ""
612
+
613
+ #: ../includes/Settings.class.php:469
614
+ msgid "Reply-To Email Address"
615
+ msgstr ""
616
+
617
+ #: ../includes/Settings.class.php:470
618
+ msgid ""
619
+ "The email address which should appear in the Reply-To field of a "
620
+ "notification email."
621
+ msgstr ""
622
+
623
+ #: ../includes/Settings.class.php:481
624
+ msgid "Admin Notification"
625
+ msgstr ""
626
+
627
+ #: ../includes/Settings.class.php:482
628
+ msgid ""
629
+ "Send an email notification to an administrator when a new booking is "
630
+ "requested."
631
+ msgstr ""
632
+
633
+ #: ../includes/Settings.class.php:492
634
+ msgid "Admin Email Address"
635
+ msgstr ""
636
+
637
+ #: ../includes/Settings.class.php:493
638
+ msgid "The email address where admin notifications should be sent."
639
+ msgstr ""
640
+
641
+ #: ../includes/Settings.class.php:502
642
+ msgid "Email Templates"
643
+ msgstr ""
644
+
645
+ #: ../includes/Settings.class.php:516
646
+ msgid "Template Tags"
647
+ msgstr ""
648
+
649
+ #: ../includes/Settings.class.php:518
650
+ msgid ""
651
+ "Use the following tags to automatically add booking information to the "
652
+ "emails."
653
+ msgstr ""
654
+
655
+ #: ../includes/Settings.class.php:520
656
+ msgid "Name of the user who made the booking"
657
+ msgstr ""
658
+
659
+ #: ../includes/Settings.class.php:523
660
+ msgid "Number of people booked"
661
+ msgstr ""
662
+
663
+ #: ../includes/Settings.class.php:526
664
+ msgid "Date and time of the booking"
665
+ msgstr ""
666
+
667
+ #: ../includes/Settings.class.php:529
668
+ msgid "Phone number if supplied with the request"
669
+ msgstr ""
670
+
671
+ #: ../includes/Settings.class.php:532
672
+ msgid "Message added to the request"
673
+ msgstr ""
674
+
675
+ #: ../includes/Settings.class.php:535
676
+ msgid "A link to the admin panel showing pending bookings"
677
+ msgstr ""
678
+
679
+ #: ../includes/Settings.class.php:538
680
+ msgid "A link to confirm this booking. Only include this in admin notifications"
681
+ msgstr ""
682
+
683
+ #: ../includes/Settings.class.php:541
684
+ msgid "A link to reject this booking. Only include this in admin notifications"
685
+ msgstr ""
686
+
687
+ #: ../includes/Settings.class.php:544
688
+ msgid "The name of this website"
689
+ msgstr ""
690
+
691
+ #: ../includes/Settings.class.php:547
692
+ msgid "A link to this website"
693
+ msgstr ""
694
+
695
+ #: ../includes/Settings.class.php:550
696
+ msgid "Current date and time"
697
+ msgstr ""
698
+
699
+ #: ../includes/Settings.class.php:561
700
+ msgid "Admin Notification Subject"
701
+ msgstr ""
702
+
703
+ #: ../includes/Settings.class.php:562
704
+ msgid "The email subject for admin notifications."
705
+ msgstr ""
706
+
707
+ #: ../includes/Settings.class.php:573
708
+ msgid "Admin Notification Email"
709
+ msgstr ""
710
+
711
+ #: ../includes/Settings.class.php:574
712
+ msgid ""
713
+ "Enter the email an admin should receive when an initial booking request is "
714
+ "made."
715
+ msgstr ""
716
+
717
+ #: ../includes/Settings.class.php:585
718
+ msgid "New Request Email Subject"
719
+ msgstr ""
720
+
721
+ #: ../includes/Settings.class.php:586
722
+ msgid ""
723
+ "The email subject a user should receive when they make an initial booking "
724
+ "request."
725
+ msgstr ""
726
+
727
+ #: ../includes/Settings.class.php:597
728
+ msgid "New Request Email"
729
+ msgstr ""
730
+
731
+ #: ../includes/Settings.class.php:598
732
+ msgid ""
733
+ "Enter the email a user should receive when they make an initial booking "
734
+ "request."
735
+ msgstr ""
736
+
737
+ #: ../includes/Settings.class.php:609
738
+ msgid "Confirmed Email Subject"
739
+ msgstr ""
740
+
741
+ #: ../includes/Settings.class.php:610
742
+ msgid ""
743
+ "The email subject a user should receive when their booking has been "
744
+ "confirmed."
745
+ msgstr ""
746
+
747
+ #: ../includes/Settings.class.php:621
748
+ msgid "Confirmed Email"
749
+ msgstr ""
750
+
751
+ #: ../includes/Settings.class.php:622
752
+ msgid "Enter the email a user should receive when their booking has been confirmed."
753
+ msgstr ""
754
+
755
+ #: ../includes/Settings.class.php:633
756
+ msgid "Rejected Email Subject"
757
+ msgstr ""
758
+
759
+ #: ../includes/Settings.class.php:634
760
+ msgid "The email subject a user should receive when their booking has been rejected."
761
+ msgstr ""
762
+
763
+ #: ../includes/Settings.class.php:645
764
+ msgid "Rejected Email"
765
+ msgstr ""
766
+
767
+ #: ../includes/Settings.class.php:646
768
+ msgid "Enter the email a user should receive when their booking has been rejected."
769
+ msgstr ""
770
+
771
+ #: ../includes/template-functions.php:84
772
+ msgid "Book a table"
773
+ msgstr ""
774
+
775
+ #: ../includes/template-functions.php:89 ../includes/WP_List_Table.BookingsTable.
776
+ #: class.php:267 ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.
777
+ #: class.php:365
778
+ msgid "Date"
779
+ msgstr ""
780
+
781
+ #: ../includes/template-functions.php:96
782
+ msgid "Time"
783
+ msgstr ""
784
+
785
+ #: ../includes/template-functions.php:103 ../includes/WP_List_Table.BookingsTable.
786
+ #: class.php:268
787
+ msgid "Party"
788
+ msgstr ""
789
+
790
+ #: ../includes/template-functions.php:110
791
+ msgid "Contact Details"
792
+ msgstr ""
793
+
794
+ #: ../includes/template-functions.php:115 ../includes/WP_List_Table.BookingsTable.
795
+ #: class.php:269
796
+ msgid "Name"
797
+ msgstr ""
798
+
799
+ #: ../includes/template-functions.php:122 ../includes/WP_List_Table.BookingsTable.
800
+ #: class.php:270
801
+ msgid "Email"
802
+ msgstr ""
803
+
804
+ #: ../includes/template-functions.php:129 ../includes/WP_List_Table.BookingsTable.
805
+ #: class.php:271
806
+ msgid "Phone"
807
+ msgstr ""
808
+
809
+ #: ../includes/template-functions.php:135
810
+ msgid "Add a Message"
811
+ msgstr ""
812
+
813
+ #: ../includes/template-functions.php:141 ../includes/WP_List_Table.BookingsTable.
814
+ #: class.php:272
815
+ msgid "Message"
816
+ msgstr ""
817
+
818
+ #: ../includes/template-functions.php:146
819
+ msgid "Request Booking"
820
+ msgstr ""
821
+
822
+ #: ../includes/WP_List_Table.BookingsTable.class.php:172 ..
823
+ #: /includes/WP_List_Table.BookingsTable.class.php:235
824
+ msgid "All"
825
+ msgstr ""
826
+
827
+ #: ../includes/WP_List_Table.BookingsTable.class.php:173
828
+ msgid "Today"
829
+ msgstr ""
830
+
831
+ #: ../includes/WP_List_Table.BookingsTable.class.php:174
832
+ msgid "Upcoming"
833
+ msgstr ""
834
+
835
+ #: ../includes/WP_List_Table.BookingsTable.class.php:180
836
+ msgctxt "Separator between two dates in a date range"
837
+ msgid "&mdash;"
838
+ msgstr ""
839
+
840
+ #: ../includes/WP_List_Table.BookingsTable.class.php:192
841
+ msgid "Start Date:"
842
+ msgstr ""
843
+
844
+ #: ../includes/WP_List_Table.BookingsTable.class.php:193
845
+ msgid "Start Date"
846
+ msgstr ""
847
+
848
+ #: ../includes/WP_List_Table.BookingsTable.class.php:194
849
+ msgid "End Date:"
850
+ msgstr ""
851
+
852
+ #: ../includes/WP_List_Table.BookingsTable.class.php:195
853
+ msgid "End Date"
854
+ msgstr ""
855
+
856
+ #: ../includes/WP_List_Table.BookingsTable.class.php:196
857
+ msgid "Apply"
858
+ msgstr ""
859
+
860
+ #: ../includes/WP_List_Table.BookingsTable.class.php:198
861
+ msgid "Clear Filter"
862
+ msgstr ""
863
+
864
+ #: ../includes/WP_List_Table.BookingsTable.class.php:236
865
+ msgid "Pending"
866
+ msgstr ""
867
+
868
+ #: ../includes/WP_List_Table.BookingsTable.class.php:237
869
+ msgid "Confirmed"
870
+ msgstr ""
871
+
872
+ #: ../includes/WP_List_Table.BookingsTable.class.php:238
873
+ msgid "Closed"
874
+ msgstr ""
875
+
876
+ #: ../includes/WP_List_Table.BookingsTable.class.php:239
877
+ msgid "Trash"
878
+ msgstr ""
879
+
880
+ #: ../includes/WP_List_Table.BookingsTable.class.php:273
881
+ msgid "Status"
882
+ msgstr ""
883
+
884
+ #: ../includes/WP_List_Table.BookingsTable.class.php:324
885
+ msgctxt "Status label for bookings put in the trash"
886
+ msgid "Trash"
887
+ msgstr ""
888
+
889
+ #: ../includes/WP_List_Table.BookingsTable.class.php:356
890
+ msgid "Delete"
891
+ msgstr ""
892
+
893
+ #: ../includes/WP_List_Table.BookingsTable.class.php:357
894
+ msgid "Set To Confirmed"
895
+ msgstr ""
896
+
897
+ #: ../includes/WP_List_Table.BookingsTable.class.php:358
898
+ msgid "Set To Pending Review"
899
+ msgstr ""
900
+
901
+ #: ../includes/WP_List_Table.BookingsTable.class.php:359
902
+ msgid "Set To Closed"
903
+ msgstr ""
904
+
905
+ #: ../includes/WP_List_Table.BookingsTable.class.php:471
906
+ #, php-format
907
+ msgid "%d booking deleted successfully."
908
+ msgid_plural "%d bookings deleted successfully."
909
+ msgstr[0] ""
910
+ msgstr[1] ""
911
+
912
+ #: ../includes/WP_List_Table.BookingsTable.class.php:474
913
+ #, php-format
914
+ msgid "%d booking confirmed."
915
+ msgid_plural "%d bookings confirmed."
916
+ msgstr[0] ""
917
+ msgstr[1] ""
918
+
919
+ #: ../includes/WP_List_Table.BookingsTable.class.php:477
920
+ #, php-format
921
+ msgid "%d booking set to pending."
922
+ msgid_plural "%d bookings set to pending."
923
+ msgstr[0] ""
924
+ msgstr[1] ""
925
+
926
+ #: ../includes/WP_List_Table.BookingsTable.class.php:480
927
+ #, php-format
928
+ msgid "%d booking closed."
929
+ msgid_plural "%d bookings closed."
930
+ msgstr[0] ""
931
+ msgstr[1] ""
932
+
933
+ #: ../includes/WP_List_Table.BookingsTable.class.php:492
934
+ #, php-format
935
+ msgid "%d booking had errors and could not be processed."
936
+ msgid_plural "%d bookings had errors and could not be processed."
937
+ msgstr[0] ""
938
+ msgstr[1] ""
939
+
940
+ #: ../includes/WP_Widget.BookingFormWidget.class.php:25
941
+ msgid "Booking Form"
942
+ msgstr ""
943
+
944
+ #: ../includes/WP_Widget.BookingFormWidget.class.php:26
945
+ msgid "Display a form to accept bookings."
946
+ msgstr ""
947
+
948
+ #: ../includes/WP_Widget.BookingFormWidget.class.php:64
949
+ msgid "Title"
950
+ msgstr ""
951
+
952
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:266
953
+ msgid "Add new scheduling rule"
954
+ msgstr ""
955
+
956
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:293 ..
957
+ #: /lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:306
958
+ msgctxt "Format of a scheduling rule"
959
+ msgid "Weekly"
960
+ msgstr ""
961
+
962
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:295 ..
963
+ #: /lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:314
964
+ msgctxt "Format of a scheduling rule"
965
+ msgid "Monthly"
966
+ msgstr ""
967
+
968
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:297 ..
969
+ #: /lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:322
970
+ msgctxt "Format of a scheduling rule"
971
+ msgid "Date"
972
+ msgstr ""
973
+
974
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:333
975
+ msgctxt "Label for selecting days of the week in a scheduling rule"
976
+ msgid "Days of the week"
977
+ msgstr ""
978
+
979
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:349
980
+ msgctxt "Label for selecting weeks of the month in a scheduling rule"
981
+ msgid "Weeks of the month"
982
+ msgstr ""
983
+
984
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:380
985
+ msgctxt "Label to select time slot for a scheduling rule"
986
+ msgid "Time"
987
+ msgstr ""
988
+
989
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:385
990
+ msgctxt "Label to set a scheduling rule to last all day"
991
+ msgid "All day"
992
+ msgstr ""
993
+
994
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:394
995
+ msgctxt "Label for the starting time of a scheduling rule"
996
+ msgid "Start"
997
+ msgstr ""
998
+
999
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:402
1000
+ msgctxt "Label for the ending time of a scheduling rule"
1001
+ msgid "End"
1002
+ msgstr ""
1003
+
1004
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:411
1005
+ msgctxt "Prompt displayed when a scheduling rule is set without any time restrictions."
1006
+ msgid ""
1007
+ "All day long. Want to <a href=\"#\" data-format=\"time-slot\">set a time "
1008
+ "slot</a>?"
1009
+ msgstr ""
1010
+
1011
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:430 ..
1012
+ #: /lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:433
1013
+ msgid "Open and close this rule"
1014
+ msgstr ""
1015
+
1016
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:436
1017
+ msgid "Delete rule"
1018
+ msgstr ""
1019
+
1020
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:439
1021
+ msgid "Delete scheduling rule"
1022
+ msgstr ""
1023
+
1024
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:523
1025
+ msgctxt ""
1026
+ "Brief default description of a scheduling rule when no weekdays or weeks are "
1027
+ "included in the rule."
1028
+ msgid "Never"
1029
+ msgstr ""
1030
+
1031
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:524
1032
+ msgctxt ""
1033
+ "Brief default description of a scheduling rule when all the weekdays/weeks "
1034
+ "are included in the rule."
1035
+ msgid "Every day"
1036
+ msgstr ""
1037
+
1038
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:525
1039
+ msgctxt ""
1040
+ "Brief default description of a scheduling rule when some weekdays are "
1041
+ "included on only some weeks of the month. The {days} and {weeks} bits should "
1042
+ "be left alone and will be replaced by a comma-separated list of days (the "
1043
+ "first one) and weeks (the second one) in the following format: M, T, W on "
1044
+ "the first, second week of the month"
1045
+ msgid "{days} on the {weeks} week of the month"
1046
+ msgstr ""
1047
+
1048
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:526
1049
+ msgctxt ""
1050
+ "Brief description of a scheduling rule when some weeks of the month are "
1051
+ "included but all or no weekdays are selected. {weeks} should be left alone "
1052
+ "and will be replaced by a comma-separated list of weeks (the second one) in "
1053
+ "the following format: First, second week of the month"
1054
+ msgid "{weeks} week of the month"
1055
+ msgstr ""
1056
+
1057
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:527
1058
+ msgctxt "Brief default description of a scheduling rule when no times are set"
1059
+ msgid "All day"
1060
+ msgstr ""
1061
+
1062
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:528
1063
+ msgctxt ""
1064
+ "Brief default description of a scheduling rule when an end time is set but "
1065
+ "no start time. If the end time is 6pm, it will read: Ends at 6pm."
1066
+ msgid "Ends at"
1067
+ msgstr ""
1068
+
1069
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:529
1070
+ msgctxt ""
1071
+ "Brief default description of a scheduling rule when a start time is set but "
1072
+ "no end time. If the start time is 6pm, it will read: Starts at 6pm."
1073
+ msgid "Starts at"
1074
+ msgstr ""
1075
+
1076
+ #: ../lib/simple-admin-pages/classes/AdminPageSetting.Scheduler.class.php:530
1077
+ msgctxt "Default separator between times of a scheduling rule."
1078
+ msgid "&mdash;"
1079
+ msgstr ""
readme.txt CHANGED
@@ -5,7 +5,7 @@ Plugin URL: http://themeofthecrop.com
5
  Requires at Least: 3.8
6
  Tested Up To: 3.9.1
7
  Tags: restaurant, reservations, bookings, table bookings, restaurant reservation, table reservation
8
- Stable tag: 1.1.4
9
  License: GPLv2 or later
10
  Donate link: http://themeofthecrop.com
11
 
@@ -56,6 +56,13 @@ This plugin is packed with hooks so you can extend it, customize it and rebrand
56
 
57
  == Changelog ==
58
 
 
 
 
 
 
 
 
59
  = 1.1.4 (2014-07-03) =
60
  * Add a .pot file for easier translations
61
  * Fix notifications that showed MySQL date format instead of user-selected format
@@ -88,6 +95,9 @@ This plugin is packed with hooks so you can extend it, customize it and rebrand
88
 
89
  == Upgrade Notice ==
90
 
 
 
 
91
  = 1.1.4 =
92
  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.
93
 
5
  Requires at Least: 3.8
6
  Tested Up To: 3.9.1
7
  Tags: restaurant, reservations, bookings, table bookings, restaurant reservation, table reservation
8
+ Stable tag: 1.2
9
  License: GPLv2 or later
10
  Donate link: http://themeofthecrop.com
11
 
56
 
57
  == Changelog ==
58
 
59
+ = 1.2 (2014-07-17) =
60
+ * Add notification template tags for phone number and message
61
+ * Add automatic selection of date when page is loaded (option to disable this feature)
62
+ * Add option to set time interval of time picker
63
+ * Fix auto-detection of pickadate language from WordPress site language
64
+ * Fix duplicate entry in .pot file that caused PoEdit error
65
+
66
  = 1.1.4 (2014-07-03) =
67
  * Add a .pot file for easier translations
68
  * Fix notifications that showed MySQL date format instead of user-selected format
95
 
96
  == Upgrade Notice ==
97
 
98
+ = 1.2 =
99
+ 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.
100
+
101
  = 1.1.4 =
102
  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.
103
 
restaurant-reservations.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: Restaurant Reservations
4
  * Plugin URI: http://themeofthecrop.com
5
  * Description: Accept restaurant reservations and bookings online.
6
- * Version: 1.1.4
7
  * Author: Theme of the Crop
8
  * Author URI: http://themeofthecrop.com
9
  * License: GNU General Public License v2.0 or later
@@ -50,7 +50,7 @@ class rtbInit {
50
  define( 'RTB_BOOKING_POST_TYPE', 'rtb-booking' );
51
  define( 'RTB_BOOKING_POST_TYPE_SLUG', 'booking' );
52
  define( 'RTB_LOAD_FRONTEND_ASSETS', apply_filters( 'rtb-load-frontend-assets', true ) );
53
-
54
 
55
  // Initialize the plugin
56
  add_action( 'init', array( $this, 'load_textdomain' ) );
@@ -244,11 +244,11 @@ class rtbInit {
244
  wp_register_script( 'pickadate-date', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/picker.date.js', array( 'jquery' ), '', true );
245
  wp_register_script( 'pickadate-time', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/picker.time.js', array( 'jquery' ), '', true );
246
  wp_register_script( 'pickadate-legacy', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/legacy.js', array( 'jquery' ), '', true );
247
-
248
  $i8n = $this->settings->get_setting( 'i8n' );
249
  if ( !empty( $i8n ) ) {
250
  wp_register_script( 'pickadate-i8n', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/translations/' . esc_attr( $i8n ) . '.js', array( 'jquery' ), '', true );
251
-
252
  // Arabic and Hebrew are right-to-left languages
253
  if ( $i8n == 'ar' || $i8n == 'he_IL' ) {
254
  wp_register_style( 'pickadate-rtl', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/themes/rtl.css' );
3
  * Plugin Name: Restaurant Reservations
4
  * Plugin URI: http://themeofthecrop.com
5
  * Description: Accept restaurant reservations and bookings online.
6
+ * Version: 1.2
7
  * Author: Theme of the Crop
8
  * Author URI: http://themeofthecrop.com
9
  * License: GNU General Public License v2.0 or later
50
  define( 'RTB_BOOKING_POST_TYPE', 'rtb-booking' );
51
  define( 'RTB_BOOKING_POST_TYPE_SLUG', 'booking' );
52
  define( 'RTB_LOAD_FRONTEND_ASSETS', apply_filters( 'rtb-load-frontend-assets', true ) );
53
+
54
 
55
  // Initialize the plugin
56
  add_action( 'init', array( $this, 'load_textdomain' ) );
244
  wp_register_script( 'pickadate-date', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/picker.date.js', array( 'jquery' ), '', true );
245
  wp_register_script( 'pickadate-time', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/picker.time.js', array( 'jquery' ), '', true );
246
  wp_register_script( 'pickadate-legacy', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/legacy.js', array( 'jquery' ), '', true );
247
+
248
  $i8n = $this->settings->get_setting( 'i8n' );
249
  if ( !empty( $i8n ) ) {
250
  wp_register_script( 'pickadate-i8n', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/translations/' . esc_attr( $i8n ) . '.js', array( 'jquery' ), '', true );
251
+
252
  // Arabic and Hebrew are right-to-left languages
253
  if ( $i8n == 'ar' || $i8n == 'he_IL' ) {
254
  wp_register_style( 'pickadate-rtl', RTB_PLUGIN_URL . '/lib/simple-admin-pages/lib/pickadate/themes/rtl.css' );