forked from refactory-id/bootstrap-markdown
-
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.
Merge pull request refactory-id#108 from tobias-nitsche/master
Added german localization
- Loading branch information
Showing
1 changed file
with
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
/** | ||
* German translation for bootstrap-markdown | ||
* Tobias Nitsche <[email protected]> | ||
*/ | ||
(function ($) { | ||
$.fn.markdown.messages.de = { | ||
'Bold': "Fett", | ||
'Italic': "Kursiv", | ||
'Heading': "Überschrift", | ||
'URL/Link': "Link hinzufügen", | ||
'Image': "Bild hinzufügen", | ||
'List': "Liste", | ||
'Preview': "Vorschau", | ||
'strong text': "Sehr betonter Text", | ||
'emphasized text': "Betonter Text", | ||
'heading text': "Überschrift Text", | ||
'enter link description here': "Linkbeschreibung", | ||
'Insert Hyperlink': "URL", | ||
'enter image description here': "Bildbeschreibung", | ||
'Insert Image Hyperlink': "Bild-URL", | ||
'enter image title here': "Titel des Bildes", | ||
'list text here': "Aufzählungs-Text" | ||
}; | ||
}(jQuery)); |