-
Notifications
You must be signed in to change notification settings - Fork 1.6k
Expand file tree
/
Copy pathtranslations_lang.php
More file actions
executable file
·579 lines (579 loc) · 35.8 KB
/
Copy pathtranslations_lang.php
File metadata and controls
executable file
·579 lines (579 loc) · 35.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
<?php defined('BASEPATH') or exit('No direct script access allowed');
// English
$lang['page_title'] = 'Book Appointment With';
$lang['service_and_provider'] = 'Service & Provider';
$lang['select_service'] = 'Select Service';
$lang['select_provider'] = 'Select Provider';
$lang['duration'] = 'Duration';
$lang['minutes'] = 'Minutes';
$lang['price'] = 'Price';
$lang['back'] = 'Back';
$lang['appointment_date_and_time'] = 'Appointment Date & Time';
$lang['no_available_hours'] = 'There are no available appointment hours for the selected date. Please choose another date.';
$lang['appointment_hour_missing'] = 'Please select an appointment hour before continuing.';
$lang['customer_information'] = 'Customer Information';
$lang['first_name'] = 'First Name';
$lang['last_name'] = 'Last Name';
$lang['email'] = 'Email';
$lang['phone_number'] = 'Phone Number';
$lang['phone'] = 'Phone';
$lang['address'] = 'Address';
$lang['city'] = 'City';
$lang['zip_code'] = 'Zip Code';
$lang['notes'] = 'Notes';
$lang['language'] = 'Language';
$lang['no_language'] = 'No language';
$lang['fields_are_required'] = 'Fields with * are required.';
$lang['appointment_confirmation'] = 'Appointment Confirmation';
$lang['confirm'] = 'Confirm';
$lang['update'] = 'Update';
$lang['cancel_appointment_hint'] = 'Press the "Cancel" button to remove the appointment from the company schedule.';
$lang['cancel'] = 'Cancel';
$lang['appointment_registered'] = 'Your appointment has been successfully registered!';
$lang['cancel_appointment_title'] = 'Cancel Appointment';
$lang['appointment_cancelled'] = 'Your appointment has been successfully cancelled.';
$lang['appointment_cancelled_title'] = 'Appointment Cancelled';
$lang['reason'] = 'Reason';
$lang['appointment_removed_from_schedule'] = 'The following appointment was removed from the company\'s schedule.';
$lang['appointment_details_was_sent_to_you'] = 'An email with the appointment details has been sent to you.';
$lang['add_to_google_calendar'] = 'Add to Google Calendar';
$lang['appointment_booked'] = 'Your appointment has been successfully booked';
$lang['thank_you_for_appointment'] = 'Thank you for arranging an appointment with us. Below you can see the appointment details. Make changes by clicking the appointment link.';
$lang['appointment_details_title'] = 'Appointment Details';
$lang['customer_details_title'] = 'Customer Details';
$lang['service'] = 'Service';
$lang['provider'] = 'Provider';
$lang['customer'] = 'Customer';
$lang['start'] = 'Start';
$lang['end'] = 'End';
$lang['name'] = 'Name';
$lang['appointment_link_title'] = 'Appointment Link';
$lang['success'] = 'Success';
$lang['appointment_added_to_your_plan'] = 'A new appointment has been added to your plan.';
$lang['appointment_link_description'] = 'You can make changes by clicking the appointment link below.';
$lang['appointment_locked'] = 'Modification impossible!';
$lang['appointment_locked_message'] = 'The appointment cannot be changed less than {$limit} hours in advance.';
$lang['appointment_not_found'] = 'Appointment Not Found';
$lang['appointment_does_not_exist_in_db'] = 'The appointment you requested does not exist in the system database anymore.';
$lang['display_calendar'] = 'Display Calendar';
$lang['calendar'] = 'Calendar';
$lang['users'] = 'Users';
$lang['settings'] = 'Settings';
$lang['log_out'] = 'Log Out';
$lang['synchronize'] = 'Synchronize';
$lang['enable_sync'] = 'Enable Sync';
$lang['disable_sync'] = 'Disable Sync';
$lang['disable_sync_prompt'] = 'Are you sure that you want to disable the calendar synchronization?';
$lang['reload'] = 'Reload';
$lang['appointment'] = 'Appointment';
$lang['unavailability'] = 'Unavailability';
$lang['week'] = 'Week';
$lang['month'] = 'Month';
$lang['today'] = 'Today';
$lang['not_working'] = 'Not Working';
$lang['break'] = 'Break';
$lang['add'] = 'Add';
$lang['edit'] = 'Edit';
$lang['hello'] = 'Hello';
$lang['all_day'] = 'All Day';
$lang['manage_appointment_record_hint'] = 'Manage all the appointment records of the available providers and services.';
$lang['select_filter_item_hint'] = 'Select a provider or a service and view the appointments on the calendar.';
$lang['enable_appointment_sync_hint'] = 'Enable appointment synchronization with an external calendar.';
$lang['manage_customers_hint'] = 'Manage the registered customers and view their booking history.';
$lang['manage_services_hint'] = 'Manage the available services and categories of the system.';
$lang['manage_users_hint'] = 'Manage the backend users (admins, providers, secretaries).';
$lang['settings_hint'] = 'Set system and user settings.';
$lang['log_out_hint'] = 'Log out of the system.';
$lang['unavailability_periods_hint'] = 'During unavailability periods the provider won\'t accept new appointments.';
$lang['new_appointment_hint'] = 'Create a new appointment and store it into the database.';
$lang['reload_appointments_hint'] = 'Reload calendar appointments.';
$lang['trigger_sync_hint'] = 'Trigger the calendar synchronization process.';
$lang['appointment_updated'] = 'Appointment updated successfully.';
$lang['undo'] = 'Undo';
$lang['appointment_details_changed'] = 'Appointment details have changed';
$lang['appointment_changes_saved'] = 'Appointment changes have been successfully saved.';
$lang['save'] = 'Save';
$lang['new'] = 'New';
$lang['select'] = 'Select';
$lang['hide'] = 'Hide';
$lang['type_to_filter_customers'] = 'Type to filter customers.';
$lang['clear_fields_add_existing_customer_hint'] = 'Clear the fields and enter a new customer.';
$lang['pick_existing_customer_hint'] = 'Pick an existing customer.';
$lang['new_appointment_title'] = 'New Appointment';
$lang['edit_appointment_title'] = 'Edit Appointment';
$lang['delete_appointment_title'] = 'Delete Appointment';
$lang['write_appointment_removal_reason'] = 'Please take a minute to write the reason you are deleting the appointment:';
$lang['appointment_saved'] = 'Appointment saved successfully.';
$lang['new_unavailability_title'] = 'New Unavailability';
$lang['edit_unavailability_title'] = 'Edit Unavailability';
$lang['unavailability_saved'] = 'Unavailability saved successfully.';
$lang['start_date_before_end_error'] = 'Start date value is latter than end date.';
$lang['invalid_duration'] = 'Invalid duration.';
$lang['invalid_email'] = 'Invalid email address.';
$lang['customers'] = 'Customers';
$lang['details'] = 'Details';
$lang['no_records_found'] = 'No records found...';
$lang['services'] = 'Services';
$lang['duration_minutes'] = 'Duration (Minutes)';
$lang['currency'] = 'Currency';
$lang['category'] = 'Category';
$lang['no_category'] = 'No Category';
$lang['description'] = 'Description';
$lang['categories'] = 'Categories';
$lang['admins'] = 'Admins';
$lang['providers'] = 'Providers';
$lang['secretaries'] = 'Secretaries';
$lang['mobile_number'] = 'Mobile Number';
$lang['mobile'] = 'Mobile';
$lang['state'] = 'State';
$lang['username'] = 'Username';
$lang['password'] = 'Password';
$lang['retype_password'] = 'Retype Password';
$lang['receive_notifications'] = 'Receive Notifications';
$lang['passwords_mismatch'] = 'Passwords mismatch.';
$lang['admin_saved'] = 'Admin saved successfully.';
$lang['provider_saved'] = 'Provider saved successfully.';
$lang['secretary_saved'] = 'Secretary saved successfully.';
$lang['admin_deleted'] = 'Admin deleted successfully.';
$lang['provider_deleted'] = 'Provider deleted successfully.';
$lang['secretary_deleted'] = 'Secretary deleted successfully.';
$lang['service_saved'] = 'Service saved successfully.';
$lang['service_category_saved'] = 'Service category saved successfully.';
$lang['service_deleted'] = 'Service deleted successfully.';
$lang['service_category_deleted'] = 'Service category deleted successfully.';
$lang['customer_saved'] = 'Customer saved successfully.';
$lang['customer_deleted'] = 'Customer deleted successfully.';
$lang['current_view'] = 'Current View';
$lang['working_plan'] = 'Working Plan';
$lang['reset_plan'] = 'Reset Plan';
$lang['monday'] = 'Monday';
$lang['tuesday'] = 'Tuesday';
$lang['wednesday'] = 'Wednesday';
$lang['thursday'] = 'Thursday';
$lang['friday'] = 'Friday';
$lang['saturday'] = 'Saturday';
$lang['sunday'] = 'Sunday';
$lang['breaks'] = 'Breaks';
$lang['add_breaks_during_each_day'] = 'Add the working breaks during each day. During breaks the provider will not accept any appointments.';
$lang['day'] = 'Day';
$lang['days'] = 'Days';
$lang['actions'] = 'Actions';
$lang['reset_working_plan_hint'] = 'Reset the working plan back to the default values.';
$lang['company_name'] = 'Company Name';
$lang['company_name_hint'] = 'Company name will be displayed everywhere on the system (required).';
$lang['company_email'] = 'Company Email';
$lang['company_email_hint'] = 'This will be the company email address. It will be used as the sender and the reply address of the system emails (required).';
$lang['company_link'] = 'Company Link';
$lang['company_link_hint'] = 'Company link should point to the official website of the company (required).';
$lang['go_to_booking_page'] = 'Go To Booking Page';
$lang['settings_saved'] = 'Settings saved successfully.';
$lang['general'] = 'General';
$lang['booking'] = 'Booking';
$lang['visible'] = 'Visible';
$lang['hidden'] = 'Hidden';
$lang['business_logic'] = 'Business Logic';
$lang['current_user'] = 'Current User';
$lang['about_app'] = 'About Easy!Appointments';
$lang['edit_working_plan_hint'] = 'Mark below the days and hours that your company will accept appointments. You will be able to adjust appointments in non-working hours but the customers will not be able to book appointments by themselves in non-working periods. This working plan will be the default for every new provider record, but you will be able to change each provider\'s plan separately by editing his record. After that you can add break periods.';
$lang['edit_breaks_hint'] = 'Add the working breaks during each day. These breaks will be applied for all new providers.';
$lang['book_advance_timeout'] = 'Book Advance Timeout';
$lang['book_advance_timeout_hint'] = 'Define the timeout (in minutes) before the customers can book or re-arrange appointments with the company.';
$lang['timeout_minutes'] = 'Timeout (Minutes)';
$lang['about_app_info'] = 'Easy!Appointments is a highly customizable web application that allows your customers to book appointments with you via the web. Moreover, it provides the ability to sync your data with Google Calendar, so you can use them with other services.';
$lang['current_version'] = 'Current Version';
$lang['support'] = 'Support';
$lang['about_app_support'] = 'If you encounter any problems when using Easy!Appointments you can search the official Google Group for answers. You might also need to create a new issue on the Google Code page in order to help the development progress.';
$lang['official_website'] = 'Official Website';
$lang['google_plus_community'] = 'Google+ Community';
$lang['support_group'] = 'Support Group';
$lang['project_issues'] = 'Project Issues';
$lang['license'] = 'License';
$lang['about_app_license'] = 'Easy!Appointments is licensed under the GPLv3 license. By using the code of Easy!Appointments in any way you are agreeing to the terms described in the following url:';
$lang['logout_success'] = 'You have been successfully logged out! Click on one of the following buttons to navigate to a different page.';
$lang['book_appointment_title'] = 'Book Appointment';
$lang['backend_section'] = 'Backend Section';
$lang['you_need_to_login'] = 'Welcome! You will need to login in order to view backend pages.';
$lang['enter_username_here'] = 'Enter your username here ...';
$lang['enter_password_here'] = 'Enter your password here ...';
$lang['login'] = 'Login';
$lang['forgot_your_password'] = 'Forgot Your Password?';
$lang['login_failed'] = 'Login failed, please enter the correct credentials and try again.';
$lang['type_username_and_email_for_new_password'] = 'Type your username and your email address to get your new password.';
$lang['enter_email_here'] = 'Enter your email here ...';
$lang['regenerate_password'] = 'Regenerate Password';
$lang['go_to_login'] = 'Go Back To Login Page';
$lang['new_password_sent_with_email'] = 'Your new password has been sent to you with an email.';
$lang['new_account_password'] = 'New Account Password';
$lang['new_password_is'] = 'Your new account password is $password. Please store this email to be able to retrieve your password if necessary. You can also change this password with a new one in the settings page.';
$lang['delete_record_prompt'] = 'Are you sure that you want to delete this record? This action cannot be undone.';
$lang['delete_admin'] = 'Delete Admin';
$lang['delete_customer'] = 'Delete Customer';
$lang['delete_service'] = 'Delete Service';
$lang['delete_service_category'] = 'Delete Service Category';
$lang['delete_provider'] = 'Delete Provider';
$lang['delete_secretary'] = 'Delete Secretary';
$lang['delete_appointment'] = 'Delete Appointment';
$lang['delete_unavailability'] = 'Delete Unavailability';
$lang['delete'] = 'Delete';
$lang['unexpected_issues'] = 'Unexpected Issues';
$lang['unexpected_issues_message'] = 'The operation could not completed.';
$lang['close'] = 'Close';
$lang['page_not_found'] = 'Page Not Found';
$lang['page_not_found_message'] = 'Unfortunately the page you requested does not exist. Please check your browser URL or head to another location using the buttons below.';
$lang['error'] = 'Error';
$lang['no_privileges'] = 'No Privileges';
$lang['no_privileges_message'] = 'You do not have the required privileges to view this page. Please navigate to a different section.';
$lang['backend_calendar'] = 'Backend Calendar';
$lang['start_date_time'] = 'Start Date / Time';
$lang['end_date_time'] = 'End Date / Time';
$lang['licensed_under'] = 'Licensed Under';
$lang['unexpected_issues_occurred'] = 'Unexpected issues occurred.';
$lang['service_communication_error'] = 'A server communication error occurred, please try again.';
$lang['no_privileges_edit_appointments'] = 'You do not have the required privileges to edit appointments.';
$lang['unavailability_updated'] = 'Unavailability updated successfully.';
$lang['appointments'] = 'Appointments';
$lang['unexpected_warnings'] = 'Unexpected Warnings';
$lang['unexpected_warnings_message'] = 'The operation completed but some warnings appeared.';
$lang['filter'] = 'Filter';
$lang['clear'] = 'Clear';
$lang['uncategorized'] = 'Uncategorized';
$lang['username_already_exists'] = 'Username already exists.';
$lang['password_length_notice'] = 'Password must be at least $number characters long.';
$lang['general_settings'] = 'General Settings';
$lang['personal_information'] = 'Personal Information';
$lang['system_login'] = 'System Login';
$lang['user_settings_are_invalid'] = 'User settings are invalid! Please review your settings and try again.';
$lang['add_break'] = 'Add Break';
$lang['january'] = 'January';
$lang['february'] = 'February';
$lang['march'] = 'March';
$lang['april'] = 'April';
$lang['may'] = 'May';
$lang['june'] = 'June';
$lang['july'] = 'July';
$lang['august'] = 'August';
$lang['september'] = 'September';
$lang['october'] = 'October';
$lang['november'] = 'November';
$lang['december'] = 'December';
$lang['previous'] = 'Previous';
$lang['next'] = 'Next';
$lang['now'] = 'Now';
$lang['select_time'] = 'Select Time';
$lang['time'] = 'Time';
$lang['hour'] = 'Hour';
$lang['minute'] = 'Minute';
$lang['calendar_sync_completed'] = 'Calendar synchronization completed successfully.';
$lang['calendar_sync_failed'] = 'Calendar synchronization failed: Could not establish server connection.';
$lang['select_sync_calendar'] = 'Select Calendar';
$lang['select_sync_calendar_prompt'] = 'Select the calendar that you want to sync your appointments with.';
$lang['sync_calendar_selected'] = 'Sync calendar has been successfully selected.';
$lang['oops_something_went_wrong'] = 'Oops! Something Went Wrong.';
$lang['ea_update_success'] = 'Easy!Appointments has been successfully updated.';
$lang['require_captcha'] = 'Require CAPTCHA';
$lang['require_captcha_hint'] = 'When enabled, the customers will have to type a random generated CAPTCHA string before booking/updating an appointment.';
$lang['captcha_is_wrong'] = 'CAPTCHA verification failed, please try again.';
$lang['enter_captcha_here'] = 'Enter CAPTCHA here...';
$lang['any_provider'] = 'Any Provider';
$lang['requested_hour_is_unavailable'] = 'The requested appointment is unfortunately not available. Please select a different hour for your appointment.';
$lang['customer_notifications'] = 'Customer Notifications';
$lang['customer_notifications_hint'] = 'Defines whether the customer will receive email notifications whenever there is a schedule change on one of his appointments.';
$lang['date_format'] = 'Date Format';
$lang['date_format_hint'] = 'Change the date display format (D - Date, M - Month, Y - Year).';
$lang['time_format'] = 'Time Format';
$lang['time_format_hint'] = 'Change the time display format (H - Hours, M - Minutes).';
$lang['first_weekday'] = 'First day of week';
$lang['first_weekday_hint'] = 'Set the first day of the calendar week.';
$lang['google_analytics_code_hint'] = 'Add your Google Analytics Code to enable Google Analytics tracking on the booking pages.';
$lang['availabilities_type'] = 'Availabilities Type';
$lang['flexible'] = 'Flexible';
$lang['fixed'] = 'Fixed';
$lang['attendants_number'] = 'Attendants Number (Concurrent Bookings)';
$lang['reset_working_plan'] = 'Reset the working plan back to the default values.';
$lang['legal_contents'] = 'Legal Contents';
$lang['cookie_notice'] = 'Cookie Notice';
$lang['display_cookie_notice'] = 'Display Cookie Notice';
$lang['cookie_notice_content'] = 'Cookie Notice Content';
$lang['terms_and_conditions'] = 'Terms & Conditions';
$lang['display_terms_and_conditions'] = 'Display Terms & Conditions';
$lang['terms_and_conditions_content'] = 'Terms & Conditions Content';
$lang['privacy_policy'] = 'Privacy Policy';
$lang['display_privacy_policy'] = 'Display Privacy Policy';
$lang['privacy_policy_content'] = 'Privacy Policy Content';
$lang['website_using_cookies_to_ensure_best_experience'] = 'This website uses cookies to ensure you get the best experience on our website.';
$lang['read_and_agree_to_terms_and_conditions'] = 'I have read and agree to the {$link}Terms & Conditions{/$link}.';
$lang['read_and_agree_to_privacy_policy'] = 'I have read and agree to the {$link}Privacy Policy{/$link}.';
$lang['delete_personal_information_hint'] = 'Remove all your appointments and personal information from the system.';
$lang['delete_personal_information'] = 'Delete Personal Information';
$lang['delete_personal_information_prompt'] = 'Are you sure that you want to delete your personal information? This action cannot be undone.';
$lang['location'] = 'Location';
$lang['working_plan_exception'] = 'Working Plan Exception';
$lang['working_plan_exceptions'] = 'Working Plan Exceptions';
$lang['working_plan_exceptions_hint'] = 'Add a working plan exception day, outside the working plan.';
$lang['new_working_plan_exception_title'] = 'New Working Plan Exception';
$lang['working_plan_exception_saved'] = 'Working plan exception saved successfully.';
$lang['working_plan_exception_deleted'] = 'Working plan exception deleted successfully.';
$lang['add_working_plan_exceptions_during_each_day'] = 'Add working plan exceptions, outside the working plan.';
$lang['add_working_plan_exception'] = 'Add Working Plan Exception';
$lang['require_phone_number'] = 'Require phone number';
$lang['require_phone_number_hint'] = 'When enabled, customers and users will need to enter the customer\'s phone number when booking an appointment';
$lang['check_spam_folder'] = 'Please check your spam folder if the email does not arrive within a few minutes.';
$lang['api_token_hint'] = 'Set a secret token in order to enable the token based authentication of the Easy!Appointments API.';
$lang['timezone'] = 'Timezone';
$lang['overwrite_existing_working_plans'] = 'This will overwrite the existing provider working plans, are you sure that you want to continue?';
$lang['working_plans_got_updated'] = 'All the working plans got updated.';
$lang['apply_to_all_providers'] = 'Apply To All Providers';
$lang['display_any_provider'] = 'Display Any Provider Option';
$lang['display_any_provider_hint'] = 'The booking page will get an additional option that allows customers to book without specifying a provider.';
$lang['load_more'] = 'Load More';
$lang['list'] = 'List';
$lang['default'] = 'Default';
$lang['table'] = 'Table';
$lang['date'] = 'Date';
$lang['about'] = 'About';
$lang['booking_settings'] = 'Booking Settings';
$lang['display'] = 'Display';
$lang['require'] = 'Require';
$lang['color'] = 'Color';
$lang['matomo_analytics_url_hint'] = 'Add the URL to your own Matomo installation to enable Matomo tracking on the booking pages.';
$lang['invalid_phone'] = 'Invalid phone number.';
$lang['legal'] = 'Legal';
$lang['business'] = 'Business';
$lang['account'] = 'Account';
$lang['disable_booking'] = 'Disable Booking';
$lang['disable_booking_hint'] = 'The booking page will be disabled for as long as this setting is active and customers will not be able to register new appointments.';
$lang['display_message'] = 'Display Message';
$lang['booking_is_disabled'] = 'Booking Is Disabled!';
$lang['appearance'] = 'Appearance';
$lang['company_logo'] = 'Company Logo';
$lang['company_logo_hint'] = 'The company logo will be displayed in many places of the app, including the booking page and the notification emails (image file, max 2MB).';
$lang['company_color'] = 'Company Color';
$lang['company_color_hint'] = 'The company color will be applied across the app so that it the app uses your branding.';
$lang['localization'] = 'Localization';
$lang['integrations'] = 'Integrations';
$lang['company'] = 'Company';
$lang['remove'] = 'Remove';
$lang['login_button'] = 'Login Button';
$lang['display_login_button_hint'] = 'Defines whether the login button is being displayed in the booking page.';
$lang['private'] = 'Private';
$lang['private_hint'] = 'Private records will not be displayed or processed in public pages such as the booking page.';
$lang['reset'] = 'Reset';
$lang['all'] = 'All';
$lang['booking_link'] = 'Booking Link';
$lang['add_new_event'] = 'Add New Event';
$lang['what_kind_of_event'] = 'What kind of event would you like to add?';
$lang['theme'] = 'Theme';
$lang['limit_customer_access'] = 'Limit Customer Access';
$lang['limit_customer_access_hint'] = 'If enabled, providers and secretaries will only be able to access customers they have an appointment with.';
$lang['url'] = 'URL';
$lang['secret_token'] = 'Secret Token';
$lang['verify_ssl'] = 'Verify SSL';
$lang['appointment_save'] = 'Appointment Save';
$lang['appointment_delete'] = 'Appointment Delete';
$lang['unavailability_save'] = 'Unavailability Save';
$lang['unavailability_delete'] = 'Unavailability Delete';
$lang['customer_save'] = 'Customer Save';
$lang['customer_delete'] = 'Customer Delete';
$lang['service_save'] = 'Service Save';
$lang['service_delete'] = 'Service Delete';
$lang['service_category_save'] = 'Service Category Save';
$lang['service_category_delete'] = 'Service Category Delete';
$lang['provider_save'] = 'Provider Save';
$lang['provider_delete'] = 'Provider Delete';
$lang['secretary_save'] = 'Secretary Save';
$lang['secretary_delete'] = 'Secretary Delete';
$lang['admin_save'] = 'Admin Save';
$lang['admin_delete'] = 'Admin Delete';
$lang['options'] = 'Options';
$lang['webhooks'] = 'Webhooks';
$lang['webhooks_enabled'] = 'Enable Webhooks';
$lang['webhooks_enabled_hint'] = 'Turn this off to temporarily stop all webhooks from firing.';
$lang['webhooks_info'] = 'Webhooks enable you to send HTTP notifications to external web applications in response to various application events, such as the creation of an appointment or the removal of a customer.';
$lang['integrations_info'] = 'Integrations enable you to make third-party connections with external applications and APIs.';
$lang['configure'] = 'Configure';
$lang['google_analytics'] = 'Google Analytics';
$lang['google_analytics_info'] = 'Google Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['matomo_analytics'] = 'Matomo Analytics';
$lang['matomo_analytics_info'] = 'Matomo Analytics enable you to automatically add the tracking code and HTML markup to the public page and track all the public booking sessions.';
$lang['api'] = 'API';
$lang['api_info'] = 'API enable you to interact with all the Easy!Appointments data via the HTTP protocol and the available API endpoints and create your own integrations.';
$lang['google_analytics_code'] = 'Google Analytics Code';
$lang['matomo_analytics_url'] = 'Matomo Analytics URL';
$lang['future_booking_limit'] = 'Future Booking Limit';
$lang['limit_days'] = 'Limit (Days)';
$lang['future_booking_limit_hint'] = 'Set the future limit in days customers can make appointments via the public booking page.';
$lang['api_token'] = 'API Token';
$lang['allow_rescheduling_cancellation_before'] = 'Allow Rescheduling/Cancellation Before';
$lang['at_least_one_field'] = 'At least one field must be displayed in the booking page.';
$lang['status'] = 'Status';
$lang['appointment_status_options'] = 'Appointment Status Options';
$lang['appointment_status_options_info'] = 'Define a list of available appointment status options that can be used in the the calendar page (the first one will automatically become the default value).';
$lang['sunday_short'] = 'Sun';
$lang['monday_short'] = 'Mon';
$lang['tuesday_short'] = 'Tue';
$lang['wednesday_short'] = 'Wed';
$lang['thursday_short'] = 'Thu';
$lang['friday_short'] = 'Fri';
$lang['saturday_short'] = 'Sat';
$lang['january_short'] = 'Jan';
$lang['february_short'] = 'Feb';
$lang['march_short'] = 'Mar';
$lang['april_short'] = 'Apr';
$lang['may_short'] = 'May';
$lang['june_short'] = 'Jun';
$lang['july_short'] = 'Jul';
$lang['august_short'] = 'Aug';
$lang['september_short'] = 'Sep';
$lang['october_short'] = 'Oct';
$lang['november_short'] = 'Nov';
$lang['december_short'] = 'Dec';
$lang['am'] = 'am';
$lang['pm'] = 'pm';
$lang['to'] = 'to';
$lang['click_to_toggle'] = 'Click To Toggle';
$lang['week_short'] = 'Wk';
$lang['scroll_to_increment'] = 'Scroll To Increment';
$lang['year'] = 'Year';
$lang['make_non_working_day'] = 'This provider will not be available for work on the selected day.';
$lang['no_breaks'] = 'No Breaks';
$lang['service_categories'] = 'Service Categories';
$lang['service_category'] = 'Service Category';
$lang['blocked_period_saved'] = 'Blocked period saved successfully.';
$lang['blocked_period_deleted'] = 'Blocked period deleted successfully.';
$lang['delete_blocked_period'] = 'Delete Blocked Period';
$lang['blocked_period'] = 'Blocked Period';
$lang['blocked_periods'] = 'Blocked Periods';
$lang['blocked_period_save'] = 'Blocked Period Save';
$lang['blocked_period_delete'] = 'Blocked Period Delete';
$lang['blocked_periods_hint'] = 'Define periods of time where public bookings will be disabled for all providers (e.g. closed dates, holidays etc.).';
$lang['custom_field'] = 'Custom Field';
$lang['custom_fields'] = 'Custom Fields';
$lang['label'] = 'Label';
$lang['webhook_saved'] = 'Webhook saved successfully.';
$lang['webhook_deleted'] = 'Webhook deleted successfully.';
$lang['delete_webhook'] = 'Delete Webhook';
$lang['contact_info'] = 'Contact Info';
$lang['hide_from_public'] = 'Hide From Public';
$lang['matomo_analytics_site_id'] = 'Matomo Analytics Site ID';
$lang['matomo_analytics_site_id_hint'] = 'Set the site ID that will be tracked by Matomo (the default site has the ID "1").';
$lang['default_timezone'] = 'Default Timezone';
$lang['default_timezone_hint'] = 'Set the default timezone value that will be used for new records.';
$lang['default_language'] = 'Default Language';
$lang['default_language_hint'] = 'Set the default language value that will be used for new records.';
$lang['sync_method_prompt'] = 'Which sync method would you like to use?';
$lang['caldav_server'] = 'CalDAV Server';
$lang['caldav_connection_info_prompt'] = 'Please enter the connection information of the target CalDAV Calendar.';
$lang['connect'] = 'Connect';
$lang['ldap'] = 'LDAP';
$lang['ldap_info'] = 'This integration enables you to connect to an existing LDAP server and automatically import users into Easy!Appointments and let them SSO with their directory password (username must match).';
$lang['host'] = 'Host';
$lang['port'] = 'Port';
$lang['user_dn'] = 'User DN';
$lang['base_dn'] = 'Base DN';
$lang['keyword'] = 'Keyword';
$lang['ldap_search_hint'] = 'Provide a keyword to search through the LDAP directory for users that match the filter criteria.';
$lang['ldap_extension_not_loaded'] = 'The LDAP PHP extension is not loaded, but is required for this integration to work.';
$lang['field_mapping'] = 'Field Mapping';
$lang['content'] = 'Content';
$lang['active'] = 'Active';
$lang['user_imported'] = 'The user record was imported successfully.';
$lang['import'] = 'Import';
$lang['ldap_dn'] = 'LDAP DN';
$lang['role'] = 'Role';
$lang['at_least_one_field_required'] = 'At least one field must be set as required in the booking page.';
$lang['customer_is_already_booked'] = 'This customer already has an appointment during the requested reservation period.';
$lang['fields'] = 'Fields';
$lang['invalid_credentials_provided'] = 'Invalid credentials provided, please try again.';
$lang['calendar_url'] = 'Calendar URL';
$lang['please_select'] = 'Please Select';
$lang['secret_header'] = 'Secret Header';
$lang['search'] = 'Search';
$lang['slot_interval'] = 'Slot Interval (Minutes)';
$lang['jitsi'] = 'Jitsi';
$lang['jitsi_info'] = 'Enable automatic Jitsi meeting link generation for appointments. When enabled, a unique Jitsi video call link will be generated and stored as the meeting link.';
$lang['altcha'] = 'ALTCHA';
$lang['altcha_info'] = 'ALTCHA is a privacy-focused, open-source CAPTCHA alternative that uses proof-of-work to verify human users without tracking.';
$lang['altcha_enabled_hint'] = 'When enabled, ALTCHA will be used instead of the traditional image CAPTCHA for form verification.';
$lang['altcha_hmac_key'] = 'HMAC Key';
$lang['altcha_hmac_key_hint'] = 'A secret key used to sign and verify ALTCHA challenges. Click Generate to create a new secure key.';
$lang['altcha_max_number'] = 'Max Number';
$lang['altcha_max_number_hint'] = 'The maximum number for the proof-of-work challenge. Higher values increase difficulty (default: 100000).';
$lang['altcha_expires'] = 'Expires (Seconds)';
$lang['altcha_expires_hint'] = 'How long a challenge remains valid in seconds (default: 300).';
$lang['altcha_key_generated'] = 'New HMAC key generated successfully.';
$lang['altcha_enabled'] = 'Enable ALTCHA';
$lang['altcha_captcha_not_active_warning'] = 'The CAPTCHA setting is not currently active. ALTCHA will not be used unless CAPTCHA is enabled in the';
$lang['generate'] = 'Generate';
$lang['meeting_link'] = 'Meeting Link';
$lang['google_calendar'] = 'Google Calendar';
$lang['google_calendar_info'] = 'Enable Google Calendar synchronization to sync appointments with provider Google Calendar accounts.';
$lang['google_client_id'] = 'Client ID';
$lang['google_client_id_info'] = 'The Client ID from your Google Cloud Console project.';
$lang['google_client_secret'] = 'Client Secret';
$lang['google_client_secret_info'] = 'The Client Secret from your Google Cloud Console project.';
$lang['google_calendar_setup_info'] = 'To enable Google Calendar sync, you need to create a project in the Google Cloud Console, enable the Google Calendar API, and create OAuth 2.0 credentials. Visit:';
$lang['google_meet_link_generation'] = 'Generate Google Meet Links';
$lang['google_meet_link_generation_info'] = 'Automatically create a Google Meet video conference link for synced appointments. The meeting link will be stored in the appointment\'s meeting link field.';
$lang['display_add_to_google_calendar'] = 'Display "Add to Google Calendar" Button';
$lang['display_add_to_google_calendar_info'] = 'Show the "Add to Google Calendar" button on the booking confirmation page, allowing customers to easily add their appointment to their personal Google Calendar.';
$lang['select_all'] = 'Select All';
$lang['select_none'] = 'Select None';
$lang['appointment_update'] = 'Appointment Update';
$lang['notify_users_on_update_question'] = 'Would you like to send out a notification about this change?';
$lang['yes'] = 'Yes';
$lang['no'] = 'No';
$lang['latest_blog_posts'] = 'Latest Blog Posts';
$lang['loading'] = 'Loading';
$lang['blog_posts_load_error'] = 'Unable to load blog posts. Please visit the official website for updates.';
$lang['provider_has_conflicting_appointment'] = 'The selected provider already has another appointment at that time. Please select a different time or provider.';
$lang['would_you_like_to_proceed'] = 'Would you like to proceed anyway?';
$lang['proceed'] = 'Proceed';
$lang['no_available_service_providers'] = 'No Available Services';
$lang['no_available_service_providers_message'] = 'There are currently no services or providers available for booking. Please check back later or contact us for assistance.';
$lang['reset_password'] = 'Reset Password';
$lang['new_password'] = 'New Password';
$lang['enter_new_password'] = 'Enter your new password below.';
$lang['enter_password_here'] = 'Enter your password here ...';
$lang['password_reset_request'] = 'Password Reset Request';
$lang['password_reset_email_message'] = 'You have requested to reset your password. Click the button below to set a new password for your account.';
$lang['password_reset_link_expires'] = 'This link will expire in 1 hour.';
$lang['password_reset_ignore_message'] = 'If you did not request a password reset, please ignore this email.';
$lang['invalid_reset_token'] = 'The password reset link is invalid.';
$lang['invalid_or_expired_token'] = 'The password reset link is invalid or has expired. Please request a new one.';
$lang['password_reset_success'] = 'Your password has been successfully reset. You will be redirected to the login page.';
$lang['password_reset_failed'] = 'Password reset failed. Please try again.';
$lang['no_password_provided'] = 'Please enter a password.';
$lang['type_username_and_email_for_reset_link'] = 'Type your username and email address to receive a password reset link.';
$lang['send_reset_link'] = 'Send Reset Link';
$lang['reset_link_sent_with_email'] = 'If an account exists with the provided credentials, a password reset link has been sent to your email.';
$lang['working_plan_validation_failed'] = 'Invalid working plan configuration found.';
$lang['start_date'] = 'Start Date';
$lang['end_date'] = 'End Date';
$lang['remember_me'] = 'Remember my information';
$lang['remember_me_hint'] = 'Save your details for faster booking next time.';
$lang['legal_notice'] = 'Legal Notice';
$lang['legal_notice_url'] = 'Legal Notice URL';
$lang['legal_notice_url_hint'] = 'Enter the URL to your legal notice page.';
$lang['imprint'] = 'Imprint';
$lang['imprint_url'] = 'Imprint URL';
$lang['imprint_url_hint'] = 'Enter the URL to your imprint page.';
$lang['data_retention'] = 'Data Retention';
$lang['data_retention_days'] = 'Data Retention Days';
$lang['data_retention_days_hint'] = 'Set the number of days after which customer data will be automatically deleted. Set to 0 to disable automatic deletion.';
$lang['manage_privacy'] = 'Manage Privacy';
$lang['manage_privacy_hint'] = 'Click the link below to view, update or delete your personal information.';
$lang['personal_information'] = 'Personal Information';
$lang['personal_information_updated'] = 'Your personal information has been updated successfully.';
$lang['verify'] = 'Verify';
$lang['verifying'] = 'Verifying';
$lang['verified'] = 'Verified';
$lang['verification_complete'] = 'Verification complete';
$lang['verification_failed'] = 'Verification failed. Click to retry.';
$lang['click_to_verify'] = 'Click to verify you are human';
$lang['altcha_verification_failed'] = 'ALTCHA verification failed. Please try again.';
$lang['premium'] = 'Premium';
$lang['about_app_premium'] = 'We offer end-to-end services for self-hosted software, including custom development, managed hosting, support contracts, rebranding, and ongoing enhancements — so you can focus on your business while we handle the rest.';
$lang['go_premium'] = 'Go Premium';
$lang['notify_users_on_create_question'] = 'Would you like to send out a notification about this change?';
$lang['notify_users_on_delete_question'] = 'Would you like to send out a notification about this change?';
// End