summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: c676417)
raw | patch | inline | side by side (parent: c676417)
author | Kris <Kris.De.Gussem@hotmail.com> | |
Wed, 29 Dec 2010 20:05:10 +0000 (21:05 +0100) | ||
committer | Kris <Kris.De.Gussem@hotmail.com> | |
Wed, 29 Dec 2010 20:05:10 +0000 (21:05 +0100) |
index 254500908bc5d88eb0198844ccdc1e769fc3e03d..2d6bbeb220195989120af857c2a96b6f610beb7d 100644 (file)
LPEBendPath::LPEBendPath(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
bend_path(_("Bend path:"), _("Path along which to bend the original path"), "bendpath", &wr, this, "M0,0 L1,0"),
- prop_scale(_("Width:"), _("Width of the path"), "prop_scale", &wr, this, 1),
- scale_y_rel(_("Width in units of length"), _("Scale the width of the path in units of its length"), "scale_y_rel", &wr, this, false),
- vertical_pattern(_("Original path is vertical"), _("Rotates the original 90 degrees, before bending it along the bend path"), "vertical", &wr, this, false)
+ prop_scale(_("_Width:"), _("Width of the path"), "prop_scale", &wr, this, 1),
+ scale_y_rel(_("W_idth in units of length"), _("Scale the width of the path in units of its length"), "scale_y_rel", &wr, this, false),
+ vertical_pattern(_("_Original path is vertical"), _("Rotates the original 90 degrees, before bending it along the bend path"), "vertical", &wr, this, false)
{
registerParameter( dynamic_cast<Parameter *>(&bend_path) );
registerParameter( dynamic_cast<Parameter *>(&prop_scale) );
index aee4c127a4d5de19609ca227ebb82f043f9568c4..cb9c031aa79e06d44ef6fc3ec30aaff0be0696b9 100644 (file)
LPEConstructGrid::LPEConstructGrid(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
- nr_x(_("Size X:"), _("The size of the grid in X direction."), "nr_x", &wr, this, 5),
- nr_y(_("Size Y:"), _("The size of the grid in Y direction."), "nr_y", &wr, this, 5)
+ nr_x(_("Size _X:"), _("The size of the grid in X direction."), "nr_x", &wr, this, 5),
+ nr_y(_("Size _Y:"), _("The size of the grid in Y direction."), "nr_y", &wr, this, 5)
{
registerParameter( dynamic_cast<Parameter *>(&nr_x) );
registerParameter( dynamic_cast<Parameter *>(&nr_y) );
index bd1cc5861f65d239551e8460aae8a9de51b6d291..49f294498863d1286424e5f24c54f57654fee452 100644 (file)
bend_path2(_("Right bend path:"), _("Right path along which to bend the original path"), "bendpath2", &wr, this, "M0,0 L1,0"),
bend_path3(_("Bottom bend path:"), _("Bottom path along which to bend the original path"), "bendpath3", &wr, this, "M0,0 L1,0"),
bend_path4(_("Left bend path:"), _("Left path along which to bend the original path"), "bendpath4", &wr, this, "M0,0 L1,0"),
- xx(_("Enable left & right paths"), _("Enable the left and right deformation paths"), "xx", &wr, this, true),
- yy(_("Enable top & bottom paths"), _("Enable the top and bottom deformation paths"), "yy", &wr, this, true)
+ xx(_("E_nable left & right paths"), _("Enable the left and right deformation paths"), "xx", &wr, this, true),
+ yy(_("_Enable top & bottom paths"), _("Enable the top and bottom deformation paths"), "yy", &wr, this, true)
{
registerParameter( dynamic_cast<Parameter *>(&yy) );
registerParameter( dynamic_cast<Parameter *>(&xx) );
index c9bbde8f2093191df4168c9c346d0f334caea7a5..337beb5162a5a61ed94ae1972ab2533dc6ab23c1 100644 (file)
LPEGears::LPEGears(LivePathEffectObject *lpeobject) :
Effect(lpeobject),
- teeth(_("Teeth:"), _("The number of teeth"), "teeth", &wr, this, 10),
- phi(_("Phi:"), _("Tooth pressure angle (typically 20-25 deg). The ratio of teeth not in contact."), "phi", &wr, this, 5)
+ teeth(_("_Teeth:"), _("The number of teeth"), "teeth", &wr, this, 10),
+ phi(_("_Phi:"), _("Tooth pressure angle (typically 20-25 deg). The ratio of teeth not in contact."), "phi", &wr, this, 5)
{
/* Tooth pressure angle: The angle between the tooth profile and a perpendicular to the pitch
* circle, usually at the point where the pitch circle meets the tooth profile. Standard angles
index 8f19c90c4cb12543afc9dc0043598fbe2128e345..34d55a44014f21681a96a7bb391d3cae0cbacc57 100644 (file)
--- a/src/ui/dialog/input.cpp
+++ b/src/ui/dialog/input.cpp
tree(store),
treeScroller(),
watcher(*this),
- useExt(_("Use pressure-sensitive tablet (requires restart)")),
- save(_("Save"))
+ useExt(_("_Use pressure-sensitive tablet (requires restart)"), true),
+ save(_("_Save"), true)
{
pack_start(treeScroller);
diff --git a/src/verbs.cpp b/src/verbs.cpp
index 1695a427e6abdc40857f2c7bb4f39e06eb6fce74..33c52706bc77aaf178acdeda3c11471c7cb40682 100644 (file)
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
N_("Query information about extensions"), NULL),
new DialogVerb(SP_VERB_DIALOG_LAYERS, "DialogLayers", N_("Layer_s..."),
N_("View Layers"), INKSCAPE_ICON_DIALOG_LAYERS),
- new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path Effect Editor..."),
+ new DialogVerb(SP_VERB_DIALOG_LIVE_PATH_EFFECT, "DialogLivePathEffect", N_("Path E_ffect Editor..."),
N_("Manage, edit, and apply path effects"), NULL),
new DialogVerb(SP_VERB_DIALOG_FILTER_EFFECTS, "DialogFilterEffects", N_("Filter Editor..."),
N_("Manage, edit, and apply SVG filters"), NULL),