Fix labels to accept translation in selling doctype (#9135)

"label": _("Customer Addresses And Contacts"),
"label": _("Sales Partner Addresses And Contacts"),
now they can accept to be translated
This commit is contained in:
ahmadRagheb 2017-06-07 17:38:39 +03:00 committed by Nabin Hait
parent 41f6f4c200
commit 9017f3768b

View File

@ -121,7 +121,7 @@ def get_data():
"type": "report",
"is_query_report": True,
"name": "Addresses And Contacts",
"label": "Sales Partner Addresses And Contacts",
"label": _("Sales Partner Addresses And Contacts"),
"doctype": "Address",
"route_options": {
"party_type": "Sales Partner"
@ -226,7 +226,7 @@ def get_data():
"type": "report",
"is_query_report": True,
"name": "Addresses And Contacts",
"label": "Customer Addresses And Contacts",
"label": _("Customer Addresses And Contacts"),
"doctype": "Address",
"route_options": {
"party_type": "Customer"