kopia lustrzana https://github.com/backface/turtlestitch
35 wiersze
670 B
JavaScript
35 wiersze
670 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 : ',
|
|
'clear':
|
|
'l\u00f6schen'
|
|
};
|
|
|
|
// Add attributes to original SnapTranslator.dict.de
|
|
for (var attrname in tempDict) { SnapTranslator.dict.de[attrname] = tempDict[attrname]; }
|