summaryrefslogtreecommitdiffstats
path: root/src/live_effects
diff options
context:
space:
mode:
authorMaren Hachmann <934908-Moini@users.noreply.gitlab.com>2019-04-25 00:33:47 +0000
committerMaren Hachmann <934908-Moini@users.noreply.gitlab.com>2019-04-25 00:33:47 +0000
commite80ab544636242635b8e0c97d8257a0ce27b38f8 (patch)
treed7ef869107fd3c0c0c6c2da57ae6f5d9bfe3f3fd /src/live_effects
parentUpdate lpe-bool.cpp (diff)
downloadinkscape-e80ab544636242635b8e0c97d8257a0ce27b38f8.tar.gz
inkscape-e80ab544636242635b8e0c97d8257a0ce27b38f8.zip
Small string fixes in rotate copies and mirror lpe
Diffstat (limited to 'src/live_effects')
-rw-r--r--src/live_effects/lpe-copy_rotate.cpp2
-rw-r--r--src/live_effects/lpe-mirror_symmetry.cpp4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/live_effects/lpe-copy_rotate.cpp b/src/live_effects/lpe-copy_rotate.cpp
index be0165776..71890940d 100644
--- a/src/live_effects/lpe-copy_rotate.cpp
+++ b/src/live_effects/lpe-copy_rotate.cpp
@@ -68,7 +68,7 @@ LPECopyRotate::LPECopyRotate(LivePathEffectObject *lpeobject) :
gap(_("Gap"), _("Gap"), "gap", &wr, this, -0.0001),
copies_to_360(_("360º Copies"), _("No rotation angle, fixed to 360º"), "copies_to_360", &wr, this, true),
mirror_copies(_("Mirror copies"), _("Mirror between copies"), "mirror_copies", &wr, this, false),
- split_items(_("Split elements"), _("Split elements, this allow gradients and other paints."), "split_items", &wr, this, false),
+ split_items(_("Split elements"), _("Split elements, so each can have its own style"), "split_items", &wr, this, false),
dist_angle_handle(100.0)
{
show_orig_path = true;
diff --git a/src/live_effects/lpe-mirror_symmetry.cpp b/src/live_effects/lpe-mirror_symmetry.cpp
index ffcc8b55a..8abf18614 100644
--- a/src/live_effects/lpe-mirror_symmetry.cpp
+++ b/src/live_effects/lpe-mirror_symmetry.cpp
@@ -54,11 +54,11 @@ MTConverter(ModeTypeData, MT_END);
LPEMirrorSymmetry::LPEMirrorSymmetry(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
mode(_("Mode"), _("Set mode of transformation. Either freely defined by mirror line or constrained to certain symmetry points."), "mode", MTConverter, &wr, this, MT_FREE),
- split_gap(_("Gap on splitting"), _("Add attitional space in between split objects."), "split_gap", &wr, this, -0.001),
+ split_gap(_("Gap on splitting"), _("Add additional space in between split objects."), "split_gap", &wr, this, -0.001),
discard_orig_path(_("Discard original path"), _("Only keep mirrored part of the path, remove the original."), "discard_orig_path", &wr, this, false),
fuse_paths(_("Fuse paths"), _("Fuse original path and mirror image into a single path"), "fuse_paths", &wr, this, false),
oposite_fuse(_("Fuse opposite sides"), _("Picks the part on the other side of the mirror line as the original."), "oposite_fuse", &wr, this, false),
- split_items(_("Split elements"), _("Split original and mirror image into separate paths. (This allows gradients and other paints.)"), "split_items", &wr, this, false),
+ split_items(_("Split elements"), _("Split original and mirror image into separate paths, so each can have its own style.)"), "split_items", &wr, this, false),
start_point(_("Mirror line start"), _("Start point of mirror line"), "start_point", &wr, this, _("Adjust start point of of mirror line")),
end_point(_("Mirror line end"), _("End point of mirror line"), "end_point", &wr, this, _("Adjust end point of mirror line")),
center_point(_("Mirror line mid"), _("Center point of mirror line"), "center_point", &wr, this, _("Adjust center point of mirror line"))