From 80c58327faaa4873369f6bb949e62792c2f708e0 Mon Sep 17 00:00:00 2001
From: kenneth_suter <kenneth_suter@localhost>
Date: Wed, 15 Aug 2007 21:34:53 +0000
Subject: [PATCH] This commit is a step toward getting OpenDS internationalized. There are still issues to be resolved before we can declare that we are internationalized but this commit covers the bulk of changes needed at this time.
---
opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java | 5 ++++-
1 files changed, 4 insertions(+), 1 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java b/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
index cc01adb..a5da789 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/CurrentStepPanel.java
@@ -27,6 +27,8 @@
package org.opends.quicksetup.ui;
+import static org.opends.messages.QuickSetupMessages.*;
+
import java.awt.*;
import java.util.HashMap;
@@ -149,7 +151,8 @@
JPanel loadingPanel = UIFactory.makeJPanel();
loadingPanel.setLayout(new GridBagLayout());
loadingPanel.add(UIFactory.makeJLabel(UIFactory.IconType.NO_ICON,
- getMsg("general-loading"), UIFactory.TextStyle.PRIMARY_FIELD_VALID),
+ INFO_GENERAL_LOADING.get(),
+ UIFactory.TextStyle.PRIMARY_FIELD_VALID),
new GridBagConstraints());
add(loadingPanel, LOADING_PANEL);
--
Gitblit v1.10.0