diff --git a/source/org/thdl/tib/scanner/TibetanScanner.java b/source/org/thdl/tib/scanner/TibetanScanner.java
index 7296f02..8e6dba1 100644
--- a/source/org/thdl/tib/scanner/TibetanScanner.java
+++ b/source/org/thdl/tib/scanner/TibetanScanner.java
@@ -18,6 +18,7 @@ Contributor(s): ______________________________________.
package org.thdl.tib.scanner;
import java.util.*;
+import org.thdl.util.ThdlVersion;
/** Defines the core methods required to provide access to a dictionary; local or remote.
@@ -29,13 +30,11 @@ public interface TibetanScanner
public static final String copyrightASCII="Copyright 2000-2002 by Andres Montano Pellegrini, all rights reserved.";
public static final String copyrightHTML="
";
public static final String aboutUnicode=
- "The Tibetan to English Translation Tool, version 1.1.0\n" +
- "Copyright " + '\u00A9' + " 2000-2002 by Andr" + '\u00E9' + "s Montano Pellegrini, all rights reserved.\n" +
- "This software is protected by the terms of the AMP Open Community License,\n" +
- "Version 1.0 (available at www.tibet.iteso.mx/Guatemala/). The Tibetan script\n" +
- "input facility was built by THDL's Edward Garrett (http://www.thdl.org/).\n" +
- "It uses Tibetan Computer Company (http://www.tibet.dk/tcc/)fonts created by\n" +
- "Tony Duff and made available by the Trace Foundation (http://trace.org/).";
+ "The Tibetan to English Translation Tool: Version 1.1, compiled at " + ThdlVersion.getTimeOfCompilation() + ".\n\n" + /* FIXME HARD-CODED VERSION NUMBER */
+ "Copyright " + '\u00A9' + " 2000-2002 by Andr" + '\u00E9' + "s Montano Pellegrini, all rights reserved.\n\n" +
+ "This software is protected by the terms of the AMP Open Community License 1.0 (available at www.tibet.iteso.mx/Guatemala/). " +
+ "The Tibetan script input facility was built by THDL's Edward Garrett (http://www.thdl.org/). " +
+ "It uses Tibetan Computer Company (http://www.tibet.dk/tcc/)fonts created by Tony Duff and made available by the Trace Foundation (http://trace.org/).";
public void scanLine(String linea);
public void scanBody(String linea);
public void finishUp();