mirror of
https://github.com/UnickSoft/graphonline.git
synced 2025-07-04 00:36:45 +00:00
69 lines
1.5 KiB
JavaScript
Executable File
69 lines
1.5 KiB
JavaScript
Executable File
/*
|
|
Copyright (c) 2003-2013, CKSource - Frederico Knabben. All rights reserved.
|
|
For licensing, see LICENSE.md or http://ckeditor.com/license
|
|
*/
|
|
CKEDITOR.plugins.setLang( 'forms', 'de', {
|
|
button: {
|
|
title: 'Button-Eigenschaften',
|
|
text: 'Text (Wert)',
|
|
type: 'Typ',
|
|
typeBtn: 'Button',
|
|
typeSbm: 'Absenden',
|
|
typeRst: 'Zurücksetzen'
|
|
},
|
|
checkboxAndRadio: {
|
|
checkboxTitle: 'Checkbox-Eigenschaften',
|
|
radioTitle: 'Optionsfeld-Eigenschaften',
|
|
value: 'Wert',
|
|
selected: 'ausgewählt'
|
|
},
|
|
form: {
|
|
title: 'Formular-Eigenschaften',
|
|
menu: 'Formular-Eigenschaften',
|
|
action: 'Action',
|
|
method: 'Method',
|
|
encoding: 'Zeichenkodierung'
|
|
},
|
|
hidden: {
|
|
title: 'Verstecktes Feld-Eigenschaften',
|
|
name: 'Name',
|
|
value: 'Wert'
|
|
},
|
|
select: {
|
|
title: 'Auswahlfeld-Eigenschaften',
|
|
selectInfo: 'Info',
|
|
opAvail: 'Mögliche Optionen',
|
|
value: 'Wert',
|
|
size: 'Größe',
|
|
lines: 'Linien',
|
|
chkMulti: 'Erlaube Mehrfachauswahl',
|
|
opText: 'Text',
|
|
opValue: 'Wert',
|
|
btnAdd: 'Hinzufügen',
|
|
btnModify: 'Ändern',
|
|
btnUp: 'Hoch',
|
|
btnDown: 'Runter',
|
|
btnSetValue: 'Setze als Standardwert',
|
|
btnDelete: 'Entfernen'
|
|
},
|
|
textarea: {
|
|
title: 'Textfeld (mehrzeilig) Eigenschaften',
|
|
cols: 'Spalten',
|
|
rows: 'Reihen'
|
|
},
|
|
textfield: {
|
|
title: 'Textfeld (einzeilig) Eigenschaften',
|
|
name: 'Name',
|
|
value: 'Wert',
|
|
charWidth: 'Zeichenbreite',
|
|
maxChars: 'Max. Zeichen',
|
|
type: 'Typ',
|
|
typeText: 'Text',
|
|
typePass: 'Passwort',
|
|
typeEmail: 'E-mail',
|
|
typeSearch: 'Suche',
|
|
typeTel: 'Telefonnummer',
|
|
typeUrl: 'URL'
|
|
}
|
|
});
|