From 2281130ab7c034354e6a333f0d6b303f2a4a9e54 Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sun, 23 Jun 2024 13:59:20 +0200 Subject: Various fixes (#3011) * change satin underlay stitch length default for real * fix zero length lock stitch * fix typos --- lib/output.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/output.py') diff --git a/lib/output.py b/lib/output.py index 23f0cf1e..1f932a0b 100644 --- a/lib/output.py +++ b/lib/output.py @@ -120,10 +120,10 @@ def write_embroidery_file(file_path, stitch_plan, svg, settings={}): num_color_changes = re.search("d+", str(e)).group() msg = _("Couldn't save embrodiery file.") msg += '\n\n' - msg += _("There are {num_color_changes} in your design. This is way too many.").format(num_color_changes=num_color_changes) + msg += _("There are {num_color_changes} color changes in your design. This is way too many.").format(num_color_changes=num_color_changes) msg += '\n' msg += _("Please reduce color changes. Find more information on our website:") msg += '\n\n' - msg += _("http://inkstitch.org/docs/faq/#too-many-color-changes") + msg += _("https://inkstitch.org/docs/faq/#too-many-color-changes") inkex.errormsg(msg) sys.exit(1) -- cgit v1.2.3