From d3b39d5c75549720fc145abf2a1c241924f2afa5 Mon Sep 17 00:00:00 2001 From: Julio Cesar Laura Date: Wed, 7 May 2014 15:26:47 -0400 Subject: [PATCH] BUG 14136 the toolbar button caption on design process list will always show text "Status" with other language environment SOLVED - The label "Status" in processes list was hardcoded - Change the hasrdcoded label to translation function --- workflow/engine/templates/processes/main.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/workflow/engine/templates/processes/main.js b/workflow/engine/templates/processes/main.js index 5b7eecca9..f264d63bd 100755 --- a/workflow/engine/templates/processes/main.js +++ b/workflow/engine/templates/processes/main.js @@ -1106,7 +1106,7 @@ function activeDeactive(){ store.reload(); var activator = Ext.getCmp('activator'); activator.setDisabled(true); - activator.setText('Status'); + activator.setText(_('ID_STATUS')); activator.setIcon(''); }, failure: function ( result, request) { @@ -1142,7 +1142,7 @@ function enableDisableDebug() store.reload(); var activator = Ext.getCmp('activator'); activator.setDisabled(true); - activator.setText('Status'); + activator.setText(_('ID_STATUS')); activator.setIcon(''); }, failure: function ( result, request) {