1. === modified file 'src/live_effects/lpe-copy_rotate.cpp'
  2. --- src/live_effects/lpe-copy_rotate.cpp 2016-12-18 23:36:43 +0000
  3. +++ src/live_effects/lpe-copy_rotate.cpp 2016-12-20 00:42:33 +0000
  4. @@ -39,8 +39,8 @@
  5. LPECopyRotate::LPECopyRotate(LivePathEffectObject *lpeobject) :
  6. Effect(lpeobject),
  7. - origin(_("Origin"), _("Origin of the rotation"), "origin", &wr, this),
  8. - starting_point("hidden", "hidden", "starting_point", &wr, this),
  9. + origin(_("Origin"), _("Origin of the rotation"), "origin", &wr, this, _("Adjust origin of rotation")),
  10. + starting_point(_("Start point"), _("Starting point to define start angle"), "starting_point", &wr, this, _("Adjust starting point to define start angle")),
  11. starting_angle(_("Starting:"), _("Angle of the first copy"), "starting_angle", &wr, this, 0.0),
  12. rotation_angle(_("Rotation angle:"), _("Angle between two successive copies"), "rotation_angle", &wr, this, 60.0),
  13. num_copies(_("Number of copies:"), _("Number of copies of the original path"), "num_copies", &wr, this, 6),
  14. === modified file 'src/live_effects/lpe-mirror_symmetry.cpp'
  15. --- src/live_effects/lpe-mirror_symmetry.cpp 2016-12-18 23:36:43 +0000
  16. +++ src/live_effects/lpe-mirror_symmetry.cpp 2016-12-20 00:16:48 +0000
  17. @@ -42,10 +42,9 @@
  18. discard_orig_path(_("Discard original path?"), _("Check this to only keep the mirrored part of the path"), "discard_orig_path", &wr, this, false),
  19. fuse_paths(_("Fuse paths"), _("Fuse original and the reflection into a single path"), "fuse_paths", &wr, this, false),
  20. oposite_fuse(_("Opposite fuse"), _("Picks the other side of the mirror as the original"), "oposite_fuse", &wr, this, false),
  21. - //TODO: Fix htip for multilang
  22. - start_point(_("Start mirror line"), _("Start mirror line"), "start_point", &wr, this, "Adjust the start of mirroring"),
  23. - end_point(_("End mirror line"), _("End mirror line"), "end_point", &wr, this, "Adjust end of mirroring"),
  24. - center_point("hidden","hidden", "center_point", &wr, this, "hidden")
  25. + start_point(_("Start mirror line"), _("Start mirror line"), "start_point", &wr, this, _("Adjust start of mirroring")),
  26. + end_point(_("End mirror line"), _("End mirror line"), "end_point", &wr, this, _("Adjust end of mirroring")),
  27. + center_point(_("Center mirror line"),_("Center mirror line"), "center_point", &wr, this, _("Adjust center of mirroring"))
  28. {
  29. show_orig_path = true;
  30. registerParameter(&mode);
 
 

10

 

833

Proposed patch for 0.92.0 V0.2

Bryce, here are the proposed patch. I try to minimice the impact, anyway, because the strings without i18n format render in english as non translated ones, I fix it adding _().
Feel free to comment me any option/change you want.

PasteBin

Lines
32
Words
258
Size
2,4 KB
Created
Revisions
2
Tipe
text/plain
General Public License v2 (GPLv2)
Please log in to leave a comment!