blob: d599cc8619a4bc55f02f73a603b70cc79d613816 [file] [log] [blame]
// htmlArea v3.0 - Copyright (c) 2002, 2003 interactivetools.com, inc.
// This copyright notice MUST stay intact for use (see license.txt).
//
// Portions (c) dynarch.com, 2003
//
// A free WYSIWYG editor replacement for <textarea> fields.
// For full source code and docs, visit http://www.interactivetools.com/
//
// Version 3.0 developed by Mihai Bazon.
// http://dynarch.com/mishoo
//
// $Id:popup.js 856 2007-06-13 18:34:34Z wymsy $
// Override the ordinary popup.js translation to add translation for a few other HTML elements.
function __dlg_translate(context) {
var types = ["span", "option", "td", "th", "button", "div", "label", "a","img", "legend"];
for (var type = 0; type < types.length; ++type) {
var spans = document.getElementsByTagName(types[type]);
for (var i = spans.length; --i >= 0;) {
var span = spans[i];
if (span.firstChild && span.firstChild.data) {
var txt = Xinha._lc(span.firstChild.data, context);
if (txt)
span.firstChild.data = txt;
}
if (span.title) {
var txt = Xinha._lc(span.title, context);
if (txt)
span.title = txt;
}
if (span.alt) {
var txt = Xinha._lc(span.alt, context);
if (txt)
span.alt = txt;
}
}
}
document.title = Xinha._lc(document.title, context);
}