From 2960ff204bdef0b16dcb3fa6311a15de7a25dfaa Mon Sep 17 00:00:00 2001 From: Carlos Ruiz Date: Tue, 8 Mar 2011 11:03:32 -0500 Subject: [PATCH] Improve output message from translation import process --- .../org/adempiere/webui/install/WTranslationDialog.java | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java index 89d9dfd457..9192aaf3d7 100644 --- a/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java +++ b/org.adempiere.ui.zk/WEB-INF/src/org/adempiere/webui/install/WTranslationDialog.java @@ -215,14 +215,15 @@ public class WTranslationDialog extends TranslationController implements IFormCo // All Tables if (AD_Table.getValue().equals("")) { - msg = null; + msg = ""; for (int i = 1; i < cbTable.getItemCount(); i++) { AD_Table = (ValueNamePair)cbTable.getItemAtIndex(i).toValueNamePair(); - msg += imp + // Carlos Ruiz - globalqss - improve output message from translation import process + msg += AD_Table.getValue() + " " + (imp ? t.importTrl (directory, AD_Client_ID, AD_Language.getValue(), AD_Table.getValue()) - : t.exportTrl (directory, AD_Client_ID, AD_Language.getValue(), AD_Table.getValue()); + : t.exportTrl (directory, AD_Client_ID, AD_Language.getValue(), AD_Table.getValue())) + " "; } if(msg == null || msg.length() == 0)