summaryrefslogtreecommitdiffstats
path: root/src/live_effects/effect.cpp
diff options
context:
space:
mode:
authorJoel Holdsworth <joel@airwebreathe.org.uk>2008-01-04 23:52:06 +0000
committerjoelholdsworth <joelholdsworth@users.sourceforge.net>2008-01-04 23:52:06 +0000
commit5c81af6be04e62fb62d4f2fd83e6f62d23ae5857 (patch)
tree82ceb6f053ceaaf2d1ca22ffb37e63a3e6cbe396 /src/live_effects/effect.cpp
parentAdded more error checking to filter effects code (diff)
downloadinkscape-5c81af6be04e62fb62d4f2fd83e6f62d23ae5857.tar.gz
inkscape-5c81af6be04e62fb62d4f2fd83e6f62d23ae5857.zip
Corrected tooltips and labels in the LPEs
(bzr r4386)
Diffstat (limited to 'src/live_effects/effect.cpp')
-rw-r--r--src/live_effects/effect.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/live_effects/effect.cpp b/src/live_effects/effect.cpp
index c664af049..543d60fc0 100644
--- a/src/live_effects/effect.cpp
+++ b/src/live_effects/effect.cpp
@@ -48,13 +48,13 @@ 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_("Bend Path"), "bend_path"},
- {SKELETAL_STROKES, N_("Pattern along path"), "skeletal"},
+ {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 subpaths"), "curvestitching"},
+ {CURVE_STITCH, N_("Stitch Sub-Paths"), "curvestitching"},
};
const Util::EnumDataConverter<EffectType> LPETypeConverter(LPETypeData, INVALID_LPE);