mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-06-17 18:22:09 +00:00
German translation by Krock
This commit is contained in:
@@ -0,0 +1,118 @@
|
||||
DefaultAction.copy-to-clipboard.MenuText = Kopieren
|
||||
DefaultAction.cut-to-clipboard.MenuText = Ausschneiden
|
||||
DefaultAction.paste-from-clipboard.MenuText = Einf\u00FCgen
|
||||
DefaultAction.select-all.MenuText = Alles ausw\u00E4hlen
|
||||
|
||||
Action.find.MenuText = Suchen
|
||||
Action.find.ToolTip = Suche anzeigen und Dialog ersetzen
|
||||
Action.find-next.MenuText = N\u00E4chstes suchen
|
||||
Action.find-next.ToolTip = Letzte Suche wiederholen
|
||||
Action.goto-line.MenuText = Zu Linienmummer gehen
|
||||
Action.goto-line.ToolTip = Zu Linienmummer gehen
|
||||
Action.indent.MenuText = Einzug
|
||||
Action.unindent.MenuText = Auszug
|
||||
Action.undo.MenuText = R\u00FCchg\u00E4ngig
|
||||
Action.redo.MenuText = Wiederholen
|
||||
Action.delete-lines.MenuText = Linie(n) L\u00F6schen
|
||||
Action.dup-lines-up.MenuText = Obere Linie dublizieren
|
||||
Action.dup-lines-down.MenuText = Untere Linie dublizieren
|
||||
Action.toggle-lines.MenuText = Liniennummern umshalten
|
||||
Action.show-abbs.MenuText = Abk\u00FCrzungen anzeigen
|
||||
Action.show-abbs.ToolTip = Abk\u00FCrzungen anzeigen
|
||||
Action.complete-word.MenuText = Wort komplettieren
|
||||
Action.jump-to-pair.MenuText = Gehe zum Paar
|
||||
Action.toggle-comments.MenuText = Kommentare umschalten
|
||||
|
||||
# !!!! FFDec translators - please do not edit anything below this line !!!
|
||||
#==========================================================================
|
||||
|
||||
Components = jsyntaxpane.components.PairsMarker, \
|
||||
jsyntaxpane.components.LineNumbersRuler
|
||||
# This is the color to highlight tokens whenever the cursor is on them
|
||||
TokenMarker.Color = 0xffeeaa
|
||||
# Colors for PairMarkers
|
||||
PairMarker.Color = 0xffbb77
|
||||
#
|
||||
# Right Margin for LineNumbers border in pixels, Default = 5
|
||||
LineNumbers.RightMargin = 7
|
||||
# Foreground for line numbers, Default = Black
|
||||
LineNumbers.Foreground = 0x333300
|
||||
# Background for line numbers, Default = White
|
||||
LineNumbers.Background = 0xeeeeff
|
||||
# Color to use for highlighting current line background
|
||||
LineNumbers.CurrentBack = 0xccccee
|
||||
# Default color for the Caret, Black
|
||||
CaretColor = 0x000000
|
||||
# Actions:
|
||||
Action.quick-find = jsyntaxpane.actions.QuickFindAction, control F
|
||||
Action.find = jsyntaxpane.actions.FindReplaceAction, control H
|
||||
Action.find-next = jsyntaxpane.actions.FindNextAction, F3
|
||||
Action.goto-line = jsyntaxpane.actions.GotoLineAction, control G
|
||||
|
||||
Action.indent = jsyntaxpane.actions.IndentAction, TAB
|
||||
Action.indent.Abbreviations = ${class_path}/abbreviations.properties
|
||||
Action.unindent = jsyntaxpane.actions.UnindentAction, shift TAB
|
||||
|
||||
Action.jindent = jsyntaxpane.actions.JIndentAction, ENTER
|
||||
Action.undo = jsyntaxpane.actions.UndoAction, menu Z
|
||||
Action.redo = jsyntaxpane.actions.RedoAction, menu Y
|
||||
Action.delete-lines = jsyntaxpane.actions.DeleteLinesAction, control E
|
||||
Action.dup-lines-up = jsyntaxpane.actions.DuplicateLinesAction, shift control UP
|
||||
Action.dup-lines-down = jsyntaxpane.actions.DuplicateLinesAction, shift control DOWN
|
||||
|
||||
Action.toggle-lines = jsyntaxpane.actions.ToggleComponentAction, control F2
|
||||
Action.toggle-lines.Component = jsyntaxpane.components.LineNumbersRuler
|
||||
|
||||
Action.toggle-comments = jsyntaxpane.actions.ToggleCommentsAction, control SLASH
|
||||
Action.toggle-comments.SmallIcon = comment.png
|
||||
Action.jump-to-pair = jsyntaxpane.actions.JumpToPairAction, control OPEN_BRACKET
|
||||
Action.complete-word = jsyntaxpane.actions.CompleteWordAction, control K
|
||||
|
||||
Action.smart-home = jsyntaxpane.actions.SmartHomeAction, HOME
|
||||
Action.smart-home-select = jsyntaxpane.actions.SmartHomeSelectAction, shift HOME
|
||||
Action.show-abbs = jsyntaxpane.actions.ShowAbbsAction, F8
|
||||
|
||||
#
|
||||
# View configuration:
|
||||
TextAA = ON
|
||||
DEFAULT_EDIT_MENU= \
|
||||
cut-to-clipboard , \
|
||||
copy-to-clipboard , \
|
||||
paste-from-clipboard , \
|
||||
- , \
|
||||
select-all , \
|
||||
- , \
|
||||
undo , \
|
||||
redo , \
|
||||
- , \
|
||||
find , \
|
||||
find-next , \
|
||||
goto-line , \
|
||||
jump-to-pair , \
|
||||
- , \
|
||||
complete-word
|
||||
|
||||
# Default Popup Menu
|
||||
PopupMenu = \
|
||||
${DEFAULT_EDIT_MENU} , \
|
||||
- , \
|
||||
goto-line , \
|
||||
toggle-comments
|
||||
# TokenType attributes
|
||||
Style.OPERATOR = 0x000000, 0
|
||||
Style.DELIMITER = 0x000000, 1
|
||||
Style.KEYWORD = 0x3333ee, 0
|
||||
Style.KEYWORD2 = 0x3333ee, 3
|
||||
Style.TYPE = 0x000000, 2
|
||||
Style.TYPE2 = 0x000000, 1
|
||||
Style.TYPE3 = 0x000000, 3
|
||||
Style.STRING = 0xcc6600, 0
|
||||
Style.STRING2 = 0xcc6600, 1
|
||||
Style.NUMBER = 0x999933, 1
|
||||
Style.REGEX = 0xcc6600, 0
|
||||
Style.IDENTIFIER = 0x000000, 0
|
||||
Style.COMMENT = 0x339933, 2
|
||||
Style.COMMENT2 = 0x339933, 3
|
||||
Style.DEFAULT = 0x000000, 0
|
||||
Style.WARNING = 0xCC0000, 0
|
||||
Style.ERROR = 0xCC0000, 3
|
||||
@@ -0,0 +1,35 @@
|
||||
Action.toggle-token-marker.MenuText = Markierung umschalten
|
||||
# !!!! FFDec translators - please do not edit anything below this line !!!
|
||||
#==========================================================================
|
||||
|
||||
#
|
||||
# JavaSyntaxKit Specific properties.
|
||||
#
|
||||
Components = jsyntaxpane.components.LineNumbersRuler, \
|
||||
jsyntaxpane.components.TokenMarker
|
||||
TokenMarker.TokenTypes = IDENTIFIER, TYPE, TYPE2, TYPE3
|
||||
#
|
||||
# Performs single color selection (Default = false)
|
||||
#
|
||||
SingleColorSelect = true
|
||||
RightMarginColumn = 80
|
||||
RightMarginColor = 0xdddddd
|
||||
#
|
||||
# Java Actions
|
||||
Action.indent.WordRegex=\\w+|\\/(\\*)+
|
||||
#Action.parenthesis = jsyntaxpane.actions.PairAction, typed (
|
||||
Action.toggle-token-marker = jsyntaxpane.actions.ToggleComponentAction, control F3
|
||||
Action.toggle-token-marker.Component = jsyntaxpane.components.TokenMarker
|
||||
#Action.brackets = jsyntaxpane.actions.PairAction, typed [
|
||||
Action.quotes = jsyntaxpane.actions.PairAction, typed '
|
||||
Action.double-quotes = jsyntaxpane.actions.PairAction, typed "
|
||||
#
|
||||
# These are the completions to be in the IntelliSense completion dialog
|
||||
# comma separated values.
|
||||
# Vertical bars: if there is one, it will position the cursor. If there are
|
||||
# two, they will be start and end of selection
|
||||
PopupMenu = \
|
||||
${DEFAULT_EDIT_MENU} , \
|
||||
- , \
|
||||
toggle-lines , \
|
||||
toggle-token-marker
|
||||
@@ -0,0 +1,40 @@
|
||||
Action.combo-completion.MenuText = W\u00E4hlen Sie einen Befehl aus
|
||||
Action.toggle-token-marker.MenuText = Markierung umschalten
|
||||
|
||||
# !!!! FFDec translators - please do not edit anything below this line !!!
|
||||
#==========================================================================
|
||||
|
||||
#
|
||||
# JavaSyntaxKit Specific properties.
|
||||
#
|
||||
Components = jsyntaxpane.components.LineNumbersRuler, \
|
||||
jsyntaxpane.components.TokenMarker
|
||||
TokenMarker.TokenTypes = IDENTIFIER, TYPE, TYPE2, TYPE3
|
||||
#
|
||||
# Performs single color selection (Default = false)
|
||||
#
|
||||
SingleColorSelect = true
|
||||
RightMarginColumn = 80
|
||||
RightMarginColor = 0xdddddd
|
||||
#
|
||||
# Java Actions
|
||||
Action.indent.WordRegex=\\w+|\\/(\\*)+
|
||||
#Action.parenthesis = jsyntaxpane.actions.PairAction, typed (
|
||||
Action.toggle-token-marker = jsyntaxpane.actions.ToggleComponentAction, control F3
|
||||
Action.toggle-token-marker.Component = jsyntaxpane.components.TokenMarker
|
||||
#Action.brackets = jsyntaxpane.actions.PairAction, typed [
|
||||
Action.quotes = jsyntaxpane.actions.PairAction, typed '
|
||||
Action.double-quotes = jsyntaxpane.actions.PairAction, typed "
|
||||
# For completions, you have to define the Action (key to trigger completions):
|
||||
Action.combo-completion = jsyntaxpane.actions.ComboCompletionAction, control SPACE
|
||||
Action.combo-completion.ItemsURL=${class_path}/combocompletions.txt
|
||||
#
|
||||
# These are the completions to be in the IntelliSense completion dialog
|
||||
# comma separated values.
|
||||
# Vertical bars: if there is one, it will position the cursor. If there are
|
||||
# two, they will be start and end of selection
|
||||
PopupMenu = \
|
||||
${DEFAULT_EDIT_MENU} , \
|
||||
- , \
|
||||
toggle-lines , \
|
||||
toggle-token-marker
|
||||
@@ -0,0 +1,40 @@
|
||||
Action.toggle-token-marker.MenuText = Markierung umschalten
|
||||
|
||||
# !!!! FFDec translators - please do not edit anything below this line !!!
|
||||
#==========================================================================
|
||||
|
||||
#
|
||||
# JavaSyntaxKit Specific properties.
|
||||
#
|
||||
Components = jsyntaxpane.components.LineNumbersRuler, \
|
||||
jsyntaxpane.components.TokenMarker
|
||||
TokenMarker.TokenTypes = IDENTIFIER, TYPE, TYPE2, TYPE3
|
||||
#
|
||||
# Performs single color selection (Default = false)
|
||||
#
|
||||
SingleColorSelect = true
|
||||
RightMarginColumn = 80
|
||||
RightMarginColor = 0xdddddd
|
||||
#
|
||||
# Java Actions
|
||||
Action.indent.WordRegex=\\w+|\\/(\\*)+
|
||||
#Action.parenthesis = jsyntaxpane.actions.PairAction, typed (
|
||||
Action.toggle-token-marker = jsyntaxpane.actions.ToggleComponentAction, control F3
|
||||
Action.toggle-token-marker.Component = jsyntaxpane.components.TokenMarker
|
||||
#Action.brackets = jsyntaxpane.actions.PairAction, typed [
|
||||
Action.quotes = jsyntaxpane.actions.PairAction, typed '
|
||||
Action.double-quotes = jsyntaxpane.actions.PairAction, typed "
|
||||
# For completions, you have to define the Action (key to trigger completions):
|
||||
Action.combo-completion = jsyntaxpane.actions.ComboCompletionAction, control SPACE
|
||||
Action.combo-completion.MenuText = Completions
|
||||
Action.combo-completion.ItemsURL=${class_path}/combocompletions.txt
|
||||
#
|
||||
# These are the completions to be in the IntelliSense completion dialog
|
||||
# comma separated values.
|
||||
# Vertical bars: if there is one, it will position the cursor. If there are
|
||||
# two, they will be start and end of selection
|
||||
PopupMenu = \
|
||||
${DEFAULT_EDIT_MENU} , \
|
||||
- , \
|
||||
toggle-lines , \
|
||||
toggle-token-marker
|
||||
@@ -0,0 +1,39 @@
|
||||
SyntaxTester.title=JSyntaxPane Tester
|
||||
SyntaxTester.lblCaretPos.text=Einf\u00FCgemarkenposition
|
||||
SyntaxTester.lblToken.text=Zeichen unter dem Cursor
|
||||
SyntaxTester.jEdtTest.contentType=
|
||||
NO_TOKEN_AT_CURSOR=KEIN Zeichen unter den dem Cursor
|
||||
|
||||
HTMLPreviewFrame.title=HTML Vorschau
|
||||
HTMLPreviewFrame.jEdtHtml.contentType=text/html
|
||||
QuickFindDialog.jChkWrap.text=Wickeln
|
||||
QuickFindDialog.jChkRegExp.text=Regul\u00E4rer Ausdruck
|
||||
QuickFindDialog.jChkIgnoreCase.text=Gross/klein ignorieren
|
||||
QuickFindDialog.jLabel1.text=Einfache Suche
|
||||
QuickFindDialog.NotFound=Nicht gefunden
|
||||
ReplaceDialog.jChkRegex.text=Regul\u00E4rer Ausdruck
|
||||
ReplaceDialog.jChkIgnoreCase.text=Gross/klein ignorieren
|
||||
ReplaceDialog.jLblReplace.text=Ersetzen
|
||||
ReplaceDialog.jTglHighlight.text=Markieren
|
||||
ReplaceDialog.jBtnReplaceAll.text=Alle ersetzen
|
||||
ReplaceDialog.jBtnPrev.text=Vorheriges
|
||||
ReplaceDialog.jChkWrap.toolTipText=Zum Anfang gehen, wenn das Ende erreicht ist
|
||||
ReplaceDialog.jChkWrap.text=Rundum wickeln
|
||||
ReplaceDialog.title=Suchen und ersetzen
|
||||
ReplaceDialog.jBtnNext.text=N\u00E4chstes
|
||||
ReplaceDialog.jLblFind.text=Suchen
|
||||
ReplaceDialog.jBtnReplace.text=Ersetzen
|
||||
ShowAbbsDialog.title=Abk\u00FCrzungen
|
||||
GotoLineDialog.title=Zur Linie gehen
|
||||
GotoLineDialog.jBtnOk.text=Go
|
||||
|
||||
DocumentSearchData.SearchStringNotFound=String {0} konnte nicht gefunden werden
|
||||
DocumentSearchData.Find=Suchen
|
||||
ScriptAction.NoScriptConfigured=Aktion hat keine konfigurierte Skript-Funktion
|
||||
ScriptAction.ErrorInScript=Fehler im Skript
|
||||
ScriptAction.NoScriptFoundIn=Keine Skripts gefunden in:
|
||||
ScriptRunnerAction.ErrorExecutingScript=Fehler beim ausf\u00FChren des Skripts:\\n
|
||||
ScriptRunnerAction.ScriptError=Skript Fehler
|
||||
ScriptRunnerAction.ScriptEngineNotFound=Skript-Motor fu00FCr [{0}] konnte nicht gefunden werden. Diese Aktion deaktivieren?
|
||||
ShowAbbsAction.NoAbbsForType=Es existieren keine Abk\u00FCrzungen fu00FCr diesen Inhaltstyp
|
||||
|
||||
Reference in New Issue
Block a user