summaryrefslogtreecommitdiff
path: root/lib/output.py
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2024-06-23 13:59:20 +0200
committerGitHub <noreply@github.com>2024-06-23 13:59:20 +0200
commit2281130ab7c034354e6a333f0d6b303f2a4a9e54 (patch)
tree5f2acc8d81a8b5c934d8678650b54617a07c1eca /lib/output.py
parent7a856a77e4d36a077cb1a5a1c50831463a6692a0 (diff)
Various fixes (#3011)
* change satin underlay stitch length default for real * fix zero length lock stitch * fix typos
Diffstat (limited to 'lib/output.py')
-rw-r--r--lib/output.py4
1 files changed, 2 insertions, 2 deletions
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)