From dac83c0f58a058cc7e3574e0b42908f3af7baf7d Mon Sep 17 00:00:00 2001 From: Douglas Medrano Chura Date: Mon, 4 Jul 2011 12:33:04 -0400 Subject: [PATCH] BUG 0000 Traduction of the page main on reportTables --- workflow/engine/templates/reportTables/main.js | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/workflow/engine/templates/reportTables/main.js b/workflow/engine/templates/reportTables/main.js index 40566231a..6780bd2b4 100644 --- a/workflow/engine/templates/reportTables/main.js +++ b/workflow/engine/templates/reportTables/main.js @@ -51,7 +51,7 @@ Ext.onReady(function(){ }); newReportTableButton = new Ext.Action({ - text: 'New', + text: _("ID_NEW"), //iconCls: 'button_menu_ext ss_sprite ss_add', icon: '/images/addc.png', handler: newReportTable @@ -281,10 +281,10 @@ Ext.onReady(function(){ processComboBox = new Ext.form.ComboBox({ id: 'PROCESS', - fieldLabel : 'Process', + fieldLabel : 'Process1', hiddenName : 'PRO_UID', store : processStore, - emptyText: 'Select a process', + emptyText: _("ID_EMPTY_PROCESSES"), valueField : 'PRO_UID', displayField : 'PRO_TITLE', @@ -310,7 +310,7 @@ Ext.onReady(function(){ //dataButton,'-' , tbar.push({xtype: 'tbfill'}) if (PRO_UID === false) { - tbar.push('process'); + tbar.push(_("ID_PROCESS")); tbar.push(processComboBox); tbar.push(clearTextButton1); } @@ -450,7 +450,7 @@ DeletePMTable = function(){ result = Ext.util.JSON.decode(resp.responseText); if (result.success) { iGrid.getStore().reload(); - PMExt.notify('DELETION SUCCESSFULLY', 'All records was deleted successfully!'); + PMExt.notify(_("ID_DELETION_SUCCESSFULLY"), _("ID_ALL_RECORDS_DELETED_SUCESSFULLY")); } else { Ext.Msg.alert( _('ID_ERROR'), result.msg); }