As I have mentioned in the question title, I just need to change the quick window button text "Create Appointment" into "Create Event", "Edit Appointment" link text into "Edit Event" and also the Editor window title "Create Appointment" into "Create Event" only. Is there a easy way of making these changes without using custom templates ?
Any help would be appreciable.
Here is my code so far :
$events = new AppointmentSetting();
$events->dataSource($data)
->id('id')->subject('subject')->startTime('start_time')->endTime('end_time')
->description('description');
$calendar = new Schedule('events-calendar');
$calendar->width('100%')->height('500px')
->currentDate(now())->appointmentSettings($events)->views(['Month'])
->showAppointmentNavigator(false)
->cellClick('onCellClick');