diff --git a/crm/api/doc.py b/crm/api/doc.py index fd5f6172..02d14b99 100644 --- a/crm/api/doc.py +++ b/crm/api/doc.py @@ -165,10 +165,10 @@ def get_field_obj(field): "name": field.fieldname, } - obj["placeholder"] = "Add " + field.label.lower() + "..." + obj["placeholder"] = "Add " + field.label + "..." if field.fieldtype == "Link": - obj["placeholder"] = "Select " + field.label.lower() + "..." + obj["placeholder"] = "Select " + field.label + "..." obj["doctype"] = field.options elif field.fieldtype == "Select": obj["options"] = [{"label": option, "value": option} for option in field.options.split("\n")] diff --git a/crm/fcrm/doctype/crm_call_log/crm_call_log.py b/crm/fcrm/doctype/crm_call_log/crm_call_log.py index 8e0c1841..4369e0a2 100644 --- a/crm/fcrm/doctype/crm_call_log/crm_call_log.py +++ b/crm/fcrm/doctype/crm_call_log/crm_call_log.py @@ -68,7 +68,7 @@ class CRMCallLog(Document): 'width': '9rem', }, { - 'label': 'Created on', + 'label': 'Created On', 'type': 'Datetime', 'key': 'creation', 'width': '8rem', diff --git a/crm/fcrm/doctype/crm_deal/crm_deal.py b/crm/fcrm/doctype/crm_deal/crm_deal.py index 7774eb3c..78032c55 100644 --- a/crm/fcrm/doctype/crm_deal/crm_deal.py +++ b/crm/fcrm/doctype/crm_deal/crm_deal.py @@ -86,20 +86,20 @@ class CRMDeal(Document): 'width': '12rem', }, { - 'label': 'Mobile no', + 'label': 'Mobile No', 'type': 'Data', 'key': 'mobile_no', 'width': '11rem', }, { - 'label': 'Deal owner', + 'label': 'Deal Owner', 'type': 'Link', 'key': 'deal_owner', 'options': 'User', 'width': '10rem', }, { - 'label': 'Last modified', + 'label': 'Last Modified', 'type': 'Datetime', 'key': 'modified', 'width': '8rem', diff --git a/crm/fcrm/doctype/crm_lead/crm_lead.py b/crm/fcrm/doctype/crm_lead/crm_lead.py index 98c8e4c4..d41cfd3f 100644 --- a/crm/fcrm/doctype/crm_lead/crm_lead.py +++ b/crm/fcrm/doctype/crm_lead/crm_lead.py @@ -165,20 +165,20 @@ class CRMLead(Document): 'width': '12rem', }, { - 'label': 'Mobile no', + 'label': 'Mobile No', 'type': 'Data', 'key': 'mobile_no', 'width': '11rem', }, { - 'label': 'Lead owner', + 'label': 'Lead Owner', 'type': 'Link', 'key': 'lead_owner', 'options': 'User', 'width': '10rem', }, { - 'label': 'Last modified', + 'label': 'Last Modified', 'type': 'Datetime', 'key': 'modified', 'width': '8rem', diff --git a/crm/fcrm/doctype/crm_organization/crm_organization.py b/crm/fcrm/doctype/crm_organization/crm_organization.py index 1cdae09c..daca91ff 100644 --- a/crm/fcrm/doctype/crm_organization/crm_organization.py +++ b/crm/fcrm/doctype/crm_organization/crm_organization.py @@ -46,7 +46,7 @@ class CRMOrganization(Document): 'width': '14rem', }, { - 'label': 'Last modified', + 'label': 'Last Modified', 'type': 'Datetime', 'key': 'modified', 'width': '8rem', diff --git a/crm/overrides/contact.py b/crm/overrides/contact.py index 64c2cc8b..8316e0f8 100644 --- a/crm/overrides/contact.py +++ b/crm/overrides/contact.py @@ -45,7 +45,7 @@ class CustomContact(Contact): 'width': '12rem', }, { - 'label': 'Last modified', + 'label': 'Last Modified', 'type': 'Datetime', 'key': 'modified', 'width': '8rem', diff --git a/frontend/src/components/Activities.vue b/frontend/src/components/Activities.vue index 36993622..60e6e2f7 100644 --- a/frontend/src/components/Activities.vue +++ b/frontend/src/components/Activities.vue @@ -11,19 +11,19 @@ - Make a call + Make a Call
@@ -118,7 +118,7 @@ :options="taskStatusOptions(updateTaskStatus, task)" @click.stop > - + @@ -131,7 +131,7 @@ label: 'Delete', onClick: () => { $dialog({ - title: 'Delete task', + title: 'Delete Task', message: 'Are you sure you want to delete this task?', actions: [ { @@ -187,7 +187,7 @@ >
- {{ call.type == 'Incoming' ? 'Inbound' : 'Outbound' }} call + {{ call.type == 'Incoming' ? 'Inbound' : 'Outbound' }} Call
{{ - call.show_recording ? 'Hide recording' : 'Listen to call' + call.show_recording ? 'Hide Recording' : 'Listen to Call' }}
@@ -226,7 +226,7 @@ class="audio-control" controls :src="call.recording_url" - > + />
@@ -336,7 +336,7 @@ >
- {{ activity.type == 'Incoming' ? 'Inbound' : 'Outbound' }} call + {{ activity.type == 'Incoming' ? 'Inbound' : 'Outbound' }} Call
{{ - activity.show_recording ? 'Hide recording' : 'Listen to call' + activity.show_recording ? 'Hide Recording' : 'Listen to Call' }}
@@ -534,7 +534,7 @@
@@ -825,13 +825,13 @@ function update_activities_details(activity) { } const emptyText = computed(() => { - let text = 'No email communications' + let text = 'No Email Communications' if (props.title == 'Calls') { - text = 'No call logs' + text = 'No Call Logs' } else if (props.title == 'Notes') { - text = 'No notes' + text = 'No Notes' } else if (props.title == 'Tasks') { - text = 'No tasks' + text = 'No Tasks' } return text }) diff --git a/frontend/src/components/Controls/Link.vue b/frontend/src/components/Controls/Link.vue index 1cb2e40e..971abc41 100644 --- a/frontend/src/components/Controls/Link.vue +++ b/frontend/src/components/Controls/Link.vue @@ -29,7 +29,7 @@