BackendStrings.php
1 year ago
FrontendStrings.php
1 year ago
LiteBackendStrings.php
3 weeks ago
LiteFrontendStrings.php
3 weeks ago
NotificationsStrings.php
2 months ago
LiteBackendStrings.php
1882 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AmeliaBooking\Infrastructure\WP\Translations; |
| 4 | |
| 5 | /** |
| 6 | * Class LiteBackendStrings |
| 7 | * |
| 8 | * @package AmeliaBooking\Infrastructure\WP\Translations |
| 9 | * |
| 10 | * @SuppressWarnings(ExcessiveMethodLength) |
| 11 | * @SuppressWarnings(ExcessiveClassLength) |
| 12 | * @phpcs:disable |
| 13 | */ |
| 14 | class LiteBackendStrings |
| 15 | { |
| 16 | /** |
| 17 | * @var array|null |
| 18 | */ |
| 19 | protected static $liteStrings = null; |
| 20 | |
| 21 | /** |
| 22 | * Returns a single settings string by key |
| 23 | * |
| 24 | * @param string $key |
| 25 | * |
| 26 | * @return string |
| 27 | */ |
| 28 | public static function get($key) |
| 29 | { |
| 30 | if (self::$liteStrings === null) { |
| 31 | self::$liteStrings = self::getAllStrings(); |
| 32 | } |
| 33 | |
| 34 | return self::$liteStrings[$key] ?? ''; |
| 35 | } |
| 36 | |
| 37 | /** |
| 38 | * Returns the array for the settings strings |
| 39 | * |
| 40 | * @return array |
| 41 | */ |
| 42 | public static function getAllStrings() |
| 43 | { |
| 44 | return [ |
| 45 | 'admin' => __('Admin', 'ameliabooking'), |
| 46 | 'add_date' => __('Add Date', 'ameliabooking'), |
| 47 | 'add_period' => __('Add period', 'ameliabooking'), |
| 48 | 'all_services' => __('All services', 'ameliabooking'), |
| 49 | 'amount_colon' => __('Amount', 'ameliabooking'), |
| 50 | 'appointment' => __('Appointment', 'ameliabooking'), |
| 51 | 'appointments' => __('Appointments', 'ameliabooking'), |
| 52 | 'approved' => __('Approved', 'ameliabooking'), |
| 53 | 'attendee' => __('Attendee', 'ameliabooking'), |
| 54 | 'birthday' => __('Birthday', 'ameliabooking'), |
| 55 | 'booked' => __('Booked', 'ameliabooking'), |
| 56 | 'booking' => __('Booking', 'ameliabooking'), |
| 57 | 'booking_canceled' => __('Your booking has been canceled.', 'ameliabooking'), |
| 58 | 'bookings' => __('Bookings', 'ameliabooking'), |
| 59 | 'by_employees' => __('By employees', 'ameliabooking'), |
| 60 | 'cancel' => __('Cancel', 'ameliabooking'), |
| 61 | 'canceled' => __('Canceled', 'ameliabooking'), |
| 62 | 'content_mode_tooltip' => __('HTML formatting may be overridden by plain text formatting upon switching between modes.', 'ameliabooking'), |
| 63 | 'close' => __('Close', 'ameliabooking'), |
| 64 | 'closed' => __('Closed', 'ameliabooking'), |
| 65 | 'created_on' => __('Created on', 'ameliabooking'), |
| 66 | 'csv_delimiter' => __('Select delimiter', 'ameliabooking'), |
| 67 | 'csv_delimiter_comma' => __('Comma (,)', 'ameliabooking'), |
| 68 | 'code' => __('Code', 'ameliabooking'), |
| 69 | 'continue' => __('Continue', 'ameliabooking'), |
| 70 | 'coupon_code' => __('Coupon code', 'ameliabooking'), |
| 71 | 'customer' => __('Customer', 'ameliabooking'), |
| 72 | 'minutes' => __('Minutes', 'ameliabooking'), |
| 73 | 'hour' => __('Hour', 'ameliabooking'), |
| 74 | 'hours' => __('Hours', 'ameliabooking'), |
| 75 | 'day' => __('Day', 'ameliabooking'), |
| 76 | 'days' => __('Days', 'ameliabooking'), |
| 77 | 'week' => __('Week', 'ameliabooking'), |
| 78 | 'weeks' => __('Weeks', 'ameliabooking'), |
| 79 | 'month' => __('Month', 'ameliabooking'), |
| 80 | 'months' => __('Months', 'ameliabooking'), |
| 81 | 'year' => __('Year', 'ameliabooking'), |
| 82 | 'date' => __('Date', 'ameliabooking'), |
| 83 | 'delete' => __('Delete', 'ameliabooking'), |
| 84 | 'delivered' => __('Delivered', 'ameliabooking'), |
| 85 | 'description' => __('Description', 'ameliabooking'), |
| 86 | 'details' => __('Details', 'ameliabooking'), |
| 87 | 'disabled' => __('Disabled', 'ameliabooking'), |
| 88 | 'duration' => __('Duration', 'ameliabooking'), |
| 89 | 'duplicate' => __('Duplicate', 'ameliabooking'), |
| 90 | 'edit' => __('Edit', 'ameliabooking'), |
| 91 | 'employee' => __('Employee', 'ameliabooking'), |
| 92 | 'employees' => __('Employees', 'ameliabooking'), |
| 93 | 'employee_badge' => __('Employee Badge', 'ameliabooking'), |
| 94 | 'employee_badges' => __('Employee badges', 'ameliabooking'), |
| 95 | 'company_days_off' => __('Company days off', 'ameliabooking'), |
| 96 | 'employee_days_off' => __('Employee days off', 'ameliabooking'), |
| 97 | 'enter_email_warning' => __('Please enter an email.', 'ameliabooking'), |
| 98 | 'enter_valid_email_warning' => __('Please enter a valid email address', 'ameliabooking'), |
| 99 | 'error' => __('Error', 'ameliabooking'), |
| 100 | 'error_occurred' => __('Error occurred', 'ameliabooking'), |
| 101 | 'event' => __('Event', 'ameliabooking'), |
| 102 | 'events' => __('Events', 'ameliabooking'), |
| 103 | 'export' => __('Export', 'ameliabooking'), |
| 104 | 'extra' => __('Extra', 'ameliabooking'), |
| 105 | 'extras' => __('Extras', 'ameliabooking'), |
| 106 | 'extras_total_price' => __('Extras total price', 'ameliabooking'), |
| 107 | 'google_calendar' => __('Google Calendar', 'ameliabooking'), |
| 108 | 'google_meet_join' => __('Join with Google Meet', 'ameliabooking'), |
| 109 | 'outlook_calendar' => __('Outlook Calendar', 'ameliabooking'), |
| 110 | 'microsoft_teams_join' => __('Join with Microsoft Teams', 'ameliabooking'), |
| 111 | 'apple_calendar' => __('Apple Calendar', 'ameliabooking'), |
| 112 | 'h' => __('h', 'ameliabooking'), |
| 113 | 'id' => __('ID', 'ameliabooking'), |
| 114 | 'lesson_space' => __('Lesson Space', 'ameliabooking'), |
| 115 | 'licence_description' => __('Interested in unlocking this feature?', 'ameliabooking'), |
| 116 | 'licence_start_description' => __('Available from Starter license', 'ameliabooking'), |
| 117 | 'licence_basic_description' => __('Available from Standard license', 'ameliabooking'), |
| 118 | 'licence_pro_description' => __('Available from Pro license', 'ameliabooking'), |
| 119 | 'licence_dev_description' => __('Available in Elite licence', 'ameliabooking'), |
| 120 | 'licence_button_text' => __('Upgrade', 'ameliabooking'), |
| 121 | 'delete_amelia_short' => __('Delete Amelia content', 'ameliabooking'), |
| 122 | 'delete_amelia' => __('Delete tables, roles, files and settings once the Amelia plugin is deleted.', 'ameliabooking'), |
| 123 | 'delete_amelia_tooltip' => __('Enable this option if you want to delete plugin tables, roles, files and settings<br>when deleting the plugin from plugins page', 'ameliabooking'), |
| 124 | 'appointment_space_name' => __('Appointment space name', 'ameliabooking'), |
| 125 | 'event_space_name' => __('Event space name', 'ameliabooking'), |
| 126 | 'lesson_space_join' => __('Join Space', 'ameliabooking'), |
| 127 | 'lesson_space_pending' => __('Create spaces for pending appointments', 'ameliabooking'), |
| 128 | 'limit_extra_people' => __('Limit additional people', 'ameliabooking'), |
| 129 | 'limit_extra_people_tooltip' => __('Set a maximum number of people a customer can add when booking.', 'ameliabooking'), |
| 130 | 'location' => __('Location', 'ameliabooking'), |
| 131 | 'locations' => __('Locations', 'ameliabooking'), |
| 132 | 'min' => __('min', 'ameliabooking'), |
| 133 | 'measurement_id' => __('Measurement ID', 'ameliabooking'), |
| 134 | 'name' => __('Name', 'ameliabooking'), |
| 135 | 'enter_name_warning' => __('Please enter a name.', 'ameliabooking'), |
| 136 | 'name_ascending' => __('Name Asc', 'ameliabooking'), |
| 137 | 'name_descending' => __('Name Desc', 'ameliabooking'), |
| 138 | 'need_help' => __('Need help?', 'ameliabooking'), |
| 139 | 'no' => __('No', 'ameliabooking'), |
| 140 | 'no-show' => __('No-show', 'ameliabooking'), |
| 141 | 'note' => __('Note', 'ameliabooking'), |
| 142 | 'note_internal' => __('Note (internal)', 'ameliabooking'), |
| 143 | 'notifications' => __('Notifications', 'ameliabooking'), |
| 144 | 'on_site' => __('On-site', 'ameliabooking'), |
| 145 | 'opened' => __('Opened', 'ameliabooking'), |
| 146 | 'open' => __('Open', 'ameliabooking'), |
| 147 | 'packages' => __('Packages', 'ameliabooking'), |
| 148 | 'paid' => __('Paid', 'ameliabooking'), |
| 149 | 'partially_paid' => __('Partially paid', 'ameliabooking'), |
| 150 | 'payment' => __('Payment', 'ameliabooking'), |
| 151 | 'payment_amount' => __('Payment amount', 'ameliabooking'), |
| 152 | 'payment_id_colon' => __('Payment ID', 'ameliabooking'), |
| 153 | 'payment_method' => __('Payment method', 'ameliabooking'), |
| 154 | 'payment_status' => __('Payment status', 'ameliabooking'), |
| 155 | 'payment_tooltip' => __('If all payment methods are disabled on the service/event, the default payment method will be used.', 'ameliabooking'), |
| 156 | 'pdf' => __('PDF', 'ameliabooking'), |
| 157 | 'pending' => __('Pending', 'ameliabooking'), |
| 158 | 'phone' => __('Phone', 'ameliabooking'), |
| 159 | 'refunded' => __('Refunded', 'ameliabooking'), |
| 160 | 'rejected' => __('Rejected', 'ameliabooking'), |
| 161 | 'resources' => __('Resources', 'ameliabooking'), |
| 162 | 'save' => __('Save', 'ameliabooking'), |
| 163 | 'select_date_warning' => __('Please select a date.', 'ameliabooking'), |
| 164 | 'select_time_warning' => __('Please select a time.', 'ameliabooking'), |
| 165 | 'service' => __('Service', 'ameliabooking'), |
| 166 | 'services' => __('Services', 'ameliabooking'), |
| 167 | 'settings_saved' => __('Settings have been saved.', 'ameliabooking'), |
| 168 | 'social_login' => __('Social login', 'ameliabooking'), |
| 169 | 'status' => __('Status', 'ameliabooking'), |
| 170 | 'status_colon' => __('Status', 'ameliabooking'), |
| 171 | 'success' => __('Success', 'ameliabooking'), |
| 172 | 'text_mode' => __('Text', 'ameliabooking'), |
| 173 | 'html_mode' => __('HTML', 'ameliabooking'), |
| 174 | 'tag' => __('Tag', 'ameliabooking'), |
| 175 | 'to' => __('To', 'ameliabooking'), |
| 176 | 'today' => __('Today', 'ameliabooking'), |
| 177 | 'tomorrow' => __('Tomorrow', 'ameliabooking'), |
| 178 | 'total' => __('Total', 'ameliabooking'), |
| 179 | 'translate' => __('Translate', 'ameliabooking'), |
| 180 | 'waiting' => __('Waiting', 'ameliabooking'), |
| 181 | 'weekday_friday' => __('Friday', 'ameliabooking'), |
| 182 | 'weekday_monday' => __('Monday', 'ameliabooking'), |
| 183 | 'weekday_saturday' => __('Saturday', 'ameliabooking'), |
| 184 | 'weekday_sunday' => __('Sunday', 'ameliabooking'), |
| 185 | 'weekday_thursday' => __('Thursday', 'ameliabooking'), |
| 186 | 'weekday_tuesday' => __('Tuesday', 'ameliabooking'), |
| 187 | 'weekday_wednesday' => __('Wednesday', 'ameliabooking'), |
| 188 | 'yes' => __('Yes', 'ameliabooking'), |
| 189 | 'zoom' => __('Zoom', 'ameliabooking'), |
| 190 | 'zoom_click_to_join' => __('Join Zoom', 'ameliabooking'), |
| 191 | 'zoom_click_to_start' => __('Start Zoom', 'ameliabooking'), |
| 192 | 'view_grid' => __('Grid view', 'ameliabooking'), |
| 193 | 'view_list' => __('List view', 'ameliabooking'), |
| 194 | 'whats_new' => __('What\'s New', 'ameliabooking'), |
| 195 | 'layout_select_label' => __('Choose layout version', 'ameliabooking'), |
| 196 | 'layout_dropdown' => __('Dropdown layout', 'ameliabooking'), |
| 197 | 'layout_list' => __('List layout', 'ameliabooking'), |
| 198 | 'layout_description' => __('Choosing layout of first step in step by step form', 'ameliabooking'), |
| 199 | 'xml' => __('XML', 'ameliabooking'), |
| 200 | 'recurring' => __('Recurring', 'ameliabooking'), |
| 201 | 'payment_warning' => __('You have disabled all available payment methods. The default payment method from the general settings will be used instead.', 'ameliabooking'), |
| 202 | 'type' => __('Type', 'ameliabooking'), |
| 203 | 'all_events' => __('All events', 'ameliabooking'), |
| 204 | 'add' => __('Add', 'ameliabooking'), |
| 205 | 'add_appointment' => __('Add appointment', 'ameliabooking'), |
| 206 | 'add_booking' => __('Add booking', 'ameliabooking'), |
| 207 | 'add_customer' => __('Add customer', 'ameliabooking'), |
| 208 | 'add_event' => __('Add event', 'ameliabooking'), |
| 209 | 'integrations' => __('Integrations', 'ameliabooking'), |
| 210 | 'import' => __('Import', 'ameliabooking'), |
| 211 | 'all' => __('All', 'ameliabooking'), |
| 212 | 'from' => __('From', 'ameliabooking'), |
| 213 | 'tax' => __('Tax', 'ameliabooking'), |
| 214 | 'event_tickets' => __('Tickets', 'ameliabooking'), |
| 215 | '1year' => __('1 year', 'ameliabooking'), |
| 216 | 'activate' => __('Activate', 'ameliabooking'), |
| 217 | 'activation' => __('Activation', 'ameliabooking'), |
| 218 | 'address' => __('Address', 'ameliabooking'), |
| 219 | 'after' => __('After', 'ameliabooking'), |
| 220 | 'after_with_space' => __('After with space', 'ameliabooking'), |
| 221 | 'allow_booking_if_pending_tooltip' => __('If enabled, customers can book with Pending status even after maximum capacity is reached.', 'ameliabooking'), |
| 222 | 'allow_booking_if_not_min_tooltip' => __('If disabled, booking must meet the minimum capacity, and the time slot closes after the first booking.', 'ameliabooking'), |
| 223 | 'allow_booking_if_not_min' => __('Keep slot available after first booking', 'ameliabooking'), |
| 224 | 'allow_admin_book_at_any_time' => __('Allow admin to book appointment at any time', 'ameliabooking'), |
| 225 | 'allow_admin_book_over_app' => __('Allow admin to book over an existing appointment', 'ameliabooking'), |
| 226 | 'allow_admin_book_at_any_time_tooltip' => __('If you enable this option, Admin will be able to book appointment at any time (working hours, special days and days off for all employees will be ignored).', 'ameliabooking'), |
| 227 | 'allow_admin_book_over_app_tooltip' => __('If you enable this option, Admin will be able to book appointment over or during another appointment.', 'ameliabooking'), |
| 228 | 'allow_configure_days_off' => __('Allow employees to manage their days off', 'ameliabooking'), |
| 229 | 'allow_configure_services' => __('Allow employees to manage their services', 'ameliabooking'), |
| 230 | 'allow_configure_schedule' => __('Allow employees to manage their schedule', 'ameliabooking'), |
| 231 | 'allow_configure_special_days' => __('Allow employees to manage their special days', 'ameliabooking'), |
| 232 | 'allow_booking_if_pending' => __('Allow booking above maximum capacity', 'ameliabooking'), |
| 233 | 'allow_customer_reschedule' => __('Allow customers to reschedule their own appointments', 'ameliabooking'), |
| 234 | 'allow_customer_reschedule_tooltip' => __('Enable this option if you want to allow your customers to reschedule their own appointments.', 'ameliabooking'), |
| 235 | 'allow_customer_delete_profile' => __('Allow customers to delete their profile', 'ameliabooking'), |
| 236 | 'allow_customer_cancel_packages' => __('Allow customers to cancel packages', 'ameliabooking'), |
| 237 | 'allow_write_appointments' => __('Allow employees to manage their appointments', 'ameliabooking'), |
| 238 | 'allow_write_events' => __('Allow employees to manage their events', 'ameliabooking'), |
| 239 | 'allow_write_customers' => __('Allow employees to manage customers', 'ameliabooking'), |
| 240 | 'allow_read_all_customers' => __('Allow employees to view all customers', 'ameliabooking'), |
| 241 | 'api_url' => __('API base URL: ', 'ameliabooking'), |
| 242 | 'maximum_capacity' => __('Maximum capacity', 'ameliabooking'), |
| 243 | 'waiting_list' => __('Waiting list', 'ameliabooking'), |
| 244 | 'events_waiting_list' => __('Events waiting list', 'ameliabooking'), |
| 245 | 'appointments_waiting_list' => __('Appointments waiting list', 'ameliabooking'), |
| 246 | 'show_waiting_list_booking_full' => __('Show waiting list after booking is full', 'ameliabooking'), |
| 247 | 'approve_appointment_success_url' => __('Redirect URL for successfully approved booking', 'ameliabooking'), |
| 248 | 'approve_appointment_error_url' => __('Redirect URL for unsuccessfully approved booking', 'ameliabooking'), |
| 249 | 'automatically_create_customer' => __('Automatically create Amelia Customer user', 'ameliabooking'), |
| 250 | 'automatically_create_customer_tooltip' => __('If you enable this option every time a new customer schedules the appointment he will get Amelia Customer user role and automatic email with login details.', 'ameliabooking'), |
| 251 | 'back_links' => __('Support Amelia by displaying a backlink', 'ameliabooking'), |
| 252 | 'back_links_tooltip' => __('Allow the short description below the booking form to support Amelia Booking Plugin and spread the word about it.', 'ameliabooking'), |
| 253 | 'improve_amelia' => __('Improve Amelia', 'ameliabooking'), |
| 254 | 'improve_plugin' => __('Improve plugin', 'ameliabooking'), |
| 255 | 'enable_data_usage' => __('Enable data usage', 'ameliabooking'), |
| 256 | 'usage_tracking_description' => __('Help us improve Amelia by sharing anonymous data about your plugin usage. No personal data is collected.', 'ameliabooking'), |
| 257 | 'bcc_email' => __('Send all notifications to additional addresses', 'ameliabooking'), |
| 258 | 'bcc_email_tooltip' => __('Here you can enter additional email addresses where all notifications will be sent. To add an address click Enter.', 'ameliabooking'), |
| 259 | 'bcc_sms' => __('Send all SMS messages to additional numbers', 'ameliabooking'), |
| 260 | 'bcc_sms_tooltip' => __('Here you can enter additional phone numbers where all SMS messages will be sent. To add a number click Enter.', 'ameliabooking'), |
| 261 | 'before' => __('Before', 'ameliabooking'), |
| 262 | 'before_with_space' => __('Before with space', 'ameliabooking'), |
| 263 | 'bringing_anyone_logic' => __('People counting logic', 'ameliabooking'), |
| 264 | 'bringing_anyone_logic_additional' => __('Customer plus additional people', 'ameliabooking'), |
| 265 | 'bringing_anyone_logic_additional_tt' => __('Counts one primary customer plus any additional people they add.', 'ameliabooking'), |
| 266 | 'bringing_anyone_logic_total' => __('Total people', 'ameliabooking'), |
| 267 | 'bringing_anyone_logic_total_tt' => __('Counts the total number of people entered, including the primary customer.', 'ameliabooking'), |
| 268 | 'buffer_time_in_slot' => __('Include service buffer time in time slots', 'ameliabooking'), |
| 269 | 'buffer_time_in_slot_tooltip' => __('Include buffer time in slot calculation. When disabled, slots are based only on service duration.', 'ameliabooking'), |
| 270 | 'coupons_case_insensitive' => __('Set coupons to be case insensitive', 'ameliabooking'), |
| 271 | 'calendar' => __('Calendar', 'ameliabooking'), // duplicate value 'show_event_view_calendar' |
| 272 | 'cancel_error_url' => __('Unsuccessful cancellation redirect URL', 'ameliabooking'), |
| 273 | 'cancel_error_url_tooltip' => __('URL on which will user be redirected if appointment can\'t be canceled because of \'Minimum time required before canceling\' value', 'ameliabooking'), |
| 274 | 'cancel_success_url' => __('Successful cancellation redirect URL', 'ameliabooking'), |
| 275 | 'comma_dot' => __('Comma-dot', 'ameliabooking'), |
| 276 | 'company' => __('Company', 'ameliabooking'), |
| 277 | 'country' => __('Country', 'ameliabooking'), |
| 278 | 'coupons' => __('Coupons', 'ameliabooking'), |
| 279 | 'discard' => __('Discard', 'ameliabooking'), |
| 280 | 'facebook_pixel' => __('Meta Pixel', 'ameliabooking'), |
| 281 | 'google_analytics' => __('Google Analytics', 'ameliabooking'), |
| 282 | 'generate' => __('Generate', 'ameliabooking'), |
| 283 | 'employee_selection_logic' => __('Employee selection logic', 'ameliabooking'), |
| 284 | 'employee_selection_logic_random' => __('Random', 'ameliabooking'), |
| 285 | 'currency' => __('Currency', 'ameliabooking'), |
| 286 | 'customers_as_attendees' => __('Add event attendees', 'ameliabooking'), |
| 287 | 'customer_cabinet' => __('Customer Panel Page URL', 'ameliabooking'), |
| 288 | 'employee_cabinet' => __('Employee panel page URL', 'ameliabooking'), |
| 289 | 'default_appointment_status' => __('Default appointment status', 'ameliabooking'), |
| 290 | 'default_appointment_status_tooltip' => __('All appointments will be scheduled with the status selected here.', 'ameliabooking'), |
| 291 | 'default_items_per_page' => __('Default number of items per page on the front end', 'ameliabooking'), |
| 292 | 'default_items_per_page_backend' => __('Default number of items per page on the back end', 'ameliabooking'), |
| 293 | 'default_page_on_backend' => __('Default back end page', 'ameliabooking'), |
| 294 | 'default_payment_method' => __('Default payment method', 'ameliabooking'), |
| 295 | 'default_phone_country_code' => __('Default phone country code', 'ameliabooking'), |
| 296 | 'default_time_slot_step' => __('Default time slot step', 'ameliabooking'), |
| 297 | 'default_time_slot_step_tooltip' => __('The time slot step defined here will apply to all time slots across the plugin.', 'ameliabooking'), |
| 298 | 'dot_comma' => __('Dot-comma', 'ameliabooking'), |
| 299 | 'see_unavailable_features' => __('Hide locked features', 'ameliabooking'), |
| 300 | 'envato_api_activate' => __('Activate with Envato', 'ameliabooking'), |
| 301 | 'event_title_and_description' => __('Event title and description', 'ameliabooking'), |
| 302 | 'mailchimp' => __('Mailchimp', 'ameliabooking'), |
| 303 | 'meeting_title' => __('Meeting title', 'ameliabooking'), |
| 304 | 'meeting_agenda' => __('Meeting agenda', 'ameliabooking'), |
| 305 | 'facebook_app_id' => __('Facebook app ID', 'ameliabooking'), |
| 306 | 'facebook_app_secret' => __('Facebook app secret', 'ameliabooking'), |
| 307 | 'general' => __('General', 'ameliabooking'), |
| 308 | 'gMap_api_key' => __('Google Maps API key', 'ameliabooking'), |
| 309 | 'gMap_api_key_tooltip' => __('Add Google Maps API Key to show Google static map on "Locations" page.', 'ameliabooking'), |
| 310 | 'google_client_id' => __('Client ID', 'ameliabooking'), |
| 311 | 'google_client_secret' => __('Client secret', 'ameliabooking'), |
| 312 | 'outlook_client_id' => __('Application (client) ID', 'ameliabooking'), |
| 313 | 'outlook_client_secret' => __('Client secret', 'ameliabooking'), |
| 314 | 'google_redirect_uri' => __('Redirect URI', 'ameliabooking'), |
| 315 | 'outlook_redirect_uri' => __('Redirect URI', 'ameliabooking'), |
| 316 | 'apple_client_id' => __('iCloud Email Address', 'ameliabooking'), |
| 317 | 'apple_redirect_uri' => __('Redirect URI', 'ameliabooking'), |
| 318 | 'zoom_account_id' => __('Account ID', 'ameliabooking'), |
| 319 | 'zoom_client_id' => __('Client ID', 'ameliabooking'), |
| 320 | 'zoom_client_secret' => __('Client secret', 'ameliabooking'), |
| 321 | 'lesson_space_api_key' => __('Lesson Space API key', 'ameliabooking'), |
| 322 | 'limit_app_per_customer' => __('Limit appointments per customer', 'ameliabooking'), |
| 323 | 'limit_package_per_customer' => __('Limit package purchases per customer', 'ameliabooking'), |
| 324 | 'limit_events_per_customer' => __('Limit events per customer', 'ameliabooking'), |
| 325 | 'limit_app_per_customer_tt' => __('This limit is based on the customer\'s email address.', 'ameliabooking'), |
| 326 | 'log_in' => __('Log In', 'ameliabooking'), |
| 327 | 'log_out' => __('Log out', 'ameliabooking'), |
| 328 | 'invoice_format' => __('Invoice Format', 'ameliabooking'), |
| 329 | 'h1' => __('1h', 'ameliabooking'), |
| 330 | 'h10' => __('10h', 'ameliabooking'), |
| 331 | 'h11' => __('11h', 'ameliabooking'), |
| 332 | 'h12' => __('12h', 'ameliabooking'), |
| 333 | 'h1min30' => __('1h 30min', 'ameliabooking'), |
| 334 | 'h2' => __('2h', 'ameliabooking'), |
| 335 | 'h3' => __('3h', 'ameliabooking'), |
| 336 | 'h4' => __('4h', 'ameliabooking'), |
| 337 | 'h6' => __('6h', 'ameliabooking'), |
| 338 | 'h8' => __('8h', 'ameliabooking'), |
| 339 | 'h9' => __('9h', 'ameliabooking'), |
| 340 | 'identify_country_code' => __('Identify country code by user\'s IP address', 'ameliabooking'), |
| 341 | 'insert_pending_appointments' => __('Insert pending appointments', 'ameliabooking'), |
| 342 | 'pending_appointments_meetings' => __('Create meetings for pending appointments', 'ameliabooking'), |
| 343 | 'inspect_customer_info' => __('Check customer\'s name for existing email/phone when booking', 'ameliabooking'), |
| 344 | 'inspect_customer_info_tooltip' => __('Enable this option to ensure that customers using an existing email or phone number maintain consistent first and last names.', 'ameliabooking'), |
| 345 | 'mail_service' => __('Mail service', 'ameliabooking'), |
| 346 | 'mailgun' => __('Mailgun', 'ameliabooking'), |
| 347 | 'manage_languages_tooltip' => __('Here you can define languages that you want to have in the plugin for translating dynamic strings (names, descriptions, notifications).', 'ameliabooking'), |
| 348 | 'min1' => __('1min', 'ameliabooking'), |
| 349 | 'min10' => __('10min', 'ameliabooking'), |
| 350 | 'min12' => __('12min', 'ameliabooking'), |
| 351 | 'min15' => __('15min', 'ameliabooking'), |
| 352 | 'min2' => __('2min', 'ameliabooking'), |
| 353 | 'min20' => __('20min', 'ameliabooking'), |
| 354 | 'min30' => __('30min', 'ameliabooking'), |
| 355 | 'min45' => __('45min', 'ameliabooking'), |
| 356 | 'min5' => __('5min', 'ameliabooking'), |
| 357 | 'minimum_time_before_booking' => __('Minimum time required before booking', 'ameliabooking'), |
| 358 | 'minimum_time_before_booking_tooltip' => __('Define the time before the appointment during which customers can\'t book.', 'ameliabooking'), |
| 359 | 'minimum_time_before_canceling' => __('Minimum time required before canceling', 'ameliabooking'), |
| 360 | 'minimum_time_before_canceling_tooltip' => __('Define the time before the appointment during which customers can\'t cancel.', 'ameliabooking'), |
| 361 | 'minimum_time_before_rescheduling' => __('Minimum time required before rescheduling', 'ameliabooking'), |
| 362 | 'minimum_time_before_rescheduling_tooltip' => __('Define the time before the appointment during which customers can\'t reschedule.', 'ameliabooking'), |
| 363 | 'number_of_events_returned' => __('Maximum number of events returned', 'ameliabooking'), |
| 364 | 'or_enter_details_below' => __('Or enter details below', 'ameliabooking'), |
| 365 | 'outlook_mail_api' => __('Outlook Mailer', 'ameliabooking'), |
| 366 | 'payment_links_enable' => __('Pay with payment link', 'ameliabooking'), |
| 367 | 'payment_links_enable_tooltip' => __('If enabled, customers can complete their payment using the link in their email notifications or through the customer panel.', 'ameliabooking'), |
| 368 | 'payments' => __('Payments', 'ameliabooking'), |
| 369 | 'period_available_for_booking' => __('Period available for booking in advance', 'ameliabooking'), |
| 370 | 'period_available_for_booking_tooltip' => __('Define how far into the future customers can book appointments.', 'ameliabooking'), |
| 371 | 'php_mail' => __('PHP Mail', 'ameliabooking'), |
| 372 | 'price_number_of_decimals' => __('Price number of decimals', 'ameliabooking'), |
| 373 | 'price_separator' => __('Price separator', 'ameliabooking'), |
| 374 | 'price_symbol_position' => __('Price symbol position', 'ameliabooking'), |
| 375 | 'purchase_code' => __('Purchase code', 'ameliabooking'), |
| 376 | 'redirect_urls' => __('Redirect URLs', 'ameliabooking'), |
| 377 | 'redirect_url_after_appointment' => __('Redirect URL after booking', 'ameliabooking'), |
| 378 | 'redirect_url_after_appointment_tooltip' => __('Customers will be redirected to this URL after scheduling an appointment.', 'ameliabooking'), |
| 379 | 'redirect_url_after_event_tooltip' => __('Customers will be redirected to this URL after booking an event.', 'ameliabooking'), |
| 380 | 'remove_google_busy_slots' => __('Remove Google Calendar busy slots', 'ameliabooking'), |
| 381 | 'remove_outlook_busy_slots' => __('Remove Outlook Calendar busy slots', 'ameliabooking'), |
| 382 | 'remove_apple_busy_slots' => __('Remove Apple Calendar event slots', 'ameliabooking'), |
| 383 | 'reject_appointment_success_url' => __('Redirect URL for successfully rejected booking', 'ameliabooking'), |
| 384 | 'reject_appointment_error_url' => __('Redirect URL for unsuccessfully rejected booking', 'ameliabooking'), |
| 385 | 'reply_to' => __('Reply-to email', 'ameliabooking'), |
| 386 | 'require_cabinet_password' => __('Require password for login', 'ameliabooking'), |
| 387 | 'send_event_invitation_email' => __('Send event invitation email', 'ameliabooking'), |
| 388 | 'send_invoice_by_default' => __('Send invoice to customer by default', 'ameliabooking'), |
| 389 | 'send_invoice_by_default_description' => __('Enable this option to make sure that the invoice will be sent to the customer after booking.', 'ameliabooking'), |
| 390 | 'send_ics_attachment_approved' => __('Send ICS file for approved bookings', 'ameliabooking'), |
| 391 | 'send_ics_attachment_pending' => __('Send ICS file for pending bookings', 'ameliabooking'), |
| 392 | 'send_ics_attachment_approved_tooltip' => __('Enable this option if you want to send ics file in email after approved bookings.', 'ameliabooking'), |
| 393 | 'send_ics_attachment_pending_tooltip' => __('Enable this option if you want to send ics file in email after pending bookings.', 'ameliabooking'), |
| 394 | 'send_sms_balance_low_email' => __('Remind me when my SMS balance is low', 'ameliabooking'), |
| 395 | 'send_sms_balance_low_email_tooltip' => __('Enable this option to receive a reminder email when your SMS balance reaches set minimum', 'ameliabooking'), |
| 396 | 'send_sms_balance_low_minimum' => __('Credit minimum to send reminder', 'ameliabooking'), |
| 397 | 'send_sms_balance_low_to_email' => __('Send to e-mail', 'ameliabooking'), |
| 398 | 'sender_email' => __('Sender email', 'ameliabooking'), |
| 399 | 'sender_email_warning' => __('Please enter a sender email.', 'ameliabooking'), |
| 400 | 'sender_name' => __('Sender name', 'ameliabooking'), |
| 401 | 'sender_name_warning' => __('Please enter a sender name.', 'ameliabooking'), |
| 402 | 'service_duration_as_slot' => __('Use service duration for booking a time slot', 'ameliabooking'), |
| 403 | 'service_duration_as_slot_tooltip' => __('Enable this option if you want to make time slot step the same as service duration in the booking process', 'ameliabooking'), |
| 404 | 'set_ics_description' => __('Set ICS file description', 'ameliabooking'), |
| 405 | 'set_metaData_and_description' => __('Set metadata and description', 'ameliabooking'), |
| 406 | 'settings' => __('Settings', 'ameliabooking'), |
| 407 | 'show_attendees' => __('Allow customers to see other attendees', 'ameliabooking'), |
| 408 | 'show_client_time_zone' => __('Show booking slots in client\'s time zone', 'ameliabooking'), |
| 409 | 'show_client_time_zone_tooltip' => __('Enable to display booking slots based on the client\'s time zone.', 'ameliabooking'), |
| 410 | 'show_add_to_calendar' => __('Show Add To Calendar option to customers', 'ameliabooking'), |
| 411 | 'show_add_to_calendar_tooltip' => __('Suggest customers to add an appointment to their calendar when booking is finalized.', 'ameliabooking'), |
| 412 | 'smtp' => __('SMTP', 'ameliabooking'), |
| 413 | 'space_comma' => __('Space-comma', 'ameliabooking'), |
| 414 | 'space_dot' => __('Space-dot', 'ameliabooking'), |
| 415 | 'stash_entities' => __('Preload entities when page loads', 'ameliabooking'), |
| 416 | 'stash_entities_tooltip' => __('When enabled, all entities (services, employees, locations, packages, and tags) load as soon as the page opens, instead of being loaded dynamically via AJAX.', 'ameliabooking'), |
| 417 | 'square' => __('Square', 'ameliabooking'), |
| 418 | 'square_disconnected' => __('Square account successfully disconnected', 'ameliabooking'), |
| 419 | 'square_currency_error' => __('The currency in Amelia does not match the currency of your chosen Square location', 'ameliabooking'), |
| 420 | 'square_default_location' => __('Default Square location', 'ameliabooking'), |
| 421 | 'square_login_error' => __('Please log in to Square', 'ameliabooking'), |
| 422 | 'square_location_error' => __('Select your Square Location', 'ameliabooking'), |
| 423 | 'square_location_info' => __('Locations must be active and have card processing enabled', 'ameliabooking'), |
| 424 | 'update_for_all' => __('Update for All', 'ameliabooking'), |
| 425 | 'custom_fields_backend_validation' => __('Validate required custom fields in the backend', 'ameliabooking'), |
| 426 | 'custom_fields_upload_path' => __('Attachment upload path', 'ameliabooking'), |
| 427 | 'custom_fields_upload_path_tooltip' => __('If left empty, attachments will be uploaded to the default WordPress uploads folder.', 'ameliabooking'), |
| 428 | 'vat_number' => __('VAT number', 'ameliabooking'), |
| 429 | 'website' => __('Website', 'ameliabooking'), |
| 430 | 'wp_mail' => __('WP Mail', 'ameliabooking'), |
| 431 | 'custom_currency_symbol' => __('Custom currency symbol', 'ameliabooking'), |
| 432 | 'your_api_key' => __('Your API key', 'ameliabooking'), |
| 433 | 'admin_time_slot_service_duration' => __('Booking time slots will depend on the service duration', 'ameliabooking'), |
| 434 | 'admin_time_slot_service_duration_tt' => __('When this option is deactivated, the booking will be<br/>determined based on the Default Time Slot Step', 'ameliabooking'), |
| 435 | 'cart' => __('Cart', 'ameliabooking'), |
| 436 | 'wc_name' => __('WooCommerce', 'ameliabooking'), |
| 437 | 'payPal' => __('PayPal', 'ameliabooking'), |
| 438 | 'stripe' => __('Stripe', 'ameliabooking'), |
| 439 | 'razorpay' => __('Razorpay', 'ameliabooking'), |
| 440 | 'barion' => __('Barion', 'ameliabooking'), |
| 441 | 'amelia_sms' => __('Amelia SMS', 'ameliabooking'), |
| 442 | 'balance_colon' => __('Balance', 'ameliabooking'), |
| 443 | 'balance_recharged' => __('Your balance has been recharged.', 'ameliabooking'), |
| 444 | 'carrier' => __('Carrier', 'ameliabooking'), |
| 445 | 'change_password' => __('Change password', 'ameliabooking'), |
| 446 | 'cost_colon' => __('Cost', 'ameliabooking'), |
| 447 | 'current_password_colon' => __('Current password', 'ameliabooking'), |
| 448 | 'current_password_required' => __('Please enter current password', 'ameliabooking'), |
| 449 | 'customer_appointment_approved' => __('Approved', 'ameliabooking'), |
| 450 | 'customer_appointment_canceled' => __('Canceled', 'ameliabooking'), |
| 451 | 'customer_appointment_follow_up' => __('Follow up', 'ameliabooking'), |
| 452 | 'customer_appointment_next_day_reminder' => __('Next day reminder', 'ameliabooking'), |
| 453 | 'customer_appointment_pending' => __('Pending', 'ameliabooking'), |
| 454 | 'customer_appointment_rejected' => __('Rejected', 'ameliabooking'), |
| 455 | 'customer_appointment_rescheduled' => __('Rescheduled', 'ameliabooking'), |
| 456 | 'customer_account_recovery' => __('Panel access', 'ameliabooking'), |
| 457 | 'customer_appointment_updated' => __('Details changed', 'ameliabooking'), |
| 458 | 'customer_birthday_greeting' => __('Birthday greeting', 'ameliabooking'), |
| 459 | 'customer_event_approved' => __('Booked', 'ameliabooking'), |
| 460 | 'customer_event_canceled' => __('Canceled by attendee', 'ameliabooking'), |
| 461 | 'customer_event_follow_up' => __('Follow up', 'ameliabooking'), |
| 462 | 'customer_event_next_day_reminder' => __('Next day reminder', 'ameliabooking'), |
| 463 | 'customer_event_rejected' => __('Canceled by admin', 'ameliabooking'), |
| 464 | 'customer_event_rescheduled' => __('Rescheduled', 'ameliabooking'), |
| 465 | 'customer_event_updated' => __('Details changed', 'ameliabooking'), |
| 466 | 'customer_event_qr_code' => __('Event e-ticket', 'ameliabooking'), |
| 467 | 'customer_other_notifications' => __('Other', 'ameliabooking'), |
| 468 | 'customer_event_waiting' => __('Waiting list confirmation', 'ameliabooking'), |
| 469 | 'customer_appointment_waiting' => __('Waiting list confirmation', 'ameliabooking'), |
| 470 | 'customer_appointment_waiting_available_spot' => __('Waiting list availability', 'ameliabooking'), |
| 471 | 'customer_cart' => __('Cart purchased', 'ameliabooking'), |
| 472 | 'customer_invoice' => __('Booking invoice', 'ameliabooking'), |
| 473 | 'customer_package_canceled' => __('Package canceled', 'ameliabooking'), |
| 474 | 'customer_package_purchased' => __('Package purchased', 'ameliabooking'), |
| 475 | 'date_colon' => __('Date', 'ameliabooking'), |
| 476 | 'dont_have_an_account' => __('Don\'t have an account?', 'ameliabooking'), |
| 477 | 'dont_import' => __('Don\'t Import', 'ameliabooking'), |
| 478 | 'enter_password_warning' => __('Please enter a password.', 'ameliabooking'), |
| 479 | 'enter_recipient_phone_warning' => __('Please enter a recipient phone.', 'ameliabooking'), |
| 480 | 'forgot_password' => __('Forgot password?', 'ameliabooking'), |
| 481 | 'incorrect_email' => __('You have entered an incorrect email.', 'ameliabooking'), |
| 482 | 'incorrect_password' => __('You have entered an incorrect password.', 'ameliabooking'), |
| 483 | 'logout' => __('Logout', 'ameliabooking'), |
| 484 | 'new_password_colon' => __('New password', 'ameliabooking'), |
| 485 | 'red_repeat_new_password' => __('Repeat new password', 'ameliabooking'), |
| 486 | 'new_password_required' => __('Please enter a new password.', 'ameliabooking'), |
| 487 | 'notification_saved' => __('Notification has been saved.', 'ameliabooking'), |
| 488 | 'notification_template' => __('Notification template', 'ameliabooking'), |
| 489 | 'payment_history' => __('Payment history', 'ameliabooking'), |
| 490 | 'ph_appointment_date' => __('Appointment date', 'ameliabooking'), |
| 491 | 'ph_appointment_date_time' => __('Appointment date & time', 'ameliabooking'), |
| 492 | 'ph_appointment_duration' => __('Appointment duration', 'ameliabooking'), |
| 493 | 'ph_appointment_end_time' => __('Appointment end time', 'ameliabooking'), |
| 494 | 'ph_appointment_id' => __('Appointment ID', 'ameliabooking'), |
| 495 | 'ph_payment_due_amount' => __('Payment due amount', 'ameliabooking'), |
| 496 | 'ph_appointment_notes' => __('Appointment notes', 'ameliabooking'), |
| 497 | 'ph_appointment_price' => __('Appointment price', 'ameliabooking'), |
| 498 | 'ph_payment_type' => __('Payment type', 'ameliabooking'), |
| 499 | 'ph_appointment_status' => __('Appointment status', 'ameliabooking'), |
| 500 | 'ph_appointment_start_time' => __('Appointment start time', 'ameliabooking'), |
| 501 | 'ph_attendee_code' => __('Attendee code', 'ameliabooking'), |
| 502 | 'ph_booked_customer' => __('Booked customer (full name, email, phone)', 'ameliabooking'), |
| 503 | 'ph_booking_number_of_persons' => __('Number of people', 'ameliabooking'), |
| 504 | 'ph_category_id' => __('Category ID', 'ameliabooking'), |
| 505 | 'ph_category_name' => __('Category name', 'ameliabooking'), |
| 506 | 'ph_company_address' => __('Company address', 'ameliabooking'), |
| 507 | 'ph_company_name' => __('Company name', 'ameliabooking'), |
| 508 | 'ph_company_phone' => __('Company phone', 'ameliabooking'), |
| 509 | 'ph_company_website' => __('Company website', 'ameliabooking'), |
| 510 | 'ph_company_email' => __('Company email', 'ameliabooking'), |
| 511 | 'ph_company_vat_number' => __('Company VAT number', 'ameliabooking'), |
| 512 | 'ph_customer_email' => __('Customer email', 'ameliabooking'), |
| 513 | 'ph_customer_first_name' => __('Customer first name', 'ameliabooking'), |
| 514 | 'ph_customer_full_name' => __('Customer full name', 'ameliabooking'), |
| 515 | 'ph_customer_last_name' => __('Customer last name', 'ameliabooking'), |
| 516 | 'ph_customer_note' => __('Customer note', 'ameliabooking'), |
| 517 | 'ph_customer_phone' => __('Customer phone', 'ameliabooking'), |
| 518 | 'ph_employee_description' => __('Employee description', 'ameliabooking'), |
| 519 | 'ph_employee_id' => __('Employee ID', 'ameliabooking'), |
| 520 | 'ph_employee_email' => __('Employee email', 'ameliabooking'), |
| 521 | 'ph_employee_first_name' => __('Employee first name', 'ameliabooking'), |
| 522 | 'ph_employee_full_name' => __('Employee full name', 'ameliabooking'), |
| 523 | 'ph_employee_last_name' => __('Employee last name', 'ameliabooking'), |
| 524 | 'ph_employee_name_email_phone' => __('Employee name, email & phone', 'ameliabooking'), |
| 525 | 'ph_employee_note' => __('Employee note', 'ameliabooking'), |
| 526 | 'ph_employee_phone' => __('Employee phone', 'ameliabooking'), |
| 527 | 'ph_event_description' => __('Event description', 'ameliabooking'), |
| 528 | 'ph_event_location' => __('Event location', 'ameliabooking'), |
| 529 | 'ph_event_end_date' => __('Event end date', 'ameliabooking'), |
| 530 | 'ph_event_end_date_time' => __('Event end date & time', 'ameliabooking'), |
| 531 | 'ph_event_end_time' => __('Event end time', 'ameliabooking'), |
| 532 | 'ph_event_id' => __('Event ID', 'ameliabooking'), |
| 533 | 'ph_event_name' => __('Event name', 'ameliabooking'), |
| 534 | 'ph_event_period_date' => __('Event date period', 'ameliabooking'), |
| 535 | 'ph_event_period_date_time' => __('Event date & time period', 'ameliabooking'), |
| 536 | 'ph_event_price' => __('Event price', 'ameliabooking'), |
| 537 | 'ph_booking_price' => __('Booking price', 'ameliabooking'), |
| 538 | 'ph_event_start_date' => __('Event start date', 'ameliabooking'), |
| 539 | 'ph_event_start_date_time' => __('Event start date & time', 'ameliabooking'), |
| 540 | 'ph_event_start_time' => __('Event start time', 'ameliabooking'), |
| 541 | 'ph_group_event_details' => __('Group event details', 'ameliabooking'), |
| 542 | 'ph_service_description' => __('Service description', 'ameliabooking'), |
| 543 | 'ph_service_duration' => __('Service duration', 'ameliabooking'), |
| 544 | 'ph_service_id' => __('Service ID', 'ameliabooking'), |
| 545 | 'ph_service_name' => __('Service name', 'ameliabooking'), |
| 546 | 'ph_service_price' => __('Service price', 'ameliabooking'), |
| 547 | 'ph_time_zone' => __('Time zone', 'ameliabooking'), |
| 548 | 'provider_cart' => __('Cart purchased', 'ameliabooking'), |
| 549 | 'companyPlaceholders' => __('Company', 'ameliabooking'), |
| 550 | 'customerPlaceholders' => __('Customer', 'ameliabooking'), |
| 551 | 'paymentPlaceholders' => __('Payment', 'ameliabooking'), |
| 552 | 'employeePlaceholders' => __('Employee', 'ameliabooking'), |
| 553 | 'categoryPlaceholders' => __('Category', 'ameliabooking'), |
| 554 | 'locationPlaceholders' => __('Location', 'ameliabooking'), |
| 555 | 'appointmentPlaceholders' => __('Appointment', 'ameliabooking'), |
| 556 | 'eventPlaceholders' => __('Event', 'ameliabooking'), |
| 557 | 'extrasPlaceholders' => __('Extra', 'ameliabooking'), |
| 558 | 'price' => __('Price', 'ameliabooking'), |
| 559 | 'pricing' => __('Pricing', 'ameliabooking'), |
| 560 | 'provider_appointment_approved' => __('Approved', 'ameliabooking'), |
| 561 | 'provider_appointment_canceled' => __('Canceled', 'ameliabooking'), |
| 562 | 'provider_appointment_next_day_reminder' => __('Next day reminder', 'ameliabooking'), |
| 563 | 'provider_appointment_updated' => __('Details changed', 'ameliabooking'), |
| 564 | 'provider_package_canceled' => __('Package canceled', 'ameliabooking'), |
| 565 | 'provider_package_purchased' => __('Package purchased', 'ameliabooking'), |
| 566 | 'provider_panel_access' => __('Panel access', 'ameliabooking'), |
| 567 | 'provider_panel_recovery' => __('Panel recovery', 'ameliabooking'), |
| 568 | 'provider_appointment_pending' => __('Pending', 'ameliabooking'), |
| 569 | 'provider_appointment_rejected' => __('Rejected', 'ameliabooking'), |
| 570 | 'provider_appointment_rescheduled' => __('Rescheduled', 'ameliabooking'), |
| 571 | 'provider_event_approved' => __('Booked', 'ameliabooking'), |
| 572 | 'provider_event_canceled' => __('Canceled by attendee', 'ameliabooking'), |
| 573 | 'provider_event_next_day_reminder' => __('Next day reminder', 'ameliabooking'), |
| 574 | 'provider_event_rejected' => __('Canceled by admin', 'ameliabooking'), |
| 575 | 'provider_event_rescheduled' => __('Rescheduled', 'ameliabooking'), |
| 576 | 'provider_event_updated' => __('Details changed', 'ameliabooking'), |
| 577 | 'provider_event_waiting' => __('Waiting list confirmation', 'ameliabooking'), |
| 578 | 'provider_appointment_waiting' => __('Waiting list confirmation', 'ameliabooking'), |
| 579 | 'provider_appointment_waiting_available_spot' => __('Waiting list availability', 'ameliabooking'), |
| 580 | 'queued' => __('Queued', 'ameliabooking'), |
| 581 | 're_type_required' => __('Please enter a new password again.', 'ameliabooking'), |
| 582 | 'recharge' => __('Recharge', 'ameliabooking'), |
| 583 | 'recharge_balance' => __('Recharge balance', 'ameliabooking'), |
| 584 | 'recipient_email' => __('Recipient email', 'ameliabooking'), |
| 585 | 'requires_scheduling_setup' => __('Schedule setup required', 'ameliabooking'), |
| 586 | 'segments_colon' => __('Segments', 'ameliabooking'), |
| 587 | 'send' => __('Send', 'ameliabooking'), |
| 588 | 'send_test_email' => __('Test email', 'ameliabooking'), |
| 589 | 'send_test_sms' => __('Test SMS', 'ameliabooking'), |
| 590 | 'sender_id_colon' => __('Alpha sender ID', 'ameliabooking'), |
| 591 | 'sign_in' => __('Sign in', 'ameliabooking'), |
| 592 | 'sign_up' => __('Sign up', 'ameliabooking'), |
| 593 | 'sms_history' => __('SMS history', 'ameliabooking'), |
| 594 | 'sms_vat_apply' => __('If you are in a country where VAT or GST applies, the applicable tax will be added to your transaction.', 'ameliabooking'), |
| 595 | 'subject' => __('Subject', 'ameliabooking'), |
| 596 | 'test_email_error' => __('Failed to send test email.', 'ameliabooking'), |
| 597 | 'test_email_success' => __('Test email sent successfully.', 'ameliabooking'), |
| 598 | 'test_email_warning' => __('To send a test email, please configure the \'Sender Email\' in Notification Settings.', 'ameliabooking'), |
| 599 | 'test_sms_warning' => __('To send a test SMS, please recharge your balance.', 'ameliabooking'), |
| 600 | 'text_colon' => __('Text', 'ameliabooking'), |
| 601 | 'time_colon' => __('Local time', 'ameliabooking'), |
| 602 | 'type_colon' => __('Type', 'ameliabooking'), |
| 603 | 'to_customer' => __('To customer', 'ameliabooking'), |
| 604 | 'to_employee' => __('To employee', 'ameliabooking'), |
| 605 | 'user_colon' => __('User', 'ameliabooking'), |
| 606 | 'user_profile' => __('User profile', 'ameliabooking'), |
| 607 | 'view_pricing_for' => __('View pricing for', 'ameliabooking'), |
| 608 | 'whatsapp_access_token' => __('Permanent access token', 'ameliabooking'), |
| 609 | 'whatsapp_auto_reply_enable' => __('Enable auto-reply message', 'ameliabooking'), |
| 610 | 'whatsapp_auto_reply_notice' => __('Messages sent through WhatsApp are without a reply option, so we advise setting the “Auto-reply” message', 'ameliabooking'), |
| 611 | 'whatsapp_auto_reply_token' => __('WhatsApp webhook verify token', 'ameliabooking'), |
| 612 | 'whatsapp_auto_reply_msg' => __('WhatsApp auto-reply message', 'ameliabooking'), |
| 613 | 'whatsapp_business_id' => __('WhatsApp business account ID', 'ameliabooking'), |
| 614 | 'whatsapp_default_language' => __('Default language', 'ameliabooking'), |
| 615 | 'whatsapp_phone_id' => __('Phone number ID', 'ameliabooking'), |
| 616 | 'whatsapp_webhook_url_callback' => __('WhatsApp webhook callback URL', 'ameliabooking'), |
| 617 | 'configure' => __('Configure', 'ameliabooking'), |
| 618 | 'ph_location_id' => __('Location ID', 'ameliabooking'), |
| 619 | 'ph_location_latitude' => __('Location latitude', 'ameliabooking'), |
| 620 | 'ph_location_longitude' => __('Location longitude', 'ameliabooking'), |
| 621 | 'password' => __('Password', 'ameliabooking'), |
| 622 | 'segment_colon' => __('Segment', 'ameliabooking'), |
| 623 | 'already_have_an_account' => __('Already have an account?', 'ameliabooking'), |
| 624 | 'email_taken' => __('This email is already in use. Please enter a different email address.', 'ameliabooking'), |
| 625 | 'appointments_count' => __('# of appointments', 'ameliabooking'), |
| 626 | 'bookings_revenue' => __('Sum of payments', 'ameliabooking'), |
| 627 | 'appointments_hours' => __('# of Hours in appointment', 'ameliabooking'), |
| 628 | 'dashboard' => __('Dashboard', 'ameliabooking'), |
| 629 | 'new' => __('New', 'ameliabooking'), |
| 630 | 'pending_appointments' => __('Pending appointments', 'ameliabooking'), |
| 631 | 'percentage_of_load' => __('Percentage of Load', 'ameliabooking'), |
| 632 | 'returning' => __('Returning', 'ameliabooking'), |
| 633 | 'revenue' => __('Revenue', 'ameliabooking'), |
| 634 | 'time' => __('Time', 'ameliabooking'), |
| 635 | 'upcoming_appointments' => __('Upcoming appointments', 'ameliabooking'), |
| 636 | 'add_day_off' => __('Add day off', 'ameliabooking'), |
| 637 | 'add_special_day' => __('Add special day', 'ameliabooking'), |
| 638 | 'apply_to_all_days' => __('Apply to all days', 'ameliabooking'), |
| 639 | 'day_off_name' => __('Day off name', 'ameliabooking'), |
| 640 | 'days_off_repeat_yearly' => __('Repeat yearly', 'ameliabooking'), |
| 641 | 'days_off' => __('Days off', 'ameliabooking'), |
| 642 | 'work_hours' => __('Work hours', 'ameliabooking'), |
| 643 | 'visibility_hide' => __('Hide', 'ameliabooking'), |
| 644 | 'visibility_show' => __('Show', 'ameliabooking'), |
| 645 | 'block' => __('Block', 'ameliabooking'), |
| 646 | 'unblock' => __('Unblock', 'ameliabooking'), |
| 647 | 'visible' => __('Visible', 'ameliabooking'), |
| 648 | 'locations_search_placeholder' => __('Search locations', 'ameliabooking'), |
| 649 | 'google_maps_notice' => __('To enable Google Maps, enter your Google Maps API key in the Google General Settings.', 'ameliabooking'), |
| 650 | 'add_category' => __('Add category', 'ameliabooking'), |
| 651 | 'add_extra' => __('Add Extra', 'ameliabooking'), |
| 652 | 'categories' => __('Categories', 'ameliabooking'), |
| 653 | 'categories_positions_saved' => __('Categories positions updated successfully.', 'ameliabooking'), |
| 654 | 'category_deleted' => __('Category has been deleted.', 'ameliabooking'), |
| 655 | 'confirm_delete_service' => __('Are you sure you want to delete this service?', 'ameliabooking'), |
| 656 | 'confirm_duplicate_service' => __('Are you sure you want to duplicate this service?', 'ameliabooking'), |
| 657 | 'confirm_global_change_service' => __('You\'re changing settings that have been individually configured for employees. Do you want to apply these changes to all employees?', 'ameliabooking'), |
| 658 | 'confirm_hide_service' => __('Are you sure you want to hide this service?', 'ameliabooking'), |
| 659 | 'confirm_show_service' => __('Are you sure you want to show this service?', 'ameliabooking'), |
| 660 | 'delete_category_confirmation' => __('Are you sure you want to delete this category?', 'ameliabooking'), |
| 661 | 'duplicate_category_confirmation' => __('Are you sure you want to duplicate this category?', 'ameliabooking'), |
| 662 | 'duration_and_pricing' => __('Pricing & duration ', 'ameliabooking'), |
| 663 | 'edit_service' => __('Edit service', 'ameliabooking'), |
| 664 | 'edit_category' => __('Edit Category', 'ameliabooking'), |
| 665 | 'gallery' => __('Gallery', 'ameliabooking'), |
| 666 | 'maximum_capacity_tooltip' => __('Set the maximum number of people allowed per appointment for this service.', 'ameliabooking'), |
| 667 | 'minimum_capacity' => __('Minimum capacity', 'ameliabooking'), |
| 668 | 'minimum_capacity_tooltip' => __('Set the minimum number of people required per appointment for this service.', 'ameliabooking'), |
| 669 | 'new_category' => __('New category', 'ameliabooking'), |
| 670 | 'new_service' => __('New service', 'ameliabooking'), |
| 671 | 'select_service_duration_warning' => __('Please select a duration.', 'ameliabooking'), |
| 672 | 'select_service_category_warning' => __('Please select a category.', 'ameliabooking'), |
| 673 | 'service_buffer_time_after' => __('Buffer time after', 'ameliabooking'), |
| 674 | 'service_buffer_time_after_tooltip' => __('Time needed after the appointment for rest, cleanup, or transition. During this period, the employee cannot be booked for any service.', 'ameliabooking'), |
| 675 | 'service_buffer_time_before' => __('Buffer time before', 'ameliabooking'), |
| 676 | 'service_buffer_time_before_tooltip' => __('Time needed before the appointment for preparation. During this period, the employee cannot be booked for any service.', 'ameliabooking'), |
| 677 | 'service_deleted' => __('Service has been deleted.', 'ameliabooking'), |
| 678 | 'service_hidden' => __('Service has been hidden.', 'ameliabooking'), |
| 679 | 'service_visible' => __('Service is now visible.', 'ameliabooking'), |
| 680 | 'services_sorting_price_asc' => __('Price Asc', 'ameliabooking'), |
| 681 | 'services_sorting_price_desc' => __('Price Desc', 'ameliabooking'), |
| 682 | 'service_recurring_cycle' => __('Recurring appointments', 'ameliabooking'), |
| 683 | 'service_recurring_cycle_tooltip' => __("Choose how recurring appointments can be booked. 'Disabled' turns recurring booking off, while 'All' allows customers to choose between available recurrence options.", 'ameliabooking'), |
| 684 | 'notify_customer' => __('Notify the customer(s)', 'ameliabooking'), |
| 685 | 'service_details' => __('Service details', 'ameliabooking'), |
| 686 | 'create_new' => __('Create new', 'ameliabooking'), |
| 687 | 'email' => __('Email', 'ameliabooking'), |
| 688 | 'enter_first_name_warning' => __('Please enter a first name.', 'ameliabooking'), |
| 689 | 'enter_last_name_warning' => __('Please enter a last name', 'ameliabooking'), |
| 690 | 'first_name' => __('First name', 'ameliabooking'), |
| 691 | 'last_name' => __('Last name', 'ameliabooking'), |
| 692 | 'female' => __('Female', 'ameliabooking'), |
| 693 | 'male' => __('Male', 'ameliabooking'), |
| 694 | 'notification_language' => __('Notification language', 'ameliabooking'), |
| 695 | 'wp_user' => __('WordPress user', 'ameliabooking'), |
| 696 | 'wp_user_customer_tooltip' => __('Link this customer to a WordPress user so they can log in and view their appointments in Amelia’s back end.', 'ameliabooking'), |
| 697 | 'wp_user_employee_tooltip' => __('Map a WordPress user to this employee to give them access to view their appointments in the plugin’s back-end.', 'ameliabooking'), |
| 698 | 'wp_customer_lang_tooltip' => __('Defines the language used for notifications sent to this customer for bookings created from the admin or employee panel. If a supported language was used in a previous booking, it will be automatically selected; otherwise, you can set it manually.', 'ameliabooking'), |
| 699 | 'edit_employee' => __('Edit employee', 'ameliabooking'), |
| 700 | 'employee_panel_password' => __('Employee panel password', 'ameliabooking'), |
| 701 | 'special_days' => __('Special days', 'ameliabooking'), |
| 702 | 'timezone' => __('Time zone', 'ameliabooking'), |
| 703 | 'away' => __('Away', 'ameliabooking'), |
| 704 | 'new_employee' => __('New employee', 'ameliabooking'), |
| 705 | 'confirm_hide_employee' => __('Are you sure you want to hide this employee?', 'ameliabooking'), |
| 706 | 'confirm_show_employee' => __('Are you sure you want to show this employee?', 'ameliabooking'), |
| 707 | 'employee_visible' => __('Employee is now visible.', 'ameliabooking'), |
| 708 | 'employee_hidden' => __('Employee has been hidden.', 'ameliabooking'), |
| 709 | 'confirm_delete_employee' => __('Are you sure you want to delete this employee?', 'ameliabooking'), |
| 710 | 'confirm_delete_customer' => __('Are you sure you want to delete this customer?', 'ameliabooking'), |
| 711 | 'confirm_block_customer' => __('Are you sure you want to block this customer?', 'ameliabooking'), |
| 712 | 'confirm_unblock_customer' => __('Are you sure you want to unblock this customer?', 'ameliabooking'), |
| 713 | 'customer_deleted' => __('Customer has been deleted.', 'ameliabooking'), |
| 714 | 'customer_blocked' => __('Customer has been blocked.', 'ameliabooking'), |
| 715 | 'customer_phone' => __('Customer phone', 'ameliabooking'), |
| 716 | 'customer_unblocked' => __('Customer has been unblocked.', 'ameliabooking'), |
| 717 | 'customer_note' => __('Note', 'ameliabooking'), |
| 718 | 'customer_name' => __('Customer name', 'ameliabooking'), |
| 719 | 'customers' => __('Customers', 'ameliabooking'), |
| 720 | 'customers_search_placeholder' => __('Search customers', 'ameliabooking'), |
| 721 | 'date_of_birth' => __('Date of birth', 'ameliabooking'), |
| 722 | 'edit_customer' => __('Edit customer', 'ameliabooking'), |
| 723 | 'gender' => __('Gender', 'ameliabooking'), |
| 724 | 'imported_customers' => __('Customers imported from file:', 'ameliabooking'), |
| 725 | 'last_booking' => __('Last booking', 'ameliabooking'), |
| 726 | 'new_customer' => __('New customer', 'ameliabooking'), |
| 727 | 'required_data' => __('Required fields: <b>First Name</b> and <b>Last Name</b>.', 'ameliabooking'), |
| 728 | 'total_appointments' => __('Total appointments', 'ameliabooking'), |
| 729 | 'total_bookings' => __('Total bookings', 'ameliabooking'), |
| 730 | 'total_events' => __('Total events', 'ameliabooking'), |
| 731 | 'view_appointments' => __('View appointments', 'ameliabooking'), |
| 732 | 'view_events' => __('View events', 'ameliabooking'), |
| 733 | 'drag_drop' => __('Drop files here or click to upload', 'ameliabooking'), |
| 734 | 'import_rules' => __('Import Rules', 'ameliabooking'), |
| 735 | 'import_successful' => __('Import successful', 'ameliabooking'), |
| 736 | 'map_data' => __('Please map corresponding data to columns:', 'ameliabooking'), |
| 737 | 'wrong_format' => __('Some records have an incorrect format.', 'ameliabooking'), |
| 738 | 'amount' => __('Amount', 'ameliabooking'), |
| 739 | 'booking_start' => __('Booking start', 'ameliabooking'), |
| 740 | 'customer_email' => __('Customer email', 'ameliabooking'), |
| 741 | 'employee_email' => __('Employee email', 'ameliabooking'), |
| 742 | 'method' => __('Method', 'ameliabooking'), |
| 743 | 'payment_date' => __('Payment date', 'ameliabooking'), |
| 744 | 'payment_created' => __('Payment created', 'ameliabooking'), |
| 745 | 'rate' => __('Rate', 'ameliabooking'), |
| 746 | 'invoice_qty' => __('Qty', 'ameliabooking'), |
| 747 | 'invoice_total_item_price' => __('Total price', 'ameliabooking'), |
| 748 | 'invoices' => __('Invoices', 'ameliabooking'), |
| 749 | 'discount_amount' => __('Discount', 'ameliabooking'), |
| 750 | 'due' => __('Due', 'ameliabooking'), |
| 751 | 'finance' => __('Finance', 'ameliabooking'), |
| 752 | 'payment_details' => __('Payment details', 'ameliabooking'), |
| 753 | 'service_price' => __('Service price', 'ameliabooking'), |
| 754 | 'subtotal' => __('Subtotal', 'ameliabooking'), |
| 755 | 'total_price' => __('Total price', 'ameliabooking'), |
| 756 | 'event_price' => __('Event price', 'ameliabooking'), |
| 757 | 'appointment_deleted' => __('Appointment has been deleted.', 'ameliabooking'), |
| 758 | 'appointment_rescheduled' => __('Appointment has been rescheduled', 'ameliabooking'), |
| 759 | 'appointment_status_changed' => __('Appointment status has been changed to ', 'ameliabooking'), |
| 760 | 'category' => __('Category', 'ameliabooking'), |
| 761 | 'confirm_delete_appointment' => __('Are you sure? This action can\'t be undone.', 'ameliabooking'), |
| 762 | 'confirm_duplicate_appointment' => __('Are you sure you want to duplicate this appointment?', 'ameliabooking'), |
| 763 | 'custom_fields' => __('Custom fields', 'ameliabooking'), |
| 764 | 'edit_appointment' => __('Edit appointment', 'ameliabooking'), |
| 765 | 'end_time' => __('End time', 'ameliabooking'), |
| 766 | 'new_appointment' => __('New appointment', 'ameliabooking'), |
| 767 | 'notify_attendees' => __('Notify the attendees', 'ameliabooking'), |
| 768 | 'notify_attendees_tooltip' => __('Notify attendees by email when event information is updated.', 'ameliabooking'), |
| 769 | 'over_booking_message' => __('By continuing, you will set the appointment to a time slot that already has an existing appointment!', 'ameliabooking'), |
| 770 | 'outside_working_hours' => __('Outside of working hours', 'ameliabooking'), |
| 771 | 'select_service_warning' => __('Please select a service.', 'ameliabooking'), |
| 772 | 'start_time' => __('Start time', 'ameliabooking'), |
| 773 | 'booking_reschedule_exception' => __('Appointment can\'t be rescheduled', 'ameliabooking'), |
| 774 | 'booking_status_changed' => __('Booking status has been changed to ', 'ameliabooking'), |
| 775 | 'wc' => __('WooCommerce', 'ameliabooking'), |
| 776 | 'select_a_customer_warning' => __('Please select a customer.', 'ameliabooking'), |
| 777 | 'select_employee_warning' => __('Please select an employee.', 'ameliabooking'), |
| 778 | 'deposit_enabled' => __('Deposit payment', 'ameliabooking'), |
| 779 | 'custom_pricing' => __('Custom pricing', 'ameliabooking'), |
| 780 | 'custom_duration_pricing_enabled' => __('Pricing by duration', 'ameliabooking'), |
| 781 | 'custom_person_pricing_enabled' => __('Pricing by number of people', 'ameliabooking'), |
| 782 | 'custom_period_pricing_enabled' => __('Pricing by date & time', 'ameliabooking'), |
| 783 | 'recurring_appointments' => __('Recurring appointments', 'ameliabooking'), |
| 784 | 'confirm_duplicate_event' => __('Are you sure you want to duplicate this event?', 'ameliabooking'), |
| 785 | 'confirm_cancel' => __('Are you sure you want to cancel this event?', 'ameliabooking'), |
| 786 | 'confirm_open' => __('Are you sure you want to open this event?', 'ameliabooking'), |
| 787 | 'event_cancel_before_delete' => __('Please cancel the event first before deleting it.', 'ameliabooking'), |
| 788 | 'customize' => __('Customize', 'ameliabooking'), |
| 789 | 'full' => __('Full', 'ameliabooking'), |
| 790 | 'upcoming' => __('Upcoming', 'ameliabooking'), |
| 791 | 'edit_event' => __('Edit event', 'ameliabooking'), |
| 792 | 'event_book_persons' => __('Number of people', 'ameliabooking'), |
| 793 | 'event_book_status' => __('Status', 'ameliabooking'), |
| 794 | 'event_book_tickets' => __('Number of Tickets', 'ameliabooking'), |
| 795 | 'event_aggregated_price' => __('Multiply price by number of people', 'ameliabooking'), |
| 796 | 'event_book_more_than_once' => __('Allow multiple bookings per customer', 'ameliabooking'), |
| 797 | 'event_bringing_anyone' => __('Allow additional people', 'ameliabooking'), |
| 798 | 'event_cancel' => __('Cancel Event', 'ameliabooking'), |
| 799 | 'event_close_after_min' => __('Close event when minimum capacity is reached', 'ameliabooking'), |
| 800 | 'event_close_min_total' => __('Minimum number of attendees', 'ameliabooking'), |
| 801 | 'event_close_min_bookings' => __('Minimum number of bookings', 'ameliabooking'), |
| 802 | 'event_close_min_total_tt' => __('Each spot counts as one attendee.', 'ameliabooking'), |
| 803 | 'event_close_min_bookings_tt' => __('A single booking may include multiple attendees (spots).', 'ameliabooking'), |
| 804 | 'event_close_minimum' => __('Set minimum', 'ameliabooking'), |
| 805 | 'event_custom_address' => __('Custom address', 'ameliabooking'), |
| 806 | 'event_delete' => __('Delete Event', 'ameliabooking'), |
| 807 | 'event_deleted' => __('Event has been deleted.', 'ameliabooking'), |
| 808 | 'event_booking_closes_on' => __('Closes on', 'ameliabooking'), |
| 809 | 'event_booking_deleted' => __('Event booking has been deleted.', 'ameliabooking'), |
| 810 | 'event_booking_opens_on' => __('Opens on', 'ameliabooking'), |
| 811 | 'event_booking_closes_after' => __('Booking closes when event starts', 'ameliabooking'), |
| 812 | 'event_booking_opens_now' => __('Booking opens immediately', 'ameliabooking'), |
| 813 | 'event_open' => __('Open Event', 'ameliabooking'), |
| 814 | 'event_opened' => __('Event has been opened.', 'ameliabooking'), |
| 815 | 'event_canceled' => __('Event has been canceled.', 'ameliabooking'), |
| 816 | 'event_search_placeholder' => __('Search events', 'ameliabooking'), |
| 817 | 'event_staff' => __('Staff', 'ameliabooking'), |
| 818 | 'event_organizer' => __('Organizer', 'ameliabooking'), |
| 819 | 'event_organizer_tooltip' => __('Select the employee who will be added as the organizer of the Google/Outlook/Apple Calendar event. Employees selected under Staff will be added as guests.', 'ameliabooking'), |
| 820 | 'event_tags' => __('Tags', 'ameliabooking'), |
| 821 | 'event_status_changed' => __('Booking status has been changed to ', 'ameliabooking'), |
| 822 | 'new_event' => __('New event', 'ameliabooking'), |
| 823 | 'maximum_capacity_reached' => __('Maximum capacity is reached', 'ameliabooking'), |
| 824 | 'confirm' => __('Confirm', 'ameliabooking'), |
| 825 | 'add_custom_field' => __('Add custom field', 'ameliabooking'), |
| 826 | 'reset_form_settings' => __('Reset form settings', 'ameliabooking'), |
| 827 | 'reschedule' => __('Reschedule', 'ameliabooking'), |
| 828 | 'are_you_sure_reset_customize' => __('Are you sure you want to reset your form settings?', 'ameliabooking'), |
| 829 | 'current_changes_will_be_lost' => __('Your current changes will be lost.', 'ameliabooking'), |
| 830 | 'reset_yes' => __('Reset', 'ameliabooking'), |
| 831 | 'reset_form' => __('Reset Form', 'ameliabooking'), |
| 832 | 'package_available' => __('Available in package', 'ameliabooking'), |
| 833 | 'bringing_anyone_with_you' => __('Bringing anyone with you?', 'ameliabooking'), |
| 834 | 'buttons' => __('Buttons', 'ameliabooking'), |
| 835 | 'package_discount_text' => __('Save', 'ameliabooking'), |
| 836 | 'default_label' => __('Default Label', 'ameliabooking'), |
| 837 | 'duration_colon' => __('Duration', 'ameliabooking'), |
| 838 | 'checkbox' => __('Checkbox', 'ameliabooking'), |
| 839 | 'click_add_custom_field' => __('Start by clicking the add custom field button', 'ameliabooking'), |
| 840 | 'text_content' => __('Text content', 'ameliabooking'), |
| 841 | 'custom_fields_title' => __('Custom Fields', 'ameliabooking'), |
| 842 | 'font' => __('Font', 'ameliabooking'), |
| 843 | 'no_custom_fields_yet' => __('You don\'t have any custom fields here yet...', 'ameliabooking'), |
| 844 | 'options' => __('Options:', 'ameliabooking'), |
| 845 | 'pick_date_and_time' => __('Pick date & time', 'ameliabooking'), |
| 846 | 'please_select_service' => __('Please select service', 'ameliabooking'), |
| 847 | 'primary' => __('Primary', 'ameliabooking'), |
| 848 | 'primary_color' => __('Primary color', 'ameliabooking'), |
| 849 | 'success_color' => __('Success', 'ameliabooking'), |
| 850 | 'warning_color' => __('Warning', 'ameliabooking'), |
| 851 | 'error_color' => __('Error', 'ameliabooking'), |
| 852 | 'radio' => __('Radio button', 'ameliabooking'), |
| 853 | 'reset' => __('Reset', 'ameliabooking'), |
| 854 | 'select' => __('Select Box', 'ameliabooking'), |
| 855 | 'steps' => __('Steps', 'ameliabooking'), |
| 856 | 'select_service' => __('Select service', 'ameliabooking'), |
| 857 | 'text' => __('Text', 'ameliabooking'), |
| 858 | 'text-area' => __('Text area', 'ameliabooking'), |
| 859 | 'text_color' => __('Text color', 'ameliabooking'), |
| 860 | 'placeholder_color' => __('Placeholder Color', 'ameliabooking'), |
| 861 | 'text_color_on_background' => __('Text color on background', 'ameliabooking'), |
| 862 | 'file' => __('Attachment', 'ameliabooking'), |
| 863 | 'datepicker' => __('Date picker', 'ameliabooking'), |
| 864 | 'preview' => __('Preview', 'ameliabooking'), |
| 865 | 'prepared' => __('Prepared', 'ameliabooking'), |
| 866 | 'bgr_color' => __('Background Color', 'ameliabooking'), |
| 867 | 'bgr_gradient_color1' => __('Background Gradient Color 1', 'ameliabooking'), |
| 868 | 'bgr_gradient_color2' => __('Background Gradient Color 2', 'ameliabooking'), |
| 869 | 'bgr_gradient_angle' => __('Background Gradient Angle', 'ameliabooking'), |
| 870 | 'input_color' => __('Input Color', 'ameliabooking'), |
| 871 | 'input_text_color' => __('Input Text Color', 'ameliabooking'), |
| 872 | 'dropdown_color' => __('Dropdown Color', 'ameliabooking'), |
| 873 | 'dropdown_text_color' => __('Dropdown Text Color', 'ameliabooking'), |
| 874 | 'image_color' => __('Image Color', 'ameliabooking'), |
| 875 | 'recurring_active' => __('Repeat this appointment', 'ameliabooking'), |
| 876 | 'first_name_colon' => __('First name', 'ameliabooking'), |
| 877 | 'last_name_colon' => __('Last name', 'ameliabooking'), |
| 878 | 'last_name_input_field' => __('Last name', 'ameliabooking'), |
| 879 | 'email_colon' => __('Email', 'ameliabooking'), |
| 880 | 'email_input_field' => __('Email', 'ameliabooking'), |
| 881 | 'phone_colon' => __('Phone', 'ameliabooking'), |
| 882 | 'phone_input_field' => __('Phone', 'ameliabooking'), |
| 883 | 'go_back' => __('Go back', 'ameliabooking'), |
| 884 | 'service_name' => __('Service name', 'ameliabooking'), |
| 885 | 'display_field' => __('Display Field:', 'ameliabooking'), |
| 886 | 'filterable_field' => __('Filterable Field:', 'ameliabooking'), |
| 887 | 'mandatory_field' => __('Mandatory Field:', 'ameliabooking'), |
| 888 | 'event_type' => __('Event type', 'ameliabooking'), |
| 889 | 'event_location' => __('Event location', 'ameliabooking'), |
| 890 | 'event_free' => __('Free', 'ameliabooking'), |
| 891 | 'service_badge' => __('Service badge', 'ameliabooking'), |
| 892 | 'package_name' => __('Package name', 'ameliabooking'), |
| 893 | 'congratulations' => __('Congratulations!', 'ameliabooking'), |
| 894 | 'add_to_calendar' => __('Add to calendar', 'ameliabooking'), |
| 895 | 'finish_appointment' => __('Finish', 'ameliabooking'), |
| 896 | 'form_type_step_by_step' => __('Step By Step Booking Form', 'ameliabooking'), |
| 897 | 'event_status' => __('Event status', 'ameliabooking'), |
| 898 | 'event_filters' => __('Filters', 'ameliabooking'), |
| 899 | 'event_book_event' => __('Book event', 'ameliabooking'), |
| 900 | 'form_block_service' => __('Service', 'ameliabooking'), |
| 901 | 'form' => __('Form', 'ameliabooking'), |
| 902 | 'form_flow' => __('Form Flow', 'ameliabooking'), |
| 903 | 'use_global_colors' => __('Use Global Colors', 'ameliabooking'), |
| 904 | 'service_selection' => __('Service selection', 'ameliabooking'), |
| 905 | 'employee_selection' => __('Employee selection', 'ameliabooking'), |
| 906 | 'location_selection' => __('Location selection', 'ameliabooking'), |
| 907 | 'service_colon' => __('Service', 'ameliabooking'), |
| 908 | 'dropdown_category_heading' => __('Category', 'ameliabooking'), |
| 909 | 'dropdown_items_heading' => __('Service', 'ameliabooking'), |
| 910 | 'dropdown_empty' => __('No matching data', 'ameliabooking'), |
| 911 | 'bringing_anyone' => __('Bringing anyone with you', 'ameliabooking'), |
| 912 | 'show_more' => __('Show more', 'ameliabooking'), |
| 913 | 'show_less' => __('Show less', 'ameliabooking'), |
| 914 | 'date_time' => __('Date & time', 'ameliabooking'), |
| 915 | 'date_time_slots_selected' => __('All slots are selected', 'ameliabooking'), |
| 916 | 'info_step' => __('Your information', 'ameliabooking'), |
| 917 | 'enter_first_name' => __('Enter first name', 'ameliabooking'), |
| 918 | 'enter_last_name' => __('Enter last name', 'ameliabooking'), |
| 919 | 'enter_email' => __('Enter email', 'ameliabooking'), |
| 920 | 'enter_phone' => __('Enter phone', 'ameliabooking'), |
| 921 | 'enter_phone_warning' => __('Please enter phone', 'ameliabooking'), |
| 922 | 'payment_step' => __('Payment', 'ameliabooking'), |
| 923 | 'summary' => __('Summary', 'ameliabooking'), |
| 924 | 'summary_services' => __('Services', 'ameliabooking'), |
| 925 | 'summary_services_subtotal' => __('Service subtotal', 'ameliabooking'), |
| 926 | 'summary_persons' => __('people', 'ameliabooking'), |
| 927 | 'total_amount_colon' => __('Total amount', 'ameliabooking'), |
| 928 | 'payment_onsite_sentence' => __('The payment will be done on-site.', 'ameliabooking'), |
| 929 | 'appointment_id' => __('Appointment ID', 'ameliabooking'), |
| 930 | 'congrats_total_amount' => __('Total amount', 'ameliabooking'), |
| 931 | 'congrats_payment' => __('Payment', 'ameliabooking'), |
| 932 | 'your_name_colon' => __('Your name', 'ameliabooking'), |
| 933 | 'email_address_colon' => __('Email address', 'ameliabooking'), |
| 934 | 'phone_number_colon' => __('Phone number', 'ameliabooking'), |
| 935 | 'congrats_date' => __('Date', 'ameliabooking'), |
| 936 | 'congrats_time' => __('Local time', 'ameliabooking'), |
| 937 | 'congrats_service' => __('Service', 'ameliabooking'), |
| 938 | 'congrats_employee' => __('Employee', 'ameliabooking'), |
| 939 | 'congrats_location' => __('Location', 'ameliabooking'), |
| 940 | 'choose_form' => __('Choose a Form', 'ameliabooking'), |
| 941 | 'choose_form_for_customize' => __('Choose a form you want to customize. The Step-by-Step 2.0 form is the new and improved version which provides you with better design and user experience, as well as better speed.', 'ameliabooking'), |
| 942 | 'sbs_booking_form' => __('Step-by-step', 'ameliabooking'), |
| 943 | 'sbs_booking_form_old' => __('Booking Forms 1.0', 'ameliabooking'), |
| 944 | 'redesigned_sbs_booking_form' => __('Provide a simplified, guided booking experience on your website. Customize the design and labels to improve usability and align with your business needs.', 'ameliabooking'), |
| 945 | 'old_forms_text' => __('The original booking forms—Step-by-Step, Catalog, Event List, and Event Calendar—feature basic customization and label changes, serving as the foundation for our newer versions.', 'ameliabooking'), |
| 946 | 'primary_and_state_colors' => __('Primary and state colors', 'ameliabooking'), |
| 947 | 'sidebar' => __('Sidebar area', 'ameliabooking'), |
| 948 | 'background_color' => __('Background Color', 'ameliabooking'), |
| 949 | 'content' => __('Content', 'ameliabooking'), |
| 950 | 'heading_text_color' => __('Heading Text Color', 'ameliabooking'), |
| 951 | 'content_text_color' => __('Content Text Color', 'ameliabooking'), |
| 952 | 'input_fields' => __('Input fields', 'ameliabooking'), |
| 953 | 'border_color' => __('Border color', 'ameliabooking'), |
| 954 | 'dropdowns' => __('Dropdowns', 'ameliabooking'), |
| 955 | 'lower_price_background' => __('Lower price background', 'ameliabooking'), |
| 956 | 'higher_price_background' => __('Higher price background', 'ameliabooking'), |
| 957 | 'lower_price_text' => __('Lower price text', 'ameliabooking'), |
| 958 | 'higher_price_text' => __('Higher price text', 'ameliabooking'), |
| 959 | 'waiting_list_background' => __('Waiting list background', 'ameliabooking'), |
| 960 | 'waiting_list_text' => __('Waiting list text', 'ameliabooking'), |
| 961 | 'primary_text' => __('Primary text', 'ameliabooking'), |
| 962 | 'secondary_color' => __('Secondary color', 'ameliabooking'), |
| 963 | 'danger_background' => __('Danger button background color', 'ameliabooking'), |
| 964 | 'danger_text' => __('Danger button text color', 'ameliabooking'), |
| 965 | 'layout_and_inputs' => __('Layout & Inputs', 'ameliabooking'), |
| 966 | 'colors' => __('Colors', 'ameliabooking'), |
| 967 | 'fonts' => __('Fonts', 'ameliabooking'), |
| 968 | 'order' => __('Order', 'ameliabooking'), |
| 969 | 'step_title' => __('Title section', 'ameliabooking'), |
| 970 | 'footer_buttons' => __('Footer buttons', 'ameliabooking'), |
| 971 | 'step_content' => __('Step content', 'ameliabooking'), |
| 972 | 'finish_btn_type' => __('Finish Button Type', 'ameliabooking'), |
| 973 | 'panel_btn_type' => __('Panel Button Type', 'ameliabooking'), |
| 974 | 'summary_segment' => __('Summary segment', 'ameliabooking'), |
| 975 | 'payment_segment' => __('Payment segment', 'ameliabooking'), |
| 976 | 'heading_title' => __('Heading title', 'ameliabooking'), |
| 977 | 'sub_steps' => __('Sub Steps', 'ameliabooking'), |
| 978 | 'step_popups' => __('Step Popups', 'ameliabooking'), |
| 979 | 'csb_global_settings_content' => __('Fonts and colors', 'ameliabooking'), |
| 980 | 'csb_sidebar_content' => __('Set up Sidebar visibility and its content', 'ameliabooking'), |
| 981 | 'csb_packages' => __('Packages popup', 'ameliabooking'), |
| 982 | 'csb_services_content' => __('Set up Services, Locations, Employees selection options', 'ameliabooking'), |
| 983 | 'csb_services_only_content' => __('Set up Services selection options', 'ameliabooking'), |
| 984 | 'csb_employees_only_content' => __('Set up Employees selection options', 'ameliabooking'), |
| 985 | 'csb_locations_only_content' => __('Set up Locations selection options', 'ameliabooking'), |
| 986 | 'csb_date_time_content' => __('Set up Calendar layout and Recurring popup options', 'ameliabooking'), |
| 987 | 'csb_info_step' => __('Customer information', 'ameliabooking'), |
| 988 | 'csb_info_step_content' => __('Field order, mandatory fields, labels and display options', 'ameliabooking'), |
| 989 | 'csb_payment' => __('Payment summary', 'ameliabooking'), |
| 990 | 'csb_payment_content' => __('Set up labels and buttons', 'ameliabooking'), |
| 991 | 'cpb_congratulations_content' => __('Set up button types and labels', 'ameliabooking'), |
| 992 | 'plus_more' => __('+more', 'ameliabooking'), |
| 993 | 'cb_global_settings_heading' => __('Global Settings', 'ameliabooking'), |
| 994 | 'cb_sidebar' => __('Sidebar area', 'ameliabooking'), |
| 995 | 'cb_section' => __('Section', 'ameliabooking'), |
| 996 | 'cb_field_order_heading' => __('Field Order', 'ameliabooking'), |
| 997 | 'cb_congratulations_heading' => __('Congratulations', 'ameliabooking'), |
| 998 | 'sidebar_footer' => __('Footer', 'ameliabooking'), |
| 999 | 'get_in_touch' => __('Get in touch', 'ameliabooking'), |
| 1000 | 'collapse_menu' => __('Collapse menu', 'ameliabooking'), |
| 1001 | 'sb_radio_filled' => __('Filled', 'ameliabooking'), |
| 1002 | 'sb_radio_plain' => __('Plain', 'ameliabooking'), |
| 1003 | 'sb_radio_text' => __('Text', 'ameliabooking'), |
| 1004 | 'continue_button_type' => __('\'Continue\' button style', 'ameliabooking'), |
| 1005 | 'calendar_slot_end_time' => __('Slot end time', 'ameliabooking'), |
| 1006 | 'show_busy_slots' => __('Busy slots', 'ameliabooking'), |
| 1007 | 'show_calendar_date_busyness' => __('Date busyness indicator', 'ameliabooking'), |
| 1008 | 'show_estimated_pricing' => __('Estimated price', 'ameliabooking'), |
| 1009 | 'show_slot_pricing' => __('Time slot price', 'ameliabooking'), |
| 1010 | 'show_indicator_pricing' => __('Price indicators', 'ameliabooking'), |
| 1011 | 'show_people_waiting' => __('Number of people on waiting list', 'ameliabooking'), |
| 1012 | 'calendar_time_zone' => __('Time zone', 'ameliabooking'), |
| 1013 | 'finish_button_type' => __('\'Finish\' button style', 'ameliabooking'), |
| 1014 | 'panel_button_type' => __('\'Customer panel\' button style', 'ameliabooking'), |
| 1015 | 'sidebar_visibility' => __('Sidebar visibility', 'ameliabooking'), |
| 1016 | 'publish_form' => __('Publish Form', 'ameliabooking'), |
| 1017 | 'view_all' => __('View all', 'ameliabooking'), |
| 1018 | 'csb_categories' => __('Categories', 'ameliabooking'), |
| 1019 | 'csb_categories_content' => __('Set up categories cards', 'ameliabooking'), |
| 1020 | 'cards' => __('Cards', 'ameliabooking'), |
| 1021 | 'card_button_type' => __('Button style', 'ameliabooking'), |
| 1022 | 'csb_category_services' => __('Services overview', 'ameliabooking'), |
| 1023 | 'csb_category_services_content' => __('Set up Services view', 'ameliabooking'), |
| 1024 | 'csb_category_service' => __('Service details', 'ameliabooking'), |
| 1025 | 'csb_category_service_content' => __('Set up Service detailed view', 'ameliabooking'), |
| 1026 | 'booking_form' => __('Booking Form', 'ameliabooking'), |
| 1027 | 'booking_form_content' => __('Set options, colors and labels for booking form', 'ameliabooking'), |
| 1028 | 'cat_booking_form' => __('Catalog', 'ameliabooking'), |
| 1029 | 'redesigned_cat_booking_form' => __('Showcase your services in stylish card layouts. Easily organize them by category and tailor the appearance to match your brand.', 'ameliabooking'), |
| 1030 | 'card_services_number' => __('Service count', 'ameliabooking'), |
| 1031 | 'back_btn_heading' => __('Back button', 'ameliabooking'), |
| 1032 | 'back_btn_type' => __('\'Back\' button style', 'ameliabooking'), |
| 1033 | 'back_btn' => __('Go back', 'ameliabooking'), |
| 1034 | 'booking_btn_type' => __('\'Book now\' button style', 'ameliabooking'), |
| 1035 | 'cl_btn' => __('Main category button', 'ameliabooking'), |
| 1036 | 'cl_side_color' => __('Ribbon', 'ameliabooking'), |
| 1037 | 'cl_color' => __('Color', 'ameliabooking'), |
| 1038 | 'cil_filter_menu_btn' => __('\'Filter\' button style', 'ameliabooking'), |
| 1039 | 'cil_sidebar' => __('Categories sidebar', 'ameliabooking'), |
| 1040 | 'cil_filter_block' => __('Filters block', 'ameliabooking'), |
| 1041 | 'cil_side_menu_block' => __('Categories sidebar', 'ameliabooking'), |
| 1042 | 'cil_main_header' => __('Page header', 'ameliabooking'), |
| 1043 | 'cil_main_content' => __('Main content', 'ameliabooking'), |
| 1044 | 'service_category' => __('Service category', 'ameliabooking'), |
| 1045 | 'service_duration' => __('Service duration', 'ameliabooking'), |
| 1046 | 'service_about' => __('About service', 'ameliabooking'), |
| 1047 | 'cil_filter_input' => __('Search', 'ameliabooking'), |
| 1048 | 'cli_item_color' => __('Card color', 'ameliabooking'), |
| 1049 | 'page_scroll_visibility' => __('Page scroll', 'ameliabooking'), |
| 1050 | 'filter_input' => __('Search', 'ameliabooking'), |
| 1051 | 'available' => __('Available', 'ameliabooking'), |
| 1052 | 'heading_service' => __('Service', 'ameliabooking'), |
| 1053 | 'heading_services' => __('Services', 'ameliabooking'), |
| 1054 | 'no_search_data' => __('No results', 'ameliabooking'), |
| 1055 | 'free' => __('Free', 'ameliabooking'), |
| 1056 | 'book_now' => __('Book now', 'ameliabooking'), |
| 1057 | 'about_service' => __('About service', 'ameliabooking'), |
| 1058 | 'view_all_photos' => __('View all photos', 'ameliabooking'), |
| 1059 | 'view_message' => __('View message', 'ameliabooking'), |
| 1060 | 'contact_message' => __('Contact message', 'ameliabooking'), |
| 1061 | 'company_phone' => __('Company Phone:', 'ameliabooking'), |
| 1062 | 'company_email' => __('Company Email:', 'ameliabooking'), |
| 1063 | 'elf_booking_form' => __('Events list', 'ameliabooking'), |
| 1064 | 'redesigned_elf_booking_form' => __('Offer a clean, list-based booking experience with a design that grabs attention. Customers can easily explore and book from your full event lineup.', 'ameliabooking'), |
| 1065 | 'csb_events_list' => __('Events list', 'ameliabooking'), |
| 1066 | 'csb_events_list_content' => __('Set up Location, Images, Filters, Capacity, Price, and Status visibility options', 'ameliabooking'), |
| 1067 | 'csb_event_info' => __('Event info', 'ameliabooking'), |
| 1068 | 'csb_event_info_content' => __('Set up staff, location, gallery and other event information visibility', 'ameliabooking'), |
| 1069 | 'csb_event_customer' => __('Customer information', 'ameliabooking'), |
| 1070 | 'csb_event_customer_content' => __('Field order, mandatory fields, labels and display options', 'ameliabooking'), |
| 1071 | 'csb_event_payment' => __('Payment', 'ameliabooking'), |
| 1072 | 'csb_event_payment_content' => __('Set up labels and buttons', 'ameliabooking'), |
| 1073 | 'csb_event_congratulations' => __('Congratulations', 'ameliabooking'), |
| 1074 | 'csb_event_congratulations_content' => __('Set up button types and labels', 'ameliabooking'), |
| 1075 | 'events_available' => __('Events available', 'ameliabooking'), |
| 1076 | 'event_available' => __('Event available', 'ameliabooking'), |
| 1077 | 'event_page' => __('Page', 'ameliabooking'), |
| 1078 | 'event_search' => __('Search for events', 'ameliabooking'), |
| 1079 | 'event_begins' => __('Begins', 'ameliabooking'), |
| 1080 | 'event_slot_left' => __('slot left', 'ameliabooking'), |
| 1081 | 'event_slots_left' => __('slots left', 'ameliabooking'), |
| 1082 | 'event_learn_more' => __('Learn more', 'ameliabooking'), |
| 1083 | 'event_read_more' => __('Read more', 'ameliabooking'), |
| 1084 | 'event_close' => __('Close', 'ameliabooking'), |
| 1085 | 'event_customer_info' => __('Your information', 'ameliabooking'), |
| 1086 | 'summary_event' => __('Event', 'ameliabooking'), |
| 1087 | 'event_id' => __('Event ID', 'ameliabooking'), |
| 1088 | 'about' => __('About', 'ameliabooking'), |
| 1089 | 'event_info' => __('Event info', 'ameliabooking'), |
| 1090 | 'event_timetable' => __('Timetable', 'ameliabooking'), |
| 1091 | 'event_payment' => __('Payment', 'ameliabooking'), |
| 1092 | 'event_congrats' => __('Congratulations', 'ameliabooking'), |
| 1093 | 'event_about_list' => __('About event', 'ameliabooking'), |
| 1094 | 'event_start' => __('Event starts', 'ameliabooking'), |
| 1095 | 'event_end' => __('Event ends', 'ameliabooking'), |
| 1096 | 'event_at' => __('at', 'ameliabooking'), |
| 1097 | 'event_bringing' => __('How many attendees do you want to book event for?', 'ameliabooking'), |
| 1098 | 'step_filters' => __('Filter', 'ameliabooking'), |
| 1099 | 'event_card' => __('Event card', 'ameliabooking'), |
| 1100 | 'step_pagination' => __('Step pagination', 'ameliabooking'), |
| 1101 | 'event_slots_capacity' => __('Event slots capacity', 'ameliabooking'), |
| 1102 | 'filters_button_type' => __('\'Filter\' button style', 'ameliabooking'), |
| 1103 | 'read_more_button_type' => __('\'Read more\' button style', 'ameliabooking'), |
| 1104 | 'learn_more_button_type' => __('\'Learn more\' button style', 'ameliabooking'), |
| 1105 | 'event_tab_img' => __('Image', 'ameliabooking'), |
| 1106 | 'step_header' => __('Step header', 'ameliabooking'), |
| 1107 | 'step_info_tab' => __('Step info tab', 'ameliabooking'), |
| 1108 | 'booking_event_btn' => __('\'Book\' button style', 'ameliabooking'), |
| 1109 | 'finish_event_btn' => __('\'Finish\' button style', 'ameliabooking'), |
| 1110 | 'close_event_btn' => __('\'Close\' button style', 'ameliabooking'), |
| 1111 | 'event_gallery' => __('Event gallery', 'ameliabooking'), |
| 1112 | 'event_description' => __('Event description', 'ameliabooking'), |
| 1113 | 'summary_person' => __('person', 'ameliabooking'), |
| 1114 | 'event_employees' => __('Event employees', 'ameliabooking'), |
| 1115 | 'learn_more' => __('Learn more', 'ameliabooking'), |
| 1116 | 'service_information' => __('Service information', 'ameliabooking'), |
| 1117 | 'learn_more_button' => __('\'Learn more\' button', 'ameliabooking'), |
| 1118 | 'location_address' => __('Location address', 'ameliabooking'), |
| 1119 | 'no_results_found' => __('No results found...', 'ameliabooking'), |
| 1120 | 'card_field' => __('Card field', 'ameliabooking'), |
| 1121 | 'popup_content' => __('Description', 'ameliabooking'), |
| 1122 | 'layout' => __('Layout', 'ameliabooking'), |
| 1123 | 'search_input_field' => __('Search Input Field', 'ameliabooking'), |
| 1124 | 'category_input_field' => __('Category Input Field', 'ameliabooking'), |
| 1125 | 'select_service_category' => __('Select Service Category', 'ameliabooking'), |
| 1126 | 'visibility' => __('Visibility', 'ameliabooking'), |
| 1127 | 'bringing_people_total' => __('Total people', 'ameliabooking'), |
| 1128 | 'attendees' => __('Attendees', 'ameliabooking'), |
| 1129 | 'event_upcoming_events' => __('Upcoming events', 'ameliabooking'), |
| 1130 | 'book_appointment' => __('Book appointment', 'ameliabooking'), |
| 1131 | 'custom' => __('Custom', 'ameliabooking'), |
| 1132 | 'ecf_booking_form' => __('Events calendar', 'ameliabooking'), |
| 1133 | 'redesigned_ecf_booking_form' => __('Display events in a calendar view, allowing customers to browse, search, and book directly. A great way to highlight upcoming events in an interactive format.', 'ameliabooking'), |
| 1134 | 'capc_form' => __('Customer panel', 'ameliabooking'), |
| 1135 | 'redesigned_capc_form' => __('Enable customers to manage their appointments and events efficiently. Personalize colors and labels to create a seamless and branded experience.', 'ameliabooking'), |
| 1136 | 'cape_form' => __('Employee panel', 'ameliabooking'), |
| 1137 | 'redesigned_cape_form' => __('Allow employees to manage appointments and events with ease. Customize colors to match your branding and improve usability.', 'ameliabooking'), |
| 1138 | 'new_password_colon_retype' => __('Re-type new password', 'ameliabooking'), |
| 1139 | 'catalog' => __('Catalog', 'ameliabooking'), |
| 1140 | 'choose_category' => __('Choose Category', 'ameliabooking'), |
| 1141 | 'choose_service' => __('Choose Service', 'ameliabooking'), |
| 1142 | 'choose_package' => __('Choose Package', 'ameliabooking'), |
| 1143 | 'filter' => __('Preselect Booking Parameters', 'ameliabooking'), |
| 1144 | 'skip_categories' => __('Skip Categories step', 'ameliabooking'), |
| 1145 | 'insert_amelia_shortcode' => __('Insert Amelia Booking Shortcode', 'ameliabooking'), |
| 1146 | 'select_catalog_view' => __('Select Catalog View', 'ameliabooking'), |
| 1147 | 'select_category' => __('Select category', 'ameliabooking'), |
| 1148 | 'select_employee' => __('Select employee', 'ameliabooking'), |
| 1149 | 'select_location' => __('Select location', 'ameliabooking'), |
| 1150 | 'select_package' => __('Select Package', 'ameliabooking'), |
| 1151 | 'select_event' => __('Select Event', 'ameliabooking'), |
| 1152 | 'select_events' => __('Select Events', 'ameliabooking'), |
| 1153 | 'select_tag' => __('Select Tag', 'ameliabooking'), |
| 1154 | 'select_tags' => __('Select Tags', 'ameliabooking'), |
| 1155 | 'select_view' => __('Select View', 'ameliabooking'), |
| 1156 | 'show' => __('Show', 'ameliabooking'), |
| 1157 | 'show_all' => __('Show All', 'ameliabooking'), |
| 1158 | 'manually_loading' => __('Load booking form manually', 'ameliabooking'), |
| 1159 | 'manually_loading_description' => __('Add element (button, link...) ID, that will manually load amelia shortcode content', 'ameliabooking'), |
| 1160 | 'multiselect_note' => __('For multiselect: hold CTRL / Command (⌘).', 'ameliabooking'), |
| 1161 | 'show_all_categories' => __('Show all categories', 'ameliabooking'), |
| 1162 | 'show_all_employees' => __('Show all employees', 'ameliabooking'), |
| 1163 | 'show_all_locations' => __('Show all locations', 'ameliabooking'), |
| 1164 | 'show_all_services' => __('Show all services', 'ameliabooking'), |
| 1165 | 'show_all_events' => __('Show all events', 'ameliabooking'), |
| 1166 | 'show_all_packages' => __('Show all packages', 'ameliabooking'), |
| 1167 | 'show_all_tags' => __('Show all tags', 'ameliabooking'), |
| 1168 | 'show_catalog' => __('Show catalog of all categories', 'ameliabooking'), |
| 1169 | 'show_category' => __('Show specific category', 'ameliabooking'), |
| 1170 | 'show_categories' => __('Show specific categories', 'ameliabooking'), |
| 1171 | 'show_package' => __('Show specific package', 'ameliabooking'), |
| 1172 | 'show_packages' => __('Show specific packages', 'ameliabooking'), |
| 1173 | 'show_event' => __('Show event', 'ameliabooking'), |
| 1174 | 'show_event_view_type' => __('Show Type', 'ameliabooking'), |
| 1175 | 'show_event_view_list' => __('List (default)', 'ameliabooking'), |
| 1176 | 'show_event_view_calendar' => __('Calendar', 'ameliabooking'), |
| 1177 | 'show_tag' => __('Show tag', 'ameliabooking'), |
| 1178 | 'show_service' => __('Show specific service', 'ameliabooking'), |
| 1179 | 'show_services' => __('Show specific services', 'ameliabooking'), |
| 1180 | 'trigger_type' => __('Trigger type', 'ameliabooking'), |
| 1181 | 'trigger_type_id' => __('Id', 'ameliabooking'), |
| 1182 | 'trigger_type_class' => __('Class', 'ameliabooking'), |
| 1183 | 'trigger_type_tooltip' => __('Trigger by attribute', 'ameliabooking'), |
| 1184 | 'install_and_activate' => __('Install & Activate', 'ameliabooking'), |
| 1185 | 'ivy' => __('PRE-BOOKING INTAKE FORM (IVYFORMS)', 'ameliabooking'), |
| 1186 | 'ivy_tooltip' => __('Select which IvyForms form to show before booking', 'ameliabooking'), |
| 1187 | 'ivy_select' => __('Select a form...', 'ameliabooking'), |
| 1188 | 'ivy_integration' => __('IvyForms', 'ameliabooking'), |
| 1189 | 'ivy_integration_description' => __('Collect additional information from your customers before they complete a booking.', 'ameliabooking'), |
| 1190 | 'ivy_form' => __('IvyForms Form', 'ameliabooking'), |
| 1191 | 'ivy_create_form' => __('Create form', 'ameliabooking'), |
| 1192 | 'ivy_form_placeholder' => __('Select a form...', 'ameliabooking'), |
| 1193 | 'ivy_contact_form' => __('Contact Form', 'ameliabooking'), |
| 1194 | 'ivy_forms_field' => __('IvyForms Field', 'ameliabooking'), |
| 1195 | 'ivy_entries_link' => __('IvyForms Entries', 'ameliabooking'), |
| 1196 | 'ivy_entries' => __('Pre-booking form details', 'ameliabooking'), |
| 1197 | 'ivy_permanently_linked' => __('Permanently linked', 'ameliabooking'), |
| 1198 | 'step_booking' => __('Step Booking', 'ameliabooking'), |
| 1199 | 'catalog_booking' => __('Catalog Booking', 'ameliabooking'), |
| 1200 | 'events_list_booking' => __('Events List Booking', 'ameliabooking'), |
| 1201 | 'recurring_event' => __('Show recurring events', 'ameliabooking'), |
| 1202 | 'in_dialog' => __('Show in Amelia Popup', 'ameliabooking'), |
| 1203 | 'booking_divi' => __('AM - Booking view', 'ameliabooking'), |
| 1204 | 'step_booking_divi' => __('AM - Step Booking', 'ameliabooking'), |
| 1205 | 'catalog_booking_divi' => __('AM - Catalog Booking', 'ameliabooking'), |
| 1206 | 'catalog_divi' => __('AM - Catalog view', 'ameliabooking'), |
| 1207 | 'events_divi' => __('AM - Events view', 'ameliabooking'), |
| 1208 | 'events_list_booking_divi' => __('AM - Events List Booking', 'ameliabooking'), |
| 1209 | 'events_calendar_booking_divi' => __('AM - Events Calendar Booking', 'ameliabooking'), |
| 1210 | 'booking_gutenberg_block' => [ |
| 1211 | 'title' => __('Amelia - Booking view', 'ameliabooking'), |
| 1212 | 'description' => __('Step-By-Step Booking Wizard gives your customers the option to choose everything about the booking in a few steps', 'ameliabooking'), |
| 1213 | ], |
| 1214 | 'step_booking_gutenberg_block' => [ |
| 1215 | 'title' => __('Amelia - Step-By-Step Booking', 'ameliabooking'), |
| 1216 | 'description' => __('Step-by-Step booking view guides the customers through several steps in order to make their bookings.', 'ameliabooking'), |
| 1217 | ], |
| 1218 | 'step_booking_button_gutenberg_block' => [ |
| 1219 | 'title' => __('Amelia - Booking Button', 'ameliabooking'), |
| 1220 | 'description' => __('Step-by-Step booking view guides the customers through several steps in order to make their bookings.', 'ameliabooking'), |
| 1221 | ], |
| 1222 | 'events_list_booking_button_gutenberg_block' => [ |
| 1223 | 'title' => __('Amelia - Events List Button', 'ameliabooking'), |
| 1224 | 'description' => __('Event Booking is shortcode that gives your customers the option to book one of the events that you\'ve created on the back-end in a simple event list view.', 'ameliabooking'), |
| 1225 | ], |
| 1226 | 'catalog_booking_gutenberg_block' => [ |
| 1227 | 'title' => __('Amelia - Catalog Booking', 'ameliabooking'), |
| 1228 | 'description' => __('Front-end Booking Catalog is shortcode when you want to show your service in a form of a catalog', 'ameliabooking'), |
| 1229 | ], |
| 1230 | 'catalog_gutenberg_block' => [ |
| 1231 | 'title' => __('Amelia - Catalog view', 'ameliabooking'), |
| 1232 | 'description' => __('Front-end Booking Catalog is shortcode when you want to show your service in a form of a cataloge', 'ameliabooking'), |
| 1233 | ], |
| 1234 | 'events_gutenberg_block' => [ |
| 1235 | 'title' => __('Amelia - Events', 'ameliabooking'), |
| 1236 | 'description' => __('Event Booking is shortcode that gives your customers the option to book one of the events that you\'ve created on the back-end in a simple event list view.', 'ameliabooking'), |
| 1237 | ], |
| 1238 | 'events_list_booking_gutenberg_block' => [ |
| 1239 | 'title' => __('Amelia - Events List', 'ameliabooking'), |
| 1240 | 'description' => __('Event Booking is shortcode that gives your customers the option to book one of the events that you\'ve created on the back-end in a simple event list view.', 'ameliabooking'), |
| 1241 | ], |
| 1242 | 'events_calendar_booking_gutenberg_block' => [ |
| 1243 | 'title' => __('Amelia - Events Calendar', 'ameliabooking'), |
| 1244 | 'description' => __('Event Booking is shortcode that gives your customers the option to book one of the events that you\'ve created on the back-end in a simple event calendar view.', 'ameliabooking'), |
| 1245 | ], |
| 1246 | 'outdated_booking_gutenberg_block' => __('You are using a form that will be outdated soon!', 'ameliabooking'), |
| 1247 | 'search' => __('Search', 'ameliabooking'), |
| 1248 | 'red_activation_settings' => __('Activation settings', 'ameliabooking'), |
| 1249 | 'red_action_triggered' => __('Action Triggered', 'ameliabooking'), |
| 1250 | 'red_add_custom_notification' => __('Add custom notification', 'ameliabooking'), |
| 1251 | 'red_add_work_hours' => __('Add work hours', 'ameliabooking'), |
| 1252 | 'red_agencies' => __('Agencies', 'ameliabooking'), |
| 1253 | 'red_api' => __('API', 'ameliabooking'), |
| 1254 | 'red_appointment_created_success' => __('Appointment has been created.', 'ameliabooking'), |
| 1255 | 'red_appointment_status_updated' => __('Appointment status has been updated.'), |
| 1256 | 'red_appointment_details' => __('Appointment details', 'ameliabooking'), |
| 1257 | 'red_appointment_note' => __('Appointment note', 'ameliabooking'), |
| 1258 | 'red_appointment_note_updated' => __('Appointment note has been updated.', 'ameliabooking'), |
| 1259 | 'red_appointment_updated_success' => __('Appointment has been updated.', 'ameliabooking'), |
| 1260 | 'red_app_max_capacity_warning' => __('The total number of persons ({approvedPersonsCount}) exceeds the maximum capacity of {maxAppointmentCapacity}.', 'ameliabooking'), |
| 1261 | 'red_are_you_sure_delete_items' => __('Are you sure you want to delete these items?', 'ameliabooking'), |
| 1262 | 'red_at_time' => __('at {time}', 'ameliabooking'), |
| 1263 | 'red_attendee_asc' => __('Attendee Asc', 'ameliabooking'), |
| 1264 | 'red_attendee_desc' => __('Attendee Desc', 'ameliabooking'), |
| 1265 | 'red_beauty' => __('Beauty', 'ameliabooking'), |
| 1266 | 'red_blog' => __('Blog', 'ameliabooking'), |
| 1267 | 'red_book' => __('Book', 'ameliabooking'), |
| 1268 | 'red_booking_closes_asc' => __('Booking Closes Asc', 'ameliabooking'), |
| 1269 | 'red_booking_closes_desc' => __('Booking Closes Desc', 'ameliabooking'), |
| 1270 | 'red_booking_closes' => __('Booking closes', 'ameliabooking'), |
| 1271 | 'red_booking_number_count' => __('Booking #{count}', 'ameliabooking'), |
| 1272 | 'red_booking_opens_asc' => __('Booking Opens Asc', 'ameliabooking'), |
| 1273 | 'red_booking_opens_desc' => __('Booking Opens Desc', 'ameliabooking'), |
| 1274 | 'red_booking_opens' => __('Booking opens', 'ameliabooking'), |
| 1275 | 'red_booking_type' => __('Booking type', 'ameliabooking'), |
| 1276 | 'red_bookings_count' => __('# of bookings', 'ameliabooking'), |
| 1277 | 'red_buddyboss' => __('BuddyBoss', 'ameliabooking'), |
| 1278 | 'red_cancel_and_delete' => __('Cancel and Delete', 'ameliabooking'), |
| 1279 | 'red_configure_combined_placeholder_tooltip' => __('Click "Configure" to edit the text that will appear when this placeholder is used in notifications.', 'ameliabooking'), |
| 1280 | 'red_content_placeholders' => __('Content placeholders', 'ameliabooking'), |
| 1281 | 'red_catalog' => __('Catalog', 'ameliabooking'), |
| 1282 | 'red_category_failed_to_be_deleted' => __('This category cannot be deleted because it is included in a package.', 'ameliabooking'), |
| 1283 | 'red_clear_filters' => __('Clear filters', 'ameliabooking'), |
| 1284 | 'red_clear' => __('Clear', 'ameliabooking'), |
| 1285 | 'red_click_to_upload' => __('Click to upload', 'ameliabooking'), |
| 1286 | 'red_coaching' => __('Coaching', 'ameliabooking'), |
| 1287 | 'red_color' => __('Color', 'ameliabooking'), |
| 1288 | 'red_compared_stats' => __('Compared to previous range', 'ameliabooking'), |
| 1289 | 'red_consulting' => __('Consulting', 'ameliabooking'), |
| 1290 | 'red_contact_support' => __('Contact support.', 'ameliabooking'), |
| 1291 | 'red_count_attendees' => __('{count} Attendee | {count} Attendees', 'ameliabooking'), |
| 1292 | 'red_count_days' => __('{count} day | {count} days', 'ameliabooking'), |
| 1293 | 'red_count_hours' => __('{count} hour | {count} hours', 'ameliabooking'), |
| 1294 | 'red_count_minutes' => __('{count} minute | {count} minutes', 'ameliabooking'), |
| 1295 | 'red_count_months' => __('{count} month | {count} months', 'ameliabooking'), |
| 1296 | 'red_booking_updated' => __('Booking has been updated.', 'ameliabooking'), |
| 1297 | 'red_count_appointments_deleted' => __('{count} appointment has been deleted. | {count} appointments have been deleted.', 'ameliabooking'), |
| 1298 | 'red_count_appointments_failed_to_be_deleted' => __('{count} appointment has not been deleted. | {count} appointments have not been deleted.', 'ameliabooking'), |
| 1299 | 'red_count_event_bookings_deleted' => __('{count} event booking has been deleted. | {count} event bookings have been deleted.', 'ameliabooking'), |
| 1300 | 'red_count_event_bookings_failed_to_be_deleted' => __('{count} event booking has not been deleted. | {count} event bookings have not been deleted.', 'ameliabooking'), |
| 1301 | 'red_count_events_deleted' => __('{count} event has been deleted. | {count} events have been deleted.', 'ameliabooking'), |
| 1302 | 'red_count_selected' => __('{count} Selected', 'ameliabooking'), |
| 1303 | 'red_count_services_deleted' => __('{count} service has been deleted. | {count} services have been deleted.', 'ameliabooking'), |
| 1304 | 'red_count_services_failed_to_be_deleted' => __('{count} service has not been deleted. | {count} services have not been deleted.', 'ameliabooking'), |
| 1305 | 'red_count_weeks' => __('{count} week | {count} weeks', 'ameliabooking'), |
| 1306 | 'red_table_settings_updated' => __('Table settings have been updated.', 'ameliabooking'), |
| 1307 | 'red_custom_notifications' => __('Custom notifications', 'ameliabooking'), |
| 1308 | 'red_customer_configuration' => __('Customer configuration', 'ameliabooking'), |
| 1309 | 'red_customer_asc' => __('Customer Asc', 'ameliabooking'), |
| 1310 | 'red_customer_desc' => __('Customer Desc', 'ameliabooking'), |
| 1311 | 'red_customer_note' => __('Customer note', 'ameliabooking'), |
| 1312 | 'red_customer_note_success' => __('Customer note has been added.', 'ameliabooking'), |
| 1313 | 'red_customers_detected_in_file' => __('Customers detected in file:', 'ameliabooking'), |
| 1314 | 'red_daily_occupancy' => __('Daily occupancy', 'ameliabooking'), |
| 1315 | 'red_enter_phone_number_then_press_enter_to_add' => __('Enter a phone number, then press Enter to add', 'ameliabooking'), |
| 1316 | 'red_one_of_phone_numbers_incorrect' => __('One of the phone numbers provided is invalid.', 'ameliabooking'), |
| 1317 | 'red_dark_theme' => __('Dark Theme', 'ameliabooking'), |
| 1318 | 'red_date_asc' => __('Date Asc', 'ameliabooking'), |
| 1319 | 'red_date_desc' => __('Date Desc', 'ameliabooking'), |
| 1320 | 'red_delete_appointment' => __('Delete appointment', 'ameliabooking'), |
| 1321 | 'red_delete_booking' => __('Delete booking', 'ameliabooking'), |
| 1322 | 'red_delete_service_effect_past' => __('This service has {count} appointment in the past. | This service has {count} appointments in the past.', 'ameliabooking'), |
| 1323 | 'red_documentation' => __('Documentation', 'ameliabooking'), |
| 1324 | 'red_duplicate_appointment' => __('Duplicate appointment', 'ameliabooking'), |
| 1325 | 'red_duration_asc' => __('Duration Asc', 'ameliabooking'), |
| 1326 | 'red_duration_desc' => __('Duration Desc', 'ameliabooking'), |
| 1327 | 'red_e_ticket_qr_code' => __('E-ticket QR code', 'ameliabooking'), |
| 1328 | 'red_edit_booking' => __('Edit booking', 'ameliabooking'), |
| 1329 | 'red_edit_event' => __('Edit event', 'ameliabooking'), |
| 1330 | 'red_edit_table_subtitle' => __('Drag to rearrange columns and/or choose which ones to display.', 'ameliabooking'), |
| 1331 | 'red_edit_transaction' => __('Edit transaction', 'ameliabooking'), |
| 1332 | 'red_edit_table' => __('Edit table', 'ameliabooking'), |
| 1333 | 'red_enable' => __('Enable', 'ameliabooking'), |
| 1334 | 'red_end_date' => __('End date', 'ameliabooking'), |
| 1335 | 'red_event_asc' => __('Event Asc', 'ameliabooking'), |
| 1336 | 'red_event_booking_details' => __('Event Booking Details', 'ameliabooking'), |
| 1337 | 'red_event_desc' => __('Event Desc', 'ameliabooking'), |
| 1338 | 'red_event_details' => __('Event details', 'ameliabooking'), |
| 1339 | 'red_export_bookings' => __('Export bookings', 'ameliabooking'), |
| 1340 | 'red_facebook_social_login_description' => __('Allow customers and employees to quickly sign in using their Facebook account, making the login process faster, simpler, and more secure.', 'ameliabooking'), |
| 1341 | 'red_facebook_social_login' => __('Facebook social login', 'ameliabooking'), |
| 1342 | 'red_feature_api_description' => __('Connect APIs effortlessly for smooth, integrated workflows.', 'ameliabooking'), |
| 1343 | 'red_feature_apple_calendar_description' => __('Connect Apple Calendars to sync your personal and professional events, along with your employees’.', 'ameliabooking'), |
| 1344 | 'red_feature_barion_description' => __('Simple, secure payments powered by Barion.', 'ameliabooking'), |
| 1345 | 'red_feature_buddyboss_description' => __('Display Amelia booking forms and panels on BuddyBoss member profiles.', 'ameliabooking'), |
| 1346 | 'red_feature_cart_description' => __('Allow customers to book multiple services in a single transaction for a streamlined experience.', 'ameliabooking'), |
| 1347 | 'red_feature_coupons_description' => __('Offer discounts or free appointments with customizable coupons.', 'ameliabooking'), |
| 1348 | 'red_feature_custom_duration_description' => __('Offer services with multiple duration options for customers to choose from.', 'ameliabooking'), |
| 1349 | 'red_feature_custom_fields_description' => __('Use custom fields as intake forms to collect customer information during booking.', 'ameliabooking'), |
| 1350 | 'red_feature_custom_notifications_description' => __('Send personalized email and SMS notifications tailored to your business.', 'ameliabooking'), |
| 1351 | 'red_feature_custom_pricing_description' => __('Set dynamic pricing for services based on various conditions.', 'ameliabooking'), |
| 1352 | 'red_feature_deposit_payment_description' => __('Allow clients to secure bookings with partial payments.', 'ameliabooking'), |
| 1353 | 'red_feature_e_ticket_qr_code_description' => __('Enable quick, contactless event check-ins with unique QR codes for each ticket.', 'ameliabooking'), |
| 1354 | 'red_feature_employee_badge_description' => __('Enhance bookings with customizable badges to strengthen your brand identity.', 'ameliabooking'), |
| 1355 | 'red_feature_event_tickets_description' => __('Set flexible ticket pricing with categories and date-based ranges to maximize accessibility and revenue.', 'ameliabooking'), |
| 1356 | 'red_feature_extras_description' => __('Offer upsells or additional benefits within a service using extras.', 'ameliabooking'), |
| 1357 | 'red_feature_facebook_pixel_description' => __('Add Meta Pixel to track ad conversions and optimize marketing.', 'ameliabooking'), |
| 1358 | 'red_feature_google_analytics_description' => __('Add a Google Analytics tracking code to your booking page to gain insights into visitor behavior.', 'ameliabooking'), |
| 1359 | 'red_feature_google_calendar_description' => __('Connect Google Calendars to sync your personal and professional events, along with your employees’.', 'ameliabooking'), |
| 1360 | 'red_feature_google_disconnect' => __('Disconnect account', 'ameliabooking'), |
| 1361 | 'red_feature_google_general_description' => __('Sync your and your employees\' personal and professional events by connecting Google calendars.', 'ameliabooking'), |
| 1362 | 'red_feature_google_sign_in_button' => __('Sign in with Google', 'ameliabooking'), |
| 1363 | 'red_feature_invoices_description' => __('Generate invoices automatically for bookings to streamline payments and improve client experience.', 'ameliabooking'), |
| 1364 | 'red_feature_lesson_space_description' => __('Create online classrooms automatically for each booked appointment or event.', 'ameliabooking'), |
| 1365 | 'red_feature_mailchimop_description' => __('Send your customer data to Mailchimp quickly and effortlessly.', 'ameliabooking'), |
| 1366 | 'red_feature_mollie_description' => __('Accept payments seamlessly through the Mollie payment gateway.', 'ameliabooking'), |
| 1367 | 'red_feature_no_show_tag_description' => __('Track customers who miss appointments or events without sending notifications.', 'ameliabooking'), |
| 1368 | 'red_feature_outlook_calendar_description' => __('Connect Outlook Calendars to sync your personal and professional events, along with your employees’.', 'ameliabooking'), |
| 1369 | 'red_feature_packages_description' => __('Bundle multiple appointments or services at discounted rates to encourage customers to book more.', 'ameliabooking'), |
| 1370 | 'red_feature_paypal_description' => __('Accept payments for bookings and services via PayPal.', 'ameliabooking'), |
| 1371 | 'red_feature_razorpay_description' => __('Accept payments via Razorpay, ideal for Indian businesses.', 'ameliabooking'), |
| 1372 | 'red_feature_recaptcha_description' => __('Protect your booking system from bots by integrating reCAPTCHA keys.', 'ameliabooking'), |
| 1373 | 'red_feature_recurring_appointments_description' => __('Allow customers to book repeating appointments with customizable recurrence.', 'ameliabooking'), |
| 1374 | 'red_feature_resources_description' => __('Create resources like rooms or chairs that can be shared across services, locations, and employees.', 'ameliabooking'), |
| 1375 | 'red_feature_square_description' => __('Process payments easily with Square.', 'ameliabooking'), |
| 1376 | 'red_feature_stripe_description' => __('Securely process payments using Stripe.', 'ameliabooking'), |
| 1377 | 'red_feature_tax_description' => __('Automatically calculate and apply taxes for hassle-free compliance and accurate billing.', 'ameliabooking'), |
| 1378 | 'red_feature_time_zones_description' => __('Set individual time zones for employees so availability and bookings are shown correctly for clients worldwide.', 'ameliabooking'), |
| 1379 | 'red_feature_event_waiting_list_description' => __('Manage event cancellations efficiently by allowing customers to join waiting lists and filling open spots manually.', 'ameliabooking'), |
| 1380 | 'red_feature_appointment_waiting_list_description' => __('Efficiently manage appointment cancellations by allowing customers to join a waiting list and manually fill newly opened time slots.', 'ameliabooking'), |
| 1381 | 'red_feature_webhooks_description' => __('Connect with web apps to automate messaging and send updates to custom URLs.', 'ameliabooking'), |
| 1382 | 'red_feature_whatsapp_description' => __('Send appointment notifications directly via WhatsApp.', 'ameliabooking'), |
| 1383 | 'red_feature_woocommerce_description' => __('Integrate with WooCommerce to enable advanced e-commerce capabilities.', 'ameliabooking'), |
| 1384 | 'red_feature_zoom_description' => __('Automatically create Zoom meetings for bookings and notify customers and employees.', 'ameliabooking'), |
| 1385 | 'red_features_integrations' => __('Features & Integrations', 'ameliabooking'), |
| 1386 | 'red_features' => __('Features', 'ameliabooking'), |
| 1387 | 'red_fri' => __('Fri', 'ameliabooking'), |
| 1388 | 'red_full_events' => __('Full events', 'ameliabooking'), |
| 1389 | 'red_go_to_custom_fields' => __('Go to Custom Fields', 'ameliabooking'), |
| 1390 | 'red_google_calendar_and_google_meet' => __('Google Calendar & Google Meet', 'ameliabooking'), |
| 1391 | 'red_google_meet' => __('Google Meet', 'ameliabooking'), |
| 1392 | 'red_google_social_login_description' => __('Allow customers and employees to quickly sign in using their Google account, making the login process faster, simpler, and more secure.', 'ameliabooking'), |
| 1393 | 'red_google_social_login' => __('Google social login', 'ameliabooking'), |
| 1394 | 'red_gyms' => __('Gyms', 'ameliabooking'), |
| 1395 | 'red_healthcare' => __('Healthcare', 'ameliabooking'), |
| 1396 | 'red_hidden' => __('Hidden', 'ameliabooking'), |
| 1397 | 'red_hour_short' => __('h', 'ameliabooking'), |
| 1398 | 'red_id_asc' => __('ID Asc', 'ameliabooking'), |
| 1399 | 'red_id_desc' => __('ID Desc', 'ameliabooking'), |
| 1400 | 'red_import_rules_1' => __('You can import the following columns: First name, Last name, Email, Phone, Gender, Birthday, Note.', 'ameliabooking'), |
| 1401 | 'red_industries' => __('Industries', 'ameliabooking'), |
| 1402 | 'red_import_rules_2' => __('The first row should not contain column names.', 'ameliabooking'), |
| 1403 | 'red_import_rules_3' => __('Valid first and last names are required fields.', 'ameliabooking'), |
| 1404 | 'red_import_rules_4' => __('First and last names must be in two separate fields.', 'ameliabooking'), |
| 1405 | 'red_import_rules_5' => __('Date of birth must be in the same format as chosen in your WP settings. If a date format with a comma is used, the dates should be in quotes.', 'ameliabooking'), |
| 1406 | 'red_import_rules_6' => __('Phone number must include a country code.', 'ameliabooking'), |
| 1407 | 'red_import_rules_7' => __('Gender should be specified as either \'male\' or \'female\'.', 'ameliabooking'), |
| 1408 | 'red_import_rules_8' => __('If multiple customers have the same email address, only the first one will be imported.', 'ameliabooking'), |
| 1409 | 'red_import_rules_9' => __('If invalid, other values will be skipped and not imported.', 'ameliabooking'), |
| 1410 | 'red_last_booking_asc' => __('Last Booking Asc', 'ameliabooking'), |
| 1411 | 'red_last_booking_desc' => __('Last Booking Desc', 'ameliabooking'), |
| 1412 | 'red_less_options' => __('Less options', 'ameliabooking'), |
| 1413 | 'red_light_theme' => __('Light Theme', 'ameliabooking'), |
| 1414 | 'red_manage_bookings' => __('Manage bookings', 'ameliabooking'), |
| 1415 | 'red_max_capacity_asc' => __('Max Capacity Asc', 'ameliabooking'), |
| 1416 | 'red_max_capacity_desc' => __('Max Capacity Desc', 'ameliabooking'), |
| 1417 | 'red_microsoft_teams' => __('Microsoft Teams', 'ameliabooking'), |
| 1418 | 'red_message' => __('Message', 'ameliabooking'), |
| 1419 | 'red_message_content' => __('Message content', 'ameliabooking'), |
| 1420 | 'red_message_template' => __('Message template', 'ameliabooking'), |
| 1421 | 'red_minute_short' => __('min', 'ameliabooking'), |
| 1422 | 'red_mon' => __('Mon', 'ameliabooking'), |
| 1423 | 'red_more_features_zero_limits' => __('More Features Zero Limits', 'ameliabooking'), |
| 1424 | 'red_more_options' => __('More options', 'ameliabooking'), |
| 1425 | 'red_need_additional_fields' => __('Need additional fields?', 'ameliabooking'), |
| 1426 | 'red_new_attendee' => __('New Attendee', 'ameliabooking'), |
| 1427 | 'red_new_event_booking' => __('New event booking', 'ameliabooking'), |
| 1428 | 'red_new_update' => __('New Update', 'ameliabooking'), |
| 1429 | 'red_no_appointments_subtitle_1' => __('Once you receive bookings, your appointments will be displayed here. You can also get started by clicking the Add button below.', 'ameliabooking'), |
| 1430 | 'red_no_appointments_yet' => __('No appointments yet', 'ameliabooking'), |
| 1431 | 'red_no_attendees_found' => __('No attendees found', 'ameliabooking'), |
| 1432 | 'red_no_event_bookings_subtitle_1' => __('Once you receive event bookings, they will be displayed here. You can also get started by clicking the Book Event button below.', 'ameliabooking'), |
| 1433 | 'red_no_event_bookings_yet' => __('No event bookings yet', 'ameliabooking'), |
| 1434 | 'red_no_events_subtitle_1' => __('Once you add your first event, it will appear here. Click + Event below to get started.', 'ameliabooking'), |
| 1435 | 'red_no_events_yet' => __('No events yet', 'ameliabooking'), |
| 1436 | 'red_no_results_found_empty' => __('No results found', 'ameliabooking'), |
| 1437 | 'red_no_results_found' => __('No results found', 'ameliabooking'), |
| 1438 | 'red_no_results_found_for' => __('No results found for', 'ameliabooking'), |
| 1439 | 'red_no_search_results_subtitle' => __('Try adjusting your search or filters.', 'ameliabooking'), |
| 1440 | 'red_no_services_or_employees_available_subtitle' => __('Please ensure that services and employees are created and that services are assigned to employees.', 'ameliabooking'), |
| 1441 | 'red_no_services_or_employees_available' => __('No services or employees available', 'ameliabooking'), |
| 1442 | 'red_no_services_subtitle_1_part_1' => __('Once you add your first service, it will appear here.', 'ameliabooking'), |
| 1443 | 'red_no_services_subtitle_1_part_2' => __('Click + Service below to get started.', 'ameliabooking'), |
| 1444 | 'red_no_services_subtitle_2_part_1' => __('Try adjusting your filters or search criteria to find the services you\'re looking for.', 'ameliabooking'), |
| 1445 | 'red_no_services_subtitle_2_part_2' => __('You can also clear all filters to view all services.', 'ameliabooking'), |
| 1446 | 'red_no_services_yet' => __('No services yet', 'ameliabooking'), |
| 1447 | 'red_no_show_1' => __('No Show (1)', 'ameliabooking'), |
| 1448 | 'red_no_show_2' => __('No Show (2)', 'ameliabooking'), |
| 1449 | 'red_no_show_3_plus' => __('No Show (3+)', 'ameliabooking'), |
| 1450 | 'red_no_show_tag' => __('No-show tag', 'ameliabooking'), |
| 1451 | 'red_no_top_trends' => __('No top trends', 'ameliabooking'), |
| 1452 | 'red_no_transactions_subtitle_1' => __('Once you start receiving bookings, transactions will be displayed here.', 'ameliabooking'), |
| 1453 | 'red_no_transactions_title' => __('No transactions yet', 'ameliabooking'), |
| 1454 | 'red_no_upcoming_events_subtitle' => __('There are no future events scheduled. Please create a new event.', 'ameliabooking'), |
| 1455 | 'red_no_upcoming_events' => __('No upcoming events', 'ameliabooking'), |
| 1456 | 'red_no_wp_users_with_amelia_customer_role' => __('No WordPress users with the Amelia Customer role are available.', 'ameliabooking'), |
| 1457 | 'red_notifications' => __('Notifications', 'ameliabooking'), |
| 1458 | 'red_occupancy_rate_info' => __('This widget shows monthly data instead of using the global date range.', 'ameliabooking'), |
| 1459 | 'red_occupancy_rate' => __('Occupancy rate', 'ameliabooking'), |
| 1460 | 'red_occupied' => __('Occupied', 'ameliabooking'), |
| 1461 | 'red_on_site_payment' => __('On-site payment', 'ameliabooking'), |
| 1462 | 'red_organizers' => __('Organizers', 'ameliabooking'), |
| 1463 | 'red_payment_methods' => __('Payment methods', 'ameliabooking'), |
| 1464 | 'red_payment_methods_compatibility_rules' => __('Some payment methods cannot be used together due to compatibility rules', 'ameliabooking'), |
| 1465 | 'red_outlook_calendar_and_microsoft_teams' => __('Outlook Calendar & Microsoft Teams', 'ameliabooking'), |
| 1466 | 'red_paragraph' => __('Paragraph', 'ameliabooking'), |
| 1467 | 'red_placeholder_tooltip' => __('Select a placeholder to insert it where your cursor is placed.', 'ameliabooking'), |
| 1468 | 'red_plans' => __('Plans', 'ameliabooking'), |
| 1469 | 'red_please_enter_content' => __('Please enter a content.', 'ameliabooking'), |
| 1470 | 'red_please_enter_notification_name' => __('Please enter a notification name.', 'ameliabooking'), |
| 1471 | 'red_please_enter_subject' => __('Please enter a subject.', 'ameliabooking'), |
| 1472 | 'red_please_enter_ticket_name' => __('Please enter a ticket name.', 'ameliabooking'), |
| 1473 | 'red_recaptcha' => __('reCAPTCHA', 'ameliabooking'), |
| 1474 | 'red_recurring_alert_setup' => __('Before enabling the recurring option, ensure that all required fields are set, including the service, employee, date, time, and location (if applicable).', 'ameliabooking'), |
| 1475 | 'red_reorder_on_website' => __('Reorder on website', 'ameliabooking'), |
| 1476 | 'red_reorder_services_description' => __('Reordering services affects how they are displayed on the website.', 'ameliabooking'), |
| 1477 | 'red_reorder_services' => __('Reorder Services', 'ameliabooking'), |
| 1478 | 'red_reorder_services_failed' => __('Failed to reorder services.', 'ameliabooking'), |
| 1479 | 'red_reorder_services_successfully' => __('Services have been reordered.', 'ameliabooking'), |
| 1480 | 'red_replace' => __('Replace', 'ameliabooking'), |
| 1481 | 'red_revenue_prev_range' => __('Previous range', 'ameliabooking'), |
| 1482 | 'red_revenue_this_range' => __('This range', 'ameliabooking'), |
| 1483 | 'red_roles_permissions' => __('Roles & permissions', 'ameliabooking'), |
| 1484 | 'red_same_day' => __('Same day', 'ameliabooking'), |
| 1485 | 'red_sat' => __('Sat', 'ameliabooking'), |
| 1486 | 'red_scheduled' => __('Scheduled', 'ameliabooking'), |
| 1487 | 'red_scope' => __('Scope', 'ameliabooking'), |
| 1488 | 'red_scopes' => __('Scopes', 'ameliabooking'), |
| 1489 | 'red_search_bookings' => __('Search bookings', 'ameliabooking'), |
| 1490 | 'red_search_features' => __('Search features', 'ameliabooking'), |
| 1491 | 'red_search_integrations' => __('Search integrations', 'ameliabooking'), |
| 1492 | 'red_search_invoices' => __('Search invoices', 'ameliabooking'), |
| 1493 | 'red_search_notifications' => __('Search notifications', 'ameliabooking'), |
| 1494 | 'red_search_packages' => __('Search packages', 'ameliabooking'), |
| 1495 | 'red_search_services' => __('Search services', 'ameliabooking'), |
| 1496 | 'red_select_attendee_warning' => __('Please select an attendee.', 'ameliabooking'), |
| 1497 | 'red_select_booking_closes_date_warning' => __('Please select a closing date.', 'ameliabooking'), |
| 1498 | 'red_select_booking_closes_time_warning' => __('Please select a closing time.', 'ameliabooking'), |
| 1499 | 'red_select_booking_opens_date_warning' => __('Please select an opening date.', 'ameliabooking'), |
| 1500 | 'red_select_booking_opens_time_warning' => __('Please select an opening time.', 'ameliabooking'), |
| 1501 | 'red_select_box' => __('Select box', 'ameliabooking'), |
| 1502 | 'red_select_color_warning' => __('Please select a color.', 'ameliabooking'), |
| 1503 | 'red_select_date_range_warning' => __('Please select a date range.', 'ameliabooking'), |
| 1504 | 'red_select_end_time_warning' => __('Please select an end time.', 'ameliabooking'), |
| 1505 | 'red_select_event_warning' => __('Please select an event.', 'ameliabooking'), |
| 1506 | 'red_select_start_time_warning' => __('Please select a start time.', 'ameliabooking'), |
| 1507 | 'red_send_test' => __('Send test', 'ameliabooking'), |
| 1508 | 'red_send_reset_link' => __('Send Reset Link', 'ameliabooking'), |
| 1509 | 'red_service_asc' => __('Service Asc', 'ameliabooking'), |
| 1510 | 'red_service_categories' => __('Service Categories', 'ameliabooking'), |
| 1511 | 'red_service_desc' => __('Service Desc', 'ameliabooking'), |
| 1512 | 'red_service_event' => __('Service/Event', 'ameliabooking'), |
| 1513 | 'red_service_failed_to_be_deleted' => __('This service cannot be deleted because it is included in a package.', 'ameliabooking'), |
| 1514 | 'red_service_updated_success' => __('Service has been updated.', 'ameliabooking'), |
| 1515 | 'red_services_count' => __('{count} Service | {count} Services', 'ameliabooking'), |
| 1516 | 'red_show_bookings' => __('Show bookings', 'ameliabooking'), |
| 1517 | 'red_show_event' => __('Show event', 'ameliabooking'), |
| 1518 | 'red_show_event_subtitle' => __('Are you sure you want to show this event?', 'ameliabooking'), |
| 1519 | 'red_show_in_calendar' => __('View in Calendar', 'ameliabooking'), |
| 1520 | 'red_single_booking' => __('Single booking', 'ameliabooking'), |
| 1521 | 'red_sms' => __('SMS', 'ameliabooking'), |
| 1522 | 'red_sms_balance' => __('SMS balance', 'ameliabooking'), |
| 1523 | 'red_sms_settings' => __('SMS Settings', 'ameliabooking'), |
| 1524 | 'red_spots' => __('Spots', 'ameliabooking'), |
| 1525 | 'red_back_to' => __('Back to', 'ameliabooking'), |
| 1526 | 'red_booked' => __('Booked', 'ameliabooking'), |
| 1527 | 'red_start_date' => __('Start date', 'ameliabooking'), |
| 1528 | 'red_status_asc' => __('Status Asc', 'ameliabooking'), |
| 1529 | 'red_status_desc' => __('Status Desc', 'ameliabooking'), |
| 1530 | 'red_studios' => __('Studios', 'ameliabooking'), |
| 1531 | 'red_subject_placeholders' => __('Subject placeholders', 'ameliabooking'), |
| 1532 | 'red_sun' => __('Sun', 'ameliabooking'), |
| 1533 | 'red_support' => __('Support', 'ameliabooking'), |
| 1534 | 'red_thu' => __('Thu', 'ameliabooking'), |
| 1535 | 'red_time_zones' => __('Time zones', 'ameliabooking'), |
| 1536 | 'red_tip_appointment_management_guide' => __('Appointment management guide', 'ameliabooking'), |
| 1537 | 'red_tip_custom_service_duration' => __('Custom service duration', 'ameliabooking'), |
| 1538 | 'red_tip_event_calendar_booking_from' => __('Event calendar booking from', 'ameliabooking'), |
| 1539 | 'red_tip_event_list_booking_from' => __('Event list booking from', 'ameliabooking'), |
| 1540 | 'red_tip_event_management_guide' => __('Events setup', 'ameliabooking'), |
| 1541 | 'red_tip_event_pricing_setup' => __('Events custom pricing', 'ameliabooking'), |
| 1542 | 'red_tip_event_ticketing' => __('Event ticketing', 'ameliabooking'), |
| 1543 | 'red_tip_events_list_view' => __('Events list view', 'ameliabooking'), |
| 1544 | 'red_tip_events_pricing' => __('Events pricing', 'ameliabooking'), |
| 1545 | 'red_tip_front_end_customer_panel' => __('Front-end customer panel', 'ameliabooking'), |
| 1546 | 'red_tip_importing_customers' => __('Importing customers', 'ameliabooking'), |
| 1547 | 'red_tip_notification_settings' => __('Notification settings', 'ameliabooking'), |
| 1548 | 'red_tip_notifications_in_amelia' => __('Notifications in Amelia', 'ameliabooking'), |
| 1549 | 'red_tip_recurring_appointments_setup' => __('Recurring appointments setup', 'ameliabooking'), |
| 1550 | 'red_tip_recurring_events_description' => __('Create and manage recurring events with customizable schedules for flexibility and convenience.', 'ameliabooking'), |
| 1551 | 'red_tip_recurring_events' => __('Recurring events', 'ameliabooking'), |
| 1552 | 'red_tip_services_categories_setup' => __('Services & categories setup', 'ameliabooking'), |
| 1553 | 'red_tip_services_setup' => __('Services setup', 'ameliabooking'), |
| 1554 | 'red_tip_step_by_step_booking_form_guide' => __('Step-by-step booking form guide', 'ameliabooking'), |
| 1555 | 'red_tips_and_suggestions' => __('Tips & suggestions', 'ameliabooking'), |
| 1556 | 'red_total_capacity' => __('Total capacity', 'ameliabooking'), |
| 1557 | 'red_trainers' => __('Trainers', 'ameliabooking'), |
| 1558 | 'red_transaction' => __('Transaction', 'ameliabooking'), |
| 1559 | 'red_transaction_details' => __('Transaction details', 'ameliabooking'), |
| 1560 | 'red_transaction_number_count' => __('Transaction #{count}', 'ameliabooking'), |
| 1561 | 'red_transactions' => __('Transactions', 'ameliabooking'), |
| 1562 | 'red_try_adjusting_search' => __('Try adjusting your search to find what you are looking for.', 'ameliabooking'), |
| 1563 | 'red_tue' => __('Tue', 'ameliabooking'), |
| 1564 | 'red_update_service_settings' => __('Update Service Settings', 'ameliabooking'), |
| 1565 | 'red_updates' => __('Updates', 'ameliabooking'), |
| 1566 | 'red_upgrade' => __('Upgrade', 'ameliabooking'), |
| 1567 | 'red_upload_avatar' => __('Upload image', 'ameliabooking'), |
| 1568 | 'red_upload' => __('Upload', 'ameliabooking'), |
| 1569 | 'red_videos' => __('Videos', 'ameliabooking'), |
| 1570 | 'red_view_booking' => __('View booking', 'ameliabooking'), |
| 1571 | 'red_view_invoice' => __('View invoice', 'ameliabooking'), |
| 1572 | 'red_watch_tutorials' => __('Video tutorials', 'ameliabooking'), |
| 1573 | 'red_web' => __('Web', 'ameliabooking'), |
| 1574 | 'red_webhooks' => __('Webhooks', 'ameliabooking'), |
| 1575 | 'red_wed' => __('Wed', 'ameliabooking'), |
| 1576 | 'red_wellness' => __('Wellness', 'ameliabooking'), |
| 1577 | 'red_whatsapp' => __('WhatsApp', 'ameliabooking'), |
| 1578 | 'red_working_hours' => __('Working hours', 'ameliabooking'), |
| 1579 | 'red_yoga' => __('Yoga', 'ameliabooking'), |
| 1580 | 'top_trends' => __('Top trends', 'ameliabooking'), |
| 1581 | 'red_no_customers_title' => __('No customers yet', 'ameliabooking'), |
| 1582 | 'red_no_customers_subtitle_1' => __('Once you start receiving bookings, your customers will be displayed here. You can also get started by clicking the Add or Import button below.', 'ameliabooking'), |
| 1583 | 'red_tip_customer_setup' => __('Customer setup', 'ameliabooking'), |
| 1584 | 'red_how_to' => __('How to', 'ameliabooking'), |
| 1585 | 'red_packages_locked_heading' => __('Boost revenue with bundled service packages', 'ameliabooking'), |
| 1586 | 'red_packages_locked_description' => __('Turn your services into high-value packages that customers love. Combine multiple appointments into a single, discounted offer that drives bigger, more confident purchases.', 'ameliabooking'), |
| 1587 | 'red_packages_feature_1' => __('Increase sales volume by encouraging customers to book more appointments at once', 'ameliabooking'), |
| 1588 | 'red_packages_feature_2' => __('Flexible pricing lets you set a fixed package price and offer attractive discounts', 'ameliabooking'), |
| 1589 | 'red_packages_feature_3' => __('Improved customer retention as clients return to use the remaining sessions in their package', 'ameliabooking'), |
| 1590 | 'red_resources_locked_heading' => __('Manage shared resources with ease', 'ameliabooking'), |
| 1591 | 'red_resources_locked_description' => __('Create rooms, equipment, or other resources that can be shared across employees, services, or locations, ensuring customers only see time slots when everything they need is truly available.', 'ameliabooking'), |
| 1592 | 'red_resources_feature_1' => __('Avoid double-booking by automatically coordinating shared rooms, equipment, or tools', 'ameliabooking'), |
| 1593 | 'red_resources_feature_2' => __('Streamline operations with one central place to manage all resources across your business', 'ameliabooking'), |
| 1594 | 'red_resources_feature_3' => __('Deliver a smoother booking experience by showing customers only real, available time slots', 'ameliabooking'), |
| 1595 | 'red_extras_locked_heading' => __('Boost revenue with valuable extras', 'ameliabooking'), |
| 1596 | 'red_extras_locked_description' => __('Offer optional or mandatory extras during the booking process - upsell additional services, products, or experiences to enhance appointments and delight your customers.', 'ameliabooking'), |
| 1597 | 'red_extras_feature_1' => __('Increase revenue by encouraging customers to purchase additional services or products', 'ameliabooking'), |
| 1598 | 'red_extras_feature_2' => __('Customize offerings to match specific services and meet diverse client needs', 'ameliabooking'), |
| 1599 | 'red_extras_feature_3' => __('Enhance the customer experience with tailored add-ons that add convenience and value', 'ameliabooking'), |
| 1600 | 'red_locations_locked_heading' => __('Effortless management for every location', 'ameliabooking'), |
| 1601 | 'red_locations_locked_description' => __('Easily organize multiple business locations in one place, ensuring smooth operations and a consistent booking experience no matter where your services are offered.', 'ameliabooking'), |
| 1602 | 'red_locations_feature_1' => __('Centralize scheduling across all branches for clearer, simpler management', 'ameliabooking'), |
| 1603 | 'red_locations_feature_2' => __('Improve customer experience by letting clients choose the location that suits them best', 'ameliabooking'), |
| 1604 | 'red_locations_feature_3' => __('Keep operations aligned with unified settings, availability, and resource control', 'ameliabooking'), |
| 1605 | 'red_custom_fields_locked_heading' => __('Collect the information your business truly needs', 'ameliabooking'), |
| 1606 | 'red_custom_fields_locked_description' => __('Build tailored forms across services, events, and customer profiles using custom fields. Capture exactly the details you need with checkboxes, text areas, and more, turning every booking and registration into a powerful intake process.', 'ameliabooking'), |
| 1607 | 'red_custom_fields_feature_1' => __('Customize every interaction by gathering the right information for services, events, and customer records', 'ameliabooking'), |
| 1608 | 'red_custom_fields_feature_2' => __('Keep your data organized and meaningful with structured fields that standardize the information you collect', 'ameliabooking'), |
| 1609 | 'red_custom_fields_feature_3' => __('Enhance the customer experience with clear, intuitive forms designed around your business needs', 'ameliabooking'), |
| 1610 | 'red_invoices_locked_heading' => __('Automated invoices for a smoother payment experience', 'ameliabooking'), |
| 1611 | 'red_invoices_locked_description' => __('Automatically generate invoices for every booking, making payments easier, more transparent, and fully streamlined for both you and your clients.', 'ameliabooking'), |
| 1612 | 'red_invoices_feature_1' => __('Save time and reduce manual work with instant, auto-generated invoices', 'ameliabooking'), |
| 1613 | 'red_invoices_feature_2' => __('Improve accuracy and professionalism with consistent, clearly formatted billing', 'ameliabooking'), |
| 1614 | 'red_invoices_feature_3' => __('Enhance client trust by providing transparent, documented payment details for every booking', 'ameliabooking'), |
| 1615 | 'red_coupons_locked_heading' => __('Drive bookings with irresistible coupon offers', 'ameliabooking'), |
| 1616 | 'red_coupons_locked_description' => __('Create unique coupon codes that customers can redeem during booking-offer discounts or even free appointments to boost engagement, satisfaction, and sales.', 'ameliabooking'), |
| 1617 | 'red_coupons_feature_1' => __('Increase conversions by motivating customers with attractive, limited-time deals', 'ameliabooking'), |
| 1618 | 'red_coupons_feature_2' => __('Flexible discount options let you set custom values or offer full-price waivers', 'ameliabooking'), |
| 1619 | 'red_coupons_feature_3' => __('Enhance customer loyalty by rewarding clients with exclusive, personalized offers', 'ameliabooking'), |
| 1620 | 'red_taxes_locked_heading' => __('Effortless tax management for every booking', 'ameliabooking'), |
| 1621 | 'red_taxes_locked_description' => __('Automatically calculate and apply taxes to your services and events, ensuring accurate billing and hassle-free compliance with every transaction.', 'ameliabooking'), |
| 1622 | 'red_taxes_feature_1' => __('Eliminate manual calculations with smart, automated tax application', 'ameliabooking'), |
| 1623 | 'red_taxes_feature_2' => __('Ensure accurate billing by applying the correct tax rates every time', 'ameliabooking'), |
| 1624 | 'red_taxes_feature_3' => __('Stay compliant with ease through consistent, reliable tax handling across your business', 'ameliabooking'), |
| 1625 | 'red_whatsapp_locked_heading' => __('Stay connected with WhatsApp notifications', 'ameliabooking'), |
| 1626 | 'red_whatsapp_locked_description' => __('Keep customers and employees informed by sending appointment and event notifications directly through WhatsApp - choose predefined messages or customize your own for a personal touch.', 'ameliabooking'), |
| 1627 | 'red_whatsapp_feature_1' => __('Boost engagement by reaching clients instantly on a platform they use every day', 'ameliabooking'), |
| 1628 | 'red_whatsapp_feature_2' => __('Reduce no-shows with timely reminders sent automatically', 'ameliabooking'), |
| 1629 | 'red_whatsapp_feature_3' => __('Simplify communication with customizable messages for both customers and employees', 'ameliabooking'), |
| 1630 | 'red_recurring_events_locked_heading' => __('Simplify scheduling with recurring events', 'ameliabooking'), |
| 1631 | 'red_recurring_events_locked_description' => __('Effortlessly set up and manage events that repeat on your preferred schedule-offering flexibility, consistency, and a smooth experience for both your business and your customers.', 'ameliabooking'), |
| 1632 | 'red_recurring_events_feature_1' => __('Save time by automating repeating events instead of creating them manually', 'ameliabooking'), |
| 1633 | 'red_recurring_events_feature_2' => __('Maintain consistent scheduling with customizable frequencies and patterns', 'ameliabooking'), |
| 1634 | 'red_recurring_events_feature_3' => __('Improve customer convenience by offering predictable, easy-to-book recurring options', 'ameliabooking'), |
| 1635 | 'red_employee_integrations_locked_heading' => __('Empower your team with seamless integrations', 'ameliabooking'), |
| 1636 | 'red_employee_integrations_locked_description' => __('Connect employee calendars, meeting tools, and other integrations to keep schedules perfectly synced and communication effortless across your entire team.', 'ameliabooking'), |
| 1637 | 'red_employee_integrations_feature_1' => __('Prevent scheduling conflicts with real-time calendar syncing for every employee.', 'ameliabooking'), |
| 1638 | 'red_employee_integrations_feature_2' => __('Streamline virtual meetings by integrating popular meeting platforms directly into bookings.', 'ameliabooking'), |
| 1639 | 'red_employee_integrations_feature_3' => __('Boost team productivity with automated updates and fewer manual tasks.', 'ameliabooking'), |
| 1640 | 'red_employee_note_updated' => __('Employee note has been updated.', 'ameliabooking'), |
| 1641 | 'red_customer_note_updated' => __('Customer note has been updated.', 'ameliabooking'), |
| 1642 | 'red_need_to_update_company_days_off' => __('Need to update your company\'s days off?', 'ameliabooking'), |
| 1643 | 'red_manage_company_days_off' => __('Manage company days off', 'ameliabooking'), |
| 1644 | 'red_learn_more' => __('Learn more', 'ameliabooking'), |
| 1645 | 'red_no_employees_yet' => __('No employees yet', 'ameliabooking'), |
| 1646 | 'red_no_employees_subtitle_1' => __('Once you add your first employee, it will appear here. Click + Employee below to get started.', 'ameliabooking'), |
| 1647 | 'red_attendees_search_placeholder' => __('Search attendees', 'ameliabooking'), |
| 1648 | 'red_total_payments' => __('Total payments', 'ameliabooking'), |
| 1649 | 'red_event_booking_closes_at' => __('Closes at', 'ameliabooking'), |
| 1650 | 'red_booking_source' => __('Booking source', 'ameliabooking'), |
| 1651 | 'red_edit_event_booking' => __('Edit event booking', 'ameliabooking'), |
| 1652 | 'red_availability' => __('Availability', 'ameliabooking'), |
| 1653 | 'red_employee_details' => __('Employee details', 'ameliabooking'), |
| 1654 | 'red_show_more_count' => __('Show more ({count})', 'ameliabooking'), |
| 1655 | 'red_actions' => __('Actions', 'ameliabooking'), |
| 1656 | 'red_tip_employee_setup' => __('Employee setup', 'ameliabooking'), |
| 1657 | 'red_tip_managing_assigned_services' => __('Managing assigned services', 'ameliabooking'), |
| 1658 | 'red_tip_special_days_setup' => __('Special days setup', 'ameliabooking'), |
| 1659 | 'red_tip_setting_up_days_off' => __('Setting up days off', 'ameliabooking'), |
| 1660 | 'red_tip_employee_badges_management' => __('Employee badges management', 'ameliabooking'), |
| 1661 | 'red_tip_google_meet_setup' => __('Google Meet setup', 'ameliabooking'), |
| 1662 | 'red_tip_work_hours_setup' => __('Work hours setup', 'ameliabooking'), |
| 1663 | 'red_all_assigned_services' => __('All assigned services', 'ameliabooking'), |
| 1664 | 'red_also_cancel_and_delete_future_events_desc' => __('You can also cancel and delete its future events.', 'ameliabooking'), |
| 1665 | 'red_default_location' => __('Default location', 'ameliabooking'), |
| 1666 | 'red_tip_zoom_setup' => __('Zoom setup', 'ameliabooking'), |
| 1667 | 'red_tip_front_end_employee_panel' => __('Front-end employee panel', 'ameliabooking'), |
| 1668 | 'red_tip_roles_settings' => __('Roles settings', 'ameliabooking'), |
| 1669 | 'red_hide_service' => __('Hide service', 'ameliabooking'), |
| 1670 | 'red_duplicate_service' => __('Duplicate service', 'ameliabooking'), |
| 1671 | 'red_duplicate_category' => __('Duplicate category', 'ameliabooking'), |
| 1672 | 'red_delete_category_effect_future' => __('Could not delete category. This category has services with {count} future appointment. | Could not delete category. This category has services with {count} future appointments.', 'ameliabooking'), |
| 1673 | 'red_delete_category_effect_past' => __('This category has services with {count} past appointment. | This category has services with {count} past appointments.', 'ameliabooking'), |
| 1674 | 'red_delete_service_effect_future' => __('Could not delete service. This service has {count} appointment in the future. | Could not delete service. This service has {count} appointments in the future.', 'ameliabooking'), |
| 1675 | 'red_hide_employee' => __('Hide employee', 'ameliabooking'), |
| 1676 | 'red_show_employee' => __('Show employee', 'ameliabooking'), |
| 1677 | 'red_show_service' => __('Show service', 'ameliabooking'), |
| 1678 | 'red_delete_customer' => __('Delete customer', 'ameliabooking'), |
| 1679 | 'red_delete_employee' => __('Delete employee', 'ameliabooking'), |
| 1680 | 'red_delete_user_effect_future' => __('Could not delete user. This user has {count} appointment in the future. | Could not delete user. This user has {count} appointments in the future.', 'ameliabooking'), |
| 1681 | 'red_block_customer' => __('Block customer', 'ameliabooking'), |
| 1682 | 'red_unblock_customer' => __('Unblock customer', 'ameliabooking'), |
| 1683 | 'red_unexpected_error' => __('An unexpected error occurred. Please try again later.', 'ameliabooking'), |
| 1684 | 'red_hide_event' => __('Hide event', 'ameliabooking'), |
| 1685 | 'red_hide_event_subtitle' => __('Are you sure you want to hide this event?', 'ameliabooking'), |
| 1686 | 'red_event_cancel_delete' => __('Are you sure you want to cancel and delete this event?', 'ameliabooking'), |
| 1687 | 'red_confirm_delete_event_booking' => __('Are you sure you want to delete this event booking?', 'ameliabooking'), |
| 1688 | 'red_notification_status_updated' => __('Notification status has been updated.', 'ameliabooking'), |
| 1689 | 'red_notification_status_failed' => __('Notification status has not been updated.', 'ameliabooking'), |
| 1690 | 'red_draft' => __('Draft', 'ameliabooking'), |
| 1691 | 'red_customers_deleted_success' => __('{count} customer deleted. | {count} customers deleted.', 'ameliabooking'), |
| 1692 | 'red_event_hidden' => __('Event has been hidden.', 'ameliabooking'), |
| 1693 | 'red_event_visible' => __('Event is now visible.', 'ameliabooking'), |
| 1694 | 'red_customer_details' => __('Customer details', 'ameliabooking'), |
| 1695 | 'red_last_on' => __('Last on {date}', 'ameliabooking'), |
| 1696 | 'red_customers_deleted_error' => __('{count} customer could not be deleted due to future bookings. | {count} customers could not be deleted due to future bookings.', 'ameliabooking'), |
| 1697 | 'red_customer_updated_success' => __('Customer has been updated.', 'ameliabooking'), |
| 1698 | 'red_watch_on_youtube' => __('Watch on YouTube', 'ameliabooking'), |
| 1699 | 'red_repeat_every_year' => __('Repeat every year', 'ameliabooking'), |
| 1700 | 'red_edit_work_hours' => __('Edit work hours', 'ameliabooking'), |
| 1701 | 'red_edit_day_off' => __('Edit day off', 'ameliabooking'), |
| 1702 | 'red_hide_tips_and_suggestions' => __('Hide tips & suggestions', 'ameliabooking'), |
| 1703 | 'red_export_appointments_locked_title' => __('Export appointment data with ease', 'ameliabooking'), |
| 1704 | 'red_export_appointments_locked_description' => __('Quickly download all appointment details from the Bookings page, making reporting, analysis, and record-keeping simple and efficient.', 'ameliabooking'), |
| 1705 | 'red_export_appointments_locked_feature_1' => __('Save time with fast, one-click appointment exports', 'ameliabooking'), |
| 1706 | 'red_export_appointments_locked_feature_2' => __('Improve reporting accuracy by accessing complete appointment data instantly', 'ameliabooking'), |
| 1707 | 'red_export_appointments_locked_feature_3' => __('Stay organized with export files ready for analysis or external tools', 'ameliabooking'), |
| 1708 | 'red_export_customers_locked_title' => __('Easily export your customer data in one click', 'ameliabooking'), |
| 1709 | 'red_export_customers_locked_description' => __('Download your customer list instantly for reporting, marketing, or external system use, making data management faster and more convenient than ever.', 'ameliabooking'), |
| 1710 | 'red_export_customers_locked_feature_1' => __('Save time with quick, hassle-free customer data exports', 'ameliabooking'), |
| 1711 | 'red_export_customers_locked_feature_2' => __('Support deeper insights by using exported data for analysis and reporting', 'ameliabooking'), |
| 1712 | 'red_export_customers_locked_feature_3' => __('Enhance flexibility with customer information ready for marketing tools or external platforms', 'ameliabooking'), |
| 1713 | 'red_export_event_bookings_locked_title' => __('Export event booking data with ease', 'ameliabooking'), |
| 1714 | 'red_export_event_bookings_locked_description' => __('Quickly download all event booking details from the Event Bookings page, making reporting, analysis, and record-keeping simple and efficient.', 'ameliabooking'), |
| 1715 | 'red_export_event_bookings_locked_feature_1' => __('Save time with fast, one-click event booking exports', 'ameliabooking'), |
| 1716 | 'red_export_event_bookings_locked_feature_2' => __('Improve reporting accuracy by accessing complete event booking data instantly', 'ameliabooking'), |
| 1717 | 'red_export_event_bookings_locked_feature_3' => __('Stay organized with export files ready for analysis or external tools', 'ameliabooking'), |
| 1718 | 'red_custom_notifications_locked_title' => __('Send smart, personalized notifications your way', 'ameliabooking'), |
| 1719 | 'red_custom_notifications_locked_description' => __('Create custom notifications that trigger based on booking status or schedule reminders, keeping customers and employees informed at exactly the right time.', 'ameliabooking'), |
| 1720 | 'red_custom_notifications_locked_feature_1' => __('Automate communication with notifications triggered by booking status, time, or custom rules', 'ameliabooking'), |
| 1721 | 'red_custom_notifications_locked_feature_2' => __('Keep everyone on track using scheduled reminders that reduce no-shows and confusion', 'ameliabooking'), |
| 1722 | 'red_custom_notifications_locked_feature_3' => __('Deliver personalized messages tailored to your business tone, branding, and workflow', 'ameliabooking'), |
| 1723 | 'red_export_payments_locked_title' => __('Access your financial data in seconds', 'ameliabooking'), |
| 1724 | 'red_export_payments_locked_description' => __('Export all transaction records from the Finance page for effortless accounting, reconciliation, or sharing with your finance tools.', 'ameliabooking'), |
| 1725 | 'red_export_payments_locked_feature_1' => __('Simplify financial management with easy, one-click transaction exports', 'ameliabooking'), |
| 1726 | 'red_export_payments_locked_feature_2' => __('Ensure accurate bookkeeping with clear, organized financial data', 'ameliabooking'), |
| 1727 | 'red_export_payments_locked_feature_3' => __('Support external workflows by seamlessly moving financial records into other systems', 'ameliabooking'), |
| 1728 | 'red_multiple_employees_locked_title' => __('Grow your team with unlimited employee management', 'ameliabooking'), |
| 1729 | 'red_multiple_employees_locked_description' => __('Add multiple employees to your booking system, manage their schedules, and assign them to services or events, making it easy to scale your business and coordinate your team.', 'ameliabooking'), |
| 1730 | 'red_multiple_employees_locked_feature_1' => __('Expand your capacity by adding as many employees as your business needs', 'ameliabooking'), |
| 1731 | 'red_multiple_employees_locked_feature_2' => __('Simplify scheduling with individual availability, working hours, and assignments', 'ameliabooking'), |
| 1732 | 'red_multiple_employees_locked_feature_3' => __('Improve customer choice by letting clients book with the employee that suits them best', 'ameliabooking'), |
| 1733 | 'red_notification' => __('Notification', 'ameliabooking'), |
| 1734 | 'red_confirm_delete_event' => __('Are you sure you want to delete this event?', 'ameliabooking'), |
| 1735 | 'red_delete_category' => __('Delete category', 'ameliabooking'), |
| 1736 | 'red_delete_service' => __('Delete service', 'ameliabooking'), |
| 1737 | 'red_configuration' => __('Configuration', 'ameliabooking'), |
| 1738 | 'red_delete_user_effect_past' => __('This user has {count} appointment in the past. | This user has {count} appointments in the past.', 'ameliabooking'), |
| 1739 | 'red_delete_user_event_effect_future' => __('This user is an attendee in future event. Are you sure you want to delete this user? | This user is an attendee in future events. Are you sure you want to delete this user?', 'ameliabooking'), |
| 1740 | 'red_no_wp_users_with_amelia_employee_role' => __('No WordPress users with the Amelia Employee role are available.', 'ameliabooking'), |
| 1741 | 'red_set_up' => __('Set up', 'ameliabooking'), |
| 1742 | 'red_disable' => __('Disable', 'ameliabooking'), |
| 1743 | 'enter_email_then_press_enter_to_add' => __('Enter email, then press Enter to add', 'ameliabooking'), |
| 1744 | 'payment_links_warning' => __('This option requires adding the payment link placeholder to your message templates.', 'ameliabooking'), |
| 1745 | 'payment_links_redirect' => __('Redirect URL after payment', 'ameliabooking'), |
| 1746 | 'payment_links_redirect_tooltip' => __('Customers will be redirected to this URL after they complete their payment.', 'ameliabooking'), |
| 1747 | 'basic' => __('Basic', 'ameliabooking'), |
| 1748 | 'advanced' => __('Advanced', 'ameliabooking'), |
| 1749 | 'field_options' => __('Options', 'ameliabooking'), |
| 1750 | 'field_order' => __('Field order', 'ameliabooking'), |
| 1751 | 'button' => __('Button', 'ameliabooking'), |
| 1752 | 'language' => __('Language', 'ameliabooking'), |
| 1753 | 'go_to_sbs_form' => __('Go to Step-by-step form', 'ameliabooking'), |
| 1754 | 'go_to_cat_form' => __('Go to Catalog form', 'ameliabooking'), |
| 1755 | 'redirect' => __('Redirect', 'ameliabooking'), |
| 1756 | 'save_data_on_redirect' => __('Your data will be saved before redirecting to another form.', 'ameliabooking'), |
| 1757 | 'steps_order' => __('Steps order', 'ameliabooking'), |
| 1758 | 'labels' => __('Labels', 'ameliabooking'), |
| 1759 | 'forms_picker' => __('Forms', 'ameliabooking'), |
| 1760 | 'accent' => __('Accent', 'ameliabooking'), |
| 1761 | 'accent_text' => __('Accent text', 'ameliabooking'), |
| 1762 | 'secondary' => __('Secondary', 'ameliabooking'), |
| 1763 | 'secondary_text' => __('Secondary text', 'ameliabooking'), |
| 1764 | 'body_text' => __('Body text', 'ameliabooking'), |
| 1765 | 'publish' => __('Publish', 'ameliabooking'), |
| 1766 | 'red_employee_added_success' => __('Employee has been created.', 'ameliabooking'), |
| 1767 | 'red_employee_updated_success' => __('Employee has been updated.', 'ameliabooking'), |
| 1768 | 'employee_deleted' => __('Employee has been deleted.', 'ameliabooking'), |
| 1769 | 'red_update' => __('Update', 'ameliabooking'), |
| 1770 | 'background' => __('Background', 'ameliabooking'), |
| 1771 | 'outline' => __('Outline', 'ameliabooking'), |
| 1772 | 'placeholder_text' => __('Placeholder text', 'ameliabooking'), |
| 1773 | 'available_date_background' => __('Available date background', 'ameliabooking'), |
| 1774 | 'available_date_text' => __('Available date text', 'ameliabooking'), |
| 1775 | 'selected_date_background' => __('Selected date background', 'ameliabooking'), |
| 1776 | 'selected_date_text' => __('Selected date text', 'ameliabooking'), |
| 1777 | 'unavailable_date_background' => __('Unavailable date background', 'ameliabooking'), |
| 1778 | 'unavailable_date_text' => __('Unavailable date text', 'ameliabooking'), |
| 1779 | 'employee_description' => __('Employee description popup', 'ameliabooking'), |
| 1780 | 'content_area' => __('Content area', 'ameliabooking'), |
| 1781 | 'filters' => __('Filters', 'ameliabooking'), |
| 1782 | 'red_categories_positions_failed' => __('Failed to update category positions.', 'ameliabooking'), |
| 1783 | 'red_category_added_success' => __('Category has been created.', 'ameliabooking'), |
| 1784 | 'red_category_updated_success' => __('Category has been updated.', 'ameliabooking'), |
| 1785 | 'red_customer_added_success' => __('Customer has been created.', 'ameliabooking'), |
| 1786 | 'red_event_booking_updated_success' => __('Event booking has been updated.', 'ameliabooking'), |
| 1787 | 'red_event_created_success' => __('Event has been created.', 'ameliabooking'), |
| 1788 | 'red_event_updated_success' => __('Event has been updated.', 'ameliabooking'), |
| 1789 | 'red_event_booking_created_success' => __('Event booking has been created.', 'ameliabooking'), |
| 1790 | 'red_service_added_success' => __('Service has been added.', 'ameliabooking'), |
| 1791 | 'csb_appointment_reschedule' => __('Reschedule appointment', 'ameliabooking'), |
| 1792 | 'csb_events_calendar' => __('Events calendar', 'ameliabooking'), |
| 1793 | 'csb_event_tickets' => __('Event tickets', 'ameliabooking'), |
| 1794 | 'upcoming_events_block' => __('Upcoming events section', 'ameliabooking'), |
| 1795 | 'step_search' => __('Search', 'ameliabooking'), |
| 1796 | 'customer_panel_btn' => __('\'Customer panel\' button style', 'ameliabooking'), |
| 1797 | 'step_heading' => __('Step heading', 'ameliabooking'), |
| 1798 | 'event_today' => __('Today', 'ameliabooking'), |
| 1799 | 'event_no_spots' => __('No spots left', 'ameliabooking'), |
| 1800 | 'evt_empty_message' => __('There are no upcoming events for this period', 'ameliabooking'), |
| 1801 | 'taxes' => __('Taxes', 'ameliabooking'), |
| 1802 | 'title_text' => __('Title text', 'ameliabooking'), |
| 1803 | 'info_text' => __('Info text', 'ameliabooking'), |
| 1804 | 'primary_button_type' => __('Primary button style', 'ameliabooking'), |
| 1805 | 'secondary_button_type' => __('Secondary button style', 'ameliabooking'), |
| 1806 | 'font_family' => __('Font family', 'ameliabooking'), |
| 1807 | 'red_event_booking_opens_at' => __('Opens at', 'ameliabooking'), |
| 1808 | 'bringing_people' => __('Additional people', 'ameliabooking'), |
| 1809 | 'add_ticket_category' => __('Add pricing category', 'ameliabooking'), |
| 1810 | 'red_shared_category_capacity' => __('Shared category capacity', 'ameliabooking'), |
| 1811 | 'red_maximum_spots' => __('Maximum spots', 'ameliabooking'), |
| 1812 | 'red_continue_setup' => __('Continue setup', 'ameliabooking'), |
| 1813 | 'red_skip_setup' => __('Skip setup', 'ameliabooking'), |
| 1814 | 'red_welcome_amelia' => __('Welcome to Amelia!', 'ameliabooking'), |
| 1815 | 'red_welcome_amelia_desc' => __('It looks like this is your first time here, so let’s walk through a few simple steps to help you get started.', 'ameliabooking'), |
| 1816 | 'red_set_general_settings' => __('Set general settings', 'ameliabooking'), |
| 1817 | 'red_set_general_settings_desc' =>__('Set your company working hours. This schedule will be used for all new employees, however you can customize schedule for each employee later.', 'ameliabooking'), |
| 1818 | 'red_default_time_slot_step_desc' => __('Choose a time interval that will be used when defining all time based settings.', 'ameliabooking'), |
| 1819 | 'red_currency_desc' => __('Choose a currency that will be used for all price based settings.', 'ameliabooking'), |
| 1820 | 'red_next' => __('Next', 'ameliabooking'), |
| 1821 | 'red_create_employee' => __('Create employee', 'ameliabooking'), |
| 1822 | 'red_create_employee_desc' => __('In Amelia, an employee is a team member who provides services or hosts events, with their own schedule, working hours, and assigned offerings.', 'ameliabooking'), |
| 1823 | 'red_skip_setup_confirmation_desc' => __('Are you sure you want to skip the setup? Once skipped, the guided setup will no longer be available. All settings will need to be configured later.', 'ameliabooking'), |
| 1824 | 'red_step_1' => __('Step 1', 'ameliabooking'), |
| 1825 | 'red_step_2' => __('Step 2', 'ameliabooking'), |
| 1826 | 'red_step_3' => __('Step 3', 'ameliabooking'), |
| 1827 | 'red_step_4' => __('Step 4', 'ameliabooking'), |
| 1828 | 'red_how_will_use_amelia' => __('How will you use Amelia?', 'ameliabooking'), |
| 1829 | 'red_how_will_use_amelia_desc' => __('Choose whether you want to manage services, events, or both.', 'ameliabooking'), |
| 1830 | 'red_create_service' => __('Create service', 'ameliabooking'), |
| 1831 | 'red_create_service_desc' => __('Book time-based appointments with configurable durations, prices, and availability.', 'ameliabooking'), |
| 1832 | 'red_create_service_page_desc' => __('In Amelia, a “service” is a specific appointment-type offering your business provides to clients - such as consultations, treatments, or classes - that can be fully customized with its own name, duration, price, capacity, availability, and extras, and booked online with assigned employees.', 'ameliabooking'), |
| 1833 | 'red_create_event' => __('Create event', 'ameliabooking'), |
| 1834 | 'red_create_event_desc' => __('Create scheduled events with fixed dates, prices and capacities.', 'ameliabooking'), |
| 1835 | 'red_create_event_page_desc' => __('In Amelia, an event is a booking-type offering designed for group activities or multi-day occasions - such as workshops, conferences, tours, or training series - that can be configured with its own schedule, capacity, pricing structure and assigned staff.', 'ameliabooking'), |
| 1836 | 'red_finish' => __('Finish', 'ameliabooking'), |
| 1837 | 'red_filter' => __('Filter', 'ameliabooking'), |
| 1838 | 'red_select_at_least_one_option' => __('Select at least one option.', 'ameliabooking'), |
| 1839 | 'red_employee_name' => __('Employee name', 'ameliabooking'), |
| 1840 | 'red_apply' => __('Apply', 'ameliabooking'), |
| 1841 | 'red_appointment_title' => __('Appointment title', 'ameliabooking'), |
| 1842 | 'filter_all' => __('All', 'ameliabooking'), |
| 1843 | 'red_feature_outlook_general_description' => __('Sync your and your employee\'s personal and professional events by connection Outlook calendars.', 'ameliabooking'), |
| 1844 | 'red_feature_outlook_sign_in_button' => __('Sign in with Microsoft', 'ameliabooking'), |
| 1845 | 'red_smtp_validation_failed' => __('SMTP credentials validation failed. Please check your settings.', 'ameliabooking'), |
| 1846 | 'red_stripe_keys_validation_error' => __('Invalid Stripe secret key.', 'ameliabooking'), |
| 1847 | 'event_time_scope' => __('Event time scope', 'ameliabooking'), |
| 1848 | 'future_events' => __('Future events', 'ameliabooking'), |
| 1849 | 'past_events' => __('Past events', 'ameliabooking'), |
| 1850 | 'custom_range' => __('Custom range', 'ameliabooking'), |
| 1851 | 'notice_for_missing_dates' => __('Notice: Please select start and end date.', 'ameliabooking'), |
| 1852 | 'red_block_time' => __('Block time', 'ameliabooking'), |
| 1853 | 'red_block_time_updated_success' => __('Block time has been updated.', 'ameliabooking'), |
| 1854 | 'red_block_time_added_success' => __('Block time has been added.', 'ameliabooking'), |
| 1855 | 'red_block_time_deleted_success' => __('Block time has been deleted.', 'ameliabooking'), |
| 1856 | 'red_block_time_delete' => __('Delete block time', 'ameliabooking'), |
| 1857 | 'red_confirm_delete_block_time' => __('Are you sure you want to delete this block time?', 'ameliabooking'), |
| 1858 | 'red_block_time_deleted' => __('Block time has been deleted.', 'ameliabooking'), |
| 1859 | 'red_new_block_time' => __('New block time', 'ameliabooking'), |
| 1860 | 'red_edit_block_time' => __('Edit block time', 'ameliabooking'), |
| 1861 | 'red_delete_this_appointment' => __('This email is linked to both a customer and an employee account. Please delete and rebook.', 'ameliabooking'), |
| 1862 | 'red_event_tags' => __('Event tags', 'ameliabooking'), |
| 1863 | 'red_feature_event_tags_description' => __('Event tags allow you to label and organize events in Amelia based on criteria that matter most to your business.', 'ameliabooking'), |
| 1864 | 'red_create_new_event_tag' => __('Create new tag', 'ameliabooking'), |
| 1865 | 'red_tag_label' => __('Tag label', 'ameliabooking'), |
| 1866 | 'red_tag_name_required' => __('Tag label cannot be empty', 'ameliabooking'), |
| 1867 | 'red_time_slot_unavailable' => __('This time slot is no longer available. Please select a different time.', 'ameliabooking'), |
| 1868 | 'red_manage_event_tags' => __('Manage event tags', 'ameliabooking'), |
| 1869 | 'red_tip_event_tags_setup' => __('Event tags setup', 'ameliabooking'), |
| 1870 | 'red_event_tags_has_been_saved' => __('Event tags have been saved.', 'ameliabooking'), |
| 1871 | 'step_booking_sidebar_select_block_help' => __('Select Amelia Step-By-Step Booking Button block (or its inner button) to edit shortcode options.', 'ameliabooking'), |
| 1872 | 'events_list_button_sidebar_select_block_help' => __('Select Events List Booking Button block (or its inner button) to edit shortcode options.', 'ameliabooking'), |
| 1873 | 'shortcode_options' => __('Shortcode options', 'ameliabooking'), |
| 1874 | 'step_booking_settings' => __('Amelia Step Booking Settings', 'ameliabooking'), |
| 1875 | 'events_list_button_settings' => __('Amelia Events List Booking Settings', 'ameliabooking'), |
| 1876 | 'step_booking_shortcode' => __('Amelia Step Booking Shortcode', 'ameliabooking'), |
| 1877 | 'events_list_button_shortcode' => __('Amelia Events List Booking Shortcode', 'ameliabooking'), |
| 1878 | 'back' => __('Back', 'ameliabooking'), |
| 1879 | ]; |
| 1880 | } |
| 1881 | } |
| 1882 |