forked from extern/egroupware
0a28f3812e
- Inclusion of the following javascript directories: * Connector: javascript object to interface xmlhttprequest object. This object allows asynchronous posts and support for messages while this post is being done, such as "wait, contacting server", etc. * JsAPI: general javascript functions and methods * jsolait: performs conversion from a xmlrpc message to a javascript object * xmlRpcMsgCreator: performs conversion from a javascript object to a xmlrpc message * dynapi: cross-browser class to draw layers - Update in setup version: now is 1.0.1.008; Update your versions. There was made a change in phpgw_vfs2_files table in handling of modified files. - Upgrade of vfs2 classes and PclZip class - Changes in javascript object and common object to allow the javascript backend to applications to work (now just filescenter will use it...)
81 lines
3.1 KiB
JavaScript
81 lines
3.1 KiB
JavaScript
// I18N constants
|
|
|
|
// LANG: "de", ENCODING: ISO-8859-1 for the german umlaut!
|
|
|
|
HTMLArea.I18N = {
|
|
|
|
// the following should be the filename without .js extension
|
|
// it will be used for automatically load plugin language.
|
|
lang: "de",
|
|
|
|
tooltips: {
|
|
bold: "Fett",
|
|
italic: "Kursiv",
|
|
underline: "Unterstrichen",
|
|
strikethrough: "Durchgestrichen",
|
|
subscript: "Hochgestellt",
|
|
superscript: "Tiefgestellt",
|
|
justifyleft: "Linksbündig",
|
|
justifycenter: "Zentriert",
|
|
justifyright: "Rechtsbündig",
|
|
justifyfull: "Blocksatz",
|
|
orderedlist: "Nummerierung",
|
|
unorderedlist: "Aufzählungszeichen",
|
|
outdent: "Einzug verkleinern",
|
|
indent: "Einzug vergrößern",
|
|
forecolor: "Schriftfarbe",
|
|
backcolor: "Hindergrundfarbe",
|
|
hilitecolor: "Hintergrundfarbe",
|
|
horizontalrule: "Horizontale Linie",
|
|
inserthorizontalrule: "Horizontale Linie",
|
|
createlink: "Hyperlink einfügen",
|
|
insertimage: "Bild einfügen",
|
|
inserttable: "Tabelle einfügen",
|
|
htmlmode: "HTML Modus",
|
|
popupeditor: "Editor im Popup öffnen",
|
|
about: "Über htmlarea",
|
|
help: "Hilfe",
|
|
showhelp: "Hilfe",
|
|
textindicator: "Derzeitiger Stil",
|
|
undo: "Rückgängig",
|
|
redo: "Wiederholen",
|
|
cut: "Ausschneiden",
|
|
copy: "Kopieren",
|
|
paste: "Einfügen aus der Zwischenablage",
|
|
lefttoright: "Textrichtung von Links nach Rechts",
|
|
righttoleft: "Textrichtung von Rechts nach Links",
|
|
removeformat: "Formatierung entfernen"
|
|
},
|
|
|
|
buttons: {
|
|
"ok": "OK",
|
|
"cancel": "Abbrechen"
|
|
},
|
|
|
|
msg: {
|
|
"Path": "Pfad",
|
|
"TEXT_MODE": "Sie sind im Text-Modus. Benutzen Sie den [<>] Knopf um in den visuellen Modus (WYSIWIG) zu gelangen.",
|
|
|
|
"Moz-Clipboard" :
|
|
"Aus Sicherheitsgründen dürfen Skripte normalerweise nicht programmtechnisch auf " +
|
|
"Ausschneiden/Kopieren/Einfügen zugreifen. Bitte klicken Sie OK um die technische " +
|
|
"Erläuterung auf mozilla.org zu öffnen, in der erklärt wird, wie einem Skript Zugriff " +
|
|
"gewährt werden kann."
|
|
},
|
|
|
|
dialogs: {
|
|
"OK": "OK",
|
|
"Cancel": "Abbrechen",
|
|
"Insert/Modify Link": "Verknüpfung hinzufügen/ändern",
|
|
"None (use implicit)": "k.A. (implizit)",
|
|
"New window (_blank)": "Neues Fenster (_blank)",
|
|
"Same frame (_self)": "Selber Rahmen (_self)",
|
|
"Top frame (_top)": "Oberster Rahmen (_top)",
|
|
"Other": "Anderes",
|
|
"Target:": "Ziel:",
|
|
"Title (tooltip):": "Titel (Tooltip):",
|
|
"URL:": "URL:",
|
|
"You must enter the URL where this link points to": "Sie müssen eine Ziel-URL angeben für die Verknüpfung angeben"
|
|
}
|
|
};
|