From 372a881d8ccc0a345231fdf7fbb0ba0e04938b19 Mon Sep 17 00:00:00 2001 From: strixaluco Date: Mon, 17 Jul 2017 14:36:25 +0800 Subject: [PATCH] Make 'Financial Year' translatable in Setup wizard (#9879) --- erpnext/public/js/setup_wizard.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/erpnext/public/js/setup_wizard.js b/erpnext/public/js/setup_wizard.js index 5995a03986..c37a89012e 100644 --- a/erpnext/public/js/setup_wizard.js +++ b/erpnext/public/js/setup_wizard.js @@ -104,7 +104,7 @@ var erpnext_slides = [ options: "", fieldtype: 'Select' }, - { fieldtype: "Section Break", label: "Financial Year" }, + { fieldtype: "Section Break", label: __('Financial Year') }, { fieldname: 'fy_start_date', label: __('Start Date'), fieldtype: 'Date', reqd: 1 }, { fieldtype: "Column Break" }, { fieldname: 'fy_end_date', label: __('End Date'), fieldtype: 'Date', reqd: 1 },