summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 241ef77)
raw | patch | inline | side by side (parent: 241ef77)
author | Kris <Kris.De.Gussem@hotmail.com> | |
Fri, 17 Dec 2010 16:06:36 +0000 (17:06 +0100) | ||
committer | Kris <Kris.De.Gussem@hotmail.com> | |
Fri, 17 Dec 2010 16:06:36 +0000 (17:06 +0100) |
index 0c234003e210397eab05d96b5237bd28e00d599e..19bcadc0056fe4e3a8e4521057319efaacb1fd2e 100644 (file)
contents->pack_start(_notebook, true, true);
- _notebook.append_page(_page_fill, _createPageTabLabel(_("Fill"), INKSCAPE_ICON_OBJECT_FILL));
+ _notebook.append_page(_page_fill, _createPageTabLabel(_("_Fill"), INKSCAPE_ICON_OBJECT_FILL));
_notebook.append_page(_page_stroke_paint, _createPageTabLabel(_("Stroke _paint"), INKSCAPE_ICON_OBJECT_STROKE));
_notebook.append_page(_page_stroke_style, _createPageTabLabel(_("Stroke st_yle"), INKSCAPE_ICON_OBJECT_STROKE_STYLE));
index 3097306009a3fb36751c8b9aec216fabb49cfb0a..aba3a18e82ee9428f0f523c6926873fcfc52a3fc 100644 (file)
SimpleFilterModifier::SimpleFilterModifier(int flags)
: _lb_blend(_("_Blend mode:")),
- _lb_blur(_("Blur:"), Gtk::ALIGN_LEFT),
+ _lb_blur(_("_Blur:"), Gtk::ALIGN_LEFT, Gtk::ALIGN_CENTER, true),
_blend(BlendModeConverter, SP_ATTR_INVALID, false),
_blur(0, 0, 100, 1, 0.01, 1)
{
diff --git a/src/ui/widget/object-composite-settings.cpp b/src/ui/widget/object-composite-settings.cpp
index 1de425da376b97856680a119645773f65f6017ea..997c2f0dc87acf371af7715e3536de0ae38059f0 100644 (file)
_opacity_tag(Glib::ustring(history_prefix) + ":opacity"),
_opacity_vbox(false, 0),
_opacity_label_box(false, 0),
- _opacity_label(_("Opacity (%):"), 0.0, 1.0, true),
+ _opacity_label(_("_Opacity (%):"), 0.0, 1.0, true),
_opacity_adjustment(100.0, 0.0, 100.0, 1.0, 1.0, 0.0),
_opacity_hscale(_opacity_adjustment),
_opacity_spin_button(_opacity_adjustment, 0.01, 1),
_opacity_hscale.set_draw_value(false);
_opacity_hscale.set_update_policy(Gtk::UPDATE_DELAYED);
_opacity_adjustment.signal_value_changed().connect(sigc::mem_fun(*this, &ObjectCompositeSettings::_opacityValueChanged));
+ _opacity_label.set_mnemonic_widget(_opacity_hscale);
show_all_children();
diff --git a/src/verbs.cpp b/src/verbs.cpp
index a218e85dbf7d5359083ebcbbf56e717898bf93ca..4cdad7d36cc8aa5692de64d1b294e5979529e397 100644 (file)
--- a/src/verbs.cpp
+++ b/src/verbs.cpp
N_("Raise the current layer"), INKSCAPE_ICON_LAYER_RAISE),
new LayerVerb(SP_VERB_LAYER_LOWER, "LayerLower", N_("_Lower Layer"),
N_("Lower the current layer"), INKSCAPE_ICON_LAYER_LOWER),
- new LayerVerb(SP_VERB_LAYER_DUPLICATE, "LayerDuplicate", N_("Duplicate Current Layer"),
+ new LayerVerb(SP_VERB_LAYER_DUPLICATE, "LayerDuplicate", N_("D_uplicate Current Layer"),
N_("Duplicate an existing layer"), NULL),
new LayerVerb(SP_VERB_LAYER_DELETE, "LayerDelete", N_("_Delete Current Layer"),
N_("Delete the current layer"), INKSCAPE_ICON_LAYER_DELETE),