Code

Mnemonics in "Input devices", and LPE dialogs (Bug 170765)
authorKris <Kris.De.Gussem@hotmail.com>
Wed, 29 Dec 2010 20:05:10 +0000 (21:05 +0100)
committerKris <Kris.De.Gussem@hotmail.com>
Wed, 29 Dec 2010 20:05:10 +0000 (21:05 +0100)
src/live_effects/lpe-bendpath.cpp
src/live_effects/lpe-constructgrid.cpp
src/live_effects/lpe-envelope.cpp
src/live_effects/lpe-gears.cpp
src/ui/dialog/input.cpp
src/verbs.cpp

index 254500908bc5d88eb0198844ccdc1e769fc3e03d..2d6bbeb220195989120af857c2a96b6f610beb7d 100644 (file)
@@ -53,9 +53,9 @@ namespace LivePathEffect {
 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)
@@ -23,8 +23,8 @@ using namespace Geom;
 
 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)
@@ -34,8 +34,8 @@ LPEEnvelope::LPEEnvelope(LivePathEffectObject *lpeobject) :
     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)
@@ -209,8 +209,8 @@ namespace LivePathEffect {
 
 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)
@@ -877,8 +877,8 @@ InputDialogImpl::ConfPanel::ConfPanel() :
     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);
 
index 1695a427e6abdc40857f2c7bb4f39e06eb6fce74..33c52706bc77aaf178acdeda3c11471c7cb40682 100644 (file)
@@ -2673,7 +2673,7 @@ Verb *Verb::_base_verbs[] = {
                    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),