From afd95e105de6080bb933957aa7191e23a4aa005e Mon Sep 17 00:00:00 2001 From: Kaalleen <36401965+kaalleen@users.noreply.github.com> Date: Sat, 22 Mar 2025 17:44:07 +0100 Subject: batch lettering: add links to the website for font names and supported file formats (#3603) --- lib/extensions/batch_lettering.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'lib/extensions/batch_lettering.py') 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() -- cgit v1.2.3