Code

rename path along path to Bend Path
authorjohanengelen <johanengelen@users.sourceforge.net>
Wed, 21 Nov 2007 21:49:49 +0000 (21:49 +0000)
committerjohanengelen <johanengelen@users.sourceforge.net>
Wed, 21 Nov 2007 21:49:49 +0000 (21:49 +0000)
rename subcurve to stitch subpaths

src/live_effects/effect.cpp

index 8b0a2f62a7cedbdbe2ee4ed7c8abad33d51090b3..9513f37b17bedf3d3b293fadd5c85cf2bee5eaa7 100644 (file)
@@ -43,14 +43,14 @@ namespace LivePathEffect {
 
 const Util::EnumData<EffectType> LPETypeData[INVALID_LPE] = {
     // {constant defined in effect.h, N_("name of your effect"), "name of your effect in SVG"}
-    {PATH_ALONG_PATH,       N_("Path along path"),      "path_along_path"},
-    {SKELETAL_STROKES,      N_("Pattern along path"),      "skeletal"},
+    {PATH_ALONG_PATH,       N_("Bend Path"),             "bend_path"},
+    {SKELETAL_STROKES,      N_("Pattern along path"),    "skeletal"},
 #ifdef LPE_ENABLE_TEST_EFFECTS
     {SLANT,                 N_("Slant"),                 "slant"},
     {DOEFFECTSTACK_TEST,    N_("doEffect stack test"),   "doeffectstacktest"},
 #endif
     {GEARS,                 N_("Gears"),                 "gears"},
-    {CURVE_STITCH,          N_("Stitch subcurves"),      "curvestitching"},
+    {CURVE_STITCH,          N_("Stitch subpaths"),       "curvestitching"},
 };
 const Util::EnumDataConverter<EffectType> LPETypeConverter(LPETypeData, INVALID_LPE);