Hi Bob, a little comment on your last commit ;) There's a problem with org.jmol.applet.Jmol.java line 470. Be careful with the GT._() function, you shouldn't construct a String in it, otherwise it becomes messy to translate. There's a special version of this function (with two parameters) to do this.
So, instead of: GT._( "Jmol Applet. Version " + JmolConstants.version + " " + JmolConstants.date + " Part of the OpenScience project. " + "See http://www.jmol.org for more information") You should use something like this: GT._( "Jmol Applet. Version {0} {1} Part of the OpenScience project. See http://www.jmol.org for more information", new Object[] { JmolConstants.version, JmolConstants.date } ) Nico ------------------------------------------------------- This SF.net email is sponsored by: Splunk Inc. Do you grep through log files for problems? Stop! Download the new AJAX search engine that makes searching your log files as easy as surfing the web. DOWNLOAD SPLUNK! http://sel.as-us.falkag.net/sel?cmd=lnk&kid3432&bid#0486&dat1642 _______________________________________________ Jmol-developers mailing list [email protected] https://lists.sourceforge.net/lists/listinfo/jmol-developers
