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

@@ -1,10 +1,12 @@
// I18N constants
// LANG: "de", ENCODING: UTF-8 | ISO-8859-1
{
"Page Cleaner" : "Seite bereinigen",
"Cleaning Area" : "Reinigungsbereich",
"Selection" : "Ausgewählter Bereich",
"All" : "Alles",
"Cleaning options" : "Reinigungsoptionen",
"Formatting:" : "Formatierung:",
"All HTML:" : "Ganzes HTML:",
"Page Cleaner": "Seite bereinigen",
"Cleaning Area": "Reinigungsbereich",
"Selection": "Ausgewählter Bereich",
"All": "Alles",
"Cleaning options": "Reinigungsoptionen",
"Formatting:": "Formatierung:",
"All HTML:": "Ganzes HTML:",
"Select which types of formatting you would like to remove." : "Wählen Sie aus welche Formatierungen Sie entfernen wollen."
};

View File

@@ -0,0 +1,12 @@
// I18N constants
// LANG: "fr", ENCODING: UTF-8
{
"Page Cleaner": "Nettoyeur de page",
"Cleaning Area": "Zone de nettoyage",
"Selection": "Sélection",
"All": "Tout",
"Cleaning options": "Options de nettoyage",
"Formatting:": "Format",
"All HTML:": "Tout le HTML",
"Select which types of formatting you would like to remove.": "Sélectionnez quel type de formatage vous voulez supprimer."
};

View File

@@ -1,10 +1,12 @@
// I18N constants
// LANG: "nl", ENCODING: UTF-8
{
"Page Cleaner" : "Pagina Schoonmaker",
"Cleaning Area" : "Schoonmaak gebied",
"Selection" : "Geselecteerde tekst",
"All" : "Alles",
"Cleaning options" : "Schoonmaak opties",
"Formatting:" : "Format",
"All HTML:" : "Alle html",
"Page Cleaner": "Pagina Schoonmaker",
"Cleaning Area": "Schoonmaak gebied",
"Selection": "Geselecteerde tekst",
"All": "Alles",
"Cleaning options": "Schoonmaak opties",
"Formatting:": "Format",
"All HTML:": "Alle html",
"Select which types of formatting you would like to remove." : "Selecteer welke types van Formatteren je wilt verwijderen"
};

View File

@@ -1,14 +1,13 @@
// I18N constants
// LANG: "no", ENCODING: UTF-8
// translated: Kim Steinhaug, http://www.steinhaug.com/, kim@steinhaug.com
{
"Page Cleaner" : "Dokumentvasker",
"Cleaning Area" : "Vaskeområde",
"Selection" : "Markert område",
"All" : "Hele dokumentet",
"Cleaning options" : "Vaskemetoder",
"Formatting:" : "Formattering:",
"All HTML:" : "All HTML-kode:",
"Select which types of formatting you would like to remove." : "Velg hva slags formattering du ønsker å fjerne."
"Page Cleaner": "Dokumentvasker",
"Cleaning Area": "Vaskeområde",
"Selection": "Markert område",
"All": "Hele dokumentet",
"Cleaning options": "Vaskemetoder",
"Formatting:": "Formattering:",
"All HTML:": "All HTML-kode:",
"Select which types of formatting you would like to remove.": "Velg hva slags formattering du ønsker å fjerne."
};

View File

@@ -19,7 +19,7 @@ window.moveTo(x, y);
function Init() {
__dlg_translate('UnFormat');
__dlg_init();
};
}
function onOK() {
var param = new Object();
@@ -40,12 +40,12 @@ function onOK() {
__dlg_close(param);
return false;
};
}
function onCancel() {
__dlg_close(null);
return false;
};
}
</script>
</head>
@@ -82,4 +82,4 @@ function onCancel() {
</form>
</body>
</html>
</html>

View File

@@ -14,10 +14,10 @@ function UnFormat(editor) {
action : function(editor) {
self.buttonPress(editor);
}
})
});
cfg.addToolbarElement("unformat", "killword", 1);
};
}
UnFormat._pluginInfo = {
name : "UnFormat",
@@ -28,7 +28,7 @@ UnFormat._pluginInfo = {
UnFormat.prototype._lc = function(string) {
return HTMLArea._lc(string, 'UnFormat');
}
};
UnFormat.prototype.buttonPress = function(editor){
editor._popupDialog( "plugin://UnFormat/unformat", function( param){
@@ -62,4 +62,4 @@ UnFormat.prototype.buttonPress = function(editor){
}
} else { return false; }
}, null);
}
};