IDEMPIERE-1432 Drag and Drop Translation missing

This commit is contained in:
Carlos Ruiz 2013-10-16 18:11:38 -05:00
parent b9420079f4
commit f46d53670a
3 changed files with 20 additions and 1 deletions

View File

@ -0,0 +1,11 @@
SET SQLBLANKLINES ON
SET DEFINE OFF
-- 16/10/2013 06:08:38 PM COT
-- IDEMPIERE-1432 Drag and Drop Translation missing
INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Org_ID,Created,AD_Client_ID) VALUES ('I','(Drag and drop menu item here)',200236,'D','f78e351a-68f9-494d-abd2-421b3ffd4633','DropMenuItemHere','Y',TO_DATE('2013-10-16 18:08:36','YYYY-MM-DD HH24:MI:SS'),100,100,0,TO_DATE('2013-10-16 18:08:36','YYYY-MM-DD HH24:MI:SS'),0)
;
SELECT register_migration_script('201310161811_IDEMPIERE-1432.sql') FROM dual
;

View File

@ -0,0 +1,8 @@
-- 16/10/2013 06:08:38 PM COT
-- IDEMPIERE-1432 Drag and Drop Translation missing
INSERT INTO AD_Message (MsgType,MsgText,AD_Message_ID,EntityType,AD_Message_UU,Value,IsActive,Updated,CreatedBy,UpdatedBy,AD_Org_ID,Created,AD_Client_ID) VALUES ('I','(Drag and drop menu item here)',200236,'D','f78e351a-68f9-494d-abd2-421b3ffd4633','DropMenuItemHere','Y',TO_TIMESTAMP('2013-10-16 18:08:36','YYYY-MM-DD HH24:MI:SS'),100,100,0,TO_TIMESTAMP('2013-10-16 18:08:36','YYYY-MM-DD HH24:MI:SS'),0)
;
SELECT register_migration_script('201310161811_IDEMPIERE-1432.sql') FROM dual
;

View File

@ -134,7 +134,7 @@ public class DPFavourites extends DashboardPanel implements EventListener<Event>
}
}
lblMsg = new Label("(Drag and drop menu item here)");
lblMsg = new Label(Msg.getMsg(Env.getCtx(), "DropMenuItemHere"));
if(bxFav.getChildren().isEmpty()) bxFav.appendChild(lblMsg);
}