-
Notifications
You must be signed in to change notification settings - Fork 1
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 #2 from jonnitto/master
Several optimizations
- Loading branch information
Showing
5 changed files
with
74 additions
and
58 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
<?xml version="1.0" encoding="UTF-8"?> | ||
<xliff version="1.2" xmlns="urn:oasis:names:tc:xliff:document:1.2"> | ||
<file original="" product-name="Vette.CodeBlock" source-language="de" datatype="plaintext"> | ||
<body> | ||
<trans-unit id="ui.label" xml:space="preserve"> | ||
<source>Code Block</source> | ||
</trans-unit> | ||
<trans-unit id="properties.code" xml:space="preserve"> | ||
<source>Source Code</source> | ||
</trans-unit> | ||
<trans-unit id="properties.language" xml:space="preserve"> | ||
<source>Sprache</source> | ||
</trans-unit> | ||
<trans-unit id="properties.startLinesAt" xml:space="preserve"> | ||
<source>Starte Liniennummerierung bei</source> | ||
</trans-unit> | ||
<trans-unit id="properties.showLineNumbers" xml:space="preserve"> | ||
<source>Zeige Zeilennummern</source> | ||
</trans-unit> | ||
<trans-unit id="properties.highlightLines" xml:space="preserve"> | ||
<source>Hebe Zeilen hervor (kommasepariert)</source> | ||
</trans-unit> | ||
</body> | ||
</file> | ||
</xliff> |
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 |
---|---|---|
@@ -1,31 +1,31 @@ | ||
{ | ||
"name": "cvette/neos-code-block", | ||
"type": "neos-plugin", | ||
"description": "This package includes a node type to add code blocks with syntax highlighting to your Neos CMS project.", | ||
"license": "GPL-3.0+", | ||
"authors": [ | ||
{ | ||
"name": "Christian Vette", | ||
"email": "[email protected]", | ||
"homepage": "https://www.christianvette.de", | ||
"role": "Developer" | ||
"name": "cvette/neos-code-block", | ||
"type": "neos-plugin", | ||
"description": | ||
"This package includes a node type to add code blocks with syntax highlighting to your Neos CMS project.", | ||
"license": "GPL-3.0+", | ||
"authors": [ | ||
{ | ||
"name": "Christian Vette", | ||
"email": "[email protected]", | ||
"homepage": "https://www.christianvette.de", | ||
"role": "Developer" | ||
} | ||
], | ||
"require": { | ||
"geshi/geshi": "~1.0", | ||
"neos/neos": "~3.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Vette\\CodeBlock\\": "Classes" | ||
} | ||
}, | ||
"extra": { | ||
"marketplace-account": "[email protected]", | ||
"installer-name": "Vette.CodeBlock", | ||
"neos": { | ||
"package-key": "Vette.CodeBlock" | ||
} | ||
} | ||
], | ||
"require": { | ||
"geshi/geshi": "~1.0", | ||
"neos/neos": "~3.0", | ||
"neos/nodetypes": "~3.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Vette\\CodeBlock\\": "Classes" | ||
} | ||
}, | ||
"extra": { | ||
"marketplace-account": "[email protected]", | ||
"installer-name": "Vette.CodeBlock", | ||
"neos": { | ||
"package-key": "Vette.CodeBlock" | ||
} | ||
} | ||
} | ||
} |