diff --git a/erpnext/www/book_appointment/index.js b/erpnext/www/book_appointment/index.js index 0770d102046..6564c4bc4aa 100644 --- a/erpnext/www/book_appointment/index.js +++ b/erpnext/www/book_appointment/index.js @@ -234,7 +234,7 @@ async function submit() { if (response.message.status == "Unverified") { frappe.show_alert(__("Please check your email to confirm the appointment")); } else { - frappe.show_alert(__("Appointment Created Successfully")); + frappe.show_alert(__("Appointment created successfully")); } setTimeout(() => { let redirect_url = "/"; @@ -245,7 +245,7 @@ async function submit() { }, 5000); }, error: (err) => { - frappe.show_alert(__("Something went wrong please try again")); + frappe.show_alert(__("Something went wrong, please try again")); button.disabled = false; }, });