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/FinishedPanel.java | 7 +++++--
1 files changed, 5 insertions(+), 2 deletions(-)
diff --git a/opends/src/quicksetup/org/opends/quicksetup/ui/FinishedPanel.java b/opends/src/quicksetup/org/opends/quicksetup/ui/FinishedPanel.java
index e736b63..90c2b2a 100644
--- a/opends/src/quicksetup/org/opends/quicksetup/ui/FinishedPanel.java
+++ b/opends/src/quicksetup/org/opends/quicksetup/ui/FinishedPanel.java
@@ -27,6 +27,9 @@
package org.opends.quicksetup.ui;
+import org.opends.messages.Message;
+import static org.opends.messages.QuickSetupMessages.*;
+
/**
* This panel is used to show the application is finished.
*
@@ -47,8 +50,8 @@
/**
* {@inheritDoc}
*/
- protected String getTitle()
+ protected Message getTitle()
{
- return getMsg("finished-panel-title");
+ return INFO_FINISHED_PANEL_TITLE.get();
}
}
--
Gitblit v1.10.0