X-Git-Url: https://git.pterodactylus.net/?a=blobdiff_plain;f=synfig-studio%2Ftrunk%2Fsrc%2Fgtkmm%2Fabout.cpp;h=e978dc171684959fce2635f16cf3aaae948c2afd;hb=047740653043b7fa79a042152a70e158f4d3ab97;hp=e00e627ef0d040e158ac5d562ad50a9314502fd7;hpb=98b0b5b6cc30e2faef4e14a97c5ec6b17b4386ef;p=synfig.git diff --git a/synfig-studio/trunk/src/gtkmm/about.cpp b/synfig-studio/trunk/src/gtkmm/about.cpp index e00e627..e978dc1 100644 --- a/synfig-studio/trunk/src/gtkmm/about.cpp +++ b/synfig-studio/trunk/src/gtkmm/about.cpp @@ -6,6 +6,7 @@ ** ** \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 @@ -47,6 +48,8 @@ #include "about.h" #include "app.h" +#include "general.h" + #endif using namespace std; @@ -215,7 +218,7 @@ About::About(): CopyrightLabel->modify_font(fd); // Create the Version information label - Gtk::Label *VersionLabel = manage(new class Gtk::Label("Version")); + Gtk::Label *VersionLabel = manage(new class Gtk::Label(_("Version"))); VersionLabel->set_size_request(image_w,80); VersionLabel->set_flags(Gtk::CAN_FOCUS); VersionLabel->set_alignment(0.5,0.5); @@ -268,7 +271,7 @@ About::About(): CloseButton = manage(new class Gtk::Button()); CloseButton->set_size_request(24,24); CloseButton->set_flags(Gtk::CAN_FOCUS); - _tooltips.set_tip(*CloseButton, "Close", ""); + _tooltips.set_tip(*CloseButton, _("Close"), ""); CloseButton->set_relief(Gtk::RELIEF_NONE); CloseButton->add(*image2);