Add my copyright to files I've modified.
[synfig.git] / synfig-studio / trunk / src / gtkmm / dock_history.cpp
index 1c0f2d8..248f554 100644 (file)
@@ -1,11 +1,12 @@
 /* === S Y N F I G ========================================================= */
-/*!    \file dialog_history.cpp
+/*!    \file dock_history.cpp
 **     \brief Template File
 **
-**     $Id: dock_history.cpp,v 1.1.1.1 2005/01/07 03:34:36 darco Exp $
+**     $Id$
 **
 **     \legal
 **     Copyright (c) 2002-2005 Robert B. Quattlebaum Jr., Adrian Bentley
+**     Copyright (c) 2007 Chris Moore
 **
 **     This package is free software; you can redistribute it and/or
 **     modify it under the terms of the GNU General Public License as
@@ -72,8 +73,8 @@ Dock_History::Dock_History():
        action_group->add(Gtk::Action::create(
                "clear-undo",
                Gtk::StockID("synfig-clear_undo"),
-               _("Clear the UNDO Stack"),
-               _("Clear the UNDO Stack")
+               _("Clear Undo Stack"),
+               _("Clear the undo stack")
        ),
                sigc::mem_fun(
                        *this,
@@ -83,8 +84,8 @@ Dock_History::Dock_History():
        action_group->add(Gtk::Action::create(
                "clear-redo",
                Gtk::StockID("synfig-clear_redo"),
-               _("Clear the REDO Stack"),
-               _("Clear the REDO Stack")
+               _("Clear Redo Stack"),
+               _("Clear the redo stack")
        ),
                sigc::mem_fun(
                        *this,
@@ -94,16 +95,16 @@ Dock_History::Dock_History():
        action_group->add(Gtk::Action::create(
                "undo",
                Gtk::StockID("gtk-undo"),
-               _("Undo previous action"),
-               _("Undo previous action")
+               _("Undo"),
+               _("Undo the previous action")
        ),
                sigc::ptr_fun(studio::App::undo)
        );
        action_group->add(Gtk::Action::create(
                "redo",
                Gtk::StockID("gtk-redo"),
-               _("Redo previous action"),
-               _("Redo previous action")
+               _("Redo"),
+               _("Redo the previously undone action")
        ),
                sigc::ptr_fun(studio::App::redo)
        );
@@ -115,9 +116,9 @@ Dock_History::Dock_History():
        "<ui>"
        "       <toolbar action='toolbar-history'>"
        "       <toolitem action='undo' />"
+       "       <toolitem action='redo' />"
        "       <toolitem action='clear-undo' />"
        "       <toolitem action='clear-redo' />"
-       "       <toolitem action='redo' />"
        "       </toolbar>"
        "</ui>"
        ;