From 44c1a610a1eb8ecf5d634c95c1a8dfc7be363225 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Rold=C3=A1n?= Date: Fri, 26 May 2017 13:02:51 -0300 Subject: [PATCH] Financial Statements Button translateabled (#9032) --- erpnext/public/js/financial_statements.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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')); } };