This commit is contained in:
Roly Rudy Gutierrez Pinto
2015-09-15 11:50:23 -04:00
committed by Enrique Ponce De Leon
parent b8e7ce738e
commit a644c18fa5
6 changed files with 72 additions and 56 deletions

View File

@@ -179,7 +179,7 @@ Ext.onReady(function(){
}) */
var mnuNewBpmnProject = {
text: "New BPMN Project",
text: _('ID_NEW_BPMN_PROJECT'),
iconCls: "silk-add",
icon: "",
handler: function ()
@@ -189,7 +189,7 @@ Ext.onReady(function(){
};
var mnuNewProject = {
text: "New Project",
text: _('ID_NEW_PROJECT'),
iconCls: "silk-add",
icon: "",
handler: function ()
@@ -512,7 +512,7 @@ function newProcess(params)
params = typeof params == 'undefined' ? {type:'classicProject'} : params;
// TODO this variable have hardcoded labels, it must be changed on the future
var formTitle = params.type == "classicProject" ? "New Project" : "New BPMN Project"
var formTitle = params.type == "classicProject" ? _('ID_NEW_PROJECT') : _('ID_NEW_BPMN_PROJECT')
// window.location = 'processes_New';
var ProcessCategories = new Ext.form.ComboBox({