From df7d83520b2e4941ac9f312a0d97a802681aa6c3 Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Wed, 30 Oct 2013 13:26:41 -0500 Subject: [PATCH] IDEMPIERE-1472 Selection and Display panels are not translated in the posting window --- .../WEB-INF/src/org/adempiere/webui/acct/WAcctViewer.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/acct/WAcctViewer.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/acct/WAcctViewer.java index 538742630b..2817a23875 100755 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/acct/WAcctViewer.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/acct/WAcctViewer.java @@ -441,12 +441,12 @@ public class WAcctViewer extends Window implements EventListener //"images/InfoAccount16.png" Groupbox groupDisplay = new Groupbox(); - Caption capDisplay = new Caption("Display"); + Caption capDisplay = new Caption(Msg.getMsg(Env.getCtx(), "Display")); groupDisplay.appendChild(capDisplay); groupDisplay.appendChild(displayPanel); Groupbox groupSelection = new Groupbox(); - Caption capSelection = new Caption("Selection"); + Caption capSelection = new Caption(Msg.getMsg(Env.getCtx(), "Selection")); groupSelection.appendChild(capSelection); groupSelection.appendChild(selectionPanel);