Upgrade to xinha svn head to fix issues with xinha editors not appearing in Firefox 1.5

This commit is contained in:
Chris Morgan
2005-12-07 03:37:36 +00:00
committed by WineHQ
parent 369b40b046
commit 8786179180
175 changed files with 2371 additions and 1919 deletions

View File

@@ -0,0 +1,16 @@
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Quick Tag Editor": "Editeur rapide de balise",
"Enter the TAG you want to insert": "Entrez la balise que vous voulez insérer",
"You have to select some text": "Vous devez sélectionner du texte",
"There are some unclosed quote": "Il y a des apostrophes mal fermées",
"This attribute already exists in the TAG": "Cet attribute existe déjà sur cette balise",
"No CSS class avaiable": "Pas de classe CSS accessible",
"OPTIONS": "OPTIONS",
"ATTRIBUTES": "ATTRIBUTS",
"TAGs": "Balises",
"Colors": "Couleurs",
"Ok": "OK",
"Cancel": "Annuler"
};

View File

@@ -1,7 +1,6 @@
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Quick Tag Editor": "Kjapp TAGG Editor",
"Enter the TAG you want to insert": "Skriv inn taggen du vil ønsker å sette inn",
@@ -13,6 +12,6 @@
"ATTRIBUTES": "ATTRIBUTTER",
"TAGs": "TAGGer",
"Colors": "Farger",
"Ok": "Ok",
"Ok": "OK",
"Cancel": "Avbryt"
};

View File

@@ -0,0 +1,17 @@
// I18N constants
// LANG: "pl", ENCODING: UTF-8
// translated: Krzysztof Kotowicz, http://www.eskot.krakow.pl/portfolio/, koto@webworkers.pl
{
"Quick Tag Editor": "Edytor Quick Tag",
"Enter the TAG you want to insert": "Podaj TAG, który chcesz wstawić",
"You have to select some text": "Musisz zaznaczyć tekst.",
"There are some unclosed quote": "Są jakieś niezamknięte cudzysłowia",
"This attribute already exists in the TAG": "TAG posiada już ten atrybut",
"No CSS class avaiable": "Brak dostępnych klas CSS",
"OPTIONS": "OPCJE",
"ATTRIBUTES": "ATRYBUTY",
"TAGs": "TAGi",
"Colors": "Kolory",
"Ok": "Ok",
"Cancel": "Anuluj"
};

View File

@@ -1,16 +1,16 @@
// I18N constants
// LANG: "pt_br", ENCODING: UTF-8
{
"Quick Tag Editor": "Editor Rápido",
"Enter the TAG you want to insert": "Edite a TAG que deseja inserir",
"You have to select some text": "É preciso selecionar algum texto",
"No CSS class avaiable": "Não há classes CSS",
"There are some unclosed quote...": "Há uma ou mais aspas sem fechamento",
"Quick Tag Editor": "Editor Rápido",
"Enter the TAG you want to insert": "Edite a TAG que deseja inserir",
"You have to select some text": "É preciso selecionar algum texto",
"No CSS class avaiable": "Não há classes CSS",
"There are some unclosed quote...": "Há uma ou mais aspas sem fechamento",
"This attribute already exists in the TAG": "Esse atributo já existe na TAG",
"OPTIONS": "OPÇÕES",
"ATTRIBUTES": "ATRIBUTOS",
"TAGs": "TAGs",
"Colors": "Cores",
"Ok": "Ok",
"Cancel": "Cancelar"
"OPTIONS": "OPÇÕES",
"ATTRIBUTES": "ATRIBUTOS",
"TAGs": "TAGs",
"Colors": "Cores",
"Ok": "Ok",
"Cancel": "Cancelar"
};

View File

@@ -33,17 +33,17 @@ function Init() {
document.getElementById('bt_colors').style.display = 'none';
document.body.onkeypress = __dlg_key_press;
};
}
function onCancel() {
__dlg_close(null);
return false;
};
}
function quoteTest(val) {
var er = /^\w+\s*(\w+=\"[^\"]*\"\s*|\w+=\'[^\']*\'\s*)*$/;
return er.test(val);
};
}
function onOK() {
var el = document.getElementById('tagopen');
@@ -71,7 +71,7 @@ function onOK() {
__dlg_close(param);
return false;
};
}
function __dlg_key_press(ev) {
ev || (ev = window.event);
@@ -84,7 +84,7 @@ function __dlg_key_press(ev) {
return false;
}
return true;
};
}
function selchange() {
var toadd = document.getElementById('selectag').value;
@@ -149,8 +149,8 @@ function selchange() {
function addchanges() {
document.getElementById('tagopen').focus();
document.getElementById('tagopen').value += toadd;
};
};
}
}
function captureClasses() {
var cont = 0;
@@ -193,7 +193,7 @@ function captureClasses() {
}
}
return cont;
};
}
function choice_dropdown(e) {
if (document.all) Key = e.keyCode;
@@ -222,7 +222,7 @@ function choice_dropdown(e) {
att = curTag;
createDropdown(att);
};
}
function createDropdown(type) {
var _div = document.getElementById('showselect');
@@ -270,15 +270,15 @@ function createDropdown(type) {
opt.value = obj[i];
_sel.appendChild(opt);
}
};
};
}
}
function colors() {
var colloc = window.location.toString().replace(/plugins.+$/,"") +
"popups/select_color.html";
window.open(colloc, 'colors', "toolbar=no,location=no,directories=no," +
"status=no,menubar=no,scrollbars=no,resizable=no,width=240,height=182");
};
}
// simulation of Dialog._return - select_color.html needs it.
var Dialog = new Object();
@@ -353,4 +353,4 @@ form { padding: 0px; margin: 0px; }
</div>
</form>
</body>
</html>
</html>

View File

@@ -19,7 +19,7 @@ function QuickTag(editor) {
}
});
cfg.addToolbarElement("quickeditor", "htmlmode", 1);
};
}
QuickTag.prototype.buttonPress = function(editor) {
var self = this;
@@ -50,4 +50,4 @@ license : "htmlArea"
QuickTag.prototype._lc = function(string) {
return HTMLArea._lc(string, 'QuickTag');
}
};