From ac7b3839e63d98e14ef4e1c4282c499355f77d1f Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Sat, 3 Jan 2009 22:47:29 +0000 Subject: [PATCH] Fix [2482968] - Translation problems More translation problems found in WLocationDialog - translation unsync with VLocationDialog https://sourceforge.net/tracker2/index.php?func=detail&aid=2482968&group_id=176962&atid=955896 --- .../src/org/adempiere/webui/window/WLocationDialog.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/zkwebui/WEB-INF/src/org/adempiere/webui/window/WLocationDialog.java b/zkwebui/WEB-INF/src/org/adempiere/webui/window/WLocationDialog.java index 96b3ca94f6..2b283a93ab 100644 --- a/zkwebui/WEB-INF/src/org/adempiere/webui/window/WLocationDialog.java +++ b/zkwebui/WEB-INF/src/org/adempiere/webui/window/WLocationDialog.java @@ -133,13 +133,13 @@ public class WLocationDialog extends Window implements EventListener private void initComponents() { - lblAddress1 = new Label(Msg.getMsg(Env.getCtx(), "Address")+ " 1"); + lblAddress1 = new Label(Msg.getElement(Env.getCtx(), "Address1")); lblAddress1.setStyle(LABEL_STYLE); - lblAddress2 = new Label(Msg.getMsg(Env.getCtx(), "Address")+ " 2"); + lblAddress2 = new Label(Msg.getElement(Env.getCtx(), "Address2")); lblAddress2.setStyle(LABEL_STYLE); - lblAddress3 = new Label(Msg.getMsg(Env.getCtx(), "Address")+ " 3"); + lblAddress3 = new Label(Msg.getElement(Env.getCtx(), "Address3")); lblAddress3.setStyle(LABEL_STYLE); - lblAddress4 = new Label(Msg.getMsg(Env.getCtx(), "Address")+ " 4"); + lblAddress4 = new Label(Msg.getElement(Env.getCtx(), "Address4")); lblAddress4.setStyle(LABEL_STYLE); lblCity = new Label(Msg.getMsg(Env.getCtx(), "City")); lblCity.setStyle(LABEL_STYLE);