Partially fix 1956475: Mark some more strings as translatable, thanks to Genete for...
[synfig.git] / synfig-studio / trunk / src / gtkmm / keyframeactionmanager.cpp
index e15e4d9..b91751c 100644 (file)
@@ -218,7 +218,7 @@ KeyframeActionManager::refresh()
                action_group_->add(Gtk::Action::create(
                        "action-keyframe_add",
                        Gtk::StockID("gtk-add"),
-                       _("Add new Keyframe"),_("Add new Keyframe")
+                       _("Add New Keyframe"),_("Add New Keyframe")
                ),
                        sigc::mem_fun(*this,&KeyframeActionManager::on_add_keyframe)
                );
@@ -235,7 +235,8 @@ KeyframeActionManager::refresh()
        }
 
        {
-               Glib::RefPtr<Gtk::Action> action(Gtk::Action::create("keyframe-properties", Gtk::StockID("gtk-properties"), _("Keyframe Properties")));
+               Glib::RefPtr<Gtk::Action> action(Gtk::Action::create("keyframe-properties", Gtk::StockID("gtk-properties"),
+                                                                                                                        _("Keyframe Properties"), _("Keyframe Properties")));
                action_group_->add(action,sigc::mem_fun(*this,&KeyframeActionManager::on_keyframe_properties));
                if(keyframe_tree_->get_selection()->count_selected_rows()==0)
                        action->set_sensitive(false);