summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKaalleen <36401965+kaalleen@users.noreply.github.com>2025-03-22 17:44:07 +0100
committerGitHub <noreply@github.com>2025-03-22 17:44:07 +0100
commitafd95e105de6080bb933957aa7191e23a4aa005e (patch)
treeba39be025dab9628989549a42c0daf67ecf16cc7
parent40405edfe1ab9735e33fd705b090dc467983611f (diff)
batch lettering: add links to the website for font names and supported file formats (#3603)
-rw-r--r--lib/extensions/batch_lettering.py6
1 files changed, 4 insertions, 2 deletions
diff --git a/lib/extensions/batch_lettering.py b/lib/extensions/batch_lettering.py
index e595af24..a1fa3c43 100644
--- a/lib/extensions/batch_lettering.py
+++ b/lib/extensions/batch_lettering.py
@@ -61,7 +61,8 @@ class BatchLettering(InkstitchExtension):
return
self.font = get_font_by_name(self.options.font)
if self.font is None:
- errormsg(_("Please specify a valid font name"))
+ errormsg(_("Please specify a valid font name."))
+ errormsg(_("You can find a list with all font names on our website: https://inkstitch.org/fonts/font-library/"))
return
if not self.options.formats:
@@ -71,7 +72,8 @@ class BatchLettering(InkstitchExtension):
file_formats = self.options.formats.split(',')
file_formats = [file_format.strip().lower() for file_format in file_formats if file_format.strip().lower() in available_formats]
if not file_formats:
- errormsg(_("Please specify at least one file format supported by pyembroidery"))
+ errormsg(_("Please specify at least one file format supported by Ink/Stitch"))
+ errormsg(_("You can find a list with all supported file formats our website: https://inkstitch.org/docs/file-formats/#writing"))
return
self.setup_trim()