fix: Make field labels translatable
diff --git a/erpnext/public/js/call_popup/call_popup.js b/erpnext/public/js/call_popup/call_popup.js
index 4117b6c..17bd741 100644
--- a/erpnext/public/js/call_popup/call_popup.js
+++ b/erpnext/public/js/call_popup/call_popup.js
@@ -16,15 +16,16 @@
 			}, {
 				'fielname': 'last_interaction',
 				'fieldtype': 'Section Break',
+				'label': __('Activity'),
 			}, {
 				'fieldtype': 'Small Text',
-				'label': "Last Communication",
+				'label': __('Last Communication'),
 				'fieldname': 'last_communication',
 				'read_only': true,
 				'default': `<i class="text-muted">${__('No communication found.')}<i>`
 			}, {
 				'fieldtype': 'Small Text',
-				'label': "Last Issue",
+				'label': __('Last Issue'),
 				'fieldname': 'last_issue',
 				'read_only': true,
 				'default': `<i class="text-muted">${__('No issue raised by the customer.')}<i>`
@@ -32,11 +33,11 @@
 				'fieldtype': 'Column Break',
 			}, {
 				'fieldtype': 'Small Text',
-				'label': 'Call Summary',
+				'label': __('Call Summary'),
 				'fieldname': 'call_summary',
 			}, {
 				'fieldtype': 'Button',
-				'label': 'Save',
+				'label': __('Save'),
 				'click': () => {
 					const call_summary = this.dialog.get_value('call_summary');
 					if (!call_summary) return;
@@ -58,7 +59,7 @@
 		this.dialog.get_close_btn().show();
 		this.dialog.$body.addClass('call-popup');
 		this.dialog.set_secondary_action(this.close_modal.bind(this));
-		frappe.utils.play_sound("incoming-call");
+		frappe.utils.play_sound('incoming-call');
 		this.dialog.show();
 	}
 
@@ -157,7 +158,7 @@
 	}
 
 	call_disconnected(call_log) {
-		frappe.utils.play_sound("call-disconnect");
+		frappe.utils.play_sound('call-disconnect');
 		this.update_call_log(call_log);
 		setTimeout(() => {
 			if (!this.dialog.get_value('call_summary')) {