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:
@@ -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) {
|
||||
|
||||
Reference in New Issue
Block a user