From cc7dfcf3e4fdfc8be5f7653fa5432f1ffa12f3c9 Mon Sep 17 00:00:00 2001 From: Kaalleen Date: Sun, 21 May 2023 18:31:54 +0200 Subject: [PATCH] fix error in make translatable commit --- lib/elements/satin_column.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py index b3fba9eb9..f9fdd8bc3 100644 --- a/lib/elements/satin_column.py +++ b/lib/elements/satin_column.py @@ -108,7 +108,7 @@ class SatinColumn(EmbroideryElement): _('Random percentage of satin width decrease'), tooltip=_('shorten stitch across rails at most this percent. ' 'Two values separated by a space may be used for an aysmmetric effect.'), - default=0, type='float', unit="_(% (each side))", sort_index=91) + default=0, type='float', unit=_("% (each side)"), sort_index=91) @cache def random_width_decrease(self): return self.get_split_float_param("random_width_decrease_percent", (0, 0)) / 100 @@ -118,7 +118,7 @@ class SatinColumn(EmbroideryElement): _('Random percentage of satin width increase'), tooltip=_('lengthen stitch across rails at most this percent. ' 'Two values separated by a space may be used for an aysmmetric effect.'), - default=0, type='float', unit="_(% (each side))", sort_index=90) + default=0, type='float', unit=_("% (each side)"), sort_index=90) @cache def random_width_increase(self): return self.get_split_float_param("random_width_increase_percent", (0, 0)) / 100 @@ -202,7 +202,7 @@ class SatinColumn(EmbroideryElement): _('Pull compensation percentage'), tooltip=_('Additional pull compensation which varies as a percentage of stitch width. ' 'Two values separated by a space may be used for an aysmmetric effect.'), - unit='% (each side)', + unit=_('% (each side)'), type='float', default=0, sort_index=6)