forked from tomayac/SVGcode
-
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.
Showing
1 changed file
with
66 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,66 @@ | ||
const translations = { | ||
red: 'Rot', | ||
green: 'Grün', | ||
blue: 'Blau', | ||
alpha: 'Alpha', | ||
|
||
brightness: 'Helligkeit', | ||
contrast: 'Kontrast', | ||
grayscale: 'Graustufen', | ||
'hue-rotate': 'Hue ändern', | ||
invert: 'Invertieren', | ||
opacity: 'Transparenz', | ||
saturate: 'Sättigung', | ||
sepia: 'Sepia', | ||
|
||
scale: 'Skala', | ||
turdsize: 'Flecken unterdrücken', | ||
alphamax: 'Eckschwelle', | ||
minPathSegments: 'Min. Pfadlänge', | ||
strokeWidth: 'Strichbreite', | ||
turnpolicy: 'Turn Policy', | ||
opticurve: 'Kurven optimieren', | ||
opttolerance: 'Optimierungs Toleranz', | ||
showAdvancedControls: 'Expertenoptionen anzeigen', | ||
|
||
'%': '%', | ||
deg: '°', | ||
steps: 'Scrhtitte', | ||
pixels: 'Pixel', | ||
segments: 'Segmente', | ||
|
||
reset: 'Zurücksetzen', | ||
resetAll: 'Alles zurücksetzen', | ||
|
||
dropFileHere: 'Datei hier ablegen', | ||
openImage: 'Bild öffnen', | ||
saveSVG: 'SVG speichern', | ||
pasteImage: 'Bild einfügen', | ||
copySVG: 'SVG kopieren', | ||
install: 'Installieren', | ||
|
||
posterizeInputImage: 'Eingabebild posterisieren', | ||
colorSVG: 'Farbiges SVG', | ||
monochromeSVG: 'Monochromes SVG', | ||
|
||
colorChannels: 'Farbkanäle', | ||
imageSize: 'Eingabegröße', | ||
imagePreprocessing: 'Eingabe verarbeiten', | ||
svgOptions: 'SVG Optionen', | ||
|
||
considerDPR: 'Device Pixel Ratio beachten', | ||
|
||
tweak: 'Anpassen', | ||
|
||
optimizingSVG: 'SVG optmieren', | ||
copiedSVG: 'SVG kopiert', | ||
savedSVG: 'SVG gespeichert', | ||
|
||
readyToWorkOffline: 'Bereit für Offline-Nutzung.', | ||
svgSize: 'SVG Größe', | ||
bytes: 'Bytes', | ||
zoom: 'Zoom', | ||
}; | ||
|
||
// ignore unused exports default | ||
export default translations; |