diff --git a/erpnext/public/js/financial_statements.js b/erpnext/public/js/financial_statements.js index 66daf0dfb4b..1eeb8965f05 100644 --- a/erpnext/public/js/financial_statements.js +++ b/erpnext/public/js/financial_statements.js @@ -48,15 +48,15 @@ erpnext.financial_statements = { report.page.add_inner_button(__("Balance Sheet"), function() { var filters = report.get_values(); frappe.set_route('query-report', 'Balance Sheet', {company: filters.company}); - }, 'Financial Statements'); + }, __('Financial Statements')); report.page.add_inner_button(__("Profit and Loss"), function() { var filters = report.get_values(); frappe.set_route('query-report', 'Profit and Loss Statement', {company: filters.company}); - }, 'Financial Statements'); + }, __('Financial Statements')); report.page.add_inner_button(__("Cash Flow Statement"), function() { var filters = report.get_values(); frappe.set_route('query-report', 'Cash Flow', {company: filters.company}); - }, 'Financial Statements'); + }, __('Financial Statements')); } };