diff --git a/app/content/pencil/exporter/svgExporter.js b/app/content/pencil/exporter/svgExporter.js index a64a268..c3c197d 100644 --- a/app/content/pencil/exporter/svgExporter.js +++ b/app/content/pencil/exporter/svgExporter.js @@ -1,5 +1,5 @@ function SVGExporter() { - this.name = "Multi-page SVG file"; + this.name = "Multi-layer SVG file"; this.id = "SVGExporter"; this.xsltProcessor = new XSLTProcessor(); this.xsltDOM = null; @@ -31,7 +31,7 @@ SVGExporter.prototype.export = function (doc, options, destFile, xmlFile, callba callback(); }; SVGExporter.prototype.getWarnings = function () { - return "Document will be exported as a multi-page SVG file that can used in Inkscape."; + return "Document will be exported as a multi-layer SVG file that can be used in Inkscape."; }; SVGExporter.prototype.getOutputType = function () { return BaseExporter.OUTPUT_TYPE_FILE;