Upgrade to Xinha 0.931. Xinha has been optimized for size and dozens of issues have been closed

out since the last upgrade . Add Firefox and Xinha buttons to main page to show our support.
This commit is contained in:
Chris Morgan
2007-05-31 22:43:05 +00:00
committed by WineHQ
parent ff46a4485d
commit 2d4b27530d
354 changed files with 19793 additions and 21419 deletions

View File

@@ -13,7 +13,7 @@ function Init() {
__dlg_init();
var param = window.dialogArguments;
type = param.f_type;
document.getElementById("f_type").innerHTML = 'Form Element: INPUT (' + type + ')';
document.getElementById("f_type").innerHTML = HTMLArea._lc('Form Element: INPUT', "Forms") + '(' + type + ')';
document.getElementById("txt").style.display = "none";
document.getElementById("chk").style.display = "none";
document.getElementById("btn").style.display = "none";
@@ -76,8 +76,8 @@ function Init() {
function onOK() {
var el = document.getElementById("f_name");
if (!el.value) {
alert("You must enter a Name");
if (!el.value) {
alert(HTMLArea._lc("You must enter a Name","Forms"));
el.focus();
return false;
}