1 /* 2 * © 2009 ROBO Design 3 * http://www.robodesign.ro 4 * 5 * $Date: 2009-04-13 14:47:38 +0300 $ 6 */ 7 8 /** 9 * @author <a lang="ro" href="http://www.robodesign.ro/mihai">Mihai Şucan</a> 10 * @fileOverview The English language strings for the paint application. 11 */ 12 13 /** 14 * Holds all language strings used within the Web application. 15 */ 16 var lang = { 17 internalError: 'Internal error', 18 PaintToolsNotFound: 'Error: The PaintTools object is not available!', 19 PainterConfigNotFound: 'Error: The PainterConfig object is not available!', 20 errorCanvasNotFound: 'Error: I cannot find the canvas element!', 21 errorCanvasCreate: 'Error: I cannot create a new canvas element!', 22 errorGetContext: 'Error: canvas.getContext() failed!', 23 errorToolSelect: 'Error: failed to find the tools drop-down element!', 24 errorToolActivate : 'Error: the tool you want could not be properly activated!' 25 }; 26 27 // vim:set spell spl=en fo=wan1croql tw=80 ts=2 sw=2 sts=2 sta et ai cin fenc=utf-8 ff=unix: 28