Fix capitalization and allow keyboard shortcuts to select default interpolation method.
authordooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sun, 17 Feb 2008 12:18:42 +0000 (12:18 +0000)
committerdooglus <dooglus@1f10aa63-cdf2-0310-b900-c93c546f37ac>
Sun, 17 Feb 2008 12:18:42 +0000 (12:18 +0000)
git-svn-id: http://svn.voria.com/code@1732 1f10aa63-cdf2-0310-b900-c93c546f37ac

synfig-studio/trunk/src/gtkmm/widget_defaults.cpp

index cf2f864..f36176f 100644 (file)
@@ -284,10 +284,10 @@ Widget_Defaults::Widget_Defaults()
        widget_interpolation->set_param_desc(
                ParamDesc("interpolation")
                        .set_hint("enum")
-                       .add_enum_value(INTERPOLATION_TCB,"auto",_("TCB"))
-                       .add_enum_value(INTERPOLATION_CONSTANT,"constant",_("Constant"))
-                       .add_enum_value(INTERPOLATION_HALT,"ease",_("Ease in/out"))
-                       .add_enum_value(INTERPOLATION_LINEAR,"linear",_("Linear"))
+                       .add_enum_value(INTERPOLATION_TCB,"auto",_("_TCB"))
+                       .add_enum_value(INTERPOLATION_CONSTANT,"constant",_("_Constant"))
+                       .add_enum_value(INTERPOLATION_HALT,"ease",_("_Ease In/Out"))
+                       .add_enum_value(INTERPOLATION_LINEAR,"linear",_("_Linear"))
        );
        attach(*widget_interpolation,0, 2, 5, 6, Gtk::EXPAND|Gtk::FILL, Gtk::SHRINK|Gtk::FILL, 1, 1);
        tooltips_.set_tip(*widget_interpolation,_("Default Interpolation"));