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
This commit is contained in:
Julio Cesar Laura
2014-05-07 15:26:47 -04:00
parent 90e1fa9fc8
commit d3b39d5c75

View File

@@ -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) {