diff options
| author | Kaalleen <36401965+kaalleen@users.noreply.github.com> | 2023-05-03 20:03:07 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-05-03 20:03:07 +0200 |
| commit | b635303d0cc74e697a319a536053646617e4bfa7 (patch) | |
| tree | 4e0feffb4addea1930fd63e41eafa3bfa6b3992c /lib/extensions | |
| parent | 2723571e8ae79b11f7c522492018464e6f573b42 (diff) | |
update no embroiderable elements message (#2261)
Diffstat (limited to 'lib/extensions')
| -rw-r--r-- | lib/extensions/base.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/extensions/base.py b/lib/extensions/base.py index e381e2c1..85011adf 100644 --- a/lib/extensions/base.py +++ b/lib/extensions/base.py @@ -54,7 +54,8 @@ class InkstitchExtension(inkex.EffectExtension): def no_elements_error(self): if self.svg.selection: # l10n This was previously: "No embroiderable paths selected." - inkex.errormsg(_("Ink/Stitch doesn't know how to work with any of the objects you've selected.") + "\n") + inkex.errormsg(_("Ink/Stitch doesn't know how to work with any of the objects you've selected. " + "Please check if selected elements are visible.") + "\n") else: inkex.errormsg(_("There are no objects in the entire document that Ink/Stitch knows how to work with.") + "\n") |
