kopia lustrzana https://github.com/backface/turtlestitch
33 wiersze
642 B
JavaScript
33 wiersze
642 B
JavaScript
![]() |
|
||
|
/*
|
||
|
Special characters: (see <http://0xcc.net/jsescape/>)
|
||
|
|
||
|
Ä, ä \u00c4, \u00e4
|
||
|
Ö, ö \u00d6, \u00f6
|
||
|
Ü, ü \u00dc, \u00fc
|
||
|
ß \u00df
|
||
|
*/
|
||
|
|
||
|
tempDict = {
|
||
|
// UI
|
||
|
'Save to Disk':
|
||
|
'Auf Festplatte speichern',
|
||
|
'Total Stitches : ':
|
||
|
'Anzahl der Stiche : ',
|
||
|
'Jumps':
|
||
|
'Sprungstiche',
|
||
|
'Jumps : ':
|
||
|
'Sprungstiche : ',
|
||
|
'Stitchpoints':
|
||
|
'Stichpunkte',
|
||
|
'Grid':
|
||
|
'Raster',
|
||
|
'Reset View':
|
||
|
'Anzeige zur\u00fccksetzen',
|
||
|
'Dimensions : ':
|
||
|
'Gr\u00f6\u00dfe : '
|
||
|
};
|
||
|
|
||
|
// Add attributes to original SnapTranslator.dict.de
|
||
|
for (var attrname in tempDict) { SnapTranslator.dict.de[attrname] = tempDict[attrname]; }
|