From 418a9474864c9cbccbe763cc66726d2e1fb81d6c Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 4 Sep 2013 18:43:36 -0500 Subject: [PATCH] IDEMPIERE-1321 Attachment panel title is hardcoded (Based on Nicolas Micoud patch) --- .../WEB-INF/src/org/adempiere/webui/panel/WAttachment.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WAttachment.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WAttachment.java index 1581a1311d..6f41ab7d51 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WAttachment.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/panel/WAttachment.java @@ -219,7 +219,7 @@ public class WAttachment extends Window implements EventListener this.setMaximizable(true); this.setWidth("700px"); this.setHeight("85%"); - this.setTitle("Attachment"); + this.setTitle(Msg.getMsg(Env.getCtx(), "Attachment")); this.setClosable(true); this.setSizable(true); this.setBorder("normal");