summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorKaalleen <reni@allenka.de>2023-05-21 18:31:54 +0200
committerKaalleen <reni@allenka.de>2023-05-21 18:31:54 +0200
commitcc7dfcf3e4fdfc8be5f7653fa5432f1ffa12f3c9 (patch)
tree0f0b4e4ed56ce88f3f28220f4f409c88e4247395 /lib
parent724db616dbd186b6955244bd3f50f3b3a0671ff0 (diff)
fix error in make translatable commit
Diffstat (limited to 'lib')
-rw-r--r--lib/elements/satin_column.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/elements/satin_column.py b/lib/elements/satin_column.py
index b3fba9eb..f9fdd8bc 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)