forked from outsideris/angular-summernote
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cffd836
commit cce259a
Showing
4 changed files
with
109 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,95 @@ | ||
(function ($) { | ||
$.extend($.summernote.lang, { | ||
'de-DE': { | ||
font: { | ||
bold: 'Fett', | ||
italic: 'Kursiv', | ||
underline: 'Unterstreichen', | ||
clear: 'Zurücksetzen', | ||
height: 'Zeilenhöhe' | ||
}, | ||
image: { | ||
image: 'Grafik', | ||
insert: 'Grafik einfügen', | ||
resizeFull: 'Originalgröße', | ||
resizeHalf: 'Größe 1/2', | ||
resizeQuarter: 'Größe 1/4', | ||
floatLeft: 'Linksbündig', | ||
floatRight: 'Rechtsbündig', | ||
floatNone: 'Kein Textfluss', | ||
dragImageHere: 'Ziehen Sie ein Bild mit der Maus hierher', | ||
selectFromFiles: 'Wählen Sie eine Datei aus', | ||
url: 'Grafik URL', | ||
remove: 'Grafik entfernen' | ||
}, | ||
link: { | ||
link: 'Link', | ||
insert: 'Link einfügen', | ||
unlink: 'Link entfernen', | ||
edit: 'Editieren', | ||
textToDisplay: 'Anzeigetext', | ||
url: 'Ziel des Links?', | ||
openInNewWindow: 'In einem neuen Fenster öffnen' | ||
}, | ||
table: { | ||
table: 'Tabelle' | ||
}, | ||
hr: { | ||
insert: 'Eine horizontale Linie einfügen' | ||
}, | ||
style: { | ||
style: 'Stil', | ||
normal: 'Normal', | ||
blockquote: 'Zitat', | ||
pre: 'Quellcode', | ||
h1: 'Überschrift 1', | ||
h2: 'Überschrift 2', | ||
h3: 'Überschrift 3', | ||
h4: 'Überschrift 4', | ||
h5: 'Überschrift 5', | ||
h6: 'Überschrift 6' | ||
}, | ||
lists: { | ||
unordered: 'Aufzählung', | ||
ordered: 'Nummerierung' | ||
}, | ||
options: { | ||
help: 'Hilfe', | ||
fullscreen: 'Vollbild', | ||
codeview: 'HTML-Code anzeigen' | ||
}, | ||
paragraph: { | ||
paragraph: 'Absatz', | ||
outdent: 'Einzug vergrößern', | ||
indent: 'Einzug verkleinern', | ||
left: 'Links ausrichten', | ||
center: 'Zentriert ausrichten', | ||
right: 'Rechts ausrichten', | ||
justify: 'Blocksatz' | ||
}, | ||
color: { | ||
recent: 'Letzte Farbe', | ||
more: 'Mehr Farben', | ||
background: 'Hintergrundfarbe', | ||
foreground: 'Schriftfarbe', | ||
transparent: 'Transparenz', | ||
setTransparent: 'Transparenz setzen', | ||
reset: 'Zurücksetzen', | ||
resetToDefault: 'Auf Standard zurücksetzen' | ||
}, | ||
shortcut: { | ||
shortcuts: 'Tastenkürzel', | ||
close: 'Schließen', | ||
textFormatting: 'Textformatierung', | ||
action: 'Aktion', | ||
paragraphFormatting: 'Absatzformatierung', | ||
documentStyle: 'Dokumentenstil' | ||
}, | ||
history: { | ||
undo: 'Rückgängig', | ||
redo: 'Wiederholen' | ||
} | ||
|
||
} | ||
}); | ||
})(jQuery); |